Skip to content

Commit

Permalink
Forward-port fix for lp:191143 from the 3.7 branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed May 23, 2012
1 parent 699aabc commit 90d3fd3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ CHANGES
4.0.0 (unreleased)
------------------

- Ensured that the 'queuedDelivery' directive has the same discriminator
as the 'directDelivery' directive (they are mutually incompatible).
https://bugs.launchpad.net/zope.sendmail/+bug/191143

- Avoid requeuing messages after an SMTP "recipients refused" error.
https://bugs.launchpad.net/zope.sendmail/+bug/1003288

Expand Down
2 changes: 1 addition & 1 deletion src/zope/sendmail/zcml.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def createQueuedDelivery():
thread.start()

_context.action(
discriminator = ('delivery', name),
discriminator = ('utility', IMailDelivery, name),
callable = createQueuedDelivery,
args = () )

Expand Down

0 comments on commit 90d3fd3

Please sign in to comment.