|
Revision 1151, 2.4 kB
(checked in by root, 6 years ago)
|
Initial revision
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
"""This is the module which takes your site-specific settings. |
|---|
| 21 |
|
|---|
| 22 |
From a raw distribution it should be copied to mm_cfg.py. If you |
|---|
| 23 |
already have an mm_cfg.py, be careful to add in only the new settings |
|---|
| 24 |
you want. The complete set of distributed defaults, with annotation, |
|---|
| 25 |
are in ./Defaults. In mm_cfg, override only those you want to |
|---|
| 26 |
change, after the |
|---|
| 27 |
|
|---|
| 28 |
from Defaults import * |
|---|
| 29 |
|
|---|
| 30 |
line (see below). |
|---|
| 31 |
|
|---|
| 32 |
Note that these are just default settings - many can be overridden via the |
|---|
| 33 |
admin and user interfaces on a per-list or per-user basis. |
|---|
| 34 |
|
|---|
| 35 |
Note also that some of the settings are resolved against the active list |
|---|
| 36 |
setting by using the value as a format string against the |
|---|
| 37 |
list-instance-object's dictionary - see the distributed value of |
|---|
| 38 |
DEFAULT_MSG_FOOTER for an example.""" |
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
|
|---|
| 43 |
|
|---|
| 44 |
from Defaults import * |
|---|
| 45 |
|
|---|
| 46 |
|
|---|
| 47 |
|
|---|
| 48 |
|
|---|
| 49 |
|
|---|
| 50 |
DEFAULT_HOST_NAME = '%%fqdn%%' |
|---|
| 51 |
DEFAULT_URL = 'http://%%fqdn%%/cgi-bin/mailman/' |
|---|
| 52 |
IMAGE_LOGOS = '/mimages/' |
|---|
| 53 |
USE_ENVELOPE_SENDER = 0 |
|---|
| 54 |
DEFAULT_SEND_REMINDERS = 0 |
|---|
| 55 |
|
|---|
| 56 |
MAILMAN_OWNER = 'root@%%fqdn%%' |
|---|
| 57 |
|
|---|
| 58 |
PUBLIC_ARCHIVE_URL = '/marchives/%(listname)s' |
|---|
| 59 |
PRIVATE_ARCHIVE_URL = '/cgi-bin/mailman/private/%(listname)s' |
|---|
| 60 |
DEFAULT_ARCHIVE_PRIVATE = 1 |
|---|
| 61 |
|
|---|
| 62 |
DEFAULT_SERVER_LANGUAGE = 'fr' |
|---|
| 63 |
|
|---|
| 64 |
|
|---|
| 65 |
|
|---|
| 66 |
|
|---|
| 67 |
|
|---|