diff options
| author | Barry Warsaw | 2007-09-29 14:55:25 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2007-09-29 14:55:25 -0400 |
| commit | 3e9ed398b6a05c69daca14c8226ca7f57c164c21 (patch) | |
| tree | b0ae2e9771a80f9e0e6218871bbe2d281120202c /Mailman/Handlers/ToOutgoing.py | |
| parent | cbf2967239163e42cc2b25eece7bb5cb71b197fe (diff) | |
| download | mailman-3e9ed398b6a05c69daca14c8226ca7f57c164c21.tar.gz mailman-3e9ed398b6a05c69daca14c8226ca7f57c164c21.tar.zst mailman-3e9ed398b6a05c69daca14c8226ca7f57c164c21.zip | |
Diffstat (limited to 'Mailman/Handlers/ToOutgoing.py')
| -rw-r--r-- | Mailman/Handlers/ToOutgoing.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Handlers/ToOutgoing.py b/Mailman/Handlers/ToOutgoing.py index ff263e9a3..15ceb8311 100644 --- a/Mailman/Handlers/ToOutgoing.py +++ b/Mailman/Handlers/ToOutgoing.py @@ -22,8 +22,8 @@ posted to the list membership. Anything else that needs to go out to some recipient should just be placed in the out queue directly. """ -from Mailman.Queue.sbcache import get_switchboard from Mailman.configuration import config +from Mailman.queue import Switchboard @@ -52,5 +52,5 @@ def process(mlist, msg, msgdata): # VERP every `interval' number of times msgdata['verp'] = not (int(mlist.post_id) % interval) # And now drop the message in qfiles/out - outq = get_switchboard(config.OUTQUEUE_DIR) + outq = Switchboard(config.OUTQUEUE_DIR) outq.enqueue(msg, msgdata, listname=mlist.fqdn_listname) |
