Re: [exim] synchronous delivery via LMTP

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: Axel Rau
Data:  
Para: exim-users
Asunto: Re: [exim] synchronous delivery via LMTP
Hi Tony,

Am 01.06.2008 um 00:21 schrieb Tony Finch:

> On Sat, 31 May 2008, Axel Rau wrote:
>>
>> I route mails to local domains to an IMAP server (Archiveopteryx) via
>> LMTP. Is there any chance to do this delivery synchronously? I don't
>> like bounce mails with forged senders (-:
>
> You can't deliver synchronously. Instead, you can do more thorough
> checking in your ACLs with require verify=recipient/callout=use_sender

Ah, now I see for what a callout while verifying recipient is good
for...
This works now perfect in acl_check_rcpt:

   deny    domains        = +local_domains
           message        = Sorry, no mailbox here by that name: $ 
{local_part}@${domain}
           !verify        = recipient/callout=use_sender


Thanks a lot, Axel