home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Meeting Pearls 3
/
Meeting_Pearls_III.iso
/
Pearls
/
comm
/
Fido
/
MailManager
/
Contrib
/
Alessandro_Zummo
/
MM_Banner.rexx
next >
Wrap
OS/2 REXX Batch file
|
1995-04-10
|
644b
|
41 lines
/**/
DROP MM.
MM.PrgName = 'MM_Banner 1.0'
MM.TempFile= 'T:Banner.temp'
MM.Banner = 'Banner'
PARSE UPPER ARG MM.Area
ADDRESS 'MAILMANAGER'
MM_GetAreaInfo MM.Area Info
IF rc ~= 0 THEN exit
MM_StringReq '"Enter a string..."' 'stringa'
IF rc ~= 0 THEN exit
IF stringa ~= '' THEN DO
Address Command MM.Banner stringa' >'MM.TempFile
DROP MM.Reply.
GetSysop 'MM.Reply.From'
MM.Reply.FromAddr = Info.ADDR
MM.Reply.To = 'All'
MM.Reply.ToAddr = Info.ADDR
MM.Reply.File = MM.TempFile
MM.Reply.Tear = MM.PrgName
MM.Reply.Flags = !REFLOW
MM_WriteMsg MM.Area MM.Reply
MM_DeleteFile MM.TempFile
END