diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-05-16 16:28:14 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-05-16 16:28:14 +0000 |
commit | c0d9eb8c98ae5032cb7feecece58bdd13bdb7cfa (patch) | |
tree | 42eecc01589a8b9a0df2380abc44b06ef3863afb /fetchmail.h | |
parent | af3795ec802dfcc7760b6a8ca0317b9e3ad2aa48 (diff) | |
download | fetchmail-c0d9eb8c98ae5032cb7feecece58bdd13bdb7cfa.tar.gz fetchmail-c0d9eb8c98ae5032cb7feecece58bdd13bdb7cfa.tar.bz2 fetchmail-c0d9eb8c98ae5032cb7feecece58bdd13bdb7cfa.zip |
There is now a documented return code 13 for termination on fetchlimit.
svn path=/trunk/; revision=2476
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h index 0c0118e7..9ff6d899 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -68,13 +68,13 @@ #define PS_SMTP 10 /* SMTP error */ #define PS_DNS 11 /* fatal DNS error */ #define PS_BSMTP 12 /* output batch could not be opened */ +#define PS_MAXFETCH 13 /* poll ended by fetch limit */ /* leave space for more codes */ #define PS_UNDEFINED 23 /* something I hadn't thought of */ #define PS_TRANSIENT 24 /* transient failure (internal use) */ #define PS_REFUSED 25 /* mail refused (internal use) */ #define PS_RETAINED 26 /* message retained (internal use) */ #define PS_TRUNCATED 27 /* headers incomplete (internal use) */ -#define PS_MAXFETCH 28 /* poll ended by fetch limit */ /* output noise level */ #define O_SILENT 0 /* mute, max squelch, etc. */ |