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
Invite emails should successfully reach their destination.
Actual behavior
These invites will be filtered or blocked in many cases, because they are sending From: the person doing the invitation. Assuming that person's email is not hosted on the same system as the Sympa lists, sender authentication will fail.
Additional information
The fix (or one possible fix) is extremely simple: just remove the From: line from the mail_tt2/invite.tt2 file. That way, the invite will go out with the default Sympa administrative sender address, sympa@lists.domain.org (or whatever domain the Sympa server lives in), which will pass sender authentication checks.
# diff -c invite.tt2~ invite.tt2
*** invite.tt2~ Sun Mar 31 20:18:16 2024
--- invite.tt2 Tue May 28 16:04:12 2024
***************
*** 1,5 ****
[%# invite.tt2 ~%]
- From: [% requested_by %]
Reply-To: [% conf.email %]@[% domain %]
Subject: [%"Invitation to join list %1"|loc(list.name)|qencode%]
--- 1,4 ----
The text was updated successfully, but these errors were encountered:
Version
Sympa 6.2.72
Installation method
FreeBSD port
Expected behavior
Invite emails should successfully reach their destination.
Actual behavior
These invites will be filtered or blocked in many cases, because they are sending From: the person doing the invitation. Assuming that person's email is not hosted on the same system as the Sympa lists, sender authentication will fail.
Additional information
The fix (or one possible fix) is extremely simple: just remove the From: line from the
mail_tt2/invite.tt2
file. That way, the invite will go out with the default Sympa administrative sender address,sympa@lists.domain.org
(or whatever domain the Sympa server lives in), which will pass sender authentication checks.The text was updated successfully, but these errors were encountered: