summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Mailman/mm_cfg.py.dist.in15
-rw-r--r--modules/mm_cfg.py.in15
2 files changed, 20 insertions, 10 deletions
diff --git a/Mailman/mm_cfg.py.dist.in b/Mailman/mm_cfg.py.dist.in
index f43313b9d..24847cd8c 100644
--- a/Mailman/mm_cfg.py.dist.in
+++ b/Mailman/mm_cfg.py.dist.in
@@ -17,23 +17,28 @@ setting by using the value as a format string against the
list-instance-object's dictionary - see the distributed value of
DEFAULT_MSG_FOOTER for an example."""
-__version__ = "$Revision: 423 $"
+__version__ = "$Revision: 428 $"
#######################################################
# Here's where we get the distributed defaults. #
from mm_defaults import *
-#######################################################
-# Put YOUR site specific configurations below here. #
+##############################################################
+# Put YOUR site-specific configuration below, in mm_cfg.py . #
+# See mm_defaults.py for explanations of the values. #
DEFAULT_HOST_NAME = 'python.org'
MAILMAN_OWNER = 'mailman-owner@%s' % DEFAULT_HOST_NAME
SENDMAIL_CMD = '/usr/lib/sendmail -f %s %s'
+
DEFAULT_URL = 'http://www.python.org/mailman'
-PUBLIC_ARCHIVE_URL = 'http://www.python.org/pipermail'
-PRIVATE_ARCHIVE_URL = 'http://www.python.org/cgi-bin/private
+PUBLIC_ARCHIVE_URL = '/pipermail'
+PRIVATE_ARCHIVE_URL = '/mailman/private'
+
# Once we know our home directory we can figure out the rest.
HOME_DIR = '/home/mailman'
MAILMAN_DIR = '/home/mailman/mailman'
+# (Note - if you're looking for something that is imported from
+# mm_cfg, but you didn't find it above, it's probably in mm_defaults.py.)
diff --git a/modules/mm_cfg.py.in b/modules/mm_cfg.py.in
index f43313b9d..24847cd8c 100644
--- a/modules/mm_cfg.py.in
+++ b/modules/mm_cfg.py.in
@@ -17,23 +17,28 @@ setting by using the value as a format string against the
list-instance-object's dictionary - see the distributed value of
DEFAULT_MSG_FOOTER for an example."""
-__version__ = "$Revision: 423 $"
+__version__ = "$Revision: 428 $"
#######################################################
# Here's where we get the distributed defaults. #
from mm_defaults import *
-#######################################################
-# Put YOUR site specific configurations below here. #
+##############################################################
+# Put YOUR site-specific configuration below, in mm_cfg.py . #
+# See mm_defaults.py for explanations of the values. #
DEFAULT_HOST_NAME = 'python.org'
MAILMAN_OWNER = 'mailman-owner@%s' % DEFAULT_HOST_NAME
SENDMAIL_CMD = '/usr/lib/sendmail -f %s %s'
+
DEFAULT_URL = 'http://www.python.org/mailman'
-PUBLIC_ARCHIVE_URL = 'http://www.python.org/pipermail'
-PRIVATE_ARCHIVE_URL = 'http://www.python.org/cgi-bin/private
+PUBLIC_ARCHIVE_URL = '/pipermail'
+PRIVATE_ARCHIVE_URL = '/mailman/private'
+
# Once we know our home directory we can figure out the rest.
HOME_DIR = '/home/mailman'
MAILMAN_DIR = '/home/mailman/mailman'
+# (Note - if you're looking for something that is imported from
+# mm_cfg, but you didn't find it above, it's probably in mm_defaults.py.)