summaryrefslogtreecommitdiff
path: root/Mailman/Defaults.py.in
diff options
context:
space:
mode:
authorbwarsaw2000-06-05 21:47:21 +0000
committerbwarsaw2000-06-05 21:47:21 +0000
commitd0ff6c3e4f0ebdb70e3a961af1433a897c0ef051 (patch)
tree1fc642dbb3d93631ea359f036c9bbbff07a3f7cc /Mailman/Defaults.py.in
parentd827d3902e2cb4d2a4cb409f72d9f9ffaaddd476 (diff)
downloadmailman-d0ff6c3e4f0ebdb70e3a961af1433a897c0ef051.tar.gz
mailman-d0ff6c3e4f0ebdb70e3a961af1433a897c0ef051.tar.zst
mailman-d0ff6c3e4f0ebdb70e3a961af1433a897c0ef051.zip
NNTP_USERNAME, NNTP_PASSWORD: Optional site-wide values for specifying
authentication information to the NNTP server for posting or reading. Most sites don't need this and the defaults disable NNTP server authentication.
Diffstat (limited to 'Mailman/Defaults.py.in')
-rw-r--r--Mailman/Defaults.py.in11
1 files changed, 8 insertions, 3 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in
index 5108a01fb..0b8261ff7 100644
--- a/Mailman/Defaults.py.in
+++ b/Mailman/Defaults.py.in
@@ -128,14 +128,19 @@ DELIVERY_MODULE = 'SMTPDirect'
SENDMAIL_CMD = '/usr/lib/sendmail'
# SMTP host and port, when DELIVERY_MODULE is 'SMTPDirect'
-SMTPHOST = 'localhost'
-SMTPPORT = 0 # default from smtplib
+SMTPHOST = 'localhost'
+SMTPPORT = 0 # default from smtplib
+
+# Set these variables if you need to authenticate to your NNTP server for
+# Usenet posting or reading. None indicates no authentication is needed.
+NNTP_USERNAME = None
+NNTP_PASSWORD = None
# 1 to use crypt for passwords instead of md5.
# Crypt may not work on all python installs.
# Don't change this value once you have lists running...
# In fact, you should just let configure set this one and leave it alone.
-USE_CRYPT = 1
+USE_CRYPT = 1
# General Defaults #