码迷,mamicode.com
首页 > 其他好文 > 详细

Ret Hat 下SendMail

时间:2018-10-11 12:54:56      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:分享图片   only   查看   trap   使用   token   main   smart   stop   

 Ret Hat 下SendMail

工具:RHEL7.5、Win7
SendMail服务器:RHEL7.5

----------------------------------------------------------------------------------------------------------------------------

*****************************************************************************************************************************


1.安装sendmail组件
    检查是否安装sendmail组件
    rpm -qa | grep sendmail

    查看是否有sendmail系列包
    yum grouplist sendmail
    
    查看sendmail相关的包
    yum list | grep sendmail

2.安装sendmail组件
    yum install sendmail -y

3.编辑/etc/aliases文件
    vi /etc/aliases

        # trap decode to catch security attacks
        decode:         root
        
        # Person who should get root‘s mail
        #root:          marc
        如果我配置别名为root的,配置接收邮件(下面邮件仅仅是一个模板而已)

  技术分享图片

4.修改配置文件sendmail.cf
    vim /etc/mail/sendmail.cf
        # host/domain names ending with a token in class P are canonical
        CP.
    
        # "Smart" relay host (may be null)
        DS[xxx.xxx.xxx.xxx]
    
        # operators that cannot be in local usernames (i.e., network indicators)
        CO @ % !
    
        # a class with just dot (for identifying canonical names)

5.重启sendmail服务
    service sendmail restart

6.测试邮件服务
    如下所示,使用mail命令测试能否成功收到邮件。如果成功,表示前面配置OK, 如果没有收到邮件,则必须检查日志,然后根据具体错误信息诊断问题。
        [root@mylnx06 ~]# cat > test.txt
        it is only test
        ^Z
        [1]+  Stopped                 cat > test.txt
        [root@mylnx06 ~]# mail -s "test" konglb@xxxx.com < test.txt
        [root@mylnx06 ~]#
        [azrlnx06azlnx06 ~]$ echo ‘it is only a test‘ | mail -s "test eamil"  konglb@xxxx.com
        [azrlnx06@azlnx06 ~]$    

Ret Hat 下SendMail

标签:分享图片   only   查看   trap   使用   token   main   smart   stop   

原文地址:https://www.cnblogs.com/handsky/p/linux_server_00011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!