linux安装开源邮件服务器iredmail的方法:docker

  直接安装的方法,参考网文,我不介绍。本文介绍的是快速的方法:docker  

  使用镜像源:https://hub.docker.com/r/lejmr/iredmail/,因为pull的数量最多

  直接 docker pull lejmr/iredmail ,是不行的,必须加正确的tag: docker pull lejmr/iredmai:mysql-lastest

  

docker run --privileged -p 80:80 -p 443:443 
           -h mail.example.com 
           -e "MYSQL_ROOT_PASSWORD=password" 
           -e "SOGO_WORKERS=1" 
           -e "TZ=Europe/Prague" 
           -e "POSTMASTER_PASSWORD={PLAIN}password" 
           -e "IREDAPD_PLUGINS=['reject_null_sender', 'reject_sender_login_mismatch', 'greylisting', 'throttle', 'amavisd_wblist', 'sql_alias_access_policy']" 
           -v PATH/mysql:/var/lib/mysql 
           -v PATH/vmail:/var/vmail 
           -v PATH/clamav:/var/lib/clamav 
           --name=iredmail lejmr/iredmail:mysql-latest

  

 PATH/mysql这几个路径是本地用例映射的路径,先本地创建好目录,然后替换为创建好的目录的绝对路径

https://mail.example.com/iredadmin/dashboard/checknew

登录帐号真是愁死我了:postmaster@example.com/password

https://127.0.0.1/SOGo/so/postmaster@example.com/Preferences#!/general 

 https://127.0.0.1/mail/?_task=settings&_action=folders

顺带介绍个window版本的,以前用过,还可以:http://mail.mcquay.com.cn/newweb/welcome.asp效果

WinWebMail可以下个盗版的试用

http://www.winwebmail.com/

参考:

1、https://docs.iredmail.org/index-zh_CN.html

2、https://www.iredmail.org/index-zh_CN.html

3、http://debugo.com/iredmail-server/

4、https://docs.iredmail.org/install.iredmail.on.rhel-zh_CN.html#webmail-web

5、https://github.com/lejmr/iredmail-docker

6、https://bbs.iredmail.org/forum3-iredmail.html

7、http://www.mamicode.com/info-detail-1643124.html

8、https://blog.csdn.net/wyl9527/article/details/79462897

9、

原文地址:https://www.cnblogs.com/shengulong/p/9133466.html