首页 > 代码库 > postfix简单安装和使用

postfix简单安装和使用

1. 安装postfix,执行命令

sudo apt-get update
sudo apt-get install mailutils

2. 配置postfix,编辑/etc/postfix/main.cf,修改

inet_interfaces = all

inet_interfaces = loopback-only


3. 重启postfix服务

sudo service postfix restart


4. 测试发邮件

echo "This is the body of the email" | mail -s "This is the subject line" example@qq.com

5. 检查邮件一般会在垃圾箱中

本文出自 “zyzdbk” 博客,谢绝转载!

postfix简单安装和使用