Re: [Exim] confused with ETRN

Página Principal
Apagar esta mensagem
Responder a esta mensagem
Autor: David Woodhouse
Data:  
Para: exim-users
CC: Steve Foster
Tópicos Novos: Re: [Exim] confused with ETRN y
Assunto: Re: [Exim] confused with ETRN
ph10@??? said:
> Yes. Exim isn't designed that way. You can't even do ETRN properly if
> you leave messages on Exim's queue, because Exim doesn't keep queues
> of mail on a per-host basis.


Even if it did, that wouldn't really be sufficient for TURN. You'd actually
want something like:
    foreach(mail in the queue)
      foreach(recipient of that mail)
        foreach(MX record for that recipient's domain)
          // (which is higher-priority than us for that domain)
          foreach (A record for that MX record)
            if (IP == connected IP)
          send mail.


I don't fancy implementing that :)


--
dwmw2