summaryrefslogtreecommitdiff
path: root/Mailman/Utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'Mailman/Utils.py')
-rw-r--r--Mailman/Utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Utils.py b/Mailman/Utils.py
index ff927a5c8..4d73e8751 100644
--- a/Mailman/Utils.py
+++ b/Mailman/Utils.py
@@ -179,7 +179,7 @@ def DeliverToUser(msg, recipient, add_headers=[]):
text = string.join(msg.headers, '')+ '\n'+ QuotePeriods(msg.body)
import OutgoingQueue
- OutgoingQueue.enqueueMessage(sender, recipient, text)
+ queue_id = OutgoingQueue.enqueueMessage(sender, recipient, text)
TrySMTPDelivery(recipient,sender,text,queue_id)
# Just in case there's still something waiting to be sent...
OutgoingQueue.processQueue()