aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-05-17 20:25:50 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-05-17 20:25:50 +0000
commita740d71a69fb785d63d498f99fa3a9c5f607c7fb (patch)
tree63d07e434cb0dbbac04a6adee369fd01b3058cd2 /fetchmail.h
parentcfa71bcc744dd8d2259e4af0d09b2c7458831bc3 (diff)
downloadfetchmail-a740d71a69fb785d63d498f99fa3a9c5f607c7fb.tar.gz
fetchmail-a740d71a69fb785d63d498f99fa3a9c5f607c7fb.tar.bz2
fetchmail-a740d71a69fb785d63d498f99fa3a9c5f607c7fb.zip
IMAP now splits its request in half.
svn path=/trunk/; revision=1016
Diffstat (limited to 'fetchmail.h')
-rw-r--r--fetchmail.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h
index 879112db..252b19ff 100644
--- a/fetchmail.h
+++ b/fetchmail.h
@@ -145,7 +145,8 @@ struct method
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 (*fetch_headers)(); /* fetch FROM headera given message */
+ int (*fetch_body)(); /* fetch a given message */
int (*trail)(); /* eat trailer of a message */
int (*delete)(); /* delete method */
char *exit_cmd; /* exit command */