home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume26 / port-lpr / part01 / config.h < prev    next >
Text File  |  1993-04-09  |  1KB  |  30 lines

  1. /*
  2.  * The printer server can be told to send email on job completion.
  3.  * By default, this is sent to user@domain, where domain is the
  4.  * fully-qualified Internet domain name (as returned by gethostbyname()).
  5.  * If this will not work (perhaps because the host that is running this
  6.  * version of lpr cannot receive mail), define MAKE_EMAIL_ADDRESS here
  7.  * as a macro that will concoct an appropriate address.  Examples follow:
  8.  *
  9.  *
  10.  * for a VMS machine that can receive DECnet mail, and a UNIX lpd server
  11.  * that understands mail sent to user@node.DECnet, do:
  12.  *
  13.  * #define MAKE_EMAIL_ADDRESS(buf,user,dom) \
  14.        sprintf (buf, "%s@%s.DECnet", user, getenv ("SYS$NODE"))
  15.  *
  16.  *
  17.  * for a VMS machine that can receive DECnet mail, and an lpd server
  18.  * that can send mail to node::user, use:
  19.  *
  20.  * #define MAKE_EMAIL_ADDRESS(buf,user,dom) \
  21.  *     sprintf (buf, "%s::%s", getenv ("SYS$NODE"), user)
  22.  *
  23.  * Or you can concoct your own.  For instance, we at UTK have an Internet
  24.  * domain dnet.utk.edu that maps node.dnet.utk.edu to the appropriate
  25.  * DECnet node for the purposes of email.  So we use:
  26.  *
  27.  * #define MAKE_EMAIL_ADDRESS(buf,user,dom) \
  28.  *     sprintf (buf, "%s@%s.dnet.utk.edu", user, getenv ("SYS$NODE"))
  29.  */
  30.