summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2000-02-26 21:19:57 +0000
committerbwarsaw2000-02-26 21:19:57 +0000
commitb2d21a2f7e10f27b3c096808a30e4d4fc1924472 (patch)
tree767fcdb06795ecac3b37afc79edf699d4b780b2c
parentda8234fd1cc8aa4a50dfbbc990119596369edc31 (diff)
downloadmailman-b2d21a2f7e10f27b3c096808a30e4d4fc1924472.tar.gz
mailman-b2d21a2f7e10f27b3c096808a30e4d4fc1924472.tar.zst
mailman-b2d21a2f7e10f27b3c096808a30e4d4fc1924472.zip
SMTPDirect should be the default DELIVERY_MODULE
Diffstat (limited to '')
-rw-r--r--Mailman/Defaults.py.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in
index 030804b26..fdfd734a6 100644
--- a/Mailman/Defaults.py.in
+++ b/Mailman/Defaults.py.in
@@ -101,8 +101,8 @@ SMTP_MAX_RCPTS = 500
# in that module, this handler is used for message delivery to the list, and
# to an individual user. This value must be a string naming a module in the
# Mailman.Handlers package.
-DELIVERY_MODULE = 'Sendmail'
-#DELIVERY_MODULE = 'SMTPDirect'
+#DELIVERY_MODULE = 'Sendmail'
+DELIVERY_MODULE = 'SMTPDirect'
# Command for direct command pipe delivery to sendmail compatible program,
# when DELIVERY_MODULE is 'Sendmail'.