home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / mail19.zip / mail.cfg next >
Text File  |  1993-05-26  |  5KB  |  116 lines

  1.  
  2.                     Tiny Mail 1.8 Configuration File
  3.                     --------------------------------
  4.  
  5. This is a sample configuration file for TinyMail. Each line that
  6. contains an equal sign in this file will be interpreted (line-by-line)
  7. by the Rexx Interpreter. Some examples in this document will have /* and
  8. */ marks around them. This is the comment character for Rexx, and
  9. whatever is inside those marks are ignored.
  10.  
  11. Any assignment statement put into this file will be used by TinyMail
  12. provided that the variable that you put is one that is actually used by
  13. the code. All possible variables are listed in this configuration file.
  14.  
  15. Placing the values in this file, rather than in MAIL.CMD will enable you
  16. to upgrade to a new version of MAIL.CMD effortlessly.
  17.  
  18. This file can be placed anywhere that is pointed by your PATH, DPATH or
  19. the ETC environmental variables. I will indent the comments to make the
  20. file more readable:
  21.  
  22.      The internet network address of your OS/2 PC:
  23.  
  24. g.myself = 'turgut@earn-ps.circe.fr'
  25.  
  26.      The signature file to be appended to each outgoing mail. You can
  27.      make this a blank assignment to disable this feature.
  28.  
  29. g.signature = tcp'\signatur.txt'
  30.  
  31.      Number of displayable lines on your screen, minus 4.
  32.      This is no longer necessary - it is normally calculated via
  33.      a system call. Thus, it is commented out:
  34. /* g.screensize = 20    */
  35.  
  36.      Should the program use SysCLS to clear screen when starting a new
  37.      mail, or while displaying the old one? If set to 0, the information
  38.      will scroll instead of on a new page.
  39.  
  40. g.UseCLS = 1
  41.  
  42.      Name of your NAMES file. This file contains nicknames for people
  43.      that you exchange mail often. If specified, the program will try to
  44.      resolve all addresses that contain no '@' sign.
  45.  
  46. g.namefile = tcp'\turgut.nam'
  47.  
  48.      If you omit a trailing internet domain name, like if you enter
  49.         MAIL TURGUT@FRMOP11
  50.      what should the program append at the end?
  51.  
  52. g.defaultdomain = '.BITNET'
  53.  
  54.      The following two are "guessed" by the system based on your ETC
  55.      environmental variable. If it is not correct, you may alter the
  56.      setting to change it:
  57.  
  58. g.etcdir = tcp'\ETC' /* location of \tcpip\etc directory, with drive */
  59. g.bindir = tcp'\BIN' /* location of \tcpip\bin directory, with drive */
  60.  
  61.      If the built-in editor is too limiting, you can specify an
  62.      alternative editor's name here. Each time you need to write a
  63.      message, this editor will be called:
  64.  
  65. g.editor = '' /* you may specify an external editor, like:      */
  66.               /*     g.editor = 'E.EXE'                         */
  67.  
  68.  
  69.      The following parameter specifies if sendmail should be run
  70.      'detached' meaning, in the background. If '1', you will not see any
  71.      delivery errors, but you will not have to wait for the delivery. If
  72.      0, MAIL will resume its activity quickly, and mail delivery will be
  73.      done in the background.
  74.  
  75. g.detachSendmail = 0
  76.  
  77.      If the built-in viewer (OS/2's TYPE command) is not enough, you can
  78.      specify some other program that can do the displaying of your
  79.      messages:
  80.  
  81. g.displayAgent = ''  /* you may specify an external displayer like:  */
  82.                      /*     g.DisplayAgent = 'LIST.EXE'              */
  83.  
  84.      Filename of the file where the messages you write will be appended.
  85.      This file continually grows - as you write replies to people. For
  86.      HPFS, you may use something like 'All.Notebook', but for FAT,
  87.      you need to specify something else. How about Outgoing.Not?
  88.  
  89.      If you assign g.AllNotebook to blank, meaning '', your OUTGOING
  90.      mail will NOT be logged anywhere.
  91.  
  92. g.AllNotebook = 'Outgoing.not'
  93.  
  94.      The program uses a number of temporary files. This is the name that
  95.      will be used for it.
  96.  
  97. g.OutFile = 'C:\Mailout.fil'
  98.  
  99.      Additional RFC822 Header Items. They will be appeneded to the top
  100.      of the mail message before delivery. They must be RFC822
  101.      compatible. Here are some examples. Note that they are disabled
  102.      currently.
  103.  
  104. /* g.Header.1 = 'Organization: EARN Association'        */
  105. /* g.Header.2 = 'X-Favorite-Food: Haagen-Dazs'          */
  106. /* g.Header.3 = 'Reply-To:       turgut@trearn.bitnet'  */
  107.  
  108. This concludes the parameter settings for Tiny Mail 1.8. There may be
  109. additional parameters added to the next versions of TinyMail, so make
  110. sure to check the documentation, and/or the beginning of MAIL.CMD file.
  111.  
  112. If you have any questions/comments, don't hesitate to ask for them. I
  113. can be reached as turgut@frmop11.cnusc.fr or turgut@ege.edu.tr.
  114.  
  115.  
  116.