diff options
| author | bwarsaw | 2002-02-09 03:47:19 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-02-09 03:47:19 +0000 |
| commit | 975e43f8ca04346b7e391b263c8169c71ff5aaf2 (patch) | |
| tree | bc5548c86759b7d966e03e2de9a500bd2a454227 | |
| parent | d25f7609dbbc7dbe5c1df56f0c7edb7851108f5a (diff) | |
| download | mailman-975e43f8ca04346b7e391b263c8169c71ff5aaf2.tar.gz mailman-975e43f8ca04346b7e391b263c8169c71ff5aaf2.tar.zst mailman-975e43f8ca04346b7e391b263c8169c71ff5aaf2.zip | |
| -rw-r--r-- | Mailman/Defaults.py.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in index 3191551d3..bb147069c 100644 --- a/Mailman/Defaults.py.in +++ b/Mailman/Defaults.py.in @@ -325,6 +325,13 @@ MTA = 'Manual' # of the mailing lists. See README.POSTFIX for details. POSTFIX_STYLE_VIRTUAL_DOMAINS = [] +# These variables describe the program to use for regenerating the aliases.db +# and virtual-mailman.db files, respectively, from the associated plain text +# files. The file being updated will be appended to this string (with a +# separating space), so it must be appropriate for os.system(). +POSTFIX_ALIAS_CMD = '/usr/sbin/postalias' +POSTFIX_MAP_CMD = '/usr/sbin/postmap' + # Ceiling on the number of recipients that can be specified in a single SMTP # transaction. Set to 0 to submit the entire recipient list in one # transaction. Only used with the SMTPDirect DELIVERY_MODULE. |
