home *** CD-ROM | disk | FTP | other *** search
/ YPA: Your Privacy Assured / YPA.ISO / other_goodies / utilities / iu-14-as225.lha / INetUtils-1.4 / s / StartSMTPd
Text File  |  1994-12-09  |  1KB  |  34 lines

  1. ;
  2. ;   StartSMTPd
  3. ;
  4. ;    Copyright 1993 - 1994 by Michael B. Smith.
  5. ;    All Rights Reserved.
  6. ;
  7. ;    Example script to start the STMPd Daemon.
  8. ;
  9. ;    SMTPMailDir points to where MailBoxes/Folders are located. It may be
  10. ;    shared with UUCP MailBoxes and Folders (they are the same format).
  11. ;
  12. ;    SMTPSpoolDir is the directory where SMTP spool files are to be located.
  13. ;    If SMTPpost cannot locate a destination host, it places the articles
  14. ;    in this directory, and retries sending the messages on a regular basis.
  15. ;    It *may not* be shared with UUSpool. The batch files are a different
  16. ;    format.
  17. ;
  18. ;    SMTPSmarterHost is the SMTP host where mail is sent if the destination
  19. ;    host is not reachable. It is presumed to be an Internet host which
  20. ;    has better routing information than do we.
  21. ;
  22. ;    SMTPRMail is the program used to deliver mail destined for the local
  23. ;    host.
  24. ;
  25. ;    SMTPRoute defines the mechanisms used to find a hostname, and how to
  26. ;    deliver it.
  27. ;
  28. SetEnv SMTPMailDir    INet:Mail/
  29. SetEnv SMTPSpoolDir    INet:MailSpool/
  30. SetEnv SMTPSmarterHost    dummy
  31. SetEnv SMTPRMail    SMTPpost -r
  32. SetEnv SMTPRoute    mx,smarterhost,smtp,uucp
  33. run <>nil: SMTPd
  34.