home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / unix / misc / 4629 < prev    next >
Encoding:
Text File  |  1992-12-21  |  1.2 KB  |  47 lines

  1. Newsgroups: comp.unix.misc
  2. Path: sparky!uunet!spool.mu.edu!uwm.edu!linac!att!princeton!tex.Princeton.EDU!subbarao
  3. From: subbarao@fc.hp.com (Kartik Subbarao)
  4. Subject: Re: Help with Mail list wanted
  5. Message-ID: <1992Dec18.153841.22515@Princeton.EDU>
  6. Originator: news@nimaster
  7. Sender: news@Princeton.EDU (USENET News System)
  8. Nntp-Posting-Host: tex.princeton.edu
  9. Reply-To: subbarao@fc.hp.com
  10. Organization: putchar('I'); for (i = 0; i < 3; i++) putchar('E');
  11. References: <BzF8Lq.27G@inews.Intel.COM>
  12. Date: Fri, 18 Dec 1992 15:38:41 GMT
  13. Lines: 32
  14.  
  15. In article <BzF8Lq.27G@inews.Intel.COM> bhouser@sc9.intel.com writes:
  16. >
  17. >I would like to know how to obtain the names on a mail list given as 
  18. >an alias:
  19. >
  20. >    alias@nodename.com
  21. >
  22. >Is this possible or am I just dreaming?
  23. >
  24. >Brad
  25.  
  26. It depends on how the alias is implemented. If you can telnet to nodename.com's SMTP port, and if it's sendmail is polite enough to allow you to query it,
  27. then you might be able to EXPN alias.
  28.  
  29. i.e,
  30.  
  31. % telnet foo.bar.com 25
  32. Trying...
  33. Connected to foo.bar.com.
  34. Escape character is '^]'.
  35. 220 foo.bar.com sendmail (version #1d234567e+QPX) ready at Fri, 18 Dec 92
  36. expn alias
  37. 250 <john@foo>
  38. ..
  39.  
  40. Or, if that doesn't work, you might just want to mail
  41. postmaster@nodename.com and just ask him.
  42.  
  43.  
  44.     -Kartik
  45.  
  46.  
  47.