使用Postfix+Cyrus-SASL+dovecot搭建POP3/SMTP邮件服务器

安装

需要安装以下组件:

  • postfix
  • cyrus_sasl
  • dovecot

为了省事,我是直接yum install的。

配置

postfix

sudo vi /etc/postfix/main.cf

设置

myhostname = mail.lzhaohao.info
mydomain = lzhaohao.info
myorigin = $myhostname

然后设置

inet_interfaces = all
mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain, mail.$mydomain, www.$mydomain, ftp.$mydomain

其中,inet_interfaces指定可以连接邮件服务器的网卡界面;mydestination指定本邮件服务器会收下的信件的域名。

SMTP密码验证

安装好cyrus-sasl后

sudo vi /etc/sysconfig/saslauthd

设置

MECH = shadow

shadow的意思是使用系统自带的/etc/passwd,/etc/shadow进行密码验证,也就是系统用户名和密码就是邮箱的用户名和密码。cyrus-sasl还可以使用LDAP等验证方式,此处使用shadow作为例子。
然后设置cyrus使用saslauthd这个服务来验证:

sudo vi /usr/lib/sasl2/smtpd.conf
log_level: 3
pwcheck_method: saslauthd
mech_list: PLAIN LOGIN

再告诉postfix使用smtp验证:

sudo vi /etc/postfix/main.cf

增加以下内容

smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous
broken_sasl_auth_clients = yes
smtpd_recipient_restrictions =
     permit_mynetworks
     permit_sasl_authenticated
     reject_unauth_destination

验证:

telnet localhost 25
ehlo localhost

看到250-AUTH LOGIN PLAIN字样即表示配置成功。

POP3配置

安装好dovecot后,修改配置项为:

protocols = pop3
listen = *

  • http://www.iredmail.org/ Zhang Huangbin

    用免费、开源的 iRedMail 比自己搭建邮件服务器更简单些。它使用的也都是开源软件。
    http://www.iredmail.org/ (目前在国内无法访问,原因你懂的,换成 http://www.iredmail.com 试试)