home *** CD-ROM | disk | FTP | other *** search
- $!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- $!
- $! DoD Protocols NA-00007-200 80-01174-100(-)
- $! E-Systems, Inc. August 07, 1985
- $!
- $! SMTP_SERVER.COM Author : Kevin Weise
- $!
- $!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- $! SMPT_SERVER.COM Author: Paul Higgins Date: May, 1985
- $! This command file dispatches mail processed by SMTP (for NOSCAda).
- $!
- $! PARAMETERS: None
- $!
- $ ON Error THEN Continue
- $!--Set default to directory containing usernames file USERNAMES.LCL
- $! SET DEFAULT Disk$Moon:[NOSCAda.SMTP]
- $Loop1:
- $ RUN/nodebug ssmtp
- $ IF F$SEARCH("RCPT_LIST.TXT") .EQS. "" THEN GOTO Out2
- $ OPEN/ERROR=Out2 Rcpt_List rcpt_list.txt
- $Loop2:
- $ READ/END=Out1 Rcpt_List rcpt
- $ MAIL SMTP_MAIL 'rcpt' /SUBJECT="SMTP MAIL"
- $ DELETE smtp_mail.txt;
- $ GOTO Loop2
- $Out1:
- $ CLOSE Rcpt_List
- $ DELETE rcpt_list.txt;
- $ GOTO Loop1
- $Out2:
-