~sambuddhabasu1/mailman/fix_mailman_run_error

« back to all changes in this revision

Viewing changes to Mailman/data/mailman.cfg.in

  • Committer: Barry Warsaw
  • Date: 2007-07-21 20:19:54 UTC
  • mfrom: (6530.1.10 setup)
  • Revision ID: barry@python.org-20070721201954-18wbxbgil0psoijo
Merge the setuptools branch.  Fix a couple of test modules that are
disabled anyway.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
"""This module contains your site-specific settings.
21
21
 
22
 
Use this to override the default settings in Mailman/Defaults.py.  You only
 
22
Use this to override the default settings in `Mailman/Defaults.py`.  You only
23
23
need to include those settings that you want to change, and unlike the old
24
 
mm_cfg.py file, you do /not/ need to import Defaults.  Its variables will
 
24
`mm_cfg.py` file, you do /not/ need to `import Defaults`.  Its variables will
25
25
automatically be available in this module's namespace.
26
26
 
27
 
You should consult Defaults.py though for a complete listing of configuration
28
 
variables that you can change.
29
 
 
30
 
To use this, copy this file to $VAR_PREFIX/etc/mailman.cfg
31
 
 
32
 
Mailman's installation procedure will never overwrite mailman.cfg.
 
27
You should consult `Defaults.py` though for a complete listing of
 
28
configuration variables that you can change.
 
29
 
 
30
Mailman's installation procedure will never overwrite `mailman.cfg`.
33
31
"""
 
32
 
 
33
# This is the top-level run-time data directory.  All other runtime data by
 
34
# default lives under this directory.
 
35
VAR_DIR = '$var_dir'
 
36
 
 
37
# User name and id that owns the Mailman process and files.
 
38
MAILMAN_UID  = '$user_id'
 
39
MAILMAN_USER = '$user_name'
 
40
 
 
41
# Group name and id that owns the Mailman process and files.
 
42
MAILMAN_GID   = '$group_id'
 
43
MAILMAN_GROUP = '$group_name'
 
44
 
 
45
LANGUAGES = '$languages'