Feature #711
Updated by Daniel Curtis about 9 years ago
I encountered a problem where emails were being bounced from certain hosts due to greylisting. The iRedAdmin admin panel doesn't have a section to add IP addresses to the greylisting tools whitelist. Whitelisted IP addresses can be manually added to the SQL database used, my use case is MySQL. * Log into the database: <pre> mysql -u iredadminuser -p </pre> *# * Once logged in, switch to the cluebringer database: <pre> use cluebringer; </pre> *# * Then add the IP address, comment, and enable the whitelisted IP: <pre> INSERT INTO greylisting_whitelist (Source,Comment,Disabled) VALUES ('SenderIP:66.249.80.0/20','GOOGLE',0); </pre> h2. Resources * http://www.iredmail.org/forum/topic7555-iredmail-support-popular-sites-to-whitelist-from-greylisting.html