summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorklm1998-04-10 21:42:22 +0000
committerklm1998-04-10 21:42:22 +0000
commita3c65597e11c202bfdb3ab970cf1b2ebba602621 (patch)
tree30f650b19df9d780bb1120a6989b310806c20eeb
parent07bf611178d565027cf09dd6ffb9870650cb958b (diff)
downloadmailman-a3c65597e11c202bfdb3ab970cf1b2ebba602621.tar.gz
mailman-a3c65597e11c202bfdb3ab970cf1b2ebba602621.tar.zst
mailman-a3c65597e11c202bfdb3ab970cf1b2ebba602621.zip
Retire ARCHIVE_URL for PUBLIC_ARCHIVE_URL and PRIVATE_ARCHIVE_URL
settings.
-rw-r--r--Mailman/Defaults.py.in5
-rw-r--r--Mailman/mm_cfg.py.dist.in5
-rw-r--r--modules/mm_cfg.py.in5
-rw-r--r--modules/mm_defaults.py5
-rw-r--r--modules/mm_defaults.py.in5
5 files changed, 15 insertions, 10 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in
index 02e560eba..31f470f7e 100644
--- a/Mailman/Defaults.py.in
+++ b/Mailman/Defaults.py.in
@@ -9,7 +9,7 @@ this file, to override the distributed defaults with site-specific ones.
import os
VERSION = '1.0b1.2'
-__version__ = "$Revision: 395 $"
+__version__ = "$Revision: 423 $"
# Many site-specific settings #
@@ -18,7 +18,8 @@ DEFAULT_HOST_NAME = 'OVERRIDE.WITH.YOUR.MX.OR.HOST.NAME'
SMTPHOST = 'localhost'
SENDMAIL_CMD = '/usr/lib/sendmail -f %s %s' # yours may be different
DEFAULT_URL = 'http://www.OVERRIDE.WITH.YOUR.HOST/mailman/'
-ARCHIVE_URL = 'http://www.OVERRIDE.WITH.YOUR.ARCHIVE.DIR/'
+PUBLIC_ARCHIVE_URL = 'http://www.OVERRIDE.WITH.YOUR.PUBLIC.ARCHIVE.URL/'
+PRIVATE_ARCHIVE_URL = 'http://www.OVERRIDE.WITH.YOUR.PRIVATE.ARCHIVE.URL/'
# Once we know our home directory we can figure out the rest.
HOME_DIR = '/home/mailman' # Override if you change
MAILMAN_DIR = '/home/mailman/mailman' # Override if you change
diff --git a/Mailman/mm_cfg.py.dist.in b/Mailman/mm_cfg.py.dist.in
index f8e525664..f43313b9d 100644
--- a/Mailman/mm_cfg.py.dist.in
+++ b/Mailman/mm_cfg.py.dist.in
@@ -17,7 +17,7 @@ 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: 392 $"
+__version__ = "$Revision: 423 $"
#######################################################
# Here's where we get the distributed defaults. #
@@ -31,7 +31,8 @@ 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'
-ARCHIVE_URL = 'http://www.python.org/pipermail'
+PUBLIC_ARCHIVE_URL = 'http://www.python.org/pipermail'
+PRIVATE_ARCHIVE_URL = 'http://www.python.org/cgi-bin/private
# Once we know our home directory we can figure out the rest.
HOME_DIR = '/home/mailman'
MAILMAN_DIR = '/home/mailman/mailman'
diff --git a/modules/mm_cfg.py.in b/modules/mm_cfg.py.in
index f8e525664..f43313b9d 100644
--- a/modules/mm_cfg.py.in
+++ b/modules/mm_cfg.py.in
@@ -17,7 +17,7 @@ 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: 392 $"
+__version__ = "$Revision: 423 $"
#######################################################
# Here's where we get the distributed defaults. #
@@ -31,7 +31,8 @@ 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'
-ARCHIVE_URL = 'http://www.python.org/pipermail'
+PUBLIC_ARCHIVE_URL = 'http://www.python.org/pipermail'
+PRIVATE_ARCHIVE_URL = 'http://www.python.org/cgi-bin/private
# Once we know our home directory we can figure out the rest.
HOME_DIR = '/home/mailman'
MAILMAN_DIR = '/home/mailman/mailman'
diff --git a/modules/mm_defaults.py b/modules/mm_defaults.py
index 02e560eba..31f470f7e 100644
--- a/modules/mm_defaults.py
+++ b/modules/mm_defaults.py
@@ -9,7 +9,7 @@ this file, to override the distributed defaults with site-specific ones.
import os
VERSION = '1.0b1.2'
-__version__ = "$Revision: 395 $"
+__version__ = "$Revision: 423 $"
# Many site-specific settings #
@@ -18,7 +18,8 @@ DEFAULT_HOST_NAME = 'OVERRIDE.WITH.YOUR.MX.OR.HOST.NAME'
SMTPHOST = 'localhost'
SENDMAIL_CMD = '/usr/lib/sendmail -f %s %s' # yours may be different
DEFAULT_URL = 'http://www.OVERRIDE.WITH.YOUR.HOST/mailman/'
-ARCHIVE_URL = 'http://www.OVERRIDE.WITH.YOUR.ARCHIVE.DIR/'
+PUBLIC_ARCHIVE_URL = 'http://www.OVERRIDE.WITH.YOUR.PUBLIC.ARCHIVE.URL/'
+PRIVATE_ARCHIVE_URL = 'http://www.OVERRIDE.WITH.YOUR.PRIVATE.ARCHIVE.URL/'
# Once we know our home directory we can figure out the rest.
HOME_DIR = '/home/mailman' # Override if you change
MAILMAN_DIR = '/home/mailman/mailman' # Override if you change
diff --git a/modules/mm_defaults.py.in b/modules/mm_defaults.py.in
index 02e560eba..31f470f7e 100644
--- a/modules/mm_defaults.py.in
+++ b/modules/mm_defaults.py.in
@@ -9,7 +9,7 @@ this file, to override the distributed defaults with site-specific ones.
import os
VERSION = '1.0b1.2'
-__version__ = "$Revision: 395 $"
+__version__ = "$Revision: 423 $"
# Many site-specific settings #
@@ -18,7 +18,8 @@ DEFAULT_HOST_NAME = 'OVERRIDE.WITH.YOUR.MX.OR.HOST.NAME'
SMTPHOST = 'localhost'
SENDMAIL_CMD = '/usr/lib/sendmail -f %s %s' # yours may be different
DEFAULT_URL = 'http://www.OVERRIDE.WITH.YOUR.HOST/mailman/'
-ARCHIVE_URL = 'http://www.OVERRIDE.WITH.YOUR.ARCHIVE.DIR/'
+PUBLIC_ARCHIVE_URL = 'http://www.OVERRIDE.WITH.YOUR.PUBLIC.ARCHIVE.URL/'
+PRIVATE_ARCHIVE_URL = 'http://www.OVERRIDE.WITH.YOUR.PRIVATE.ARCHIVE.URL/'
# Once we know our home directory we can figure out the rest.
HOME_DIR = '/home/mailman' # Override if you change
MAILMAN_DIR = '/home/mailman/mailman' # Override if you change