/* rqfile.h * * Contains the various structure, constant, and string definitions * for the mail daemon. */ #define NAMSIZ 128 /* length of various file names */ #define BIGBUF 512 /* size of a disk block */ #define TRUE 1 #define FALSE 0 #define MAXFILES 20 /* max. simultaneous open files */ #define MSGSEP "\001\001\n" /* message separator */ #define MSGSEPL 3 /* length of message separator */ #define MAILDIR "/maild" /* mail daemon's directory */ #define RQEXT "req" /* request file extension */ #define RETRIES 150 /* max retries before fail */ struct req_rec { char rq_name[NAMSIZ]; /* receiver's user and host name */ int rq_retries; /* number of send retries */ };