Hi guys. I'm looking into implementing a check_recipient_access as a table inside a MySQL database. It's basically a list of users that have been banned from the system and for whom I don't want a simple 550 user unknown bounce. Currently the list is a flat file hash map:
u...@domain.com REJECT This particular user has been banned. us...@domain.com REJECT This particular user has been banned. First of all, what should be the table structure? Are "REJECT" and "This particular user has been banned." two separate fields? Secondly, what should query performed by postfix look like? Thanks! -JK