home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD2.bin
/
bbs
/
biz
/
dfa-2.2.lha
/
DFA
/
Rexx
/
ArexxScripts.lha
/
email.dfa
next >
Wrap
Text File
|
1994-09-16
|
1KB
|
52 lines
/* $Revision Header built automatically *************** (do not edit) ************
**
** © Copyright by Dirk Federlein
**
** File : email.dfa
** Created on : Monday, 04.04.94 16:03:38
** Created by : Dirk Federlein
** Current revision : V2.0
**
**
** Purpose
** -------
** Calls an UUCP mailer (default: elm) with the e-mail address #1
** of the current address.
**
** Notice: To give the mailer another e-mail address than #1 just
** use "adr.ADDRESS.13" (#2) or "adr.ADDRESS.14" (#3).
**
** To Change the mailer, just change 'MAILER' variable accordingly.
**
**
** Revision V2.0
** --------------
** created on Monday, 04.04.94 16:03:38 by Dirk Federlein. LogMessage :
** --- Initial release ---
**
*********************************************************************************/
options results
MAILER = 'uucp:c/elm'
address "DFA"
cr = '0A'X
if ~show(ports, DFA) then
do
exit 10
end
GETCURRENT "STEM ADR."
if rc=0 then
do
address command 'uucp:c/elm' adr.ADDRESS.12
end
else
say 'You must have an active address,' cr 'to get an e-mail address from it'
exit