diff options
| author | bwarsaw | 2001-05-22 21:01:42 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-05-22 21:01:42 +0000 |
| commit | 7a38ffe651748b8200c5df67b67f07320b95457f (patch) | |
| tree | c0cee2a5ea379959cedbc7ba7226f350dedfe120 | |
| parent | b8c0d99bf26afc332ccc818cd7148a913fd426d3 (diff) | |
| download | mailman-7a38ffe651748b8200c5df67b67f07320b95457f.tar.gz mailman-7a38ffe651748b8200c5df67b67f07320b95457f.tar.zst mailman-7a38ffe651748b8200c5df67b67f07320b95457f.zip | |
| -rw-r--r-- | Mailman/Defaults.py.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in index 16d856f80..a35611dc2 100644 --- a/Mailman/Defaults.py.in +++ b/Mailman/Defaults.py.in @@ -187,12 +187,12 @@ SMTPPORT = 0 # default from smtplib # when DELIVERY_MODULE is 'Sendmail'. SENDMAIL_CMD = '/usr/lib/sendmail' -# MTA should name the mail transport agent you use. This is actually the name -# of a module in Mailman/MTA which provides the MTA specific functionality for -# creating and removing lists. Some MTAs like Exim can be configured to -# automatically recognize new lists, in which case the MTA variable should be -# set to None. -MTA = 'Sendmail' +# MTA should name a module in Mailman/MTA which provides the MTA specific +# functionality for creating and removing lists. Some MTAs like Exim can be +# configured to automatically recognize new lists, in which case the MTA +# variable should be set to None. Currently only Postfix is supported, while +# the fallback Manual prints to standard out (or sends an email). +MTA = 'Manual' # Set these variables if you need to authenticate to your NNTP server for # Usenet posting or reading. If no authentication is necessary, specify None |
