Re: [Exim] confused with ETRN

Kezdőlap
Üzenet törlése
Válasz az üzenetre
Szerző: David Woodhouse
Dátum:  
Címzett: exim-users
CC: Steve Foster
Új témák: Re: [Exim] confused with ETRN y
Tárgy: 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