RFR: 2610: Mailman 3 support [v2]
Erik Joelsson
erikj at openjdk.org
Wed Nov 26 22:53:00 UTC 2025
On Wed, 26 Nov 2025 22:25:26 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.
>
> Erik Joelsson has updated the pull request incrementally with one additional commit since the last revision:
>
> Restored send interval
Thanks! I will wait until next week before integrating this.
-------------
PR Comment: https://git.openjdk.org/skara/pull/1743#issuecomment-3583469355
More information about the skara-dev
mailing list