[issue3461] smtplib does not fully support IPv6 in EHLO

2020-11-10 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.8, Python 3.9 -Python 2.7, Python 3.1, Python 3.2 ___ Python tracker ___ __

[issue3461] smtplib does not fully support IPv6 in EHLO

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue3461] smtplib does not fully support IPv6 in EHLO

2013-01-23 Thread R. David Murray
Changes by R. David Murray : -- components: +email nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-12 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: You might want to take a look at Lib/test/test_ftplib.py which contains IPv6 tests including the necessary logic to decide whether or not running them. -- ___ Python tracker __

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-12 Thread Derek Morr
Derek Morr added the comment: I'm not sure how to best write a unit test for this. The patch should only be invoked if the client doesn't have a name-served hostname and has IPv6 enabled. Also, there are several IPv4-isms in the smtplib tests. -- _

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-08 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-06 Thread R. David Murray
R. David Murray added the comment: The patch still needs unit tests. -- nosy: +r.david.murray stage: commit review -> unit test needed ___ Python tracker ___

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-06 Thread Mark Lawrence
Mark Lawrence added the comment: Ran test_smtplib.py for Python 2.7 and 3.1.2 on Windows Vista all tests passed. -- stage: unit test needed -> commit review ___ Python tracker __

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-05 Thread R. David Murray
Changes by R. David Murray : -- versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-05 Thread R. David Murray
Changes by R. David Murray : -- versions: +Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-05 Thread R. David Murray
Changes by R. David Murray : -- stage: -> unit test needed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-04 Thread Derek Morr
Derek Morr added the comment: You're right. My mistake when I made the patch. I've attached a new one without the trailing else -- Added file: http://bugs.python.org/file17863/smtplib.patch ___ Python tracker

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-04 Thread Mark Lawrence
Mark Lawrence added the comment: I intended testing this but the patch file appears to have a dangling else at the bottom, or am I missing something? -- nosy: +BreamoreBoy ___ Python tracker __

[issue3461] smtplib does not fully support IPv6 in EHLO

2008-07-28 Thread Derek Morr
New submission from Derek Morr <[EMAIL PROTECTED]>: On an IPv6-only machine, smtplib does not send an IPv6 address in the EHLO. It sends "EHLO [0.0.0.0]" instead. For example, on a v6-only network with stateless autoconfiguration enabled (a common configuration), smtplib will show this error.