postfix安装及配制教程
Posted 371502685
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postfix安装及配制教程相关的知识,希望对你有一定的参考价值。
yum install postfix
rpm -e sendmail
alternatives --display mta
/usr/sbin/alternatives --set mta /usr/sbin/sendmail.postfix
vim /etc/postfix/main.cf
myhostname = mail.test.cn
mydomain = test.cn
myorigin = $mydomain
inet_interfaces = all
mydestination = $myhostname,$mydomain
mynetworks = 127.0.0.0/8
relay_domains =
home_mailbox = Maildir/
service postfix start
rpm -qa dovecot
yum -y install dovecot
vim /etc/dovecot.conf
protocols = imap imaps pop3 pop3s
service dovecot start
service saslauthd restart
postmap /etc/postfix/generic
参考:http://blog.csdn.net/ikscher/article/details/9084313
以上是关于postfix安装及配制教程的主要内容,如果未能解决你的问题,请参考以下文章
redhat编译安装postfix-3.1.1出现的一些错误及解决方法