I’ll admit that I don’t have a ton of IPTables knowledge but I didn’t noticed any rate limits on the inbound SMTP, POP, IMAP, and HTTPS connections… I am used to seeing something like this:
-A INPUT -p tcp -m tcp --dport 993 -m state --state NEW -m recent --set --name imapssl --rsource
-A INPUT -p tcp -m tcp --dport 993 -m state --state NEW -m recent --update --seconds 10 --hitcount 20 --name imapssl --rsource -j LOG_AND_DROP
-A INPUT -p tcp -m tcp --dport 993 -j ACCEPT
Is there rate limits already in the rules and I am just missing it?