home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pp / pp-6.0 / examples / xtel / config.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-18  |  796 b   |  48 lines

  1. /* config.h: compile time configuration parameters */
  2.  
  3. /*
  4.  * @(#) $Header$
  5.  *
  6.  * $Log$
  7.  *
  8.  */
  9.  
  10.  
  11. #ifndef _H_CONFIG
  12. #define _H_CONFIG
  13.  
  14.  
  15. /*
  16. Define the type of system you are running on. Beware - most of these have
  17. no effect what so ever! Only one should be defined.
  18. */
  19.  
  20. /*
  21. Choose DBM (-ldbm stuff) or NDBM (berkeley4.3/sun standard & better)
  22. */
  23. #define        NDBM
  24. #undef        DBM
  25. #undef        GDBM
  26.  
  27. /* define the following if you require BIND nameserver support for SMTP */
  28. /* #define NAMESERVER    */
  29.  
  30. #define    PP_DEBUG_ALL    2
  31. #define PP_DEBUG_SOME    1
  32. #define PP_DEBUG_NONE    0
  33.  
  34. #define PP_DEBUG PP_DEBUG_ALL
  35.  
  36. /*
  37.  * define the following if  you require user tools to use uk domain ordering 
  38.  * by default
  39.  * #define UKORDER
  40.  */
  41.  
  42. /*
  43. Add after this anything specific to your host.
  44. */
  45.  
  46. #define VAT    /* extra stuff */
  47. #endif
  48.