home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / mail / sendmail / 2151 < prev    next >
Encoding:
Text File  |  1992-08-27  |  1.3 KB  |  39 lines

  1. Newsgroups: comp.mail.sendmail
  2. Path: sparky!uunet!zaphod.mps.ohio-state.edu!usc!elroy.jpl.nasa.gov!decwrl!deccrl!news.crl.dec.com!pa.dec.com!decuac!decuac!avolio
  3. From: avolio@dco.DEC.COM (Frederick M. Avolio)
  4. Subject: Re: Making two names equal to SENDMAIL
  5. Message-ID: <1992Aug27.204050.14150@decuac.dec.com>
  6. Lines: 25
  7. Sender: news@decuac.dec.com (USENET News System)
  8. Nntp-Posting-Host: gildor.dco.dec.com
  9. Reply-To: avolio@dco.DEC.COM (Frederick M. Avolio)
  10. Organization: Digital Equipment Corp., Washington ULTRIX Resource Center
  11. References:  <1992Aug25.202704.6117@dayton.saic.com>
  12. Date: Thu, 27 Aug 1992 20:40:50 GMT
  13.  
  14.  
  15. What you want is to handle recognizing both addresses to
  16. be a LOCAL address.  Is the hostname dayub.dayton.saic.com?  Then the
  17. domain is dayton.saic.com, right?
  18.  
  19. In Ruleset 0 you probably have a section that tries to strip off local
  20. information.  (If Ruleset 3 focused on the hostpart and the hostpart is
  21. US then toss that...)
  22.  
  23.  
  24. Assuming that $j is your fully qualifed hostname dayub.dayton.saic.com and
  25. $N is your domain dayton.saic.com...
  26.  
  27. We have some lines like this
  28.  
  29. # localize if possible
  30. R$+<@$j>                $:$1<@LOCAL>                    @myfqdm
  31. R$+<@$N>                $:$1<@LOCAL>                    @mydomain
  32.  
  33.  
  34. (In your sendmail.cf you may not use LOCAL.  You may just return $1 here.)
  35.  
  36.  
  37.  
  38. Fred
  39.