home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD1.bin
/
new
/
comm
/
mail
/
thor
/
thor.lha
/
rexx
/
savemessage.thor
< prev
next >
Wrap
Text File
|
1994-08-06
|
872b
|
32 lines
/*
**
** savemessage.thor - save a message. Will fail if CURRENT is given and there's no current
** message.
**
** Will return 10 on failure and 0 on success.
**
** Template:
**
** BBSNAME=BBS,CONFNAME=CONF,MSGNUMBER=MSGNR/N,CURRENT/S,FILENAME=FILE,CLIPBOARD=CLIP/S,
** NOHEADER/S
*/
address THOR.01
/* Save the current message to a file without a header*/
SAVEMESSAGE CURRENT FILENAME '"ram:test"' NOHEADER
/* Save message number 2401 on the given BBS and the given conference to a file */
SAVEMESSAGE BBSNAME '"Ultima Thule BBS"' CONFNAME '"Post"' MSGNR 2401 FILENAME '"ram:test2"'
/* Save the current message to the clipboard without a header*/
SAVEMESSAGE CURRENT CLIPBOARD NOHEADER
/* Save message number 2401 on the given BBS and the given conference to the clipboard */
SAVEMESSAGE BBSNAME '"Ultima Thule BBS"' CONFNAME '"Post"' MSGNR 2401 CLIPBOARD