h02444
s 00000/00002/00035
d D 1.2 95/07/06 14:38:34 tim 2 1
c removed first and last defines
e
s 00037/00000/00000
d D 1.1 95/07/06 14:00:27 tim 1 0
c 
e
u
U
f e 0
t
T
I 1
/* defines file for talking to the pop program and libs */
#define POPCONF ".talktopoprc"
#define POPNAME "pop-3"
#define PROTNAME "tcp"
#define POPSERVER "astir"

#define USERCMD "USER"
#define PASSCMD "PASS"
#define LISTCMD "LIST"
#define RETRCMD "RETR"
#define DELECMD "DELE"
#define QUITCMD "QUIT"
#define READY "."
#define BADCHAR '-'
#define OKCHAR '+'

/* standard defines */
#define TRUE 1
#define FALSE 0

/* error codes */
#define NETERR -1
#define NETOK -2
#define GOODCMD 1
#define BADCMD 0
#define BADFILE BADCMD

/* sizes and stuff */
#define MAXLINE 1024
#define MAXSIZE 2048 /* max size of an email to get */
#define MAXCOUNT 10 /* get 10 emails */
D 2
#define FIRST 1 
#define LAST  -1
E 2

/* skeleton for generating file names */
#define INSKELETON "in%03d.msg"

E 1
