RHEL5下邮件系统的安装过程

  默认方式安装RHEL5,不选中任何类型服务器(如WEB服务器,开发服务器,虚拟服务器等)
  安装postfix
  [root@rhel5 ~]# /etc/rc.d/init.d/sendmail stop
  关闭 sm-client: [确定]
  关闭 sendmail: [确定]
  [root@rhel5 ~]# chkconfig sendmail off
  [root@rhel5 Server]# rpm -ivh postfix-2.3.3-2.i386.rpm
  [root@rhel5 Server]# vi /etc/postfix/main.cf
  myhostname = mail.mailidc.cn #设置运行postfix服务的邮件主机的主机名、域名
  mydomain = mailidc.cn
  myorigin = $mydomain #设置由本机寄出的邮件所使用的域名或主机名称
  inet_interfaces = all #设置postfix服务监听的网络接口
  mydestination = $myhostname, $mydomain, localhost.$mydomain, localhost #设置可接收邮件的主机名称或域名
  mynetworks = 127.0.0.1 #设置可转发哪些网络的邮件
  relay_domains = $mydestination #设置可转发哪些网域的邮件
  保存文件。
  检查postfix的配置:
  [root@rhel5 Server]# postconf –n
  [root@rhel5 ~]# chkconfig postfix on
  將postfix加入到root的组:
  # usermod -G root postfix
  SMTP认证的配置
  安装cyrus-sasl
  1、确认cyrus-sasl是否安装了
  [root@rhel5 Server]# rpm -qa|grep cyrus
  cyrus-sasl-plain-2.1.22-4
  cyrus-sasl-lib-2.1.22-4
  cyrus-sasl-2.1.22-4
  Cyrus-SASL V2的密码验证机制
  [root@rhel5 ~]# saslauthd -v
  saslauthd 2.1.22
  authentication mechanisms: getpwent kerberos5 pam rimap shadow ldap

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wwyyzp.html