diff options
| -rw-r--r-- | Mailman/mm_cfg.py.dist.in | 43 |
1 files changed, 14 insertions, 29 deletions
diff --git a/Mailman/mm_cfg.py.dist.in b/Mailman/mm_cfg.py.dist.in index 646f2bfcd..2895eb575 100644 --- a/Mailman/mm_cfg.py.dist.in +++ b/Mailman/mm_cfg.py.dist.in @@ -16,44 +16,29 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +"""This module contains your site-specific settings. -"""This is the module which takes your site-specific settings. +From a brand new 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. Mailman's installation procedure will never overwrite your mm_cfg.py +file. -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 ./Defaults. In mm_cfg, override only those you want to -change, after the +The complete set of distributed defaults, with documentation, are in the file +Defaults.py. In mm_cfg.py, override only those you want to change, after the from 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 that these are just default settings; many can be overridden via the +administrator 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. # +############################################### +# Here's where we get the distributed defaults. from Defaults import * -############################################################## -# Put YOUR site-specific configuration below, in mm_cfg.py . # -# See 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 Defaults.py. +################################################## +# Put YOUR site-specific settings below this line. |
