1.安装Postfix。
[root@dsrw ~]# dnf install postfix
Updating Subscription Management repositories.
Unable to read consumer identity
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
上次元数据过期检查:0:34:27 前,执行于 2022年12月23日 星期五 12时46分54秒。
依赖关系解决。
================================================================================
软件包 架构 版本 仓库 大小
================================================================================
Installing:
postfix x86_64 2:3.3.1-8.el8 BaseOS 1.5 M
事务概要
================================================================================
安装 1 软件包
总计:1.5 M
安装大小:4.4 M
确定吗?[y/N]: y
下载软件包:
运行事务检查
事务检查成功。
运行事务测试
事务测试成功。
运行事务
准备中 : 1/1
运行脚本 : postfix-2:3.3.1-8.el8.x86_64 1/1
Installing : postfix-2:3.3.1-8.el8.x86_64 1/1
运行脚本 : postfix-2:3.3.1-8.el8.x86_64 1/1
验证 : postfix-2:3.3.1-8.el8.x86_64 1/1
Installed products updated.
已安装:
postfix-2:3.3.1-8.el8.x86_64
完毕!
2.配置Postfix主配置文件(/etc/postfix/main.cf)
Postfix服务程序主配置文件中的重要参数
myhostname#邮局系统的主机名
mydomain#邮局系统的域名
myorigin#从本机发出邮件的域名名称
inet_interfaces#监听的网卡接口
mydestination#可接收邮件的主机名或域名
mynetworks#设置可转发哪些主机的邮件
relay_domains#设置可转发哪些网域的邮件
[root@dsrw ~]# vim /etc/postfix/main.cf
95 myhostname = mai.dsrw.com
102 mydomain = dsrw.com
118 myorigin = $mydomain
135 inet_interfaces = all
183 mydestination = $myhostname, $mydomain
3.创建电子邮件系统的登录账户。
[root@dsrw ~]# useradd lanzeou
[root@dsrw ~]# echo "dsrw" | passwd --stdin lanzeou
更改用户 lanzeou 的密码 。
passwd:所有的身份验证令牌已经成功更新。
[root@dsrw ~]# systemctl restart postfix
[root@dsrw ~]# systemctl enable postfix
Created symlink /etc/systemd/system/multi-user.target.wants/postfix.service → /usr/lib/systemd/system/postfix.service.
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
请登录后查看评论内容