[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 breamore...@yahoo.co.uk: -- nosy: -BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3461 ___ ___

[issue3461] smtplib does not fully support IPv6 in EHLO

2013-01-23 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- components: +email nosy: +barry ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3461 ___ ___

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-12 Thread Derek Morr
Derek Morr derekm...@psu.edu 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-12 Thread Giampaolo Rodola'
Giampaolo Rodola' g.rod...@gmail.com 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-08 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +giampaolo.rodola ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3461 ___ ___ Python-bugs-list

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-06 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk 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 rep...@bugs.python.org

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-06 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: The patch still needs unit tests. -- nosy: +r.david.murray stage: commit review - unit test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3461

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-05 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- stage: - unit test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3461 ___ ___

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-05 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3461 ___ ___

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-05 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3461 ___ ___

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-04 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk 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 rep...@bugs.python.org

[issue3461] smtplib does not fully support IPv6 in EHLO

2010-07-04 Thread Derek Morr
Derek Morr derekm...@psu.edu 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 rep...@bugs.python.org

[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.