Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写邮件服务器,并希望将邮件发送到我的服务器。我的服务器应用程序在 25 端口监听,但我不知道它应该监听哪个地址。
try { listener = new Listener(Address, Port); listener.Start(); }
如果我发送到我的新邮件(使用我的新域),服务器如何收听它?或者如果我在服务器中使用 127.0.0.1 地址,客户端如何找到服务器?
您需要收听发送邮件的机器可见的内容。
127.0.0.1 用于环回接口,因此监听它只会让您接收来自服务器本身的邮件。
您可以在 0.0.0.0 上收听以覆盖所有网络接口。