Re: [Exim] confused with ETRN

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: David Woodhouse
Data:  
Para: exim-users
CC: Steve Foster
Temas novos: Re: [Exim] confused with ETRN y
Asunto: 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