# HG changeset patch # User Thomas De Schampheleire # Date 2017-01-27 19:49:01 # Node ID 9eae297d3d5b85cc9b717e315b33636b17a500ef # Parent e223c36e5b68ed1e40d81f7c42d41f602007d465 docs: smtp_port is now respected by backlash Support for a custom smtp_port was recently added to backlash, so bump backlash and update the documentation to reflect that. diff --git a/docs/usage/email.rst b/docs/usage/email.rst --- a/docs/usage/email.rst +++ b/docs/usage/email.rst @@ -85,10 +85,6 @@ contain only an email address, like `kal a name and an address in the following format: `Kallithea Errors `. -*Note:* The WebError_ package does not respect ``smtp_port`` and assumes the -standard SMTP port (25). If you have a remote SMTP server with a different port, -you could set up a local forwarding SMTP server on port 25. - References ---------- diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ requirements = [ "GearBox<1", "waitress>=0.8.8,<1.0", "webob>=1.7,<2", - "backlash >= 0.1.1, < 1.0.0", + "backlash >= 0.1.2, < 1.0.0", "TurboGears2 >= 2.3.10, < 3.0.0", "tgext.routes >= 0.2.0, < 1.0.0", "Beaker>=1.7.0,<2",