You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It therefore has a length of 1244 characters, which is longer than RFC5322 allows:
There are two limits that this specification places on the number of
characters in a line. Each line of characters MUST be no more than
998 characters, and SHOULD be no more than 78 characters, excluding
the CRLF.
I was able to work around the issue by manually overwriting the To: header with --header 'To: [email protected]'.
The swaks version I'm using is the one provided by Debian stable (bookworm):
my.local.exim.instance ~ # lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 12 (bookworm)
Release: 12
Codename: bookworm
my.local.exim.instance ~ # swaks --version
swaks version 20201014.0
[...]
The text was updated successfully, but these errors were encountered:
I'm using
swaks
to validate an Exim configuration that should reject outgoing mails with more than 50 recipients:In this case the email was supposed to pass because 50 recipients is below the limit, but Exim instead froze the message with the following error:
The problem seems to be that the
To:
header thatswaks
generated from the list of the recipients isn't folded:It therefore has a length of 1244 characters, which is longer than RFC5322 allows:
I was able to work around the issue by manually overwriting the
To:
header with--header 'To: [email protected]'
.The
swaks
version I'm using is the one provided by Debian stable (bookworm):The text was updated successfully, but these errors were encountered: