diff options
| author | bwarsaw | 1999-03-09 19:36:48 +0000 |
|---|---|---|
| committer | bwarsaw | 1999-03-09 19:36:48 +0000 |
| commit | fb699dd06ad94e9dd4f29bb5ba0965261e65ee3b (patch) | |
| tree | d527ed30d8cb48685edf821e1b68612fd17614d7 /Mailman/Defaults.py.in | |
| parent | a4079818fc472196d19bb5c89b199e318c2cb4bf (diff) | |
| download | mailman-fb699dd06ad94e9dd4f29bb5ba0965261e65ee3b.tar.gz mailman-fb699dd06ad94e9dd4f29bb5ba0965261e65ee3b.tar.zst mailman-fb699dd06ad94e9dd4f29bb5ba0965261e65ee3b.zip | |
Diffstat (limited to 'Mailman/Defaults.py.in')
| -rw-r--r-- | Mailman/Defaults.py.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in index aca288181..a281b2890 100644 --- a/Mailman/Defaults.py.in +++ b/Mailman/Defaults.py.in @@ -81,6 +81,20 @@ USE_CRYPT = 1 # General Defaults # +# When allowing only members to post to a mailing list, how is the sender of +# the message determined? If this variable is set to 1, then first the +# message's envelope sender is used, with a fallback to the sender if there is +# no envelope sender. Set this variable to 0 to always use the sender. +# +# The envelope sender is set by the SMTP delivery and is thus less easily +# spoofed than the sender, which is typically just taken from the From: header +# and thus easily spoofed by the end-user. However, sometimes the envelope +# sender isn't set correctly and this will manifest itself by postings being +# held for approval even if they appear to come from a list member. If you +# are having this problem, set this variable to 0, but understand that some +# spoofed messages may get through. +USE_ENVELOPE_SENDER = 1 + # When true, mailman will consider user@host.domain to be the same address # as user@domain. If set to 0, mailman will consider user@host.domain to # be the same address as user@Host.DoMain, but different than user@domain. |
