Integrated: 2610: Mailman 3 support

Erik Joelsson erikj at openjdk.org
Mon Dec 1 23:30:26 UTC 2025


On Fri, 21 Nov 2025 23:14:50 GMT, Erik Joelsson <erikj at openjdk.org> wrote:

> The OpenJDK mail archive will move to Mailman 3 at some point in the future. To prepare for that, Skara needs to be made Mailman 3 compatible, specifically for reading emails from the archive to be able to publish them as comments in PRs. There are two major changes
> 
> ### 1. REST API
> The REST API for reading mbox archives is different. It's a lot better in Mailman3. Instead of having to read in fixed monthly chunks, we can request a custom date interval. The data is also returned gzipped instead of in plain text. To retain backwards compatibility, I chose to implement the Mailman 2 and 3 support as subclasses with some shared implementation. This caused a lot of mechanical changes in tests, just updating method names or signatures since the API for creating a Mailman server object changes. It also forced some cleanup in bots where MailmanServer objects were created unnecessarily. I updated some tests to use the Mailman3 implementation where possible to exercise the new code more. 
> 
> The new implementation is somewhat taking advantage of the new capabilities in the API, but it could maybe be done more efficiently when polling for updates. 
> 
> ### 2. Mbox format
> The format of the mail bodies in the returned mbox format is quite different. It's now MIME encoded and can be encoded in a few different ways ("7bit", "8bit" and "quoted-printable" have been observed so far). I've tried to implement support for decoding all the ways I've so far observed.
> 
> Some examples of this patch in action can be found in https://github.com/openjdk/playground/pull/246. Note that the earlier comments have problems that eventually got resolved as I ironed out the details. 
> 
> An observation I've made is that the new server introduces hard line breaks in emails as they are archived. Those are visible already when browsing the archive. I'm not sure if this is a setting in Mailman itself or not. Those line breaks are not part of the email I received when subscribing to a list, just in the archive, and so also in any comments posted by Skara.
> 
> This is a big patch, so sorry in advance.

This pull request has now been integrated.

Changeset: db92d060
Author:    Erik Joelsson <erikj at openjdk.org>
URL:       https://git.openjdk.org/skara/commit/db92d06064a5b4dbe9403663669c7dc47560220e
Stats:     1451 lines in 23 files changed: 1061 ins; 232 del; 158 mod

2610: Mailman 3 support

Reviewed-by: zsong

-------------

PR: https://git.openjdk.org/skara/pull/1743


More information about the skara-dev mailing list