[issue36094] When using an SMTP SSL connection,, get ValueError.

2021-02-23 Thread Gert Burger
Change by Gert Burger : -- nosy: +gertburger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue36094] When using an SMTP SSL connection,, get ValueError.

2020-12-04 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +22503 pull_request: https://github.com/python/cpython/pull/23635 ___ Python tracker ___ ___

[issue36094] When using an SMTP SSL connection,, get ValueError.

2020-12-03 Thread Roundup Robot
Change by Roundup Robot : -- nosy: +python-dev nosy_count: 8.0 -> 9.0 pull_requests: +22499 pull_request: https://github.com/python/cpython/pull/23490 ___ Python tracker ___ __

[issue36094] When using an SMTP SSL connection,, get ValueError.

2020-10-02 Thread Alice Bevan-McGregor
Alice Bevan-McGregor added the comment: Howdy! One of my projects, Marrow Mailer (formerly TurboMail) has received a bit of a flood of reports and erroneous pull requests attempting to correct this bug in the invocation of smtplib by Mailer. https://github.com/marrow/mailer/issues/83 is our

[issue36094] When using an SMTP SSL connection,, get ValueError.

2020-09-04 Thread Peter Stokes
Peter Stokes added the comment: I wanted to enquire as to if/when the proposed PR11998 is likely to be merged? I also wanted to note the similarity between this issue and issue41470 and to suggest that whilst the change proposed in commit e445ccbc of PR11998 [1] would be welcome, there may be

[issue36094] When using an SMTP SSL connection,, get ValueError.

2019-02-23 Thread Cheryl Sabella
Cheryl Sabella added the comment: tyrone-zhao, thank you for the report and the detail on the commit. Adding @christian.heimes to the nosylist as he added change this under issue19785 and @dstufft as he modified it to be `self._host`. -- nosy: +cheryl.sabella, christian.heimes, dstuf

[issue36094] When using an SMTP SSL connection,, get ValueError.

2019-02-23 Thread SilentGhost
Change by SilentGhost : -- stage: patch review -> type: resource usage -> behavior versions: +Python 3.8 ___ Python tracker ___ ___

[issue36094] When using an SMTP SSL connection,, get ValueError.

2019-02-23 Thread SilentGhost
Change by SilentGhost : -- stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue36094] When using an SMTP SSL connection,, get ValueError.

2019-02-23 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +12027 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-l

[issue36094] When using an SMTP SSL connection,, get ValueError.

2019-02-23 Thread 赵军昱
New submission from 赵军昱 <200612...@qq.com>: The following bug occurs when you connect after creating an instance of SMTP_SSL: ``` import smtplib smtp_server = "smtp.163.com" con2 = smtplib.SMTP_SSL() con2.connect(smtp_server, 465) ``` ValueError: server_hostname cannot be an empty string or st