秀米云香港服务器

系统自带的sandmail会和postfix冲突

第一步卸载sandmail,yum remove sandmail

序列号 CPU RAM HDD 带宽 售价(美元) 免费试用
香港服务器1 E5-2620 32G 1T HDD 50M/无限流量 $196.00 立即申请
香港服务器2 E5-2650 32G 1T HDD 50M/无限流量 $256.00 立即申请
香港服务器3 E5-2680 32G 1T HDD 50M/无限流量 $316.00 立即申请
香港服务器4 E5-2690 32G 1T HDD 50M/无限流量 $336.00 立即申请
香港服务器5 E5-2697 32G 1T HDD 50M/无限流量 $376.00 立即申请
香港服务器6 E5-2620*2 32G 1T HDD 50M/无限流量 $376.00 立即申请
香港服务器7 E5-2650*2 32G 1T HDD 50M/无限流量 $436.00 立即申请
香港服务器8 E5-2680*2 32G 1T HDD 50M/无限流量 $476.00 立即申请
香港服务器9 E5-2690*2 32G 1T HDD 50M/无限流量 $556.00 立即申请
香港服务器10 E5-2697*2 32G 1T HDD 50M/无限流量 $596.00 立即申请
香港服务器11 E5-2680v4*2 32G 1T HDD 50M/无限流量 $696.00 立即申请
香港服务器12 E5-2698v4*2 32G 1T HDD 50M/无限流量 $796.00 立即申请

第二步:安装postfix ,dovecot,cyrus-sasl,直接yum安装

yum -y install devecot

yum -y install postfix

yum -y install cyrus-sasl

三、修改postfix的配置文件[root@ser ~]# vim /etc/postfix/main.cf

myhostname = mail.eimam.commydomain = eimam.commyorigin = eimam.cominet_interfaces =allmynetworks = 192.168.1.0/240relay_domains = yjw.com, $mydomainmydestination = $myhostname, localhost.$mydomain, localhost, $mydomain, mail.$mydomain, www.$mydomain, ftp.$mydomain重启 postfix 服务

[root@ser ~]# service postfix restartShutting down postfix: [ OK ]Starting postfix: [ OK ][root@ser ~]# chkconfig postfix on[root@ser ~]# chkconfig dovecot on修改dovecot的配置文件vim /etc/dovecot.confprotocols = imap imaps pop3 pop3s(在后面启动dovecot时,说端口已经被使用,lsof -i tcp:端口,是pop3s占用了,如果出现这样的情况,把这里的pop3s去掉。)listen = *在iptables 里开放25,110,143端口[root@ser ~]# vim /etc/sysconfig/iptables-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 110 -j ACCEPT-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 25 -j ACCEPT-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 143 -j ACCEPT重启iptables[root@ser ~]# service iptables restartFlushing firewall rules: [ OK ]Setting chains to policy ACCEPT: filter [ OK ]Unloading iptables modules: [ OKApplying iptables firewall rules: [ OK ]Loading additional iptables modules: ip_conntrack_netbios_n[ OK ]ntrack_ftp[root@ser ~]# chkconfig saslauthd on修改 /etc/sysconfig/saslauthd[root@ser ~]# vim /etc/sysconfig/saslauthd

# Directory in which to place saslauthd's listening socket, pid file, and so# on. This directory must already exist.SOCKETDIR=/var/run/saslauthd

# Mechanism to use when checking passwords. Run "saslauthd -v" to get a list# of which mechanism your installation was compiled with the ablity to use.MECH=shadow

# Additional flags to pass to saslauthd on the command line. See saslauthd(8)# for the list of accepted flags.FLAGS=修改 /usr/lib/sasl2/smtpd.conf[root@ser ~]# vim /usr/lib64/sasl2/smtpd.confpwcheck_method: saslauthd测试 saslauthd[root@ser ~]# service saslauthd restart[root@ser ~]# testsaslautd -u yjw -p '020304'0: OK "Success."在postfix 的配置文件中,添加以下内容,使其支持SMTP认证[root@ser ~]# vim /etc/postfix/main.cfmessage_size_limit = 1073741824 # 邮件的大小为10Mdefault_process_limit = 50default_destination_concurrency_limit = 20

smtpd_sasl_auth_enable = yessmtpd_sasl_local_domain = $myhostname

smtpd_sasl_application_name = smtpd

broken_sasl_auth_clients = yessmtpd_recipient_restrictions = permit_mynetworks, permit_sasl_authenticated,reject_unauth_destinationsmtpd_client_restrictions = permit_sasl_authenticatedsmtpd_sasl_security_options = noanonymous测试 25端口[root@ser ~]# telnet mail.yjw.com 25 Trying 192.168.1.2...Connected to mail.yjw.com (192.168.1.2).Escape character is '^]'.220 mail.yjw.com ESMTP PostfixEHLO 163.com250-mail.yjw.com250-PIPELINING250-SIZE 10240000250-VRFY250-ETRN250-AUTH LOGIN PLAIN250-AUTH=LOGIN PLAIN250-ENHANCEDSTATUSCODES250-8BITMIME250 DSNquit221 2.0.0 ByeConnection closed by foreign host.[root@ser ~]#

现在可以测试一下给root发一封邮件,echo "this is a test mail !"|mail -s mailname root

输入mail查看是否成功。也可给给QQ邮箱发,将root修改成QQ邮箱地址就可以了。

四、安装openwebmail[root@ser ~]# vim /etc/yum.repos.d/openwebmail.repo [openwebmail]## Thomas Chung## 2008.05.29name=Openwebmail for Fedora or Enterprise Linuxbaseurl=http://openwebmail.org/openwebmail/download/redhat/rpm/release/enabled=1gpgcheck=1gpgkey=http://openwebmail.org/openwebmail/download/redhat/rpm/release/RPM-GPG-KEY-openwebmail#metadata_expire=0若这样安装不成功,先安装 perl-Text-Iconv-1.4-1.2.el4.rf.i386.rpm

下载地址:http://rpm.pbone.net/index.php3?stat=26&dist=42&size=19383&name=perl-Text-Iconv-1.4-1.2.el4.rf.i386.rpm[root@ser ~]# yum -y install openwebmail[root@ser ~]# cd /var/www/cgi-bin/openwebmail/[root@ser openwebmail]# ./openwebmail-tool.pl --init #出现Y/N时 ,按N.修改openwebmail 的一些配置文件[root@ser etc]# vim dbm.confdbm_ext .dbdbmopen_ext .dbdbmopen_haslock no[root@ser etc]]# cd defaults/[root@ser defaults]# vim dbm.confdbm_ext .dbdbmopen_ext .dbdbmopen_haslock yessmtpserver 192.168.1.2[root@ser defaults]# vim openwebmail.confdomainnames yjw.comsmtpserver 192.168.1.2authpop3_server 192.168.1.2再次初始化openwebmail[root@ser defaults]# cd http://www.cnblogs.com/openwebmail-tool.pl --init 出现Y/N 时,按Y。

把Postfix+Dovecot+Openwebmail 三者个格式统一下就行了1.postfix 配置 main.cfmail_spool_directory = /var/spool/mail2.Dovecot 配置 Dovecot.confmail_location = mbox:~/mail:INBOX=/var/spool/mail/%u3.Openwebmail.confmailspooldir /var/spool/mail

修改apache配置

[root@ser ~]# vim /etc/httpd/conf/httpd.confServerAdminroot@yjw.comServerName mail.yjw.com:80AddHandler cgi-script .cgi .pl五、登陆openwebmail在IE 中输入 mail.yjw.com/cgi-bin/openwebmail/openwebmail.pl, 这个地址是不是很长,那么我们来点短点的在 httpd的 配置文件中添加 下面 内容:ScriptAlias /mail /var/www/cgi-bin/openwebmail/openwebmail.pl这样在IE 中直接输入mail.yjw.com/mail

如果出现了下面的问题

Couldn't create File /var/log/openwebmail.log! (Permission denied)在网上找到解决办法了:如下方面 运行:touch /var/log/openwebmail.logchcon -u system_u /var/log/openwebmail.logchcon -t httpd_sys_script_rw_t /var/log/openwebmail.logchcon -t httpd_unconfined_script_exec_t /var/www/cgi-bin/openwebmail/openwebmail*然后刷新了一下 OK ,很漂亮的界面出现了。

标题:CentOS上安装部署Postfix邮件服务器

地址: https://www.yunhk.xyz/25305.html