summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authormailman1998-04-11 05:25:27 +0000
committermailman1998-04-11 05:25:27 +0000
commit3ed034e827944d4274ada91b316c54e2f4afcafb (patch)
tree0731cfd66d6399c4f43260e4d7215ebe9ac80eae /modules
parentd2598d101d7f615146e9131d13e527bda2ba87c5 (diff)
downloadmailman-3ed034e827944d4274ada91b316c54e2f4afcafb.tar.gz
mailman-3ed034e827944d4274ada91b316c54e2f4afcafb.tar.zst
mailman-3ed034e827944d4274ada91b316c54e2f4afcafb.zip
Shorten the public and private archive urls.
Diffstat (limited to 'modules')
-rw-r--r--modules/mm_cfg.py.in15
1 files changed, 10 insertions, 5 deletions
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.)