home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 26 / CD_ASCQ_26_1295.iso / vrac / mred225.zip / MOREINFO.ZIP / MAILPOLL.TXT < prev    next >
Text File  |  1995-05-09  |  7KB  |  247 lines

  1.  
  2.             DataEnter, Michael Kocum
  3.             Taborstrasse 27/23
  4.             A-1020 Vienna
  5.             AUSTRIA
  6.  
  7.         CIS: 70143,1667
  8.         MHS: MICHAEL @ DEMK (via CSERVE)
  9.    Internet: michael@demk.co.at
  10.         Fax: +43/1/2143829
  11.  
  12.  
  13.  
  14.  
  15.  
  16. Introduction to MailPoll
  17. ------------------------
  18.  
  19. MailPoll is a addon for Microsoft Mail and Windows for Workgroups.
  20.  
  21. Its purpose is to force the postoffice where MailPoll is installed to
  22. call another postoffice.
  23.  
  24.  
  25. Some suggestion what you can do:
  26.  
  27. -Save your money by letting other postoffice call your postoffice
  28.  
  29. -Create a true Dial-in-only postoffice
  30.  
  31. -Save long distance calls by calling always from the cheaper side
  32.  
  33.  
  34.  
  35. System Requirements
  36. -------------------
  37.   DOS 3.3 or higher
  38.   Microsoft Mail, version 3.0 or above or
  39.   Windows for Workgroups, versions 3.1 or above
  40.  
  41.  
  42.  
  43. Installation
  44. ------------
  45.  
  46. MailPoll requires a user mailbox on your Microsoft Mail system in order
  47. to work with Microsoft Mail. You have to create this mailbox before
  48. installing MailPoll.
  49.  
  50. On a Microsoft Mail Postoffice this is done via ADMIN.EXE.
  51.  
  52. We suggest, that you use "MailPoll" as the mailbox
  53. name and "MailPoll at <fill in your postoffice>" as the alias.
  54. Using "at postoffice" will make it simpler to select the right MailPoll
  55. in the address book.
  56.  
  57. Further create a directory on your server and copy MAILPOLL.EXE,
  58. APPGET.EXE and APPPUT.EXE into this directory. We suggest that you make
  59. a directory called MailPoll below your MAILEXE, so its clear that
  60. MailPoll belongs to MS Mail.
  61.  
  62. Start MailPoll with the argument -c to configure it.
  63. You will get a empty list. Press INS and fill out the fields.
  64.  
  65.  
  66.    Network: The network you want to call
  67. Postoffice: The postoffice you want to call
  68.      Start: Start time
  69.        End: End Time
  70.      Every: Every ? minutes
  71.  
  72.     Sunday: Y
  73.     Monday: Y
  74.    Tuesday: Y
  75.  Wednesday: Y
  76.   Thursday: Y
  77.     Friday: Y
  78.   Saturday: Y
  79.  
  80. This sample assumes that you want to call the postoffice
  81. NET/OFFICE between 09:00 and 17:00 every 60 minutes from Monday to
  82. Friday.
  83.  
  84.    Network: NET
  85. Postoffice: OFFICE
  86.      Start: 09:00
  87.        End: 17:00
  88.      Every: 60
  89.  
  90.     Sunday: N
  91.     Monday: Y
  92.    Tuesday: Y
  93.  Wednesday: Y
  94.   Thursday: Y
  95.     Friday: Y
  96.   Saturday: N
  97.  
  98.  
  99. Your can define as many times and/or postoffices as you like.
  100.  
  101.  
  102.  
  103. Arguments
  104. ---------
  105.  
  106. MailPoll uses the following arguments:
  107.  
  108. -f<Mailbox>          Mailbox name
  109. -p<Password>         Mailbox password (default no password)
  110. -d<Drive>            Drive where MailData is located (default drive M)
  111.                      or full path to MailData with trailing backslash
  112.                      like M:\MAILDATA\
  113.  
  114. -c                   Config MailPoll
  115. -n                   Poll now
  116.  
  117.  
  118. Sample: MailPoll -fAdmin -pPassword -dM
  119.  
  120.  
  121.  
  122. Polling
  123. -------
  124.  
  125. In order to work, MailPoll has to be started from time to
  126. time. This can be done in two different ways.
  127.  
  128. If you have Microsoft Mail Postoffice than you have a maschine which
  129. runs EXTERNAL.EXE. You can put MailPoll in a loop with External and
  130. so MailPoll will be called periodic.
  131.  
  132. A sample batch file may look like:
  133.  
  134. @echo off
  135. :Start
  136.  
  137.    rem Change to MailPoll directory
  138.    cd MailPoll
  139.  
  140.    rem Execute MailPoll
  141.    MailPoll -fAdmin -pPassword -dM
  142.  
  143.    rem Change back to directory where External is located
  144.    cd ..
  145.  
  146.    rem Call External for 15 minutes
  147.    external -BR0:0:15
  148.  
  149.    rem Check Externals errorlevel to find out if the
  150.    rem operator pressed  ESC
  151.    if errorlevel 66 goto End
  152.    if errorlevel 63 goto Start
  153.    if errorlevel 62 goto End
  154. :End
  155.  
  156.  
  157. You can also run MailPoll in the background of Windows. A special
  158. programm, MAILWAIT.EXE is included for this porpose. MailWait accepts one
  159. argument and this is the time to wait in seconds. MailWait is designed
  160. so that it releases all recources to Windows and runs smoothly in the
  161. background.
  162.  
  163.  
  164. A sample batch file may look like:
  165.  
  166. @echo off
  167. :Start
  168.  
  169.    rem Change to MailPoll directory
  170.    cd MailPoll
  171.  
  172.    rem Execute MailPoll
  173.    MailPoll -fAdmin -pPassword -dM
  174.  
  175.    rem Change back to directory where MailWait is located
  176.    cd ..
  177.  
  178.    rem Call MailWait for 900 seconds (= 15 minutes)
  179.    MailWait 900
  180.  
  181.    rem Check MailWaits errorlevel to find out if the
  182.    rem operator pressed  ESC
  183.    if errorlevel 1 goto End
  184.    goto Start
  185. :End
  186.  
  187.  
  188. Licensing Agreement
  189. -------------------
  190.  
  191.     MailPoll (c) is copyrighted 1993-1995 by DataEnter, Michael Kocum,
  192.     portions (c) Microsoft Corp.
  193.  
  194.     This product and its documentation may not, in whole or in part, be
  195.     copied, reproduced, transmitted, transcribed, stored in a retrieval
  196.     system, or translated into any other natural or computer language, in
  197.     any form or by any means whatsoever, be it electronic, mechanical,
  198.     magnetic, optical, manual or otherwise, without the prior written
  199.     consent of DataEnter.
  200.  
  201.     DataEnter makes no warranty or representation, either expressed or
  202.     implied, with respect to the product MailPoll and its
  203.     documentation, their quality, perfomance, merchantability, or fitness
  204.     for a particular purpose. DataEnter reserves the right to revise the
  205.     user's guide and make changes in the content without obligation to
  206.     notify any person or organization of such a change.
  207.  
  208.     In no event will DataEnter be liable for any direct, indirect,
  209.     special, incidental or consequential damages, real or imagined,
  210.     resulting from the use or purchase of this software.
  211.     Under no circumstances shall DataEnter's liability for damages
  212.     exceed the price paid for the software license.
  213.  
  214.     Should any remedy hereunder be determined to have failed, all
  215.     limitations of liability and exclusion of damages set forth above
  216.     shall remain in full force and effect.
  217.  
  218.     The extent of the DataEnter's warranty for the software and its
  219.     documentation is limited to physical defects of the distribution media
  220.     containing the software. Contact DataEnter to obtain return
  221.     authorization for the replacement diskette within 30 days of the
  222.     original date of purchase. Any further statement made by agents,
  223.     employees, distributors or dealers of DataEnter do not constitute
  224.     warranties and are not binding. No employee of DataEnter has the
  225.     authority to modify any portion of this warranty.
  226.  
  227.     All brand and product names we refer to in the documentation are used
  228.     solely for identification purposes and may be trademarks of other
  229.     companies.
  230.  
  231.     DataEnter, (the licensor) grants the buyer (the licensee)
  232.     the right to use this copy of MailPoll (the program)
  233.     on a single computer at a single location as long as the
  234.     licensee complies with the terms of this license. The licensor
  235.     reserves the right to terminate this license if the licensee
  236.     violates any part of the agreement.
  237.  
  238.     The licensee agrees to make copies of the program only for backup
  239.     purposes. The licensee agrees not to copy the documentation and to
  240.     take all necessary precautions to ensure that the backup copies of the
  241.     software are not distributed to or acquired by other parties.
  242.  
  243.     Microsoft Mail is a trademark of Microsoft Corp.
  244.     Windows for Workgroups is a trademark of Microsoft Corp.
  245.  
  246.  
  247.