aboutsummaryrefslogtreecommitdiffstats
path: root/NEWS
Commit message (Expand)AuthorAgeFilesLines
...
* Unbug the UID state initialization.Eric S. Raymond1998-05-061-0/+1
* Wautier's fix.Eric S. Raymond1998-04-301-0/+3
* Allow fetchall to switch off TOP use.Eric S. Raymond1998-04-201-2/+4
* *** empty log message ***Eric S. Raymond1998-04-191-0/+6
* *** empty log message ***Eric S. Raymond1998-04-191-2/+2
* Henrik Storner's patch.Eric S. Raymond1998-04-141-2/+4
* Enable fetchmail to build on benighted systems with no memmove.Eric S. Raymond1998-03-271-0/+4
* Prevent pathological circular lists.Eric S. Raymond1998-03-261-0/+1
* Use TOP instead of RETR for POP3 retrieval.Eric S. Raymond1998-03-261-0/+3
* Ready to ship.Eric S. Raymond1998-03-241-1/+1
* Ready to ship.Eric S. Raymond1998-03-241-2/+3
* Added byte count in status message.Eric S. Raymond1998-03-241-1/+1
* Henrik Storner's patch to support mimedecode.Eric S. Raymond1998-03-201-2/+3
* Fix IMAP password shrouding.Eric S. Raymond1998-03-181-1/+0
* Fix IMAP password shrouding.Eric S. Raymond1998-03-181-0/+7
* Get copmpatible with Cyrus again.Eric S. Raymond1998-03-171-1/+2
* Dick van den Burg's patch.Eric S. Raymond1998-03-171-2/+2
* Cope with empty return-path header.Eric S. Raymond1998-03-161-0/+1
* Spaces in IMAP names.Eric S. Raymond1998-03-161-0/+1
* Deal with M$ Exchange braindamage.Eric S. Raymond1998-03-161-0/+1
* Ready to experiment.Eric S. Raymond1998-03-141-3/+3
* Re-engineer the UIDL stuff to avoid having the status flag collideEric S. Raymond1998-03-131-0/+1
* Nailed.Eric S. Raymond1998-03-131-1/+3
* Dominique Unruh's patch to solve the headerless-body problem.Eric S. Raymond1998-03-101-0/+2
* Fix wrong-password coredump.Eric S. Raymond1998-03-071-0/+5
* Ready to ship.Eric S. Raymond1998-03-061-4/+5
* Respond to bug report from Dick van den Burg <burg@is.ge.com>Eric S. Raymond1998-03-061-0/+1
* Configurable antispam response.Eric S. Raymond1998-03-061-1/+1
* Implement RFC1730 quoting.Eric S. Raymond1998-03-031-0/+3
* Kerberos V support.Eric S. Raymond1998-03-031-4/+2
* SIGALRM flakiness fix.Eric S. Raymond1998-03-031-0/+4
* Relax the LOGIN capability test.Eric S. Raymond1998-03-021-0/+3
* *** empty log message ***Eric S. Raymond1998-02-241-2/+2
* EMX changes for OS/2.Eric S. Raymond1998-02-221-0/+1
* Fix for core-dump bug.Eric S. Raymond1998-02-221-0/+1
* More changes from Nicholas.Eric S. Raymond1998-02-221-0/+1
* Version bump.Eric S. Raymond1998-02-201-2/+2
* We can specify target ports now.Eric S. Raymond1998-02-201-0/+1
* Sent to Craig Metz.Eric S. Raymond1998-02-191-0/+2
* This went to Craig Metz.Eric S. Raymond1998-02-181-0/+2
* NEWS fixes.Eric S. Raymond1998-02-181-3/+10
* Ready to ship.Eric S. Raymond1998-02-181-3/+2
* Fix bad UID/fetchlimit interaction.Eric S. Raymond1998-02-171-0/+1
* Cleanup.Eric S. Raymond1998-02-171-0/+1
* IPv6 and IPSECEric S. Raymond1998-02-161-0/+1
* Alll of Craig Metz's changes for IPv6 and IPSEC except the POP3 stuff.Eric S. Raymond1998-02-161-0/+1
* netrc improvement.Eric S. Raymond1998-02-151-0/+1
* Ready to ship soon.Eric S. Raymond1998-02-131-2/+4
* Thomas Pitre's multidrop enhancements.Eric S. Raymond1998-01-301-0/+27
* Corrected OTP support.Eric S. Raymond1998-01-231-0/+3
BAD) void to64frombits(char *out, const void *in_, int inlen) /* raw bytes in quasi-big-endian order to base 64 string (NUL-terminated) */ { const unsigned char *in = (const unsigned char *)in_; for (; inlen >= 3; inlen -= 3) { *out++ = base64digits[in[0] >> 2]; *out++ = base64digits[((in[0] << 4) & 0x30) | (in[1] >> 4)]; *out++ = base64digits[((in[1] << 2) & 0x3c) | (in[2] >> 6)]; *out++ = base64digits[in[2] & 0x3f]; in += 3; } if (inlen > 0) { unsigned char fragment; *out++ = base64digits[in[0] >> 2]; fragment = (in[0] << 4) & 0x30; if (inlen > 1) fragment |= in[1] >> 4; *out++ = base64digits[fragment]; *out++ = (inlen < 2) ? '=' : base64digits[(in[1] << 2) & 0x3c]; *out++ = '='; } *out = '\0'; } int from64tobits(void *out_, const char *in, int maxlen) /* base 64 to raw bytes in quasi-big-endian order, returning count of bytes */ /* maxlen limits output buffer size, set to zero to ignore */ { int len = 0; register unsigned char digit1, digit2, digit3, digit4; unsigned char *out = (unsigned char *)out_; if (in[0] == '+' && in[1] == ' ') in += 2; if (*in == '\r') return(0); do { digit1 = in[0]; if (DECODE64(digit1) == BAD) return(-1); digit2 = in[1]; if (DECODE64(digit2) == BAD) return(-1); digit3 = in[2]; if (digit3 != '=' && DECODE64(digit3) == BAD) return(-1); digit4 = in[3]; if (digit4 != '=' && DECODE64(digit4) == BAD) return(-1); in += 4; ++len; if (maxlen && len > maxlen) return(-1); *out++ = (DECODE64(digit1) << 2) | (DECODE64(digit2) >> 4); if (digit3 != '=') { ++len; if (maxlen && len > maxlen) return(-1); *out++ = ((DECODE64(digit2) << 4) & 0xf0) | (DECODE64(digit3) >> 2); if (digit4 != '=') { ++len; if (maxlen && len > maxlen) return(-1); *out++ = ((DECODE64(digit3) << 6) & 0xc0) | DECODE64(digit4); } } } while (*in && *in != '\r' && digit4 != '='); return (len); } /* base64.c ends here */