home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1 / HamRadio.cdr / misc / tcpipsrc / files.h < prev    next >
C/C++ Source or Header  |  1991-01-27  |  1KB  |  28 lines

  1. #ifndef    _FILES_H
  2. #define    _FILES_H
  3.  
  4. /* External definitions for configuration-dependent file names set in
  5.  * files.c
  6.  */
  7. extern char *Startup;    /* Initialization file */
  8. extern char *Userfile;    /* Authorized FTP users and passwords */
  9. extern char *Maillog;    /* mail log */
  10. extern char *Mailspool;    /* Incoming mail */
  11. extern char *Mailqdir;    /* Outgoing mail spool */
  12. extern char *Mailqueue;    /* Outgoing mail work files */
  13. extern char *Routeqdir;    /* queue for router */
  14. extern char *Alias;    /* the alias file */
  15. extern char *Dfile;    /* Domain cache */
  16. extern char *Fdir;    /* Finger info directory */
  17. extern char *Arealist;        /* List of message areas */
  18. extern char *Helpdir;        /* Mailbox help file directory */
  19. extern char *Rewritefile;    /* Address rewrite file */
  20. extern char *Newsdir;        /* News messages and NNTP data */
  21. extern char *Signature;        /* Mail signature file directory */
  22. extern char *Forwardfile;    /* Mail forwarding file */
  23. extern char *Historyfile;    /* Message ID history file */
  24. extern char *PPPhosts;        /* peer ID to IP address lookup table */
  25. void initroot __ARGS((char *root));
  26.  
  27. #endif    /* _FILES_H */
  28.