home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / BBS / DOORS / FAXDOR14.ZIP / ALLFAX10.ZIP / ALLFAX10.DOC < prev   
Encoding:
Text File  |  1991-08-21  |  4.9 KB  |  141 lines

  1.  
  2.        ┌──────────────────────────────────────────────────────────┐
  3.        │                                                          │
  4.        │          ALL-FAX Message Base Faxing Utility             │
  5.        │                                                          │
  6.        │               Copyright 1991 G.Freymann                  │
  7.        │                                                          │
  8.        └──────────────────────────────────────────────────────────┘
  9.              A free support program for EchoFax users ONLY!
  10.  
  11.  
  12. PURPOSE:  To fax the entire contents of a message base to a fax machine.
  13. -------
  14.  
  15.     HOW:  Unzip the contents of ALLFAX##.ZIP into whatever subdirectory
  16.     ---   you prefer.
  17.  
  18.           Type at DOS;  ALLFAX /M=d:\path\msgbase /P=phone_number
  19.                         MSGFAX[.BAT]
  20.  
  21.           In a batch file enter;
  22.                         ALLFAX /M=d:\path\msgbase /P=phone_number
  23.                         CALL MSGFAX.BAT
  24.  
  25. FILENAMES:
  26. ---------
  27.  
  28.  ALLFAX.EXE - Main executible program file
  29.  ALLFAX.PGE - Optional addition to canned cover page
  30. ALL-FAX.BAT - Initial batch file to get everything going
  31.  MSGFAX.TXT - ASCII contents of all messages to be faxed
  32.  MSGFAX.BAT - Created by ALLFAX.EXE to call up Bitfax
  33.   COVER.TXT - Cover page to fax
  34.  ALLFAX.LOG - Brief activity log
  35.  
  36.  
  37.  
  38. THE LONGER VERSION OF FILENAMES:
  39. -------------------------------
  40.  
  41.  ALLFAX.EXE - Main executible program file
  42.  ==========
  43. This program expects to find TWO parameters passed on in a specific manner
  44. like this:
  45.  
  46.         /M=  full drive/path/name of message base to be faxed
  47.         /P=  phone number with no dashes.. This may be local or long
  48.              distance... there are no validity checks done to the phone
  49.              number.
  50.  
  51. Once ALLFAX.EXE creates the necessary files for Bitfax, you should then
  52. call up the MSGFAX.BAT file... so please use ALL-FAX.BAT when running
  53. this program.. it will correctly pass on control to Bitfax.
  54.  
  55.  
  56.  ALLFAX.PGE - Optional addition to canned cover page
  57.  ==========
  58. This is a simple ASCII file that you can create to add your own customized
  59. look to the cover page.  The canned cover page is pretty brief.
  60.  
  61.  
  62. ALL-FAX.BAT - Initial batch file to get everything going
  63. ===========
  64. Contains the following lines:
  65.  
  66.         ECHO OFF
  67.         REM MUST HAVE FULL PARAMETERS LIKE THIS
  68.         REM ALLLFAX /M=L:\MSGS\SUPPORT /P=3425544
  69.         ALLFAX %1 %2
  70.         REM IF YOU WANT TO SAVE THE CONTENTS OF THE MESSAGE BASE
  71.         REM DELETE THE REM ON THE NEXT LINE AND EDIT AS NEEDED
  72.         REM COPY MSGFAX.TXT MSGBASE.TXT
  73.         CALL MSGFAX.BAT
  74.  
  75. If you wish to keep a copy of the ASCII version of your message base you
  76. can edit this batch file and copy the ascii text to a filename of your
  77. choice and review it later.  Just be sure to copy the ascii text BEFORE
  78. you get into Bitfax!
  79.  
  80.  
  81.  MSGFAX.TXT - ASCII contents of all messages to be faxed
  82.  ==========
  83. Created by the main program.  This file contains the ASCII version of
  84. your entire message base and it is this file that Bitfax will use.
  85.  
  86.  
  87.  MSGFAX.BAT - Created by ALLFAX.EXE to call up Bitfax
  88.  ==========
  89. Created by the main program.  This file contains the proper set of commands
  90. to call up Bitfax and send your fax.
  91.  
  92.  
  93.   COVER.TXT - Cover page to fax
  94.   =========
  95. This file is created by the main program.  It looks a bit like this:
  96.  
  97.  
  98. ═══════════════════════════════════════════════════════════════════════════
  99.                               MESSAGE BASE FAX
  100.  
  101. MESSAGE BASE NAME: L:\MSGS\SUPPORT 
  102.  
  103.  
  104. DATE: 08-21-1991
  105.  
  106. ═══════════════════════════════════════════════════════════════════════════
  107.  
  108. If you wish to add to this, you may create the file ALLFAX.PGE which will
  109. be appended to the TOP of the above.
  110.  
  111.  
  112.  ALLFAX.LOG - Brief activity log
  113.  ==========
  114. Created by the main program.  This file contains a brief activity log
  115. something like this:
  116.  
  117. **************************************************************
  118. ALL-FAX Utility of August 21/91 activated 08-21-1991 17:55:45
  119.       Oops - forgot some command line parameters!
  120. **************************************************************
  121. ALL-FAX Utility of August 21/91 activated 08-21-1991 17:55:57
  122.       Exporting Fax Messages from L:\MSGS\SUPPORT 
  123.       Faxing Message Base to 3425544
  124. **************************************************************
  125. ALL-FAX Utility of August 21/91 activated 08-21-1991 18:27:31
  126.       Oops - forgot some command line parameters!
  127. **************************************************************
  128. ALL-FAX Utility of August 21/91 activated 08-21-1991 18:28:04
  129. **************************************************************
  130. ALL-FAX Utility of August 21/91 activated 08-21-1991 18:31:04
  131.  
  132.  
  133. CONCLUSION:
  134. ----------
  135.  
  136. That's it.  This is a quick and dirty program to simply fax the entire
  137. contents of a message base to a fax machine.  Why?  I don't know..
  138. Robin Wells asked for it, I just created it.  Ask Robin!
  139.  
  140.  
  141.