diff options
| author | klm | 1998-04-13 18:09:29 +0000 |
|---|---|---|
| committer | klm | 1998-04-13 18:09:29 +0000 |
| commit | 2b1d50f7c157e886a04207a9413d7e4feb7165bf (patch) | |
| tree | 33536d9f61c9b4843762ac147ee62595e757d8e1 /modules/mm_defaults.py | |
| parent | 4c7116bff3c0adc18c3fd0c9b75645a30a626dc8 (diff) | |
| download | mailman-2b1d50f7c157e886a04207a9413d7e4feb7165bf.tar.gz mailman-2b1d50f7c157e886a04207a9413d7e4feb7165bf.tar.zst mailman-2b1d50f7c157e886a04207a9413d7e4feb7165bf.zip | |
Send messages by connecting directly to port 25 and talking SMTP to
whatever mail delivery agent is there.
Diffstat (limited to 'modules/mm_defaults.py')
| -rw-r--r-- | modules/mm_defaults.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/modules/mm_defaults.py b/modules/mm_defaults.py index 31f470f7e..f5c82d242 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: 423 $" +__version__ = "$Revision: 445 $" # Many site-specific settings # @@ -21,8 +21,10 @@ DEFAULT_URL = 'http://www.OVERRIDE.WITH.YOUR.HOST/mailman/' 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 +# BUT, if you override these in mm_cfg.py, you have to override the dependants +# as well. +HOME_DIR = '/home/mailman' +MAILMAN_DIR = '/home/mailman/mailman' LIST_DATA_DIR = os.path.join(MAILMAN_DIR, 'lists') HTML_DIR = os.path.join(HOME_DIR, 'public_html') CGI_DIR = os.path.join(HOME_DIR, 'cgi-bin') |
