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 daniel-black
Recipients daniel-black, giampaolo.rodola, grooverdan, pitrou
Date 2012-08-20.07:28:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1345447705.04.0.971888565632.issue10852@psf.upfronthosting.co.za>
In-reply-to
Content
Antoine,

I copied off your http example for all the other protocols.

tested with:

import smtplib

a = smtplib.SMTP_SSL('gmail-smtp-in.l.google.com.')
a.starttls()

a = smtplib.SMTP_SSL('mail.internode.on.net')
a = smtplib.SMTP_SSL('smtp.gmail.com')

import ftplib
# http://secureftp-test.com/

f = ftplib.FTP_TLS('ftp.secureftp-test.com')
f.auth()

import imaplib
i = imaplib.IMAP4('calmail.berkley.edu')
i.starttls()

i = imaplib.IMAP4_SSL('mail.internode.on.net')

import poplib

p = poplib.POP3_SSL('calmail.berkley.edu')

import  nntplib 
n = nntplib.NNTP_SSL('news.internode.on.net')

I did a network capture and saw the hostname in the SNI header
History
Date User Action Args
2012-08-20 07:28:25daniel-blacksetrecipients: + daniel-black, pitrou, giampaolo.rodola, grooverdan
2012-08-20 07:28:25daniel-blacksetmessageid: <1345447705.04.0.971888565632.issue10852@psf.upfronthosting.co.za>
2012-08-20 07:28:04daniel-blacklinkissue10852 messages
2012-08-20 07:28:03daniel-blackcreate