码迷,mamicode.com
首页 > 其他好文 > 详细

mutt+msmtp运行报错集合

时间:2016-04-26 12:38:48      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

现象一:发送邮件执行时报错

root@/usr/bin# echo "hello this echo print"|mutt -s"linkmail"coobutter@live.com

Error sending message, child exited 127 (Exec error.).

Could not send the message.

先单独使用msmtp发送测试:msmtp -S  发现是配置文件没找到

msmtp: account default not found: no configuration file available

查看当前的配置文件路径:msmtp -P

ignoring system configuration file/work/target/etc/msmtprc: No such file or directory

ignoring user configuration file /root/.msmtprc: No such file ordirectory

falling back to default account

msmtp: account default not found: no configuration file available

故将/usr/local/etc/Muttrc  复制为/root/.muttrc

将/usr/local/etc/msmtprc  复制为/root/.msmtprc

即可。

 

 现象二:发送邮件服务器退回邮件(邮件服务器认为发送的是垃圾邮件)

msmtp: the server did not accept the mail

msmtp: server message: 543 reject byentas5-smtp(ID:1361427919.643)(time:Thu Feb 21 14:25:29 2013)

msmtp: could not send mail (account default from/usr/local/etc/msmtprc)

因为没有填写from和to段。

此外如果是通过smtp.163.com发送的话,也必须要填写from和to段,否则,163将认为其是垃圾文件,拒绝转发。

host smtp.163.com
port 25
from coobutter@163.com
auth login
tls off
user coobutter@163.com
password ***** #密码
logfile /var/log/msmtp.log

 

mutt+msmtp运行报错集合

标签:

原文地址:http://www.cnblogs.com/itstudys/p/5434539.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!