home *** CD-ROM | disk | FTP | other *** search
- h11044
- s 00014/00000/00000
- d D 1.1 95/07/06 18:59:10 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
- # this is the direcoty that is used to hold incomming mail on the psion
- # it can be any pathname you like but MUST be on a writeable device
- # it can be the same as the other directories used if desired
- setenv indir "m:\maildir"
- # this is the directory used to hold the outgoing mail written on the psion
- # the same conditions at indir apply
- setenv outdir "m:\maildir"
- # This MUST NOT BE CHANGED unless you recompile the source for the psion
- # mail.img and mailrdr.als files this required the psion C developers kit
- setenv maildir "m:\maildir"
- # this is the name used in some header of something (I forget what)
- # it should be set to your FULL email address
- setenv myaddr "tim.graves@uk.sun.com"
- E 1
-