Feature #711
Add IP Address To Whitelist using iRedAdmin Greylisting
Description
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:
mysql -u iredadminuser -p
- Once logged in, switch to the cluebringer database:
use cluebringer;
- Then add the IP address, comment, and enable the whitelisted IP:
INSERT INTO greylisting_whitelist (Source,Comment,Disabled) VALUES ('SenderIP:66.249.80.0/20','GOOGLE',0);
- Once logged in, switch to the cluebringer database:
Resources¶
Updated by Daniel Curtis about 9 years ago
- Description updated (diff)
- Status changed from New to In Progress
- % Done changed from 0 to 50
Updated by Daniel Curtis about 9 years ago
- Status changed from In Progress to Resolved
- % Done changed from 50 to 100