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 christian.heimes
Recipients christian.heimes, rares, ryanhiebert
Date 2021-03-17.17:24:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1616001866.7.0.249000469221.issue29687@roundup.psfhosted.org>
In-reply-to
Content
The Python standard library has no builtin support for socks proxy. I suggest that you report issues with socks library to the author of the package.

By the way the smptlib makes it really easy to override the socket object with a custom implementation:

class SocksSMTP(smtplib.SMTP):
    def _get_socket(self, host, port, timeout):
        return some_socket_like_object(...)
History
Date User Action Args
2021-03-17 17:24:26christian.heimessetrecipients: + christian.heimes, ryanhiebert, rares
2021-03-17 17:24:26christian.heimessetmessageid: <1616001866.7.0.249000469221.issue29687@roundup.psfhosted.org>
2021-03-17 17:24:26christian.heimeslinkissue29687 messages
2021-03-17 17:24:26christian.heimescreate