這篇文章主要講解了“CentOS怎么搭建Sendmail郵件服務(wù)器”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“CentOS怎么搭建Sendmail郵件服務(wù)器”吧!
創(chuàng)新互聯(lián)服務(wù)電話:028-86922220,為您提供成都網(wǎng)站建設(shè)網(wǎng)頁設(shè)計及定制高端網(wǎng)站建設(shè)服務(wù),創(chuàng)新互聯(lián)網(wǎng)頁制作領(lǐng)域十余年,包括成都邊坡防護網(wǎng)等多個方面擁有豐富的網(wǎng)站制作經(jīng)驗,選擇創(chuàng)新互聯(lián),為企業(yè)錦上添花!
搭建之前,先來介紹下環(huán)境
系統(tǒng)環(huán)境:centos 5.6 32bit
域名:qiu.com
1、 添加mx記錄
搭建之前,我們需要在DNS 中添加mx 記錄(本例dns 服務(wù)器地址為192.168.0.1)
測試下是否生效
2、在線安裝程序
yum -y install sendmail-* #主程序 yum -y install m4-* #配置工具 yum -y install cyrus-sasl #smtp認(rèn)證 yum -y install dovecot # pop imap 接收
3、配置sendmail
1) vi /etc/mail/local-host-names 加入 mail.qiu.com
2)vi /etc/mail/sendmail.mc 將smtp 認(rèn)證更改為接受全部主機,再將trust_auth行前dn1 # 刪除
3)vi /etc/mail/access 錄入 connection:192.168.0 relay
4) 輸入命令:
m4 /etc/mail/sendmail.mc > /etc/mail/sendmail.cf makemap hash /etc/mail/access.db < /etc/mail/access
5) 修改/etc/dovecot.conf文件,找到行#protocols = imap imaps pop3 pop3s,把#去掉。
6)啟動郵件服務(wù)
services sendmail start services dovecot start services saslauthd start
別忘了加為開機啟動。
6)添加用戶 與設(shè)置 密碼
groupadd mail_user #添加一個郵件組 useradd -s /sbin/nologin -g mail_user zhang3 # 添加一個名為張3的用戶 useradd -s /sbin/nologin -g mail_user li4 # 添加一個名為l4的用戶 echo test_zhang3 | passwd --stdin zhang3 # 為張3設(shè)置密碼為test_zhang3 echo test_li4 | passwd --stdin li4 # 為張3設(shè)置密碼為test_li4
現(xiàn)在我們可以通過 oe或foxmail 等mua客戶端軟件來收發(fā)郵件了,接下來我們配置openwebmail,由于openwebmail工作在80端口,所以我們要先安裝好httpd (阿帕奇)!
4、配置openwebmail
yum 安裝
yum -y install lftp lftpget http://openwebmail.org/openwebmail/download/redhat/rpm/release/openwebmail.repo yum -y install openwebmail
1)初始化
/var/www/cgi-bin/openwebmail/openwebmail-tool.pl --init
2)vi /var/www/cgi-bin/openwebmail/etc/dbm.conf,修改如下:
dbm_ext .db dbmopen_ext .dbm dbmopen_haslock no
3)vi /var/www/cgi-bin/openwebmail/etc/openwebmail.conf
domainnames qiu.com #更改為自己定義的域名# default_language zh_cn.gb2312 #更改登陸界面為中文#
4)vi /var/www/cgi-bin/openwebmail/etc/defaults/openwebmail.conf:
smtpserver 192.168.0.107 #更改smtp服務(wù)器的地址# authpop3_server 192.168.0.107 #更改pop3服務(wù)器的地址#
5) vi /var/www/cgi-bin/openwebmail/etc/defaults/dbm.conf
dbmopen_ext .db dbmopen_haslock yes
6) 再做次初始化
/var/www/cgi-bin/openwebmail/openwebmail-tool.pl --init
登陸地址:
登陸可能會出現(xiàn) 以下信息(權(quán)限):
couldn't create file /var/log/openwebmail.log! (permission denied)
解決如下:
touch /var/log/openwebmail.log chcon -u system_u /var/log/openwebmail.log chcon -t httpd_sys_script_rw_t /var/log/openwebmail.log chcon -t httpd_unconfined_script_exec_t /var/www/cgi-bin/openwebmail/openwebmail*
如果提示“無法檢索郵件”,重新初始化即可!
最后成功截圖:
感謝各位的閱讀,以上就是“CentOS怎么搭建Sendmail郵件服務(wù)器”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對CentOS怎么搭建Sendmail郵件服務(wù)器這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!