postfix邮件服务

postfix发信服务(TCP 25,SMTP)

dovecot取信服务(TCP 110/143,POP3/IMAP)

1.配置postfix

    安装postfix  yum -y install postfix

    配置邮件服务  vim  /etc/postfix/main.cf

net_interfaces = all
mydomain = xxxx.xx        本域
myhostname = xxxx.xx      主机名
myorigin = xxxx.xx        发送域
mydestination =xxxx.xx    接收域

    重启postfix   systemclt restart postfix

2.使用mail命令发信/收信

   发送echo "welcome " | mail -s "name" -r root aa root        #aa发送给root

   接收mail -u root        #root接收