Bounce of HCL Notes invitations - CloseBoundaryNotFoundDefect() - 501 Message has defects (in reply to end of DATA command)

Hello, after switching from mailman2.1 to mailman3 mails with HCL Notes invitations are failing.
The full error message is: 2025-03-20T15:19:13.111419+01:00 mailman1 postfix/lmtp[119104]: 139D6400AF: to=<mylist@lists.mydomain.com>, relay=127.0.0.1[127.0.0.1]:8024, delay=0.01 , delays=0/0/0/0.01, dsn=5.0.0, status=bounced (host 127.0.0.1[127.0.0.1] said: 501 Message has defects (in reply to end of DATA command))
I have tried the deeper debug explainded here: https://lists.mailman3.org/archives/list/mailman-users@mailman3.org/message/...
The result is: mailman shell ...
import email from mailman.email.message import Message msg = email.message_from_binary_file(open('notestermin.eml', 'rb'), Message) msg.defects [CloseBoundaryNotFoundDefect()]
Is there a quick fix for this available? Is it a problem of the python code or the format of the HCL Notes Server? In the .eml file I see 25 header fields calles "X-Notes-Item". May be it is an overflow? Any ideas?
Thank you and regards, Ulf

With try and error I find out if I delete the first of the X-Notes-Item entries msg.defects are empty! The content of this field is:
X-Notes-Item: =?UTF-8?B?Q2hpbGRfT3V0Z29pbmdfMDA0RThFQjdbTG9jYWxdIGJ5IG5sbm90ZXMuZXhl?= =?UTF-8?B?IG9uIE1hcmNvIEVpY2hlbGJlcmcoUmVsZWFzZSAxMi4wLjJGUDR8TWF5IDA2?= =?UTF-8?B?LCAyMDI0KSBhdCAyMC4wMy4yMDI1IDE1OjE4OjAz?=, =?UTF-8?B?U2VuZGluZyBzZXBhcmF0ZSB1cGRhdGVzIGZvciBlYWNoIHJ1bltMb2NhbF0g?= =?UTF-8?B?Ynkgbmxub3Rlcy5leGUgb24gTWFyY28gRWljaGVsYmVyZyhSZWxlYXNl?= =?UTF-8?B?IDEyLjAuMkZQNHxNYXkgMDYsIDIwMjQpIGF0IDIwLjAzLjIwMjUgMTU6MTg6?= =?UTF-8?B?MDM=?=, =?UTF-8?B?T0EoVXBkYXRlKVtMb2NhbF0gYnkgbmxub3Rlcy5leGUgb24gTWFyY28=?= =?UTF-8?B?IEVpY2hlbGJlcmcoUmVsZWFzZSAxMi4wLjJGUDR8TWF5IDA2LCAyMDI0KSA=?= =?UTF-8?B?YXQgMjAuMDMuMjAyNSAxNToxODowMw==?=, =?UTF-8?B?Q1MgTm90aWNlIGNvbnZlcnRlZCB0byBpQ2FsZW5kYXIgZm9ybWF0W0xvY2Fs?= =?UTF-8?B?XSBieSBSb3V0ZXIgb24gZG9taW5vKFJlbGVhc2UgMTQuMEZQMyBIRjE3fA==?= =?UTF-8?B?RGVjZW1iZXIgMTcsIDIwMjQpIGF0IDIwLjAzLjIwMjUgMTU6MTg6MDQ=?=; type=501; flags=0; name=$CSTrack
May be a special character ist the problem? Thank you!

Ulf R. writes:
msg.defects [CloseBoundaryNotFoundDefect()]
This means that the message declares a MIME multipart Content-Type, and some part had a "start" boundary line but no "end" boundary line.
Is there a quick fix for this available?
No. If the sending software isn't quite broken, this defect means that a chunk of the message was lost somewhere. Ignoring this kind of defect is obviously a bad idea, and any other fix (on the Mailman side) requires knowing precisely what's causing the defect to be detected.
Is it a problem of the python code or the format of the HCL Notes Server?
Nothing's impossible, but I would bet that the problem is in the HCL Notes format. The MIME multipart spec goes back to the early 1980s, and I'm sure the Python Email package implements it exactly by default. I can't say more without the exact MIME structure of a message that causes this error, preferably the whole message (header and body).
That said, it might be something that (a) can be worked around with a slightly more lenient existing email policy, or (b) that we could create a new policy that ignores the problem.
In the .eml file I see 25 header fields calles "X-Notes-Item". May be it is an overflow?
Extremely unlikely. All header fields have been successfully processed by the time a CloseBoundaryNotFoundDefect can be detected, and the copy of the field you provide in your followup email is well-formed and contains no interesting content (such as non-ASCII characters, even after decoding the MIME-words). I cannot say why removing the first instance of the field would resolve the error without seeing the whole message.
Any ideas?
Not without the full message. If you're not comfortable sending the message to the list, but do trust us enough, you can send a message that causes the error to me and/or Mark Sapiro <mark@msapiro.net>.
Regards, Steve
participants (2)
-
Stephen J. Turnbull
-
Ulf R.