/* init_rec.h * * This file contains the definition of the record structure for the * .mail.init file, which contains all sorts of default status values * and file names for the mail programs. */ #define INITFILE ".mail.init" struct init_rec { /* the init file record structure */ char in_frwrd; /* forward mail flag: * TRUE ==> in_mail contains name of * person to forward mail to * FALSE ==> in_mail is mailbox name */ char in_blkscr; /* blank-screen-startup flag */ char in_ccme; /* cc-include-me flag */ char in_repme; /* reply-include-me flag */ char in_mail[NAMSIZ]; /* mailbox file name (or forward name) */ char in_mbox[NAMSIZ]; /* saved mail file name */ char in_edit[NAMSIZ]; /* name of user's editor */ char in_rflag; /* "reply-to" flag: * TRUE ==> include "Reply-to" field" * FALSE ==> don't */ char in_repto[NAMSIZ]; /* reply-to field to be included */ };