home *** CD-ROM | disk | FTP | other *** search
/ PDA Software Library / pdasoftwarelib.iso / PSION / COMMS / PSIONMAI / PMFULLSO / SUNMAIL / BUILDFIR < prev    next >
Encoding:
Text File  |  1995-07-06  |  687 b   |  18 lines

  1. #!/bin/csh -f
  2. echo "echo Adding filters" > trans.pscmd
  3. echo "addfilter out mta puttxt1" >> trans.pscmd
  4. echo "addfilter out msg puttxt1" >> trans.pscmd
  5. echo "echo Setting variables" >> trans.pscmd
  6. echo "setv chksumcorrect on" >> trans.pscmd
  7. echo "filesum on" >> trans.pscmd
  8. echo "unsetv rmcheck" >> trans.pscmd
  9. echo "unsetv verbose" >> trans.pscmd
  10. echo "echo Creating directories" >> trans.pscmd
  11. echo "mkdir $maildir" >> trans.pscmd
  12. echo "mkdir $indir" >> trans.pscmd
  13. echo "mkdir $outdir" >> trans.pscmd
  14. echo "echo Transfering .mta files" >> trans.pscmd
  15. echo "put $maildir\in.mta" >> trans.pscmd
  16. echo "put $maildir\out.mta" >> trans.pscmd
  17. echo "echo Done" >> trans.pscmd
  18.