我有一个问题,其中/ var / lib / PHP / session的权限被覆盖,所以我不能再在
PHP中创建会话变量.
我认为我的邮件功能也发生了同样的事情.邮件功能位于linux服务器中,以便我可以chmod它?
编辑
一些其他信息:
$"This is a test" | mail -s "Testing 123" team_pegasus@rayhawk.com -bash: This is a test: command not found Null message body; hope that's ok postdrop: warning: mail_queue_enter: create file maildrop/111989.3781: Permission denied postdrop: warning: mail_queue_enter: create file maildrop/112524.3781: Permission denied postdrop: warning: mail_queue_enter: create file maildrop/113649.3781: Permission denied postdrop: warning: mail_queue_enter: create file maildrop/114574.3781: Permission denied postdrop: warning: mail_queue_enter: create file maildrop/115551.3781: Permission denied chmod: changing permissions of `/usr/sbin/sendmail.postfix': Operation not permitted chmod: changing permissions of `/usr/sbin/sendmail': Operation not permitted
解决方法
mail()函数可以执行许多不同的操作,具体取决于您
configure it的方式.例如,您可以将其指向外部SMTP服务器,如果是这种情况,则本地系统上没有任何内容可以触摸.
如果您没有从默认值更改它,那么您在系统上运行一些邮件传输代理,但有很多可能性.你实际上在运行sendmail,还是只运行一些具有sendmail兼容二进制文件的工具?我相信Postfix是Centos上的默认MTA.不幸的是,我不确定假名的文件夹是什么以及默认权限应该是什么.
如果没有其他人回答具体细节,那么我建议您快速设置一个类似于您的主系统的虚拟机,然后简单地比较然后修复权限.
从命令行shell,您还可以测试一些东西.只需运行echo’test’|等命令即可sendmail youraddress@example.org.