diff options
| author | bwarsaw | 2000-10-20 06:14:52 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-10-20 06:14:52 +0000 |
| commit | 5a3883383ade72c72de38a3e2417b42d30f5e5ce (patch) | |
| tree | 6f54703c83bc33cb5bd0627ece94cdf6ffee989b /Mailman | |
| parent | 7e3bfa942c2da513877c479f782a06635dd6fc7a (diff) | |
| download | mailman-5a3883383ade72c72de38a3e2417b42d30f5e5ce.tar.gz mailman-5a3883383ade72c72de38a3e2417b42d30f5e5ce.tar.zst mailman-5a3883383ade72c72de38a3e2417b42d30f5e5ce.zip | |
SF Patch #101846 by Sean Reifschneider (modified by bwarsaw) to add
MTA_ALIASES_STYLE for the newlist script's output.
Diffstat (limited to '')
| -rw-r--r-- | Mailman/Defaults.py.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in index d90e4f4e1..c1a972410 100644 --- a/Mailman/Defaults.py.in +++ b/Mailman/Defaults.py.in @@ -178,6 +178,11 @@ SMTPPORT = 0 # default from smtplib # when DELIVERY_MODULE is 'Sendmail'. SENDMAIL_CMD = '/usr/lib/sendmail' +# Allow for handling of MTA-specific features (i.e. aliases). Most MTAs use +# "sendmail" (including Sendmail, Postfix, and Exim). Qmail uses the "qmail" +# style. +MTA_ALIASES_STYLE = 'sendmail' + # Set these variables if you need to authenticate to your NNTP server for # Usenet posting or reading. If no authentication is necessary, specify None # for both variables. |
