home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / umsmtp03.zip / umail.pro < prev    next >
Text File  |  1995-04-16  |  6KB  |  146 lines

  1. //****************************************************************************
  2. // File: umail.pro                       Version 3.0               16-Apr-1995
  3. //                                       Niel Kempson <kempson@snowyowl.co.uk>
  4. //****************************************************************************
  5. //
  6. // NOTE
  7. //
  8. //  This file should contain no explicit references to path specifications.
  9. //  Actually the :PROFILE section does contains path information but it
  10. //  should be commented out in this example.
  11. //
  12. //  See also the enclosed Ultimail FAQ for a commented example of a
  13. //  UMAIL.PRO file.
  14. //
  15. //****************************************************************************
  16. //
  17. // Change Log
  18. //
  19. //    2.0 [05-Feb-1995] Niel Kempson <snowyowl.co.uk>
  20. //        Initial version.
  21. //
  22. //    3.0 [16-Apr-1995] Niel Kempson <snowyowl.co.uk>
  23. //        Added explicit warnings about path specifications and a pointer 
  24. //        to the Ultimail FAQ.
  25. //
  26. //****************************************************************************
  27. //----------------------------------------------------------------------------
  28. // Ultimedia Mail/2 Configuration File
  29. // ===================================
  30. //
  31. // Many features of UltiMail are user configurable. All features which are
  32. // specific for a given UltiMail client are collected in this profile. This
  33. // file can be edited with any regular editor. Most conveniently it is hoever
  34. // accessed through the settings notebooks in UltiMail itself.
  35. //
  36. // Comments (like this one) are according to C++ conventions preceeded by a
  37. // double forward slash '//'. The double forward slash and anything after it
  38. // on the given line is then ignored by UltiMail.
  39. // Note: comments are not preserved when the configuration file is changed
  40. //       through the settings notebooks from within UltiMail.
  41. // Note: changes made directly in this file do not take effect until UltiMail
  42. //       is logged off and on again with this profile. Most changes made
  43. //       through the settings notebooks however take effect immediately.
  44. //----------------------------------------------------------------------------
  45. :SESSION       dll              = 'CSESLOCL'
  46.                name             = 'Local Mail'
  47.                pipeclass        = 'PIPELOCL'
  48.                load             = 'automatic'
  49.                retrycount       = '1'
  50.                retryinterval    = '5000'
  51.                color            = 'Blue'
  52.                userid           = ''
  53.                password         = ''
  54.                .
  55.  
  56. //
  57. //  Keep this :PROFILE section commented out to prevent UltiMail/2 Lite
  58. //  from consulting TCPOS2.INI.
  59. //
  60. //:PROFILE       provider         = 'ADVANTIS'
  61. //               file             = 'C:\tcpip\ETC\TCPOS2.INI'
  62. //               .
  63.  
  64. :LETTER        address          = 'medium'
  65.                open             = 'after'
  66.                create           = 'Text / plain'
  67.                separator        = '//--- forwarded letter -------------------------------------------------------'
  68.                annotation       = '> '
  69.                sigplacement     = 'after'
  70.                useseparator     = 'yes'
  71.                useannotation    = 'yes'
  72.                viewinwindow     = 'yes'
  73.                beeponnewmail    = 'yes'
  74.                notifysendok     = 'yes'
  75.                signature        = '-- Your NameYour OrganisationE-mail: yourid@yourhost.your.domain'
  76.                from             = 'Your Name <yourid@yourhost.your.domain>'
  77.                replyto          = 'Your Name <yourid@yourhost.your.domain>'
  78.                .
  79. :OBJHANDLER    type             = Text
  80.                subtype          = enriched
  81.                viewtype         = SOM
  82.                viewmodule       = OBJEPM
  83.                viewdata         = Buffer
  84.                preload          = Yes
  85.                .
  86. :OBJHANDLER    type             = Text
  87.                subtype          = *
  88.                viewtype         = SOM
  89.                viewmodule       = OBJMLE
  90.                viewdata         = Buffer
  91.                preload          = Yes
  92.                .
  93. :OBJHANDLER    type             = Image
  94.                subtype          = *
  95.                viewtype         = SOM
  96.                viewmodule       = OBJIMG
  97.                viewdata         = File
  98.                preload          = No
  99.                .
  100. :OBJHANDLER    type             = Audio
  101.                subtype          = X-midi
  102.                viewtype         = EXE
  103.                viewmodule       = MPPM
  104.                .
  105. :OBJHANDLER    type             = Audio
  106.                subtype          = *
  107.                viewtype         = EXE
  108.                viewmodule       = WEPM
  109.                .
  110. :OBJHANDLER    type             = Message
  111.                subtype          = external-body
  112.                viewtype         = SOM
  113.                viewmodule       = OBJEXT
  114.                viewdata         = File
  115.                preload          = No
  116.                .
  117. :OBJHANDLER    type             = Video
  118.                subtype          = *
  119.                viewtype         = EXE
  120.                viewmodule       = MPPM
  121.                .
  122. :OBJHANDLER    type             = *
  123.                subtype          = *
  124.                viewtype         = 'SOM'
  125.                viewmodule       = 'OBJHNDLR'
  126.                viewdata         = 'file'
  127.                preload          = 'no'
  128.                params           = ''
  129.                .
  130. :USER          id               = 'yourid'
  131.                password         = '*'
  132.                name             = 'Your Name'
  133.                reply_domain     = 'yourhost@your.domain'
  134.                .
  135. :TIMEZONE      zone             = '14'
  136.                hours            = '0'
  137.                minutes          = '0'
  138.                summerwhich      = '4'
  139.                summerday        = '0'
  140.                summermonth      = '2'
  141.                standardwhich    = '4'
  142.                standardday      = '0'
  143.                standardmonth    = '9'
  144.                .
  145. //---end of file -------------------------------------------------------------
  146.