home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / umsmtp03.zip / umailsrv.pro < prev   
Text File  |  1995-04-16  |  4KB  |  90 lines

  1. //****************************************************************************
  2. // File: umailsrv.pro                    Version 3.0               16-Apr-1995
  3. //                                       Niel Kempson <kempson@snowyowl.co.uk>
  4. //****************************************************************************
  5. //
  6. // NOTE
  7. //
  8. //  This file contains explicit reference to path specifications in several
  9. //  of its sections:
  10. //
  11. //      :MAIL
  12. //          the 'directory' entry specifies where incoming mail is placed
  13. //          before final delivery to users
  14. //
  15. //      :ACCESS
  16. //          the 'root' entry specifies where mail should be stored for
  17. //          the user ID declared by the :ACCESS section
  18. //
  19. //  Note that the :PROFILE section also contains path information but it
  20. //  should be commented out in this example.
  21. //
  22. //  See also the enclosed Ultimail FAQ for a commented example of a
  23. //  UMAILSRV.PRO file.
  24. //
  25. //****************************************************************************
  26. //
  27. // Change Log
  28. //
  29. //    2.0 [05-Feb-1995] Niel Kempson <snowyowl.co.uk>
  30. //        Initial version.
  31. //
  32. //    3.0 [16-Apr-1995] Niel Kempson <snowyowl.co.uk>
  33. //        Added explicit warnings about path specifications and a pointer
  34. //        to the Ultimail FAQ.
  35. //
  36. //****************************************************************************
  37. //----------------------------------------------------------------------------
  38. // Ultimedia Mail/2 Configuration File
  39. // ===================================
  40. //
  41. // Many features of UltiMail are user configurable. All features which are
  42. // specific for a given UltiMail client are collected in this profile. This
  43. // file can be edited with any regular editor. Most conveniently it is hoever
  44. // accessed through the settings notebooks in UltiMail itself.
  45. //
  46. // Comments (like this one) are according to C++ conventions preceeded by a
  47. // double forward slash '//'. The double forward slash and anything after it
  48. // on the given line is then ignored by UltiMail.
  49. //
  50. // Note: comments are not preserved when the configuration file is changed
  51. //       through the settings notebooks from within UltiMail.
  52. //
  53. // Note: changes made directly in this file do not take effect until UltiMail
  54. //       is logged off and on again with this profile. Most changes made
  55. //       through the settings notebooks however take effect immediately.
  56. //----------------------------------------------------------------------------
  57. :MAIL          directory        = 'C:\tcpip\UMAIL\Server'
  58.                splitsize        = '131072'
  59.                .
  60.  
  61. //
  62. //  Keep this :PROFILE section commented out to prevent UltiMail/2 Lite
  63. //  from consulting TCPOS2.INI.
  64. //
  65. //:PROFILE       provider         = 'ADVANTIS'
  66. //               file             = 'C:\tcpip\ETC\TCPOS2.INI'
  67. //               .
  68.  
  69. :SERVER        dll              = 'CSESLOCL'
  70.                name             = 'Local Mail'
  71.                pipeclass        = 'PIPELOCL'
  72.                maxinst          = '20'
  73.                load             = 'automatic'
  74.                retrycount       = '1'
  75.                retryinterval    = '5000'
  76.                .
  77. :ACCESS        name             = 'Post Master'
  78.                user             = 'PostMaster'
  79.                password         = '*'
  80.                root             = 'C:\tcpip\UMAIL\MailStor\Postmstr'
  81.                access           = 'readwrite'
  82.                .
  83. :ACCESS        name             = 'Your Name'
  84.                user             = 'yourid'
  85.                password         = '*'
  86.                root             = 'C:\TCPIP\UMAIL\MailStor\yourid'
  87.                access           = 'readwrite'
  88.                .
  89. //---end of file -------------------------------------------------------------
  90.