功能概述
postfix 是 Wietse Venema 在 IBM 的 GPL 协议之下开发的 MTA(邮件传输代理) 软件。postfix 是 Wietse Venema 想要为使用最广泛的 sendmail 提供替代品的一个 尝试。在 Internet 世界中,大部分的电子邮件都是通过 sendmail 来投递的,大约 有 100 万用户使用 sendmail,每天投递上亿封邮件。这真是一个让人吃惊的数字。 Postfix 试图更快、更容易管理、更安全,同时还与 sendmail 保持足够的兼容性。
功能介绍
1、postfix 部署
#
apt update
#
apt-get install postfix mailutils
#
cp /etc/postfix/main.cf{,.bak}
#
postconf -e 'inet_interfaces = all
//在所有接口上提供发信服务 #
postconf -e 'mydomain = lab.example.com
//设置邮件域 #
postconf -e 'mydestination = $mydomain, $myhostname, localhost.$mydomain, localhost
//指定投递域 #
hostnamectl set-hostname 'uos.lab.example.com
#
vim /etc/hosts
#
postfix check
#
systemctl enable postfix --now
2.、postfix 测试
#
echo "AAAA" | mail -s "SMTP Test" uo
©统信软件技术有限公司。访问者可将本网站提供的内容或服务用于个人学习、研究或欣赏,以及其他非商业性或非盈利性用途,但同时应遵守著作权法及其他相关法律的规定,不得侵犯本网站及相关权利人的合法权利。除此以外,将本网站任何内容或服务进行转载,须备注:该文档出自【faq.uniontech.com】统信软件知识分享平台。否则统信软件将追究相关版权责任。