home *** CD-ROM | disk | FTP | other *** search
/ Boldly Go Collection / version40.iso / TS / 05B / ZMAIL3.ZIP / READ.ME < prev    next >
Encoding:
Text File  |  1992-06-27  |  4.4 KB  |  108 lines

  1.  
  2.  
  3.    A Small Collection of DOS Aspect Script for Automating BBS Mail Runs.
  4.  
  5.    This file contains a few DOS ASPECT scripts for PCPLUS version 2.01.
  6.    The scripts automate mail runs with BBSs running PCBOARD or WILDCAT
  7.    software.  For PCBOARD BBSs, the script will work with the QMail Door,
  8.    the MarkMail Door, or the KMail Door.  The scripts will work with
  9.    internal ZMODEM turned ON or with an external protocol (DSZ/GSZ).  All
  10.    of the scripts contain the same basic features.  Start with MAIL.ASP -
  11.    it's the simplest to use and configure.
  12.  
  13.  
  14.    MAIL.ASP
  15.  
  16.    This script will allow the  user  to set the time when  PC+  calls
  17.    the  BBS,  alternate  between  two  different  phone numbers until
  18.    one of the nodes answers, logon, capture a new files list (ALT-F6),
  19.    upload the   REP  packet, rename an existing  QWK  packet to avoid
  20.    overwriting any  unread  mail (up to  3  QWKs  may be in the down-
  21.    load  directory  at any  one  time), download  the  new QWK  using
  22.    internal Zmodem  or an  external  protocol, and logoff.  The  user
  23.    specifies either the QMail Door, the MarkMail Door, the KMail Door
  24.    or TOMCAT and the language prompt (if there is one).  Use the "N3"
  25.    parameter to set the number of times the script will dial the  BBS
  26.    before exiting with a "No Response from BBS" message.
  27.  
  28.    TO USE THE SCRIPT:
  29.  
  30.    (1)  enter the  information  in the   CUSTOMIZATION   section
  31.    (2)  if  you use an  external  protocol, make sure the  batch  file
  32.         XFER.BAT   is in your  PC+ directory    (XFER.BAT contains the
  33.         code to execute the external protocol)    if not,  be  sure to
  34.         turn  ON  zmodem  auto downloads  in  the  ALT-S  setup  menus
  35.    (3)  compile the script (MUST DO!)
  36.    (4)  execute the script either by:
  37.       (a) typing    pcplus /fNAME    from the  DOS  prompt where  NAME
  38.           is the name you've given this script   OR
  39.       (b) using the ALT-F5 command from Terminal Mode
  40.    (5)  enter  the   time   you want the script to execute in  24-hour
  41.         mode where  2AM  is  02:00  and  2PM  is  14:00  or just press
  42.         ENTER to execute immediately
  43.  
  44.  
  45.    MAIL2.ASP
  46.  
  47.    This script calls 2 different BBSs at the same time everyday for up to
  48.    9 days.  It can be used for regular daily mail runs or when one is
  49.    "away" for a few days.
  50.  
  51.    If you use an external protocol for the file transfers, make sure the
  52.    batch file XFER.BAT is in your PC+ directory.  This file contains the
  53.    command to call the protocol and the command line parameters for the
  54.    protocol.  *OR*  you can replace the script line   DOS "xfer"   with
  55.    the actual commands for the external protocol.  For example, I use GSZ
  56.    and the script line I use is:  DOS "gsz ha slow rz -m -c"
  57.  
  58.    Create STORE.BAT - the batch file which renames the QWKs and moves
  59.    them to a storage directory for later reading:
  60.  
  61.        store.bat
  62.             xcopy f:\work\*.qwk e:\qwk\????%1.qwk
  63.             del f:\work\*.qwk
  64.  
  65.         -where "f:\work\"  is your download directory, and
  66.                "e:\qwk\"   is your QWK storage directory
  67.         -leave the "????%1" alone!  it's a wildcard!
  68.  
  69.    The script must be edited in FOUR places.
  70.  
  71.      SET TIME - is the time to begin the dialing.  Use 24-hour
  72.                 mode where 2am is "02:00" and 2pm is "14:00"
  73.                 (use the " " in the script).  If you leave this
  74.                 entry as "" (two quotes, nothing in between) the
  75.                 script will execute immediately
  76.  
  77.      SET DAYS - is the number of days to call the BBSs.
  78.                 If you want the script to get the 2 QWKs and stop,
  79.                 set this number to 1.
  80.  
  81.      -TWO-  CUSTOMIZATION SECTIONS - one for each BBS.
  82.  
  83.    The script will cycle through the dialing routine 100 times before
  84.    quitting for that day.  If you want to change that number, find the
  85.    line "if N7 > 100" and change the 100 to whatever number you want.
  86.  
  87.  
  88.    MAIL3.ASP  calls three different BBSs.  Use for DAILY mail runs.
  89.               Has three (3) CUSTOMIZATION SECTIONS to edit!
  90.  
  91.  
  92.    XFER.BAT   is a sample batch file for use with GSZ.
  93.  
  94.    AWAY.BAT   is a sample batch file for use with MAIL2.ASP.
  95.  
  96.    POOF.ASP   is a "front-end" script for calling any other script at
  97.               a preset time.
  98.  
  99.  
  100.  
  101.    David Lecin
  102.    6/27/92
  103.    [CompuServe]   73530,1144
  104.    [InterNet]     david.lecin@factory.com
  105.  
  106.  
  107.  
  108.