diff options
| author | bwarsaw | 2006-09-25 07:53:58 +0000 |
|---|---|---|
| committer | bwarsaw | 2006-09-25 07:53:58 +0000 |
| commit | 7b0eb31f63e0a4a735e31f7662e4c23d1f12204a (patch) | |
| tree | 1b931af7a47086c621d5c62d0f982f2809589394 /Mailman/bin/leave.py | |
| parent | 8157935353a960cd03a72e403e8638b016c8e9a1 (diff) | |
| download | mailman-7b0eb31f63e0a4a735e31f7662e4c23d1f12204a.tar.gz mailman-7b0eb31f63e0a4a735e31f7662e4c23d1f12204a.tar.zst mailman-7b0eb31f63e0a4a735e31f7662e4c23d1f12204a.zip | |
Diffstat (limited to 'Mailman/bin/leave.py')
| -rw-r--r-- | Mailman/bin/leave.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/bin/leave.py b/Mailman/bin/leave.py index 9687906de..16c35bb0b 100644 --- a/Mailman/bin/leave.py +++ b/Mailman/bin/leave.py @@ -28,8 +28,8 @@ import logging from Mailman import Utils from Mailman import loginit -from Mailman import mm_cfg from Mailman.Queue.sbcache import get_switchboard +from Mailman.configuration import config from Mailman.i18n import _ __i18n_templates__ = True @@ -54,7 +54,7 @@ def main(): # some MTAs have a hard limit to the time a filter prog can run. Postfix # is a good example; if the limit is hit, the proc is SIGKILL'd giving us # no chance to save the message. - cmdq = get_switchboard(mm_cfg.CMDQUEUE_DIR) + cmdq = get_switchboard(config.CMDQUEUE_DIR) cmdq.enqueue(sys.stdin.read(), listname=listname, toleave=True, _plaintext=True) |
