home *** CD-ROM | disk | FTP | other *** search
/ Boot Disc 8 / boot-disc-1997-04.iso / PDA_Soft / Psion / comms / psionmai / building < prev    next >
Text File  |  1995-07-13  |  784b  |  19 lines

  1. #!/bin/csh -f
  2. echo "echo Adding filters" > trans.pscmd
  3. echo "addfilter in mta gettxt1" >> trans.pscmd
  4. echo "addfilter in msg gettxt1" >> trans.pscmd
  5. echo "echo Setting veriables" >> trans.pscmd
  6. echo "setv chksumcorrect on" >> trans.pscmd
  7. echo "filesum on" >> trans.pscmd
  8. echo "unsetv verbose" >> trans.pscmd
  9. echo "unsetv rmcheck" >> trans.pscmd
  10. echo "echo Transfering .mta file" >> trans.pscmd
  11. echo "get $maildir\in.mta" >> trans.pscmd
  12. echo "echo Transfering the remaining incomming mailfiles" >> trans.pscmd
  13. echo "list $indir\in*.msg /tmp/flist" >> trans.pscmd
  14. echo "foreach /tmp/flist get" >> trans.pscmd
  15. echo "echo Clearing files" >> trans.pscmd
  16. echo "rm $maildir\in.mta" >> trans.pscmd
  17. echo "foreach /tmp/flist rm" >> trans.pscmd
  18. echo "echo Done" >> trans.pscmd
  19.