Python smtplib:绑定到具有多个网络接口的机器中的特定源IP地址
在具有多个网络接口的主机上,是否可以将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个问题产生了一个新功能/提交:
smtplib:添加绑定到特定源 IP 地址/端口的功能
smtplib .SMTP
构造函数获得了新参数source_address
,您可以使用该参数指定传出 SMTP 连接的源 IP 地址: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 parametersource_address
, which you can use to specify the source IP address for the outgoing SMTP connection:没有这样的选择 - 至少没有自己破解 smtplib.connect() 。
No such option - at least not without hacking smtplib.connect() yourself.