diff options
| author | Barry Warsaw | 2008-07-05 10:41:12 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2008-07-05 10:41:12 -0400 |
| commit | dda21fc619518344dfc44081c64674f6374fe404 (patch) | |
| tree | c5b379ad5d375046094185767d2a0448691e41be /mailman/bin/testall.py | |
| parent | 408043ad8404798e9b8b93a1ee1cd81db897639c (diff) | |
| download | mailman-dda21fc619518344dfc44081c64674f6374fe404.tar.gz mailman-dda21fc619518344dfc44081c64674f6374fe404.tar.zst mailman-dda21fc619518344dfc44081c64674f6374fe404.zip | |
Diffstat (limited to 'mailman/bin/testall.py')
| -rw-r--r-- | mailman/bin/testall.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mailman/bin/testall.py b/mailman/bin/testall.py index e7b3c445b..880130172 100644 --- a/mailman/bin/testall.py +++ b/mailman/bin/testall.py @@ -34,6 +34,7 @@ import pkg_resources from mailman.configuration import config from mailman.i18n import _ from mailman.initialize import initialize_1, initialize_2 +from mailman.testing.helpers import SMTPServer from mailman.version import MAILMAN_VERSION @@ -226,10 +227,11 @@ def main(): with open(cfg_out, 'a') as fp: print >> fp, 'VAR_DIR = "%s"' % var_dir print >> fp, 'MAILMAN_USER = "%s"' % user_name - print >> fp, 'MAILMAN_UID = %d' % user_id + print >> fp, 'MAILMAN_UID =', user_id print >> fp, 'MAILMAN_GROUP = "%s"' % group_name - print >> fp, 'MAILMAN_GID = %d' % group_id + print >> fp, 'MAILMAN_GID =', group_id print >> fp, "LANGUAGES = 'en'" + print >> fp, 'SMTPPORT =', SMTPServer.port initialize_1(cfg_out, propagate_logs=parser.options.stderr) mailman_uid = pwd.getpwnam(config.MAILMAN_USER).pw_uid |
