home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / mail / sendmail / 2280 < prev    next >
Encoding:
Text File  |  1992-09-14  |  1.3 KB  |  33 lines

  1. Newsgroups: comp.mail.sendmail
  2. Path: sparky!uunet!zaphod.mps.ohio-state.edu!pacific.mps.ohio-state.edu!linac!mp.cs.niu.edu!rickert
  3. From: rickert@mp.cs.niu.edu (Neil Rickert)
  4. Subject: Re: MX chaining to MXs?
  5. Message-ID: <1992Sep15.115200.11960@mp.cs.niu.edu>
  6. Organization: Northern Illinois University
  7. References: <193nr3INNd5k@plts.uucp>
  8. Date: Tue, 15 Sep 1992 11:52:00 GMT
  9. Lines: 22
  10.  
  11. In article <193nr3INNd5k@plts.uucp> tal@plts.uucp (Tom Limoncelli) writes:
  12. >So, when a site tries to send to foo@hocc.org, the MX record will
  13. >redirect the message to warren.mentorg.com, which has a (wildcard) MX
  14. >record to go to rainbow.mentorg.com, which will know the real way to
  15. >get to warren.mentorg.com (since it is inside the firewall), which will
  16. >know how to deliver to hocc.org.
  17.  
  18. No.  You can't do that.  MX records are not transitive (cannot be chained).
  19.  
  20. Best method:  Have an MX record pointing to rainbow.mentorg.com, and have
  21. that host set up to forward the message to warren.mentorg.com.
  22.  
  23. Alternative method:
  24.  
  25. hocc.org.    IN    MX    0    warren.mentorg.com.
  26.         IN    MX    10    rainbow.mentorg.com.
  27.  
  28. A host will try to send to warren.  The attempt will time out, and it will
  29. connect to the second choice of rainbow.  The disadvantage is that every
  30. message will make a first false attempt, and some mailers don't try
  31. more than one MX address.
  32.  
  33.