diff options
| author | klm | 1998-03-08 05:25:31 +0000 |
|---|---|---|
| committer | klm | 1998-03-08 05:25:31 +0000 |
| commit | 766e5f54fc6f368456b69ebac33e9320f519556c (patch) | |
| tree | 4da34caffd0f516ddb9f4fb96e9d8a766e8f89c0 /modules/mm_defaults.py | |
| parent | 7d79271ae874f0b14459b3eb79117e283e4e4e9a (diff) | |
| download | mailman-766e5f54fc6f368456b69ebac33e9320f519556c.tar.gz mailman-766e5f54fc6f368456b69ebac33e9320f519556c.tar.zst mailman-766e5f54fc6f368456b69ebac33e9320f519556c.zip | |
Diffstat (limited to 'modules/mm_defaults.py')
| -rw-r--r-- | modules/mm_defaults.py | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/modules/mm_defaults.py b/modules/mm_defaults.py index 18fa8b0d2..e2aac6d4c 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.1' -__version__ = VERSION + "$Revision: 123 $" +__version__ = VERSION + "$Revision: 149 $" # Many site-specific settings # @@ -21,19 +21,17 @@ ARCHIVE_URL = 'http://www.OVERRIDE.WITH.YOUR.ARCHIVE.DIR/' # 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 - -# System ceiling on number of batches into which deliveries are divided: -MAX_SPAWNS = 40 - 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') +LOG_DIR = os.path.join(HOME_DIR, 'logs') LOCK_DIR = os.path.join(MAILMAN_DIR, 'locks') TEMPLATE_DIR = os.path.join(MAILMAN_DIR, 'templates') HOME_PAGE = 'index.html' MAILMAN_OWNER = 'mailman-owner@%s' % DEFAULT_HOST_NAME -# I don't think this is used any more -MAIL_LOG = '/var/log/maillog' + +# System ceiling on number of batches into which deliveries are divided: +MAX_SPAWNS = 40 # General Defaults # @@ -58,6 +56,10 @@ DEFAULT_MSG_FOOTER = """---------------------------- DEFAULT_MODERATED = 0 # Bounce if 'to' or 'cc' fields don't explicitly name list (anti-spam)? DEFAULT_REQUIRE_EXPLICIT_DESTINATION = 1 +# {header-name: regexp} spam filtering - we include one for example sake! +DEFAULT_BOUNCE_MATCHING_HEADERS = """ +to: friend@public.com +""" # Replies to posts inherently directed to list or original sender? DEFAULT_REPLY_GOES_TO_LIST = 0 # Admin approval unnecessary for subscribes? |
