home *** CD-ROM | disk | FTP | other *** search
/ PDA Software Library / pdasoftwarelib.iso / PSION / COMMS / PSIONMAI / PMFULLSO / SUNMAIL / BUILDINT < prev    next >
Encoding:
Text File  |  1995-07-06  |  652 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 Transfering .mta file" >> trans.pscmd
  11. echo "put $maildir\in.mta" >> trans.pscmd
  12. echo "echo Transfering the new mailfiles" >> trans.pscmd
  13. # remember to adjust the directory if required
  14. foreach i (in*.msg)
  15.     echo "put $indir\$i" >> trans.pscmd
  16. end
  17. echo "echo Done" >> trans.pscmd
  18.