将 smtpd.PureProxy 与 HTTP 代理结合使用

发布于 2024-10-19 23:02:18 字数 266 浏览 3 评论 0原文

我想设置 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 技术交流群。

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

发布评论

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

评论(2

祁梦 2024-10-26 23:02:18

圆孔中的方钉。 SMTP 是与 HTTP 不同的协议,它们不兼容。

Square peg in round hole. SMTP is a different protocol to HTTP, they are incompatible.

又怨 2024-10-26 23:02:18

我使用 desproxy 进行 HTTP 隧道 SMTP 连接。

I used desproxy to HTTP tunnel SMTP connection.

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