Re: [exim] autoreply once on multiple systems

Top Page
Delete this message
Reply to this message
Author: Cyborg
Date:  
To: exim-users
Subject: Re: [exim] autoreply once on multiple systems
Am 28.01.21 um 18:01 schrieb Cyborg via Exim-users:
>
>    drop     condition = ${if eq{${lookup mysql {SELECT '1' FROM
> mail_responders WHERE sender=... and receiver=... and  ( date+86400 <
> unix_timestamp(NOW()) )  LIMIT 1 }}}{1} {1}{0}}
>                log_message = Responder database said, we should drop
> this mail.
>
>

UPS:

 drop     condition = ${if eq{${lookup mysql {SELECT '1' FROM
mail_responders WHERE sender=... and receiver=... and  ( date+86400 >
unix_timestamp(NOW()) )  LIMIT 1 }}}{1} {1}{0}}
               log_message = Responder database said, we should drop
this mail.

Wrong comparison :)

Best regads,
Marius