适用于Ubuntu的简单邮件系统?


8

我在寻找什么应该相对容易。我要做的就是为Ubuntu设置一个很小的东西,使我可以从Web服务器(/ var / www /)使用PHP中的mail()函数。我不要任何复杂的事情。我的电子邮件设置为noreply@mybusiness.com,因此如有必要,我可以将其用作回复地址。但是我只希望能够发送邮件,而不希望在我的Web服务器上接收任何邮件。谢谢

顺便说一句,我已经尝试了exim4(顺便说一句,如果可以做我想做的事,我应该选择哪个设置?)​​,我已经尝试了ssmtp,但是对ssmtp却没有运气。谢谢。

Answers:


6

只是做一个

sudo dpkg-reconfigure exim4-config

并选择“ smarthost发送的邮件;无本地邮件”选项。现在为选项:

您去了:一分钟内即可完成Debian / Ubuntu的完整邮件设置!


4

如果您只是发送邮件,则可以尝试使用nullmailer,它位于Jaunty的Ubuntu Extras存储库中(能力“显示”输出):

Package: nullmailer
Description: simple relay-only mail transport agent
 Nullmailer is a replacement MTA for hosts, which relay to a fixed set of smart
 relays. It is designed to be simple to configure and especially useful on slave
 machines and in chroots. 

 The sendmail interface of this package doesn't provide the -bs switch, hence
 it's not LSB compatible!
Homepage: http://untroubled.org/nullmailer/

链接到项目主页:此处


4

您仍然需要使用有效的SMTP服务器ssmtp。一旦配置ssmtp为与上游SMTP服务器对话,它将通过该服务器中继所有电子邮件。这通常是您的ISP服务器或第三方SMTP服务器。





0

Postfix非常不错。它可以从存储库很好地安装,并且只有两个文件具有干净的配置。

仅用于发送。

apt-get安装后缀。

提示您时选择Internet主机,

输入正确的主机名(应使用反向DNS解析)

完成。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.