Python smtplib:绑定到具有多个网络接口的机器中的特定源IP地址

发布于 2024-10-18 06:44:19 字数 64 浏览 1 评论 0原文

在具有多个网络接口的主机上,是否可以将 Python smtplib 中的 connect 方法绑定到特定源地址?

On a host with multiple network interfaces, is it possible to bind the connect method from the Python smtplib to an specific source address?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

野心澎湃 2024-10-25 06:44:19

这个问题产生了一个新功能/提交:
smtplib:添加绑定到特定源 IP 地址/端口的功能

smtplib .SMTP 构造函数获得了新参数 source_address,您可以使用该参数指定传出 SMTP 连接的源 IP 地址:

smtpserver = smtplib.SMTP("smtp.gmail.com", 587, source_address=("127.0.0.1", 0))

This question resulted in a new feature/commit:
smtplib: add ability to bind to specific source IP address/port

The smtplib.SMTP constructor got new parameter source_address, which you can use to specify the source IP address for the outgoing SMTP connection:

smtpserver = smtplib.SMTP("smtp.gmail.com", 587, source_address=("127.0.0.1", 0))
淡墨 2024-10-25 06:44:19

没有这样的选择 - 至少没有自己破解 smtplib.connect() 。

No such option - at least not without hacking smtplib.connect() yourself.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文