This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author maurosr
Recipients barry, maurosr, r.david.murray
Date 2015-10-08.20:44:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1444337093.32.0.972963558846.issue25328@psf.upfronthosting.co.za>
In-reply-to
Content
Hi Barry, I was testing this and it seems to work, am I doing something wrong in order to reproduce it? I've used the same parameters from the unit tests

Python 3.5.0+ (3.5:1e99ba6b7c98, Oct  8 2015, 17:12:06) 
[GCC 4.8.4] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import smtpd
>>> smtpd.SMTPServer(("127.0.0.1", 0), ('b',0),enable_SMTPUTF8=True,decode_data=True)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/maurosr/dev/cpython/Lib/smtpd.py", line 645, in __init__
    raise ValueError("The decode_data and enable_SMTPUTF8"
ValueError: The decode_data and enable_SMTPUTF8 parameters cannot be set to True at the same time.
History
Date User Action Args
2015-10-08 20:44:53maurosrsetrecipients: + maurosr, barry, r.david.murray
2015-10-08 20:44:53maurosrsetmessageid: <1444337093.32.0.972963558846.issue25328@psf.upfronthosting.co.za>
2015-10-08 20:44:53maurosrlinkissue25328 messages
2015-10-08 20:44:53maurosrcreate