home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / comm / mail / YAMscripts.lha / Unread.rexx < prev    next >
OS/2 REXX Batch file  |  1996-11-14  |  235b  |  11 lines

  1. /* This script will mark the current message unread and update the index */
  2. options results
  3. address 'YAM'
  4. GetMailInfo File
  5. fname=result
  6. if rc=0 & exists(fname) then do
  7.     address command 'filenote <>nil:' fname 'U'
  8.     MailUpdate
  9.     end
  10. exit
  11.