home *** CD-ROM | disk | FTP | other *** search
- /* $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
-