安装 Postfix 而不使用 MySQL? (我想要的只是从 Django/PHP 发送邮件)

发布于 2024-09-18 00:47:02 字数 1459 浏览 8 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

不羁少年 2024-09-25 00:47:02

经过大量研究,我发现我需要做的是将 Postfix 设置为“空客户端”。这意味着没有用户可言,只会发送电子邮件。虽然有点繁琐,但执行此操作所需的主要内容可以在这里找到:

http: //www.postfix.org/STANDARD_CONFIGURATION_README.html#null_client

After much research, I found what I needed to do was setup Postfix as a 'Null client'. This means there is no users to speak of and will only send out email. Though a bit fiddly, the main bulk of what is needed to do this can be found here:

http://www.postfix.org/STANDARD_CONFIGURATION_README.html#null_client

甜妞爱困 2024-09-25 00:47:02

还有exim。请咨询您的 VPS 提供商,看他们是否已包含该软件的有效安装,以及在托管提供商中使用的 smtp 服务器或中继(如果有)。

如果没有这样的情况,PHP 端的一个粗略解决方案是在 php.ini 中设置一个 smtp 服务器,以便简单的 mail() 可以直接工作。

[mail function]
SMTP = smtp.server.ext
sendmail_from = [email protected]

There's exim too. Check with your VPS provider in case they already include a working installation of that, as well as what smtp server or relay to use in the hosting provider, if any.

If there's nothing like that, a crude solution for the PHP side is setting an smtp server in php.ini so that simple mail() will work outright.

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