home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / comm / mail / YAMscripts.lha / YAMscripts.readme < prev   
Text File  |  1997-02-20  |  4KB  |  114 lines

  1. Short: Useful ARexx scripts for YAM (rel 4)
  2. Author: knikulai@utu.fi
  3. Uploader: knikulai@utu.fi
  4. Type: comm/mail
  5. Replace: YAMscripts.lha
  6. Long:
  7.  
  8. This archive contains several AREXX-scripts I've written for Marcel Becks's
  9. (mbeck@access.ch) great mail program YAM.  They were written for version
  10. 1.3.3a and might not work with older versions.  Many of them require reqtools
  11. and rexxreqtools libraries.
  12.  
  13. If you have any questions, comments or bugs to report, send mail to knikulai@utu.fi
  14.  
  15. These and other scripts can also be found on my ARexx page at
  16. http://www.utu.fi/~knikulai/ARexx.html
  17.  
  18.  
  19. CheckNewMail.rexx (v1.4)
  20. ------------------------
  21.   Scans all your folders and displays which of them have new or unread
  22.   messages in them.  Very useful, if you have lots of folders; just let
  23.   the script scan your messages and select the folder you want to read
  24.   next from a requester.  The script is pretty fast compared to earlier
  25.   versions.
  26.  
  27. DeleteOld.rexx
  28. --------------
  29.   Removes old messages from the folder automatically.
  30.  
  31. Fileserver.rexx (v1.1)
  32. ---------------
  33.   You can create an automated filearchive with this script.  Others can 
  34.   get files from it by sending a request in e-mail.  The script will reply
  35.   and attach the required file in the reply.  It can also send a helpfile
  36.   or a current index of the archive. 
  37.  
  38. GetAddresses.rexx (v1.1)
  39. ------------------------
  40.   Scans all messages in the current folder for e-mail addresses and 
  41.   displays them in a requester.  From that requester addresses can be
  42.   added to the YAM addresbook.
  43.  
  44. GrabURL.rexx (v1.2)
  45. -------------------
  46.   Scans the selected message and displays all http: and ftp: references
  47.   in a requester.  You can select one of them and send it to your browser.
  48.   Currently supported browsers are AWeb, IBrowse and Voyager.
  49.  
  50. GrabAllURLs.rexx (v1.1) & MakeHotlist.rexx
  51. ------------------------------------------
  52.   These scripts scan all _read_ messages in the current folder for http: 
  53.   and ftp: references like the above script.  The first then displays a
  54.   requester and second creates a HTML-file and sends it to your browser.
  55.  
  56. Join.rexx (v1.1)
  57. ----------------
  58.   Joins and uudecodes multipart messages.  Can be used with for example
  59.   many ftp-mailers and SplitNMail.rexx.
  60.  
  61. Search.rexx (v1.1)
  62. ------------------
  63.   Search current folder for a word.
  64.  
  65. SplitNMail.rexx
  66. ---------------
  67.   This script will split a long file into several posts and mail them.
  68.   This is useful for posting long files to many mailing lists and newsgroups.
  69.  
  70. Tagline.rexx (v 1.4)
  71. --------------------
  72.   Adds random taglines to messages in outgoing folder.  Supports multiple
  73.   tagfiles and multi-line tags.
  74.  
  75. Unread.rexx
  76. -----------
  77.   Simpy marks the current message as unread.
  78.  
  79. WholeStory.rexx (v1.3)
  80. ----------------------
  81.   Combines multipart messages.  I use this script to join X-Files fanfic
  82.   mailings into a single file.
  83.  
  84. YAMMail.rexx (v1.1)
  85. -------------------
  86.   Use YAM to send mail from AWeb.  Asks, if you want to include the current
  87.   page.  This version can get the subject from the URL.  I'm not sure how
  88.   it will work with the commercial version, since I only have the old demo.
  89.  
  90.  
  91. What to do, when the scripts will not work?
  92. -------------------------------------------
  93.   First of all you need to check a few things:
  94.     - Do you have YAM running?  The scripts can be started from shell or
  95.       whatever program you are using, but they need to have YAM running first.
  96.     - Do you have ARexx running?  If not, you might want to add line
  97.       'run <>nil: RexxMast' to your startup-sequence
  98.     - Do you have rx-command in sys:rexxc, where YAM looks for it?
  99.     - Do you have all the required libraries? 
  100.     - Did you configure the script correctly?  This means editing path and 
  101.       filenames in the script and setting the correct path & command in
  102.       YAM:.config
  103.  
  104.   If you still have problems, keep YAM running in the background and execute
  105.   the script from shell by typing 'rx yam:rexx/scriptname'.  That way you
  106.   will see the error message which usually is 'Missing quote' or 'Unfinished
  107.   comment' which are both really easy to correct.
  108.  
  109.   If you still can't get a script work, execute it from shell by typing
  110.   'rx >ram:error yam:rexx/scriptname' and send the created file ram:error
  111.   to knikulai@utu.fi and I'll try to fix the problem.
  112.  
  113. Have fun!
  114.