home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Boot Disc 8
/
boot-disc-1997-04.iso
/
PDA_Soft
/
Psion
/
comms
/
psionmai
/
buildout
< prev
next >
Wrap
Text File
|
1995-07-13
|
777b
|
19 lines
#!/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\out.mta" >> trans.pscmd
echo "echo Transfering the outgoing mailfiles" >> trans.pscmd
echo "list $outdir\out*.msg /tmp/flist" >> trans.pscmd
echo "foreach /tmp/flist get" >> trans.pscmd
echo "echo Clearing files" >> trans.pscmd
echo "rm $maildir\out.mta" >> trans.pscmd
echo "foreach /tmp/flist rm" >> trans.pscmd
echo "echo Done" >> trans.pscmd