1

Topic: SMTP Client IP Denied

======== Required information ====
- iRedMail version (check /etc/iredmail-release): 2.4.0
- Linux/BSD distribution name and version: BSD 8.4 Turnkey 14.1
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MySQL
- Web server (Apache or Nginx): Apache
- Manage mail accounts with iRedAdmin-Pro? Yes
- Related log if you're reporting an issue:
====

Hi - During testing I've managed to get my external client IP banned from connecting to iRedMail SMTP daemon, I can connect to the mail server from other internet ip addresses OK, just not one particular address.  I've checked the blacklists but do not see the address listed - where else do I check?

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: SMTP Client IP Denied

Check iptables firewall rules with command:

iptables -L -n

You can unban it with "fail2ban-client" command:

*) First check "iptables -L -n" output to figure out the IP is banned in which Fail2ban jail.
*) Get the real jail name with command:

fail2ban-client status

*) Unban it with Fail2ban:

fail2ban-client set <jail> unbanip <ip>

3

Re: SMTP Client IP Denied

ZhangHuangbin wrote:

Check iptables firewall rules with command:

iptables -L -n

You can unban it with "fail2ban-client" command:

*) First check "iptables -L -n" output to figure out the IP is banned in which Fail2ban jail.
*) Get the real jail name with command:

fail2ban-client status

*) Unban it with Fail2ban:

fail2ban-client set <jail> unbanip <ip>

Thank You!