如何在 log4php 上配置 SMTP?
如何在 log4php 上指定 smtp 主机 我将使用以下配置将其与 gmail 一起使用。
smtp.gmail.com (use authentication)
Use Authentication: Yes
Port for TLS/STARTTLS: 587
Port for SSL: 465
How do I specify smtp host on log4php I will be using it with gmail using the following configurations.
smtp.gmail.com (use authentication)
Use Authentication: Yes
Port for TLS/STARTTLS: 587
Port for SSL: 465
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您没有说明这与什么操作系统相关 - 在 Microsoft 平台上。 log4php 使用 PHP 的邮件命令 - 但与其他操作系统(通过 stdio 使用本地二进制程序)相比,它在 Microsoft(SMTP TCP 客户端)上的实现方式不同。
解决此问题的最简单方法是修改 LoggerAppenderMail 以使用 phpmailer 或 swift mailer 代替 php mail() 命令。
但是,如果您不想修改标准库并且必须维护自己的补丁集,那么您应该设置一个本地 MTA,它可以通过 SSL 进行智能中继并进行身份验证,例如 ssmtp 或 msmtp。当然,如果您确实愿意,可以使用成熟的 MTA,例如 postfix 或 sendmail。
You don't say what OS this relates to - On a Microsoft platform. log4php uses PHP's mail command - but this is implemented differently on Microsoft (SMTP TCP client) compared with every other operating system (uses local binary program via stdio).
The simplest way around this would be to modify the LoggerAppenderMail to use phpmailer or swift mailer in place of the php mail() command.
But if you'd rather not tinker with the standard libs and have to maintain your own patchset, then you should set up a local MTA which can smart relay via SSL with authentication e.g. ssmtp or msmtp. Of course you can use a full blown MTA like postfix or sendmail if you really want.
您只需按照 此处 提供的 log4php Appender 文档中的说明进行操作。
您需要的是以下附加程序类型:
You just need to follow the instructions in the Appender documentation for log4php available here.
What you need would be the following appender types: