diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-26 02:37:50 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-26 02:37:50 +0000 |
commit | 74631396d18f4c5b025e9cbbb70d0103c783037e (patch) | |
tree | e0fe83315284fa905cdecd51108a170815889cec /fetchmail.h | |
parent | ad0c91eabd0349b5f1468b52a9b37a6bb028841b (diff) | |
download | fetchmail-74631396d18f4c5b025e9cbbb70d0103c783037e.tar.gz fetchmail-74631396d18f4c5b025e9cbbb70d0103c783037e.tar.bz2 fetchmail-74631396d18f4c5b025e9cbbb70d0103c783037e.zip |
Added filtering by length. Ugh.
svn path=/trunk/; revision=390
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fetchmail.h b/fetchmail.h index 1c2a5e21..eac06c99 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -72,6 +72,7 @@ struct hostrec int port; int authenticate; int timeout; + int limit; /* MDA arguments */ int mda_argcount; @@ -106,6 +107,7 @@ struct method int (*parse_response)(); /* response_parsing function */ int (*getauth)(); /* authorization fetcher */ int (*getrange)(); /* get message range to fetch */ + int *(*getsizes)(); /* get sizes of messages */ int (*is_old)(); /* check for old message */ int (*fetch)(); /* fetch a given message */ int (*trail)(); /* eat trailer of a message */ |