Generated from /home/galaxyng/NG/Source/mail.h with ROBODoc v4.0.18 on Mon Jan 05 22:26:09 2004

TABLE OF CONTENTS


Mail/envelope

NAME

   envelope -- envelope for an email message.

PURPOSE

   Store the envelope of an email message.

SOURCE

    typedef struct envelope {
      int  compress;   /* Compress the body before sending */
      char *to;        /* destination */
      char *from;      /* Who sent it */
      char *subject;
    } envelope;
    

Mail/MailHeaderTypes

NAME

   MailHeaderTypes -- things we can write on the envelope

SOURCE

    enum {MAILHEADER_TO = 1, MAILHEADER_FROM, MAILHEADER_SUBJECT};