Debian设置mail发邮件功能命令

订阅本站

Debian设置mail发邮件功能命令

huangdijia 发表于 2011-3-31 分类 Web服务器 | 发表评论

# 设置mail发邮件功能
# 安装msmtp

apt-get install -y msmtp

# 回到root用户默认目录root用户

cd

# 设置.msmtprc

cat > .msmtprc

粘贴以下内容:

tls on
tls_starttls on
tls_certcheck off
protocol smtp
auth on

host smtp.gmail.com
domain gmail.com
port 587

user [email protected]
password yourpassword
from [email protected]

# 设置.mailrc

cat > .mailrc

粘贴以下内容:

set sendmail=”/usr/bin/msmtp”

# 测试

echo -e “content” | mail -s “test” 1351010***@139.com

你可能感兴趣的:(Debian,测试,user,web服务)