diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-06-11 15:07:44 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-06-11 15:07:44 +0000 |
commit | f147c93890870117cff16927ed6c54efbe6c3bc9 (patch) | |
tree | 2f1cb9a31a3b255c7acc481d76c008fcb636bc90 /fetchmail.h | |
parent | 43332c43da198a4a4ad060f06d83ce4f99487e89 (diff) | |
download | fetchmail-f147c93890870117cff16927ed6c54efbe6c3bc9.tar.gz fetchmail-f147c93890870117cff16927ed6c54efbe6c3bc9.tar.bz2 fetchmail-f147c93890870117cff16927ed6c54efbe6c3bc9.zip |
Add many more comments.
svn path=/trunk/; revision=1086
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/fetchmail.h b/fetchmail.h index 4f4a4f26..be3fb47b 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -77,7 +77,7 @@ struct hostdata /* shared among all user connections to given server */ int preauthenticate; /* preauthentication mode to try */ int timeout; /* inactivity timout in seconds */ char *envelope; /* envelope address list header */ - bool skip; /* skip this server? */ + bool skip; /* suppress poll in implicit mode? */ bool dns; /* do DNS lookup on multidrop? */ bool uidl; /* use RFC1725 UIDLs? */ @@ -103,32 +103,32 @@ struct query struct hostdata server; /* per-user data */ - struct idlist *localnames; /* including calling user's name */ + struct idlist *localnames; /* including calling user's name */ int wildcard; /* should unmatched names be passed through */ - char *remotename; - char *password; - struct idlist *mailboxes; - struct idlist *smtphunt; - char *smtphost; - char *mda; - char *preconnect; + char *remotename; /* remote login name to use */ + char *password; /* remote password to use */ + struct idlist *mailboxes; /* list of mailboxes to check */ + struct idlist *smtphunt; /* list of SMTP hosts to try forwarding to */ + char *smtphost; /* actual SMTP host to point to */ + char *mda; /* local MDA to pass mail to */ + char *preconnect; /* pre-connection command to execute */ /* per-user control flags */ - bool keep; - bool fetchall; - bool flush; - bool rewrite; - bool stripcr; - bool forcecr; - bool limit; - bool fetchlimit; - bool batchlimit; + bool keep; /* if TRUE, leave messages undeleted */ + bool fetchall; /* if TRUE, fetch all (not just unseen) */ + bool flush; /* if TRUE, delete messages already seen */ + bool rewrite; /* if TRUE, canonicalize recipient addresses */ + bool stripcr; /* if TRUE, strip CRs in text */ + bool forcecr; /* if TRUE, force CRs before LFs in text */ + int limit; /* limit size of retrieved messages */ + int fetchlimit; /* max # msgs to get in single poll */ + int batchlimit; /* max # msgs to pass in single SMTP session */ /* unseen, previous state of mailbox (initially from .fetchids) */ struct idlist *oldsaved, *newsaved; /* internal use */ - bool active; + bool active; /* should we actually poll this server? */ int errcount; /* count transient errors in last pass */ struct query *next; /* next query control block in chain */ int smtp_socket; /* socket descriptor for SMTP connection */ |