lp://staging/~kaaloo/bzr-email/smtp_gmail
Created by
Luis Arias
and last modified
- Get this branch:
- bzr branch lp://staging/~kaaloo/bzr-email/smtp_gmail
Only
Luis Arias
can upload to this branch. If you are
Luis Arias
please log in for upload directions.
Branch merges
Propose for merging
No branches
dependent on this one.
Branch information
Recent revisions
- 30. By Luis Arias <email address hidden>
-
Fixed bug with smtp.gmail.com on port 587. The server needs to have an ehlo before starting TLS.
Since smtplib doesn't redo an ehlo if one has already been done, you have to do another one
immediately after starttls() because the server doesn't announce AUTH capability until
TLS has started. - 24. By John A Meinel
-
Switch to using a local repository if available,
also do most actions inside a single read lock, so the repository
information doesn't need to be read repeatedly. - 23. By John A Meinel
-
Can't have a lazy imported object with the identical name as the actual module.
It causes other code to access the member rather than accessing
the module, causing an eventual lazy_import failure.