diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-03-16 16:52:53 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-03-16 16:52:53 +0000 |
commit | 6ab7f52b691d6fd18274d089f415ce30f1280258 (patch) | |
tree | d8657e6b772306e5f4d711efb62e9d418ce4f9c0 /fetchmail.h | |
parent | e404504339dcad7f0a9e0db6161091c349699169 (diff) | |
download | fetchmail-6ab7f52b691d6fd18274d089f415ce30f1280258.tar.gz fetchmail-6ab7f52b691d6fd18274d089f415ce30f1280258.tar.bz2 fetchmail-6ab7f52b691d6fd18274d089f415ce30f1280258.zip |
Deal with M$ Exchange braindamage.
svn path=/trunk/; revision=1702
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h index 9480ddb0..76b88bff 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -30,9 +30,11 @@ */ #define HOSTLEN 635 /* max hostname length (RFC1123) */ #define POPBUFSIZE 512 /* max length of response (RFC1939) */ -#define USERNAMELEN 40 /* max POP3 arg length (RFC1939) */ #define IDLEN 128 /* max length of UID (RFC1939) */ +/* per RFC1939 this should be 40, but Microsoft Exchange ignores that limit */ +#define USERNAMELEN 128 /* max POP3 arg length */ + /* clear a netBSD kernel parameter out of the way */ #undef MSGBUFSIZE |