diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-02-10 18:14:56 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-02-10 18:14:56 +0000 |
commit | e36c1a81e06e59855817f79d9b430763acc4d87a (patch) | |
tree | 66a43ab844419b9bd6ff4b7827d1c14b17084e15 /fetchmail.h | |
parent | 68bf9602059968fea6bfa657fe3ff4410ad8f85f (diff) | |
download | fetchmail-e36c1a81e06e59855817f79d9b430763acc4d87a.tar.gz fetchmail-e36c1a81e06e59855817f79d9b430763acc4d87a.tar.bz2 fetchmail-e36c1a81e06e59855817f79d9b430763acc4d87a.zip |
Added RFC1985 ETRN support.
svn path=/trunk/; revision=861
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 4f974b45..c43bfee2 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -9,6 +9,7 @@ #define P_IMAP 4 #define P_APOP 5 #define P_RPOP 6 +#define P_ETRN 7 #define KPOP_PORT 1109 @@ -199,6 +200,7 @@ int do_protocol(struct query *, const struct method *); int doPOP2 (struct query *); int doPOP3 (struct query *); int doIMAP (struct query *); +int doETRN (struct query *); void reply_hack(char *, const char *); char *nxtaddr(const char *); |