home *** CD-ROM | disk | FTP | other *** search
- h03625
- s 00017/00000/00000
- d D 1.1 95/07/06 18:58:27 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 out mta puttxt1" >> trans.pscmd
- echo "addfilter out msg puttxt1" >> trans.pscmd
- echo "echo Setting variables" >> trans.pscmd
- echo "setv chksumcorrect on" >> trans.pscmd
- echo "filesum on" >> trans.pscmd
- echo "unsetv rmcheck" >> trans.pscmd
- echo "unsetv verbose" >> trans.pscmd
- echo "echo Transfering .mta file" >> trans.pscmd
- echo "put $maildir\in.mta" >> trans.pscmd
- echo "echo Transfering the new mailfiles" >> trans.pscmd
- # remember to adjust the directory if required
- foreach i (in*.msg)
- echo "put $indir\$i" >> trans.pscmd
- end
- echo "echo Done" >> trans.pscmd
- E 1
-