home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magazyn Exec 5
/
CD_Magazyn_EXEC_nr_5.iso
/
Recent
/
comm
/
mail
/
YAM23.lha
/
YAM2.3
/
Rexx
/
DeleteUnread.yam
< prev
next >
Wrap
Text File
|
2000-04-19
|
601b
|
19 lines
/* DeleteUnread.yam - Deletes all unread messages in the current folder */
/* $VER: DeleteUnread.yam 1.0 (12.03.00) © 2000 by M.Beck <mbeck@yam.ch> */
/* Requires YAM 2.0 or later */
OPTIONS RESULTS
ADDRESS YAM
FolderInfo STEM folder.
ListSelect NONE
found = 0
DO i = 0 TO folder.TOTAL-1
MailInfo i STEM mess.
IF (mess.STATUS = 'N') | (mess.STATUS = 'U') THEN DO
ListSelect i
found = 1
END
END
IF found THEN MailDelete ATONCE
EXIT