从零开始几步搭建好自己邮件通知服务器

sudo apt install mailutils -y
sudo vim /etc/postfix/main.cf

# /etc/postfix/main.cf
myhostname = {domain}
mydestination = {domain}, $hostname, localhost.localdomain, localhost
net_interfaces = loopback-only

sudo hostnamectl set-hostname {domain}

sudo vim /etc/mailname
# /etc/mailname
{domain}

sudo service postfix restart

echo "This is the body of email" | mail -s "This is the subject line" <收件人地址>

版权声明: 如无特别声明,本文版权归 仲儿的自留地 所有,转载请注明本文链接。

(采用 CC BY-NC-SA 4.0 许可协议进行授权)

本文标题:《 Ubuntu 搭建 Postfix 邮件 SMTP 发送服务器 》

本文链接:https://lisz.me/tech/linux/postfix.html

本文最后一次更新为 天前,文章中的某些内容可能已过时!