0

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?

4

2 回答 2

0

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

于 2011-03-01T03:45:49.273 回答
0

我使用desproxy到 HTTP 隧道 SMTP 连接。

于 2011-03-02T06:30:25.230 回答