将 smtpd.PureProxy 与 HTTP 代理结合使用
我想设置 SMTP 中继服务器,它也需要使用 HTTP 代理。我正在使用Python。
SMTP 代理:
import smtpd
import asyncore
smtpd.PureProxy(('local host name', 1234), ('smtp server name', 25))
asyncore.loop()
问题是我需要使用 HTTP 代理才能连接到 SMTP 服务器。
我怎样才能指定它?
I want to set up SMTP relay server which also needs to use HTTP proxy. I'm using Python.
SMTP proxy:
import smtpd
import asyncore
smtpd.PureProxy(('local host name', 1234), ('smtp server name', 25))
asyncore.loop()
The issue is I need to use HTTP proxy in order to connect to SMTP server.
How can I specify it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
圆孔中的方钉。 SMTP 是与 HTTP 不同的协议,它们不兼容。
Square peg in round hole. SMTP is a different protocol to HTTP, they are incompatible.
我使用 desproxy 进行 HTTP 隧道 SMTP 连接。
I used desproxy to HTTP tunnel SMTP connection.