空客户端邮箱服务器配置

空客户端邮箱服务器配置_第1张图片

desktop0主机配置

  • 步骤一:安装postfix
[root@desktop0 yum.repos.d]# yum -y install postfix
已加载插件:langpacks
软件包 2:postfix-2.10.1-6.el7.x86_64 已安装并且是最新版本
无须任何处理

  • 步骤二:修改配置文件
[root@desktop0 postfix]# vim /etc/postfix/main.cf 
  • 99行域后缀补全
    空客户端邮箱服务器配置_第2张图片
  • 116行允许所有邮箱
    空客户端邮箱服务器配置_第3张图片
  • 164行服务器
    空客户端邮箱服务器配置_第4张图片
  • 步骤三:重启服务
[root@desktop0 postfix]# systemctl restart postfix
[root@desktop0 postfix]# systemctl enable postfix

server0主机操作(做为空邮箱服务器)

  • 步骤一:安装postfix
[root@server0 yum.repos.d]# yum -y install postfix
已加载插件:langpacks
软件包 2:postfix-2.10.1-6.el7.x86_64 已安装并且是最新版本
无须任何处理

  • 步骤二:修改配置文件
[root@server0 postfix]# vim /etc/postfix/main.cf 
  • 99行域后缀补全
    空客户端邮箱服务器配置_第5张图片
  • 116行只允许本机
    空客户端邮箱服务器配置_第6张图片
  • 164行值为空,不允许其它服务器接收邮箱
    空客户端邮箱服务器配置_第7张图片
  • 317允许接收邮箱的IP
  • 可以先通过命令解析IP
[root@desktop0 postfix]# nslookup smtp0.example.com
Server:		172.25.254.254
Address:	172.25.254.254#53

smtp0.example.com	canonical name = desktop0.example.com.
Name:	desktop0.example.com
Address: 172.25.0.10

空客户端邮箱服务器配置_第8张图片

  • 测试
[root@server0 ~]# echo 123 | mail -s haha -r  student student
[root@server0 ~]# mail -u student                                  #server0接收不到邮箱
No mail for student
 
[root@desktop0 postfix]# mail -u student                         #desktop0接收到邮箱
Heirloom Mail version 12.5 7/5/10.  Type ? for help.
"/var/mail/student": 2 messages 2 new
>N  1 student@desktop0.exa  Sun Feb 17 20:19  18/604   "haha"

你可能感兴趣的:(邮箱)