diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-07-03 15:45:19 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-07-03 15:45:19 +0000 |
commit | 86c75af0c1cae1706b84b708c70e76a96ddc5641 (patch) | |
tree | 60664bf7a9a103667fbfea4dba0251e439f41f67 /fetchmail.h | |
parent | eb9b73194c24bd4e08b1bcaf254a5bbb8aa91c1f (diff) | |
download | fetchmail-86c75af0c1cae1706b84b708c70e76a96ddc5641.tar.gz fetchmail-86c75af0c1cae1706b84b708c70e76a96ddc5641.tar.bz2 fetchmail-86c75af0c1cae1706b84b708c70e76a96ddc5641.zip |
LOCKBUSY changes.
svn path=/trunk/; revision=1147
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/fetchmail.h b/fetchmail.h index 30a5c0f8..8ebc0e43 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -36,11 +36,12 @@ #define PS_SYNTAX 5 /* command-line syntax error */ #define PS_IOERR 6 /* bad permissions on rc file */ #define PS_ERROR 7 /* protocol error */ -#define PS_EXCLUDE 8 /* exclusion error */ -#define PS_SMTP 9 /* SMTP error */ -#define PS_UNDEFINED 10 /* something I hadn't thought of */ -#define PS_TRANSIENT 11 /* transient failure (internal use) */ -#define PS_REFUSED 12 /* mail refused (internal use) */ +#define PS_EXCLUDE 8 /* client-side exclusion error */ +#define PS_LOCKBUSY 9 /* server responded lock busy */ +#define PS_SMTP 10 /* SMTP error */ +#define PS_UNDEFINED 11 /* something I hadn't thought of */ +#define PS_TRANSIENT 12 /* transient failure (internal use) */ +#define PS_REFUSED 13 /* mail refused (internal use) */ /* output noise level */ #define O_SILENT 0 /* mute, max squelch, etc. */ |