共计 1449 个字符,预计需要花费 4 分钟才能阅读完成。
在 CentOS 7.2 下搭建 iredmail 邮件服务器及使用笔记,安装以前的装备工作:
修改 hostname 使 hostname 满足 FQDN 的规则
hostname mail.test.com
sh hostname #使修改立即生效(当前 shell)hostname -F /etc/hostname (立即生效)
vim /etc/hosts
127.0.0.1 mail.test.com
iRedmail 插件:
Postfix 用来发邮件
Dovecot 用来接收邮件
Apache web 版的客户端
Mysql 用户数据 或者 openLDAP
Policyd 拒绝(黑名单)
Amavisd 杀毒(扫描垃圾邮件)
Roundcube web 页面收发邮件(webmail)
Awstat 需要分析日志
Fail2ban 防止暴力破解
iRedadmin 管理账户
下载 iredmail
wget https://bitbucket.org/zhb/iredmail/downloads/iRedMail-0.9.5-1.tar.bz2
解压 tar jxvf iRedMail-0.9.5-1.tar.bz2
提示
说明没有安装 bzip2
yum install -y bzip2
再解压
在 iredmail 目录里
安装命令是:IREDMAIL_MIRROR=’http://42.159.241.31′ bash iRedMail.sh
安装过程中选择:apache mariadb 其他按照默认选择 (直接回车)
出现如此提示,说明安装完成:
Database updated (4912445 signatures) fromdatabase.clamav.net (IP: 203.178.155.233)
********************************************************************
* URLs of installed web applications:
*
* – Roundcube webmail:httpS://mail.test.com/mail/
*
* – Web admin panel (iRedAdmin):httpS://mail.test.com/iredadmin/
*
* You can login to above links with belowcredential:
*
* – Username: postmaster@test.com
* – Password: qwer
*
*
********************************************************************
* Congratulations, mail server setupcompleted successfully. Please
* read below file for more information:
*
* -/usr/local/src/iRedMail-0.9.5-1/iRedMail.tips
*
* And it’s sent to your mail accountpostmaster@vim10s.com.
*
********************* WARNING**************************************
*
* Please reboot your system to enable allmail services.
*
发送测试邮件,自己邮箱接受
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2017-02/140373.htm