@bjpht41.cn
@bjpht16.cn
@bjpht32.cn
...

@shpht40.cn
@shpht41.cn
@shpht40.cn
@shpht41.cn
...

@cpcsh006.cn
@cpcsh002.cn
...


目前使用黑名单的功能,一次只能添加单域名,能使用正则添加吗?  如@bjpht.*.cn   @shpht.*.cn  cpcsh.*.cn

proxy_set_header X-Real-IP $remote_addr; 这个在nginx是有配置的。

iredmail使用的是apache,我也修改了apache的日志格式,不过可以看出,fail2ban不根据httpd的access  log日志的。

是根据mail日志,可以肯定的是,要在roundcubemail在修改的。只是不知道在哪里配置。。我再找找文档。

==== 必填信息。没有填写将不予回复 ====
- iRedMail 版本号:iRedMail-0.9.5-1
- 使用哪个数据库存储用户帐号(OpenLDAP,MySQL,PostgreSQL):MYSQL
- 使用的 Linux/BSD 发行版名称及版本号:CentOS release 6.8 (Final)
- 与您的问题相关的日志信息:
Jun 26 19:04:21 mail roundcube: <v88b7knt> IMAP Error: Login failed for postmaster@xxxx.cn from 172.16.20.35(X-Real-IP: 119.122.153.163,X-Forwarded-For: 119.122.153.163). AUTHENTICATE PLAIN: Authentication failed. in /var/www/roundcubemail-1.2.0/program/lib/Roundcube/rcube_imap.php on line 193 (POST /mail/?_task=login&_action=login)

====

公司web架构由nginx代理至后面iredmail,由于地址是内网 172.16.20.35(nginx代理)的mail日志显示的是内网地址,导致fail2ban不能防御密码暴力破解问题,请张老大告知roundcubemail如何修改日志格式,百度了好久没有找到资料,谢谢。

再次感谢张工,已经找到原因了。需要在配置文件中修改 require ["fileinto"];   为 require ["copy", "fileinto"];   (虽然还不是很明白)


官方文档:https://tools.ietf.org/html/rfc3894
Example:

      require ["copy", "fileinto"];
      fileinto :copy "incoming";

修改后的配置文件:[root@mail ~]# vim /var/vmail/sieve/dovecot.sieve

require ["copy", "fileinto"];

# rule:[Move Spam to Junk Folder]
if header :is "X-Spam-Flag" "YES"
{
     fileinto "Junk";
}

# rule:[endelivered Copy to maintain]
if allof (header :contains "From" "MAILER-DAEMON", not header :contains "To" "root@")
{
        redirect :copy "postmaster@valueonline.com.cn";
}

谢谢张工,发现错误了,提示语法错误

我是直接复制下来的,能提供一下这个copy关键字的使用说明吗,谢谢。

==== 必填信息。没有填写将不予回复 ====
- iRedMail 版本号:iRedMail-0.9.5-1
- 使用哪个数据库存储用户帐号(OpenLDAP,MySQL,PostgreSQL): MySQL
- 使用的 Linux/BSD 发行版名称及版本号:CentOS release 6.8
==== ===============================

    由于新上线iRedmail邮件系统,可能会有较多的退信问题需要排查和处理,需要把所有的退信邮件转到到指定的帐号。

      参考以下文档:
            http://www.iredmail.com/bbs/topic2509-iredmail.html  但未能实现需求的效果。
   
     请各位大神帮忙实现以上的需求或提供可参考的资料,谢谢!