《Linux菜鸟入门2》mail服务

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《Linux菜鸟入门2》mail服务相关的知识,希望对你有一定的参考价值。

配置DNS

mailwestos.example.com

vim /etc/named.rfc1912.zones

  zone "westos.com" IN {

         type master;

         file "westos.com.zone";

        allow-update { none; };

  };

  zone "linux.com" IN {

          type master;

         file "linux.com.zone";

         allow-update { none; };

  };


cp -p named.localhost westos.com.zone

vim /var/named/westos.com.zone 


技术分享


cp -p westos.com.zone linux.com.zone

vim /var/named/linux.com.zone 

技术分享

systemctl restart named

systemctl stop firewalld


vim /etc/postfix/main.cf 

技术分享

技术分享

技术分享

技术分享

maillinux.example.com

    

技术分享

技术分享

技术分享

技术分享

●别名发送:


linux.com 主机向 westos.com主机发送邮件,使用别名发送

vim /etc/aliases

技术分享


    vim /etc/moreusers 

        root

        student



 postalias /etc/aliases

 systemctl restart postfix.service 



4.出站地址伪装

server (westos.com)主机:

vim /etc/postfix/generic 

技术分享

postmap /etc/postfix/generic

postconf -d | grep generic 会出来一段字符,选择最后的一行字符(如下),进行复制:

smtp_generic_maps =

postconf -e "smtp_generic_maps = hash:/etc/postfix/generic" ##此处用到上条语句复制的字符

systemctl restart postfix.servic





5.检测25端口

下载 yum install telnet -y

技术分享

技术分享

250 2.0.0 Ok: queued as 38E0C17E849

quit ##退出telnet

221 2.0.0 Bye

Connection closed by foreign host.


本文出自 “12147236” 博客,转载请与作者联系!

以上是关于《Linux菜鸟入门2》mail服务的主要内容,如果未能解决你的问题,请参考以下文章

《Linux菜鸟入门2》mariadb服务

《Linux菜鸟入门2》Ldap

《Linux菜鸟入门2》Apache

《Linux菜鸟入门》系统日志

《Linux菜鸟入门2》访问网络文件系统

Linux邮件服务入门