home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / mail / sendmail / 3015 < prev    next >
Encoding:
Text File  |  1992-12-16  |  1.5 KB  |  38 lines

  1. Newsgroups: comp.mail.sendmail
  2. Path: sparky!uunet!spool.mu.edu!sdd.hp.com!ux1.cso.uiuc.edu!mp.cs.niu.edu!rickert
  3. From: rickert@mp.cs.niu.edu (Neil Rickert)
  4. Subject: Re: Recognizing multiple host names?
  5. Message-ID: <1992Dec16.220505.22173@mp.cs.niu.edu>
  6. Organization: Northern Illinois University
  7. References: <1992Dec16.214020.5831@noao.edu>
  8. Date: Wed, 16 Dec 1992 22:05:05 GMT
  9. Lines: 27
  10.  
  11. In article <1992Dec16.214020.5831@noao.edu> jdavis@bordeaux.kpno.noao.edu (Jim Davis) writes:
  12. >I'm trying to run sendmail 5.65 on a Sun 3, 4.1.1_U1 machine whose hostname
  13. >is coral.kpno.noao.edu.  The nameservers for noao.edu, however, treat the
  14. >machine at that IP address as 'coral.tuc.noao.edu', and at least for now
  15. >there's nothing I can do about that.  But when I try to send mail to
  16. >'user@coral', or 'user@coral.kpno.noao.edu', I get the following error:
  17. >
  18. >>>> HELO coral.tuc.noao.edu
  19. ><<< 553 Local configuration error, hostname not recognized as local
  20. >
  21. >(which isn't surprising).  Now is there a way to tell sendmail to recognize
  22. >coral.tuc.noao.edu as a valid local hostname, as well as the 'real' hostname
  23. >coral.kpno.noao.edu?  I tried adding a
  24. >
  25. >Cwcoral.kpno.noao.edu coral.tuc.noao.edu
  26.  
  27. In standard sendmail, 'Cw' only works for single tokens.  It does not
  28. work for multi-token names.
  29.  
  30. Somewhere in ruleset 0 you will probably need an explicit rule to send
  31. this mail to the local mailer.  Something like
  32.  
  33.     R$+<@coral.tuc.noao.edu>    $#local $:$1
  34.  
  35. although you might want something to also strip routing through
  36. this host name.
  37.  
  38.