Re: [exim] MySQL table lookup..

Top Page
Delete this message
Reply to this message
Author: Hubert Denkmair
Date:  
To: Coax
CC: exim-users
Subject: Re: [exim] MySQL table lookup..
You could try to use a LIKE in your SQL query:
SELECT '$sender_host_address' FROM global_backlist WHERE
'$sender_host_address' LIKE CONCAT(address,'%')

Hubert