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

  1. h15177
  2. s 00018/00000/00000
  3. d D 1.1 95/07/06 18:58:25 tim 1 0
  4. c These are shell scripts that talk to varios programs involved in sending email to / from the psion
  5. e
  6. u
  7. U
  8. f e 0
  9. t
  10. T
  11. I 1
  12. #!/bin/csh -f
  13. echo "echo Adding filters" > trans.pscmd
  14. echo "addfilter in mta gettxt1" >> trans.pscmd
  15. echo "addfilter in msg gettxt1" >> trans.pscmd
  16. echo "echo Setting veriables" >> trans.pscmd
  17. echo "setv chksumcorrect on" >> trans.pscmd
  18. echo "filesum on" >> trans.pscmd
  19. echo "unsetv verbose" >> trans.pscmd
  20. echo "unsetv rmcheck" >> trans.pscmd
  21. echo "echo Transfering .mta file" >> trans.pscmd
  22. echo "get $maildir\in.mta" >> trans.pscmd
  23. echo "echo Transfering the remaining incomming mailfiles" >> trans.pscmd
  24. echo "list $indir\in*.msg /tmp/flist" >> trans.pscmd
  25. echo "foreach /tmp/flist get" >> trans.pscmd
  26. echo "echo Clearing files" >> trans.pscmd
  27. echo "rm $maildir\in.mta" >> trans.pscmd
  28. echo "foreach /tmp/flist rm" >> trans.pscmd
  29. echo "echo Done" >> trans.pscmd
  30. E 1
  31.