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

  1. h06651
  2. s 00017/00000/00000
  3. d D 1.1 95/07/06 18:58:23 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 out mta puttxt1" >> trans.pscmd
  15. echo "addfilter out msg puttxt1" >> trans.pscmd
  16. echo "echo Setting variables" >> trans.pscmd
  17. echo "setv chksumcorrect on" >> trans.pscmd
  18. echo "filesum on" >> trans.pscmd
  19. echo "unsetv rmcheck" >> trans.pscmd
  20. echo "unsetv verbose" >> trans.pscmd
  21. echo "echo Creating directories" >> trans.pscmd
  22. echo "mkdir $maildir" >> trans.pscmd
  23. echo "mkdir $indir" >> trans.pscmd
  24. echo "mkdir $outdir" >> trans.pscmd
  25. echo "echo Transfering .mta files" >> trans.pscmd
  26. echo "put $maildir\in.mta" >> trans.pscmd
  27. echo "put $maildir\out.mta" >> trans.pscmd
  28. echo "echo Done" >> trans.pscmd
  29. E 1
  30.