|
同样的php代码,在windows下做测试时,每次都能发送成功,能收到信。
可是在linux下就有问题了,mail函数每次都能执行成功,返回值为true。可是我就是收不到信。
昨晚做的测试发的邮件我当时一份也每受到,今天打开邮箱一看,结果 邮件被反垃圾邮件网关过滤
显示的发信人为apache@localhost.localdomain
请教这个问题怎样才能解决?
在redhat9.0下面做的
这是我linux下面php中关于mail函数的配置:
[mail function]
; For Win32 only.
;SMTP = localhost
; For Win32 only.
;sendmail_from = me@localhost.com
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
sendmail_path = /usr/sbin/sendmail -t -i |
|