summaryrefslogtreecommitdiff
path: root/modules/mm_cfg.py.in
diff options
context:
space:
mode:
Diffstat (limited to 'modules/mm_cfg.py.in')
-rw-r--r--modules/mm_cfg.py.in59
1 files changed, 0 insertions, 59 deletions
diff --git a/modules/mm_cfg.py.in b/modules/mm_cfg.py.in
deleted file mode 100644
index c8f3a4ec6..000000000
--- a/modules/mm_cfg.py.in
+++ /dev/null
@@ -1,59 +0,0 @@
-# -*- python -*-
-
-# Copyright (C) 1998 by the Free Software Foundation, Inc.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-
-"""This is the module which takes your site-specific settings.
-
-From a raw distribution it should be copied to mm_cfg.py. If you
-already have an mm_cfg.py, be careful to add in only the new settings
-you want. The complete set of distributed defaults, with annotation,
-are in ./mm_defaults. In mm_cfg, override only those you want to
-change, after the
-
- from mm_defaults import *
-
-line (see below).
-
-Note that these are just default settings - many can be overridden via the
-admin and user interfaces on a per-list or per-user basis.
-
-Note also that some of the settings are resolved against the active list
-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."""
-
-
-#######################################################
-# Here's where we get the distributed defaults. #
-
-from mm_defaults import *
-
-##############################################################
-# Put YOUR site-specific configuration below, in mm_cfg.py . #
-# See mm_defaults.py for explanations of the values. #
-
-DEFAULT_HOST_NAME = '@FQDN@'
-DEFAULT_URL = 'http://@URL@/mailman'
-
-MAILMAN_OWNER = 'mailman-owner@%s' % DEFAULT_HOST_NAME
-
-PUBLIC_ARCHIVE_URL = '/pipermail'
-PRIVATE_ARCHIVE_URL = '/mailman/private'
-
-# (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.)