home *** CD-ROM | disk | FTP | other *** search
- h15177
- s 00018/00000/00000
- d D 1.1 95/07/06 18:58:25 tim 1 0
- c These are shell scripts that talk to varios programs involved in sending email to / from the psion
- e
- u
- U
- f e 0
- t
- T
- I 1
- #!/bin/csh -f
- echo "echo Adding filters" > trans.pscmd
- echo "addfilter in mta gettxt1" >> trans.pscmd
- echo "addfilter in msg gettxt1" >> trans.pscmd
- echo "echo Setting veriables" >> trans.pscmd
- echo "setv chksumcorrect on" >> trans.pscmd
- echo "filesum on" >> trans.pscmd
- echo "unsetv verbose" >> trans.pscmd
- echo "unsetv rmcheck" >> trans.pscmd
- echo "echo Transfering .mta file" >> trans.pscmd
- echo "get $maildir\in.mta" >> trans.pscmd
- echo "echo Transfering the remaining incomming mailfiles" >> trans.pscmd
- echo "list $indir\in*.msg /tmp/flist" >> trans.pscmd
- echo "foreach /tmp/flist get" >> trans.pscmd
- echo "echo Clearing files" >> trans.pscmd
- echo "rm $maildir\in.mta" >> trans.pscmd
- echo "foreach /tmp/flist rm" >> trans.pscmd
- echo "echo Done" >> trans.pscmd
- E 1
-