diff options
author | bwarsaw <> | 2003-02-08 07:14:13 +0000 |
---|---|---|
committer | bwarsaw <> | 2003-02-08 07:14:13 +0000 |
commit | 925200da11d52ae4d7fc664bff898f8050bef687 (patch) | |
tree | 389bbd6c076718221b427d6d6e4fa199a1729ec0 /contrib | |
parent | dea51d7d5a5c5d8ea6900a838a12e230b7a000b6 (diff) | |
download | mailman2-925200da11d52ae4d7fc664bff898f8050bef687.tar.gz mailman2-925200da11d52ae4d7fc664bff898f8050bef687.tar.xz mailman2-925200da11d52ae4d7fc664bff898f8050bef687.zip |
Backporting from the trunk.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/qmail-to-mailman.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/qmail-to-mailman.py b/contrib/qmail-to-mailman.py index 76f25225..3e4e19d5 100644 --- a/contrib/qmail-to-mailman.py +++ b/contrib/qmail-to-mailman.py @@ -2,6 +2,7 @@ # Configuration variables - Change these for your site if necessary. MailmanHome = "@prefix@"; # Mailman home directory. +MailmanVar = "@VAR_PREFIX@"; # Mailman directory for mutable data. MailmanOwner = "postmaster@localhost"; # Postmaster and abuse mail recepient. # End of configuration variables. @@ -53,7 +54,7 @@ import sys, os, re, string def main(): os.nice(5) # Handle mailing lists at non-interactive priority. - os.chdir(MailmanHome + "/lists") + os.chdir(MailmanVar + "/lists") try: local = os.environ["LOCAL"] |