PHP、postfix、sendmail、thunderbird 仅适用于本地开发

发布于 2024-07-29 06:23:23 字数 192 浏览 6 评论 0原文

嘿,我正在尝试让 php 的邮件功能在我的本地开发盒上工作,这样所有使用 mail() 发送的邮件,无论收件人是谁,都将保留在本地并显示在 Thunderbird 帐户中(pop/imap/etc) )。

我已经将 php 设置为使用 sendmail,并且安装了 postfix。 但我不知道下一步该去哪里。

有什么指点吗?

Hey, I'm trying to get php's mail function working on my local dev box in such a way where all mail sent using mail(), regardless of recipient, would stay local and show up in a thunderbird account (pop/imap/etc).

I've got php set up to use sendmail and I've got postfix installed. But i'm at a loss where to go next.

Any pointers?

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

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

发布评论

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

评论(1

鱼忆七猫命九 2024-08-05 06:23:23
  1. 在 postfix 中注册一个用户,例如 testuser@localhost
  2. 确保 postfix 始终将所有电子邮件转发到 testuser@localhost
  3. 确保 postfix 始终删除转发的所有邮件
  4. 确保您的 smtp 服务器接受无效本地地址的邮件
  5. 取消选中任何听起来像 ' 的标志不允许非本地邮件的 SMTP 中继'
  6. 在 Thunderbird 中为 testuser@localhost [编辑] 设置一个弹出收件箱,

仅供记录。 第 4 点将确保您可以使用任何地址,因此当您测试电子邮件是唯一的系统(这很正常)时,您将不会用完有效的电子邮件地址。[/edit]

旁注:我工作窗户上有水银。 但基本方法是相同的。

  1. register a user in postfix, something like testuser@localhost
  2. make sure postfix always forwards all emails to testuser@localhost
  3. make sure postfix always deletes all messages which were forwarded
  4. make sure your smtp server accepts mail for invalid local addresses
  5. uncheck any flag that sounds like 'do not permit SMTP relaying of non-local mail'
  6. set up a pop-inbox in thunderbird for testuser@localhost

[edit] just for the record. point 4 will make sure that you can use whatever addresses so when you're testing a system where emails are unique (which is pretty normal) then you won't run out of valid email-addresses.[/edit]

sidenote: I work on windows with mercury. but the basic approach is the same.

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