wmclockmon: update change-log
[dockapps.git] / wmbiff / ChangeLog
blob7b9ce221c0df9ff0262e7ed5e8f652843ab679ed
1 2024-05-16  Jeremy Sowden <jeremy@azazel.net>
3         * ChangeLog, NEWS, configure.ac: bump to 0.4.37
5 2024-05-16  Jeremy Sowden <jeremy@azazel.net>
7         * wmbiff/Makefile.am: fix generation of XPM's from
8         separate build-directory
10 2024-05-15  Jeremy Sowden <jeremy@azazel.net>
12         * wmbiff/Makefile.am, wmbiff/test_tlscomm.c, wmbiff/test_wmbiff.c,
13         wmbiff/tlsComm.c, wmbiff/wmbiff.c, wmbiff/wmbiff.h:
14         fix `print_info` prototypes in test sources
16         They should match the real `print_info` in gnutls-common.c.
18         Make sure all stubbed functions are declared in headers and those
19         headers are included where the functions are definitions.
21 2024-05-15  Jeremy Sowden <jeremy@azazel.net>
23         * wmbiff/Makefile.am: `noinst_PROGRAMS` -> `check_PROGRAMS`
25         test_wmbiff and test_tlscomm are intended to be run by `make check`.
27 2024-05-15  Jeremy Sowden <jeremy@azazel.net>
29         * configure.ac, wmbiff/Imap4Client.c, wmbiff/Makefile.am:
30         wmbiff/Pop3Client.c, wmbiff/tlsComm.c: update gnutls pkg-config
31         configuration
33 2024-05-15  Jeremy Sowden <jeremy@azazel.net>
35         * configure.ac, wmbiff/Makefile.am: use pkg-config to find libgcrypt
37 2024-05-15  Jeremy Sowden <jeremy@azazel.net>
39         * wmbiff/Makefile.am: improve formatting
41 2020-04-17  Jeremy Sowden <jeremy@azazel.net>
43         * ChangeLog, configure.ac: wmbiff: bump to 0.4.36.
45 2020-04-17  Jeremy Sowden <jeremy@azazel.net>
47         * wmgeneral/wmgeneral.c, wmgeneral/wmgeneral.h:
48         wmbiff: fix multiple definitions of display variable.  The display
49         variable is declared in a header with no explicit linkage.  This results
50         in there being multiple definitions of it in wmbiff.o and libwmgeneral.a
51         and a failure during linking with gcc 10.  Add `extern` to the header
52         declaration and a separate declaration with no linkage in wmgeneral.c
53         where it is assigned.
54         Link: https://bugs.debian.org/957937
55         Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
57 2019-07-23  Jeremy Sowden <jeremy@azazel.net>
59         * ChangeLog, NEWS, configure.ac: bumped to 0.4.35.
61 2019-07-23  Jeremy Sowden <jeremy@azazel.net>
63         * AUTHORS: added Doug Torrance and myself to the list.
65 2019-07-23  Jeremy Sowden <jeremy@azazel.net>
67         * wmbiff/tlsComm.c: added support for TLS SNI.
69           From Debian bug #917993:
70             From: Nye Liu <nyet@nyet.org>
71             Subject: wmbiff: gmail (and many other IMAP servers) now require SNI
72             Date: Tue, 01 Jan 2019 18:33:51 -0800
74             wmbiff/gmail imap4: Need new connection to
75               ***@gmail.com@imap.gmail.com
76             wmbiff/gmail comm: certificate passed time check.
77             wmbiff/gmail comm: server's certificate (OU=No SNI provided\; please
78               fix your client.,CN=invalid2.invalid) does not match its hostname
79               (imap.gmail.com).  wmbiff/gmail comm: server's certificate does
80               not match its hostname.
81             wmbiff/gmail comm: to ignore this error, run wmbiff with the
82               -skip-certificate-check option
84 2019-07-22  Jeremy Sowden <jeremy@azazel.net>
86         * ChangeLog, NEWS, configure.ac: bumped to 0.4.34.
88 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
90         * wmbiff/wmbiff.c: use one for-loop when creating backing XPM.  Fixes
91         static analysis warning about uninitialized value.
93 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
95         * wmbiff/passwordMgr.c: fixed possible null-pointer dereference.
97 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
99         * wmbiff/Imap4Client.c, wmbiff/passwordMgr.c, wmbiff/test_tlscomm.c,
100         wmbiff/tlsComm.c, wmgeneral/wmgeneral.c: fixed leaks.
102 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
104         * wmbiff/wmbiff.c: removed superfluous assignment.
106 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
108         * wmbiff/Pop3Client.c: replaced strncpy with memcpy.
110 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
112         * wmbiff/Client.h, wmbiff/Imap4Client.c, wmbiff/MessageList.c,
113         wmbiff/MessageList.h, wmbiff/Pop3Client.c, wmbiff/ShellClient.c,
114         wmbiff/maildirClient.c, wmbiff/mboxClient.c, wmbiff/passwordMgr.c,
115         wmbiff/passwordMgr.h, wmbiff/test_wmbiff.c, wmbiff/tlsComm.c,
116         wmbiff/tlsComm.h, wmbiff/wmbiff.c: stop hiding pointers behind typedefs.
118 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
120         * .gitignore: added .gitignore.
122 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
124         * Makefile.am, autoconf/Makefile.am, configure.ac: removed autoconf
125         directory.
127 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
129         * autogen: added autogen.
131 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
133         * wmbiff/Client.h, wmbiff/Imap4Client.c, wmbiff/passwordMgr.c: use
134         `size_t` for password-lengths.
136 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
138         * wmbiff/Imap4Client.c: fixed endianness problems parsing server-ports.
139         `regulo_atoi` expects a pointer-to-int and `PCU.serverPort` is a
140         `uint16_t`, so `&PCU.serverPort` is not compatible and we need to use an
141         `int` temporary variable to avoid endianness problems.
143 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
145         * wmbiff/socket.c: fixed endianness problems connecting to POP and IMAP
146         servers.  `addr.sin_addr.s_addr` is a `uint32_t` in NBO, so assigning a
147         `struct in_addr` cast to `unsigned long` will break on 64-bit big-endian
148         architectures.
150 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
152         * wmbiff/test_wmbiff.c: `addr.sin_port` is in NBO, so we should use
153         ntohs(3), not htons(3).
155 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
157         * wmbiff/socket.c, wmbiff/test_wmbiff.c: tidy up socket connexions.
159 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
161         * wmbiff/socket.c: correct the address size passed to connect(2).
162         `addr` is a `struct sockaddr_in`, not a `struct sockaddr`; using `sizeof
163         var` instead of `sizeof (type)` ensures that the right size is used.
165 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
167         * wmbiff/regulo.c, wmbiff/wmbiff/regulo.h: `regulo_match` modifies
168         `instructions[i].destination`, so remove `const`.
170 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
172         * wmbiff/regulo.c: use temporary variables and remove casts.
174 2019-03-01  Doug Torrance <dtorrance@piedmont.edu>
176         * ChangeLog, NEWS, configure.ac: Bump to version 0.4.33
178 2019-03-01  Doug Torrance <dtorrance@piedmont.edu>
180         * wmbiff/tlsComm.c: Remove unnecessary loop.  The last release of
181         wmbiff included a patch by Nye Liu from Debian bug #917467 [1].
182         However, the second part of that patch is not necessary.  From Andreas
183         Metzler's comment
185             I am not sure about the second part of the patch. I understand
186             wmbiff breaking on GNUTLS_E_AGAIN from gnutls_read, because this
187             only started to happen recently (with TLS1.3) on blocking sockets.
188             What I do not get from my rudimentary understanding C
189             programmimg is the second part, this is in the else of "if
190             (scs->tls_state)", so, afaiui for non-encrypted connections. Is the
191             change necessary there at all, is it the right thing to retry read
192             on EAGAIN then? We revert the second part of the patch.
194         [1] https://bugs.debian.org/917467
196 2019-02-12  Doug Torrance <dtorrance@piedmont.edu>
198         * ChangeLog, NEWS, configure.ac: Bump to version 0.4.32.
200 2019-02-12  Doug Torrance <dtorrance@piedmont.edu>
202         * wmbiff/Imap4Client.c, wmbiff/tlsComm.c:
203         handle EAGAIN or GNUTLS_E_AGAIN
205         From Debian bug #917467, reported by Nye Liu <nyet@nyet.org> [1]:
207         If gnutls_read() or read() report EAGAIN, tlscomm_expect() fails:
209         wmbiff/nyet  comm: wrote a000 CAPABILITY
210         wmbiff/nyet  comm: imap.***.***:993: expecting: * CAPABILITY
211         wmbiff/nyet  comm: imap.***.***:993: gnutls error reading: Resource
212             temporarily unavailable, try again.
213         wmbiff/nyet  imap4: unable to query capability stringwmbiff/nyet
214             comm: wrote a002 LOGOUT wmbiff/nyet
215         comm: imap.***.***:993: closing.
217         [1] https://bugs.debian.org/917467
219 2018-05-14  Doug Torrance <dtorrance@piedmont.edu>
221         * FAQ, README, configure.ac, wmbiff/sample.wmbiffrc, wmbiff/wmbiff.1:
222         Update mailing list links to new Google Groups.
225 2017-06-23  Doug Torrance <dtorrance@piedmont.edu>
227         * ChangeLog, NEWS, configure.ac: Bump to version 0.4.31.
229 2017-06-23  Doug Torrance <dtorrance@piedmont.edu>
231         * wmbiff/Imap4Client.c, wmbiff/ShellClient.c,
232         wmbiff/passwordMgr.c, wmbiff/test_wmbiff.c:
233         Remove #define _GNU_SOURCE; already defined in CFLAGS.
236 2017-06-23  Doug Torrance <dtorrance@piedmont.edu>
238         * wmbiff/maildirClient.c: Manually copy mailbox path.
240         Patch by Demi <m@tfiu.de> to fix Debian bug #621690 [1].
242         [1] https://bugs.debian.org/621690
244 2016-11-30  Doug Torrance <dtorrance@piedmont.edu>
246         * ChangeLog, NEWS, configure.ac: Bump to verson 0.4.30.
248 2016-11-30  Doug Torrance <dtorrance@piedmont.edu>
250         * wmbiff/Imap4Client.c, wmbiff/ShellClient.c, wmbiff/passwordMgr.c,
251         wmbiff/test_wmbiff.c: Add #define _GNU_SOURCE to avoid "implicit
252         declaration" warnings.
254 2016-11-30  Doug Torrance <dtorrance@piedmont.edu>
256         * wmbiff/Client.h, wmbiff/socket.c: Use unsigned data type for port
257         number.
259 2016-07-20  Doug Torrance <dtorrance@piedmont.edu>
261         * wmbiff/wmbiff.1, wmbiff/wmbiff.c: Fix typos.
263 2016-07-19  Doug Torrance <dtorrance@piedmont.edu>
265         * ChangeLog, configure.ac: Bump to version 0.4.29.
267 2016-07-19  Doug Torrance <dtorrance@piedmont.edu>
269         * wmbiff/Imap4Client.c: Close mailbox before we call
270         status on it.
272         Additional patch by Nye Liu <nyet@nyet.org> to fix Debian bug
273         #830889 [1].
275         [1] https://bugs.debian.org/830889
277 2016-07-12  Doug Torrance <dtorrance@piedmont.edu>
279         * wmbiff/Imap4Client.c: EXAMINE before STATUS
281         Patch by Nye Liu <nyet@nyet.org> to fix Debian bug #830889 [1].
283         Outlook Office365 IMAP servers now expect a client to issue at least
284         one EXAMINE before STATUS, or UNSEEN is always zero.
286         [1] https://bugs.debian.org/830889
288 2015-10-25  Doug Torrance <dtorrance@piedmont.edu>
290         * wmbiff/wmbiff.1, wmbiff/wmbiff.c: Add missing command line options
291         to documentation.
293         Closes Debian bug #770117 [1].
295         [1] https://bugs.debian.org/770117
297 2015-08-16  Rodolfo García Peñas (kix) <kix@kix.es>
299         * wmbiff/tlsComm.c: FTBFS with initialize_gnutls
301         The first argument for the function initialize_gnutls is an intptr_t
302         so wmbiff fails to build from source. This patch changes the current
303         int to intptr_t.
305 2014-11-07  Doug Torrance <dtorrance@monmouthcollege.edu>
307         * wmbiff/Makefile.am: Remove sourceforgeupload target from
308         Makefile; no longer needed.
310 2014-11-07  Doug Torrance <dtorrance@monmouthcollege.edu>
312         * wmbiff/README, wmbiff/configure.ac,
313         wmbiff/wmbiff/sample.wmbiffrc, wmbiff/wmbiff/wmbiff.1:
314         Update email address.
316 2014-11-07  Doug Torrance <dtorrance@monmouthcollege.edu>
318         * wmbiff/wmbiff/Imap4Client.c, wmbiff/wmbiff/Pop3Client.c:
319         Use PACKAGE_BUGREPORT instead of hardcoding address.
321 2014-11-07  Doug Torrance <dtorrance@monmouthcollege.edu>
323         * wmbiff/FAQ: Update FAQ.
325 2014-11-05  Doug Torrance <dtorrance@monmouthcollege.edu>
327         * wmbiff/wmbiff/tlsComm.c, wmbiff/wmbiff/tlsComm.h: Fix cast
328         to pointer from integer of different size compiler warning.
330 2014-11-05  Doug Torrance <dtorrance@monmouthcollege.edu>
332         * wmbiff/wmbiff/gnutls-common.c, wmbiff/wmbiff/gnutls-common.h,
333         wmbiff/wmbiff/tlsComm.c: Fix compiler warnings from
334         deprecated gnutls types.
336 2014-11-05  Doug Torrance <dtorrance@monmouthcollege.edu>
338         * wmbiff/wmbiff/wmbiff.1, wmbiff/wmbiff/wmbiffrc.5.in: Fix
339         manpages.  In particular, fix spelling-error-in-manpage,
340         hyphen-used-as-minus-sign, and manpage-has-errors-from-man Lintian
341         warnings from the Debian package.
343 2014-11-05  Doug Torrance <dtorrance@monmouthcollege.edu>
345         * wmbiff/configure.ac: Remove arguments to AM_INIT_AUTOMAKE
346         in configure.ac.  This patch serves two purposes:
347         - Avoid a " AM_INIT_AUTOMAKE: two- and three-arguments forms are
348           deprecated" warning when running autoreconf.
349         - Fix "syntax error near unexpected token" when running configure.
351 2014-11-05  Doug Torrance <dtorrance@monmouthcollege.edu>
353         * wmbiff/INSTALL: Remove INSTALL; automatically generated by
354         autotools.
356 2014-11-04  Doug Torrance <dtorrance@monmouthcollege.edu>
358         * wmbiff/wmgeneral/wmgeneral.h: Increase number of actions
359         to 40.  Patch by Alberto Morales <amd77@gulic.org>.
360         For more information, see:
361         https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=589408
363 2014-11-04  Doug Torrance <dtorrance@monmouthcollege.edu>
365         * wmbiff/wmbiff/Client.h, wmbiff/wmbiff/Imap4Client.c: Allow
366         usernames with more than 32 characters.
367         Patch by Tommaso Parisi <tommasop.ml@libero.it>.
368         For more information, see:
369         https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=626393
371 2014-11-04  Doug Torrance <dtorrance@monmouthcollege.edu>
373         * wmbiff/wmbiff/socket.c: Fix connection leak.
374         Patch by Arnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>.
375         For more information, see:
376         https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=663876
378 2014-11-04  Doug Torrance <dtorrance@monmouthcollege.edu>
380         * wmbiff/scripts/security.debian.rb: Fix security.debian.rb
381         script.
382         Patch by Lothar Ketterer <lketterer@users.sourceforge.net>
383         For more information, see:
384         https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525749
386 2014-11-04  Doug Torrance <dtorrance@monmouthcollege.edu>
388         * wmbiff/wmbiff/gnutls-common.c: Remove LZO compression.
389         GnuTLS LZO support was removed in version 3.0.0.  Based on the patch
390         by Andreas Metzler <ametzler@debian.org>:
391         http://sources.debian.net/src/wmbiff/0.4.27-2.3/debian/patches/15_no_more_LZO.diff/
392         For more information, see:
393         https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=638736
395 2014-10-05  Doug Torrance <dtorrance@monmouthcollege.edu>
397         * wmbiff/AUTHORS, wmbiff/FAQ, wmbiff/Makefile.am, wmbiff/NEWS,
398         wmbiff/README, wmbiff/TODO, wmbiff/autoconf/Makefile.am,
399         wmbiff/configure.ac, wmbiff/scripts/security.debian.rb,
400         wmbiff/wmbiff/Client.h, wmbiff/wmbiff/Imap4Client.c,
401         wmbiff/wmbiff/Makefile.am, wmbiff/wmbiff/Pop3Client.c,
402         wmbiff/wmbiff/ShellClient.c, wmbiff/wmbiff/charutil.c,
403         wmbiff/wmbiff/charutil.h, wmbiff/wmbiff/gnutls-common.c,
404         wmbiff/wmbiff/maildirClient.c, wmbiff/wmbiff/mboxClient.c,
405         wmbiff/wmbiff/passwordMgr.c, wmbiff/wmbiff/sample.wmbiffrc,
406         wmbiff/wmbiff/socket.c, wmbiff/wmbiff/test_wmbiff.c,
407         wmbiff/wmbiff/tlsComm.c, wmbiff/wmbiff/tlsComm.h,
408         wmbiff/wmbiff/wmbiff.1, wmbiff/wmbiff/wmbiff.c,
409         wmbiff/wmbiff/wmbiffrc.5.in, wmbiff/wmgeneral/Makefile.am,
410         wmbiff/wmgeneral/misc.c, wmbiff/wmgeneral/wmgeneral.c: Remove
411         trailing whitespace.
413 2013-04-08  Gabriel VLASIU <gabriel@vlasiu.net>
415         * wmbiff/wmbiff/Makefile.am, wmbiff/wmbiff/mboxClient.c,
416         wmbiff/wmbiff/wmbiff-classic-master-led.xpm,
417         wmbiff/wmbiff/wmbiff.1, wmbiff/wmbiff/wmbiff.c: Enable classic mode.
419 2013-04-08  Gabriel VLASIU <gabriel@vlasiu.net>
421         * wmbiff/configure.ac, wmbiff/wmbiff/Imap4Client.c,
422         wmbiff/wmbiff/Pop3Client.c, wmbiff/wmbiff/gnutls-common.c,
423         wmbiff/wmbiff/test_tlscomm.c, wmbiff/wmbiff/test_wmbiff.c,
424         wmbiff/wmbiff/tlsComm.c, wmbiff/wmbiff/wmbiff.c,
425         wmbiff/wmbiff/wmbiffrc.5.in: Update gnutls code (require at least
426         2.2.0).
428 2013-04-08  Gabriel VLASIU <gabriel@vlasiu.net>
430         * wmbiff/wmbiff/wmbiff.1: Remove gnomeicu from wmbif's manual.
432 2013-04-04  Gabriel VLASIU <gabriel@vlasiu.net>
434         * wmbiff/wmgeneral/wmgeneral.c: Fix segfault when -display
435         or -geometry argument is missing.
437 2013-04-04  Gabriel VLASIU <gabriel@vlasiu.net>
439         * wmbiff/wmbiff/wmbiff.c: Free memory when using a custom
440         skin.
442 2013-04-04  Gabriel VLASIU <gabriel@vlasiu.net>
444         * wmbiff/wmbiff/wmbiff.c: Fix wmbiff restart.
446 2013-04-04  Gabriel VLASIU <gabriel@vlasiu.net>
448         * wmbiff/wmbiff/gnutls-common.c: More gnutls casts.
450 2013-04-04  Gabriel VLASIU <gabriel@vlasiu.net>
452         * wmbiff/wmbiff/wmbiff.c, wmbiff/wmgeneral/wmgeneral.c: Fix
453         memory leaks pointed out by valgrind.
455 2013-04-04  Gabriel VLASIU <gabriel@vlasiu.net>
457         * wmbiff/wmgeneral/Makefile.am, wmbiff/wmgeneral/list.c,
458         wmbiff/wmgeneral/list.h, wmbiff/wmgeneral/misc.c: Remove
459         unused files.
461 2013-04-03  Gabriel VLASIU <gabriel@imhotep.timteh.com>
463         * wmbiff/wmbiff/wmbiff.c: XKeycodeToKeysym is deprecated.
465 2013-04-03  Gabriel VLASIU <gabriel@imhotep.timteh.com>
467         * wmbiff/wmbiff/wmbiff.c: Remove unused variable.
469 2013-04-03  Gabriel VLASIU <gabriel@vlasiu.net>
471         * wmbiff/wmbiff/gnutls-common.c, wmbiff/wmbiff/test_wmbiff.c,
472         wmbiff/wmbiff/tlsComm.c: Fix signedness and/or cast.
474 2013-04-03  Gabriel VLASIU <gabriel@imhotep.timteh.com>
476         * wmbiff/wmbiff/Pop3Client.c: comparison between pointer and
477         integer.
479 2013-04-03  Gabriel VLASIU <gabriel@vlasiu.net>
481         * wmbiff/wmbiff/test_tlscomm.c: Add missing include.
483 2013-04-03  Gabriel VLASIU <gabriel@vlasiu.net>
485         * wmbiff/wmbiff/wmbiff.1, wmbiff/wmbiff/wmbiffrc.5.in: Update manual
486         for wmbiff and wmbiffrc.
488 2012-06-12  Wade Berrier <wberrier@gmail.com>
490         * wmbiff/configure.ac, wmbiff/scripts/Makefile.am: slight
491         automake/autoconf refresh AM_PATH_LIBGNUTLS seems to be obsolete.
492         Replace the check with
493         pkg-config using PKG_CHECK_MODULES.
494         AM_CONFIG_HEADER also seems to be obsolete.  Replace with
495         AC_CONFIG_HEADER.  Fix installing an extra script (security.debian.rb)
497 2012-06-05  Alexey I. Froloff <raorn@raorn.name>
499         * wmbiff/wmbiff/gnutls-common.c, wmbiff/wmbiff/socket.c,
500         wmbiff/wmgeneral/list.c, wmbiff/wmgeneral/list.h,
501         wmbiff/wmgeneral/misc.c: Mass update FSF address
503 2012-06-05  Alexey I. Froloff <raorn@raorn.name>
505         * wmbiff/configure.ac: Make autoreconf happy
507 2012-06-05  Alexey I. Froloff <raorn@raorn.name>
509         * wmbiff/Makefile.in, wmbiff/aclocal.m4,
510         wmbiff/autoconf/Makefile.in, wmbiff/autoconf/depcomp,
511         wmbiff/autoconf/install-sh, wmbiff/autoconf/missing,
512         wmbiff/autoconf/mkinstalldirs, wmbiff/config.h.in,
513         wmbiff/configure, wmbiff/scripts/Makefile.in,
514         wmbiff/wmbiff/Makefile.in, wmbiff/wmbiff/wmbiffrc.5,
515         wmbiff/wmgeneral/Makefile.in: Removed all autogenerated autotools
516         and imake stuff
517         There's no need to keep autogenerated files in repository.  Those
518         dockapps which use autotoold must be autoreconf'ed prior to build,
519         those which use imake must be xmkmf'ed.  As of wmbiff,
520         AC_PATH_XTRA_CORRECTED was a hack to avoid bug in older autoconf
521         version, which is no longer needed (it's 2012 now already).
523 2012-06-05  Alexey I. Froloff <raorn@raorn.name>
525         * wmbiff/COPYING: Mass update GPLv2 from
526         http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
528 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
530         * wmbiff/wmbiff-master-led.xpm,
531         wmbiff/wmbiff.c: Change default colors
533 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
535         * wmbiff/wmbiff.c: Remove trailing colon from
536         mailbox label So now we have one extra char for the label name.
538 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
540         * Makefile.am, README.licq,
541         wmbiff/Client.h, wmbiff/LicqClient.c,
542         wmbiff/Makefile.am, wmbiff/Makefile.in,
543         wmbiff/sample.wmbiffrc,
544         wmbiff/wmbiff.1, wmbiff/wmbiff.c:
545         Remove Licq, gnomeicu and finger support
547 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
549         * wmbiff/wmbiff.c: Raise sleep interval to 20
550         secs
552 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
554         * wmbiff/wmbiff.c: Trivial code cleanups
556 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
558         * wmbiff/wmbiff.c: Fix global notification Global notification would
559         only work if all 'notify' commands for all mailboxes were unset
560         (=='\0').  Fix that.
562 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
564         * wmbiff/wmbiff.c: Remove autofetch on new
565         email arrival
567 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
569         * wmbiff/wmbiff.c: Remove 'beep' option for
570         notification
572 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
574         * wmbiff/wmbiff.c: Display "0" when there are
575         no new emails ...instead of displaying the total number of emails in the
576         mailbox.  On my gmail account with +16k emails, there was not enough
577         space to display the account label. Besides, the total number of emails
578         is useless information anyway.
580 2005-10-08 Saturday 18:13 UTC -- Neil Spring <nspring@cs.washington.edu>
582         * configure.ac: year stale 0.4.26 news
584 2005-10-07 Friday 03:07 UTC -- Neil Spring <nspring@cs.washington.edu>
586         * wmbiff/wmbiff.c: fix debian #332540: prevent -c 'directory' from
587           making wmbiff run away
589 2005-05-08 Sunday 21:31 UTC -- Neil Spring <nspring@cs.washington.edu>
591         * wmbiff/: Client.h, MessageList.c, test_tlscomm.c, test_wmbiff.c,
592           tlsComm.c, tlsComm.h, wmbiff.c: changes for gnutls 1.2 and
593           attempt to make wmbiff more responsive to X events while
594           communicating over the network
596 2004-12-12 Sunday 00:06 UTC -- Neil Spring <nspring@cs.washington.edu>
598         * check-includes.rb: update the portability checker
600 2004-12-12 Sunday 00:05 UTC -- Neil Spring <nspring@cs.washington.edu>
602         * wmgeneral/wmgeneral.c: allow KeyPress events through
604 2004-12-12 Sunday 00:03 UTC -- Neil Spring <nspring@cs.washington.edu>
606         * wmbiff/passwordMgr.c: nicer debug message
608 2004-12-12 Sunday 00:02 UTC -- Neil Spring <nspring@cs.washington.edu>
610         * wmbiff/: gnutls-common.c, test_wmbiff.c: compiler appeasement
612 2004-12-12 Sunday 00:01 UTC -- Neil Spring <nspring@cs.washington.edu>
614         * wmbiff/: Pop3Client.c, wmbiff.c, wmbiffrc.5.in: tls and password
615           asking support for pop3, keyboard event handling for the main
616           window
618 2004-10-31 Sunday 22:09 UTC -- Neil Spring <nspring@cs.washington.edu>
620         * wmbiff/tlsComm.c: indent and make tls_check_certificate void
622 2004-10-01 Friday 21:15 UTC -- Neil Spring <nspring@cs.washington.edu>
624         * wmbiff/tlsComm.c: comment the SHUT_WR
626 2004-10-01 Friday 21:06 UTC -- Neil Spring <nspring@cs.washington.edu>
628         * wmbiff/tlsComm.c: indent, and return if no certificate came back
629           from the far side
631 2004-10-01 Friday 21:05 UTC -- Neil Spring <nspring@cs.washington.edu>
633         * wmbiff/socket.c: thwack duplicate error messages about connecting
634           to a remote server
636 2004-10-01 Friday 21:02 UTC -- Neil Spring <nspring@cs.washington.edu>
638         * wmbiff/wmbiff.c: indent
640 2004-08-23 Monday 00:37 UTC -- Neil Spring <nspring@cs.washington.edu>
642         * wmbiff/wmbiff.c: disable the secure memory warning (and its use)
644 2004-07-03 Saturday 23:45 UTC -- Neil Spring <nspring@cs.washington.edu>
646         * FAQ: some faqs
648 2004-07-03 Saturday 23:43 UTC -- Neil Spring <nspring@cs.washington.edu>
650         * scripts/security.debian.rb: handle the timeout error explicitly,
651           better for disconnected operation
653 2004-07-03 Saturday 23:43 UTC -- Neil Spring <nspring@cs.washington.edu>
655         * wmbiff/socket.c: strerror preferred to perror
657 2004-06-28 Monday 18:20 UTC -- Neil Spring <nspring@cs.washington.edu>
659         * scripts/security.debian.rb: fix debian #256505: a small problem
660           with the .wmbiff-sdr directory not being created
662 2004-06-23 Wednesday 21:51 UTC -- Neil Spring <nspring@cs.washington.edu>
664         * configure.ac: 0.4.25
666 2004-06-23 Wednesday 21:46 UTC -- Neil Spring <nspring@cs.washington.edu>
668         * configure.ac, wmbiff/tlsComm.c: probably fix the s390 debian
669           build problems
671 2004-06-20 Sunday 01:03 UTC -- Neil Spring <nspring@cs.washington.edu>
673         * wmbiff/tlsComm.c: oops, should pay attention to the retval of
674           tls_compare_certificates
676 2004-06-19 Saturday 21:38 UTC -- Neil Spring <nspring@cs.washington.edu>
678         * wmbiff/gnutls-common.c: warning cleanup
680 2004-06-19 Saturday 20:53 UTC -- Neil Spring <nspring@cs.washington.edu>
682         * configure.ac, wmbiff/Client.h, wmbiff/Imap4Client.c,
683           wmbiff/Pop3Client.c, wmbiff/gnutls-common.c,
684           wmbiff/gnutls-common.h, wmbiff/tlsComm.c, wmbiff/wmbiff.c,
685           wmgeneral/wmgeneral.c: 0.4.24, supporting newer gnutls, I think
687 2004-06-18 Friday 21:29 UTC -- Neil Spring <nspring@cs.washington.edu>
689         * wmbiff/wmbiff.c: paranoid test to see if /var/mail/nspring is
690           constructed wrong.
692 2004-04-28 Wednesday 00:19 UTC -- Neil Spring <nspring@cs.washington.edu>
694         * wmbiff/: Client.h, charutil.c, socket.c, test_wmbiff.c, wmbiff.c:
695           indent run
697 2004-04-28 Wednesday 00:18 UTC -- Neil Spring <nspring@cs.washington.edu>
699         * wmbiff/: socket.c, test_wmbiff.c: handle ip addresses instead of
700           hostnames in sock_connect
702 2004-04-27 Tuesday 23:35 UTC -- Neil Spring <nspring@cs.washington.edu>
704         * configure.ac: 0.4.23
706 2004-04-27 Tuesday 23:31 UTC -- Neil Spring <nspring@cs.washington.edu>
708         * wmbiff/test_wmbiff.c: ensure that sock_connect works with IP
709           addresses
711 2004-04-21 Wednesday 21:53 UTC -- Neil Spring <nspring@cs.washington.edu>
713         * wmbiff/Imap4Client.c: oops, broke the cacheHeaders flag
715 2004-04-20 Tuesday 04:55 UTC -- Neil Spring <nspring@cs.washington.edu>
717         * wmbiff/: charutil.c, charutil.h, test_wmbiff.c, wmbiff.c: factor
718           out comment stripping for testing, which seems to have passed
720 2004-04-06 Tuesday 20:58 UTC -- Neil Spring <nspring@cs.washington.edu>
722         * wmbiff/: Imap4Client.c, Pop3Client.c, test_wmbiff.c: fix debian
723           #242458 -- allow IP addresses as server names for IMAP mailboxes,
724           and also for POP3 mailboxes
726 2004-03-28 Sunday 00:36 UTC -- Neil Spring <nspring@cs.washington.edu>
728         * configure.ac: 0.4.22
730 2004-03-28 Sunday 00:28 UTC -- Neil Spring <nspring@cs.washington.edu>
732         * wmbiff/: Client.h, Imap4Client.c, Pop3Client.c, ShellClient.c,
733           charutil.c, maildirClient.c, mboxClient.c, passwordMgr.c,
734           regulo.c, test_tlscomm.c, tlsComm.c, tlsComm.h, wmbiff.c: lots of
735           indent changes and a change to let msglst enable header caching
736           for imap
738 2004-03-12 Friday 21:35 UTC -- Neil Spring <nspring@cs.washington.edu>
740         * wmbiff/wmbiffrc.5.in: mention courier imapd's means of specifying
741           subfolders
743 2004-02-14 Saturday 18:10 UTC -- Neil Spring <nspring@cs.washington.edu>
745         * wmbiff/Imap4Client.c: bugfix for cyrus imap servers, thanks to
746           Jon Ramsey
748 2004-01-01 Thursday 23:47 UTC -- Neil Spring <nspring@cs.washington.edu>
750         * configure.ac: really call it 0.4.20
752 2004-01-01 Thursday 07:47 UTC -- Neil Spring <nspring@cs.washington.edu>
754         * AUTHORS, wmbiff/Client.h, wmbiff/Imap4Client.c,
755           wmbiff/ShellClient.c, wmbiff/maildirClient.c,
756           wmbiff/mboxClient.c, wmbiff/passwordMgr.c, wmbiff/wmbiff.c: Sam
757           Izzo's patch
759 2003-12-30 Tuesday 19:44 UTC -- Neil Spring <nspring@cs.washington.edu>
761         * Makefile.am, configure.ac: add --disable-crypto
763 2003-12-22 Monday 00:08 UTC -- Neil Spring <nspring@cs.washington.edu>
765         * wmbiff/Imap4Client.c: print failure message if imap login fails
767 2003-11-09 Sunday 07:01 UTC -- Neil Spring <nspring@cs.washington.edu>
769         * wmbiff/sample.wmbiffrc: mac os 10.3 mail responds to a different
770           way of identifying the inbox
772 2003-11-09 Sunday 03:16 UTC -- Neil Spring <nspring@cs.washington.edu>
774         * configure.ac: 0.4.19
776 2003-11-09 Sunday 03:16 UTC -- Neil Spring <nspring@cs.washington.edu>
778         * wmbiff/test_tlscomm.c: fix bug #219787
780 2003-11-08 Saturday 23:46 UTC -- Neil Spring <nspring@cs.washington.edu>
782         * Makefile.am: helper rule for sourceforge upload (I know, I know,
783           maintenance cruft making it into the release, whatever)
785 2003-11-08 Saturday 23:46 UTC -- Neil Spring <nspring@cs.washington.edu>
787         * wmbiff/Client.h: philosophical definition of truth
789 2003-11-08 Saturday 23:45 UTC -- Neil Spring <nspring@cs.washington.edu>
791         * wmbiff/Imap4Client.c: because having both from and subject
792           headers is no longer a way to tell when the end has happened,
793           must clean up the completed command tag explicitly
795 2003-11-08 Saturday 23:44 UTC -- Neil Spring <nspring@cs.washington.edu>
797         * wmbiff/passwordMgr.c: avoid compiler warning from inconsistent
798           def of size_t as passed into printf
800 2003-11-08 Saturday 22:58 UTC -- Neil Spring <nspring@cs.washington.edu>
802         * wmbiff/: ShellClient.c, charutil.c: strcpy is not defined to
803           handle overlapping regions.  valgrind complains, rightly, so
804           reimplement lefttrim to avoid such behavior
806 2003-11-08 Saturday 22:17 UTC -- Neil Spring <nspring@cs.washington.edu>
808         * wmbiff/wmbiff.c: bump up default_sleep_interval to clean up
809           strace output while bored.
811 2003-11-08 Saturday 22:13 UTC -- Neil Spring <nspring@cs.washington.edu>
813         * wmbiff/Imap4Client.c: handle messages without subject lines in
814           msglst
816 2003-11-07 Friday 09:11 UTC -- Neil Spring <nspring@cs.washington.edu>
818         * wmbiff/passwordMgr.c: panther (mac 10.3) does not appear to
819           null-terminate passwords in the keychain for us
821 2003-10-29 Wednesday 18:15 UTC -- Neil Spring <nspring@cs.washington.edu>
823         * wmbiff/: Imap4Client.c, Pop3Client.c: handle capitalized FROM and
824           SUBJECT headers common typical of spam spam spam
826 2003-10-28 Tuesday 23:39 UTC -- Neil Spring <nspring@cs.washington.edu>
828         * wmbiff/test_tlscomm.c: indent and add another check
830 2003-10-28 Tuesday 23:38 UTC -- Neil Spring <nspring@cs.washington.edu>
832         * wmbiff/: Makefile.am, test_wmbiff.c: indent
834 2003-10-28 Tuesday 07:09 UTC -- Neil Spring <nspring@cs.washington.edu>
836         * wmbiff/: Makefile.am, test_tlscomm.c: fix bug reported by
837           Jingshao Chen <jingshaochen@sbcglobal.net> with buffering
838           trouble, and incorporate a regression test to keep it from
839           accidentally popping up again
841 2003-10-28 Tuesday 06:56 UTC -- Neil Spring <nspring@cs.washington.edu>
843         * wmbiff/: test_tlscomm.c, tlsComm.c: test for proper handling of
844           buffering small bits of expected data
846 2003-10-26 Sunday 08:33 UTC -- Neil Spring <nspring@cs.washington.edu>
848         * wmbiff/: Imap4Client.c, passwordMgr.c: sigh, I dislike running
849           make indent
851 2003-10-26 Sunday 08:31 UTC -- Neil Spring <nspring@cs.washington.edu>
853         * AUTHORS, wmbiff/Pop3Client.c, wmbiff/wmbiffrc.5.in: Paolo
854           Gianrossi's patch to provide msglst support for pop3 mailboxes
856 2003-10-26 Sunday 07:42 UTC -- Neil Spring <nspring@cs.washington.edu>
858         * check-includes.rb, wmbiff/maildirClient.c, wmbiff/socket.c:
859           include file reordering, based on wisdom from porting some other
860           networky code
862 2003-10-26 Sunday 07:31 UTC -- Neil Spring <nspring@cs.washington.edu>
864         * scripts/security.debian.rb: fix some ruby1.8 warnings, minor
865           cleanup
867 2003-10-10 Friday 18:00 UTC -- Neil Spring <nspring@cs.washington.edu>
869         * configure.ac: 0.4.18
871 2003-10-10 Friday 15:59 UTC -- Neil Spring <nspring@cs.washington.edu>
873         * scripts/security.debian.rb: fix ruby1.8's complaint.
875 2003-08-31 Sunday 18:05 UTC -- Neil Spring <nspring@cs.washington.edu>
877         * configure.ac: 0.4.17
879 2003-08-31 Sunday 06:47 UTC -- Neil Spring <nspring@cs.washington.edu>
881         * wmbiff/tlsComm.c: oops, looks like I resolved a conflict poorly
883 2003-08-31 Sunday 04:39 UTC -- Neil Spring <nspring@cs.washington.edu>
885         * wmbiff/Makefile.am: build the test cases well
887 2003-08-31 Sunday 03:33 UTC -- Neil Spring <nspring@cs.washington.edu>
889         * wmbiff/: test_wmbiff.c, tlsComm.h: check the newline bugfix
891 2003-08-31 Sunday 03:32 UTC -- Neil Spring <nspring@cs.washington.edu>
893         * wmbiff/tlsComm.c: bugfix to avoid handing odd newlines badly
895 2003-07-31 Thursday 23:37 UTC -- Neil Spring <nspring@cs.washington.edu>
897         * wmbiff/Imap4Client.c: fix some potential bugs - an access of
898           freed memory and an uninitialized reference counter
900 2003-07-20 Sunday 00:52 UTC -- Neil Spring <nspring@cs.washington.edu>
902         * wmbiff/: passwordMgr.c, test_wmbiff.c: fix a five-minute old
903           regression test failure where null was returned instead of an
904           empty string for an empty password.  not sure it matters, but
905           maybe.
907 2003-07-20 Sunday 00:44 UTC -- Neil Spring <nspring@cs.washington.edu>
909         * wmbiff/passwordMgr.c: oops, I left a use-after-free bug in the
910           askpass code
912 2003-07-19 Saturday 23:56 UTC -- Neil Spring <nspring@cs.washington.edu>
914         * configure.ac, wmbiff/passwordMgr.c: use the apple keychain to
915           grab passwords! I can very nearly forget about typing them in
916           anymore
918 2003-07-10 Thursday 17:44 UTC -- Neil Spring <nspring@cs.washington.edu>
920         * Makefile.am: ensure that the current directory is not setgid when
921           making a distribution; this borks some untars
923 2003-07-07 Monday 09:00 UTC -- Neil Spring <nspring@cs.washington.edu>
925         * wmbiff/Imap4Client.c: warnings cleanup
927 2003-07-07 Monday 08:57 UTC -- Neil Spring <nspring@cs.washington.edu>
929         * configure.ac, wmbiff/Client.h, wmgeneral/wmgeneral.c: call it
930           0.4.16
932 2003-07-07 Monday 08:43 UTC -- Neil Spring <nspring@cs.washington.edu>
934         * wmbiff/: Client.h, Imap4Client.c, passwordMgr.c, test_wmbiff.c:
935           fix memfrob * bug (memfrob makes *'s zero, so password length
936           must be tracked separately
938 2003-07-04 Friday 21:42 UTC -- Neil Spring <nspring@cs.washington.edu>
940         * wmbiff/wmbiff.c: handle comments the way I meant to...
942 2003-07-03 Thursday 11:10 UTC -- Neil Spring <nspring@cs.washington.edu>
944         * wmbiff/Imap4Client.c: switch the new header cache to use
945           reference counting (better, but possibly buggy) instead of
946           locking (dumb, and certainly buggy)
948 2003-07-03 Thursday 05:39 UTC -- Neil Spring <nspring@cs.washington.edu>
950         * wmbiff/Imap4Client.c: try to avoid repetitive complaints of
951           failed connections
953 2003-07-03 Thursday 05:34 UTC -- Neil Spring <nspring@cs.washington.edu>
955         * wmbiff/socket.c: avoid repetitive error messages when hostname
956           lookup fails (such as when disconnected)
958 2003-07-03 Thursday 05:33 UTC -- Neil Spring <nspring@cs.washington.edu>
960         * wmgeneral/wmgeneral.c: last fix to geometry handling had a
961           compiler warning
963 2003-07-03 Thursday 05:12 UTC -- Neil Spring <nspring@cs.washington.edu>
965         * wmgeneral/wmgeneral.c: try doing geometry the way X intends it to
966           be done, at least as far as I can tell.
968 2003-07-03 Thursday 01:03 UTC -- Neil Spring <nspring@cs.washington.edu>
970         * wmbiff/wmbiff.c: make #'s comments only if preceded by whitespace
971           or at the beginning of the line
973 2003-07-03 Thursday 00:53 UTC -- Neil Spring <nspring@cs.washington.edu>
975         * wmbiff/wmbiff.c: looks like I'd broken the button click events
976           recently
978 2003-07-03 Thursday 00:52 UTC -- Neil Spring <nspring@cs.washington.edu>
980         * wmbiff/sample.wmbiffrc: osascript samples for driving mac mail
981           using applescript
983 2003-06-30 Monday 23:42 UTC -- Neil Spring <nspring@cs.washington.edu>
985         * wmbiff/: Imap4Client.c, tlsComm.c: warning message beautification
987 2003-06-08 Sunday 07:01 UTC -- Neil Spring <nspring@cs.washington.edu>
989         * wmbiff/: Client.h, Imap4Client.c, MessageList.c, MessageList.h,
990           ShellClient.c: general rewrite of the msglst headers, so that the
991           list is pre-cached for responsiveness.
993 2003-06-08 Sunday 06:59 UTC -- Neil Spring <nspring@cs.washington.edu>
995         * wmbiff/wmbiffrc.5.in: document msglst and buttontwo
997 2003-06-08 Sunday 06:59 UTC -- Neil Spring <nspring@cs.washington.edu>
999         * wmbiff/wmbiff.c: show a watch pointer while working behind the
1000           scenes
1002 2003-06-03 Tuesday 04:57 UTC -- Neil Spring <nspring@cs.washington.edu>
1004         * autogen.sh: enable dependency tracking
1006 2003-04-17 Thursday 05:04 UTC -- Neil Spring <nspring@cs.washington.edu>
1008         * scripts/security.debian.rb: trap socket errors
1010 2003-04-17 Thursday 01:56 UTC -- Neil Spring <nspring@cs.washington.edu>
1012         * scripts/security.debian.rb: print the detailed version
1014 2003-04-17 Thursday 01:56 UTC -- Neil Spring <nspring@cs.washington.edu>
1016         * wmbiff/: Client.h, ShellClient.c, passwordMgr.c: space for detail
1017           in grab command output, use the detail to populate a message list
1018           in a getheaders function (eg. can see the list of thought to be
1019           updated packages if using hte security.debian script
1021 2003-04-17 Thursday 01:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1023         * wmbiff/test-wmbiffrc.shell: test usingthe debian script, allows
1024           trying shell get headers
1026 2003-04-17 Thursday 01:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1028         * wmbiff/tlsComm.c: try to print a helpful hint message to use
1029           gnutls-cli-debug
1031 2003-04-16 Wednesday 23:30 UTC -- Neil Spring <nspring@cs.washington.edu>
1033         * configure.ac: downgrade configure.ac use of AM_INIT_AUTOMAKE to
1034           support automake-1.5
1036 2003-04-16 Wednesday 08:21 UTC -- Neil Spring <nspring@cs.washington.edu>
1038         * wmgeneral/wmgeneral.c: export GetColor
1040 2003-04-16 Wednesday 08:18 UTC -- Neil Spring <nspring@cs.washington.edu>
1042         * wmbiff/: Client.h, Imap4Client.c, MessageList.c, MessageList.h,
1043           tlsComm.c, wmbiff.c: indent run
1045 2003-04-16 Wednesday 08:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1047         * wmbiff/Imap4Client.c: get headers / message list support
1049 2003-04-16 Wednesday 08:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1051         * wmbiff/Makefile.am: messagelist
1053 2003-04-16 Wednesday 08:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1055         * wmbiff/tlsComm.c: rename state to tls_state for clarity, small
1056           cleanup, fixes for buffering several lines in an expectation
1058 2003-04-16 Wednesday 08:14 UTC -- Neil Spring <nspring@cs.washington.edu>
1060         * wmbiff/: wmbiff.c, Client.h: message list, button 2 support
1062 2003-04-16 Wednesday 08:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1064         * wmbiff/: MessageList.c, MessageList.h: list new messages,
1065           currently only with an imap driver
1067 2003-04-09 Wednesday 04:51 UTC -- Neil Spring <nspring@cs.washington.edu>
1069         * autogen.sh: fall back to automake-1.5 if necessary
1071 2003-04-07 Monday 10:10 UTC -- Neil Spring <nspring@cs.washington.edu>
1073         * wmbiff/tlsComm.c: invalid is returned when it doesn't match?
1075 2003-04-07 Monday 09:41 UTC -- Neil Spring <nspring@cs.washington.edu>
1077         * wmbiff/tlsComm.c: fix some info messages - drop complaints about
1078           version 0.2.3 of gnutls, mention certfile.
1080 2003-04-07 Monday 09:33 UTC -- Neil Spring <nspring@cs.washington.edu>
1082         * wmbiff/wmbiffrc.5.in: doc certfile
1084 2003-04-07 Monday 09:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1086         * wmbiff/tlsComm.c: handle certfile errors properly; positive
1087           return values from gnutls_certificate_set_x509_trust_file appear
1088           okay.
1090 2003-03-30 Sunday 11:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1092         * wmbiff/: passwordMgr.c, test_wmbiff.c: oh, now I get why that
1093           foolish null-termination was present.  it's better now
1095 2003-03-30 Sunday 11:23 UTC -- Neil Spring <nspring@cs.washington.edu>
1097         * configure.ac: 0.4.15
1099 2003-03-30 Sunday 11:22 UTC -- Neil Spring <nspring@cs.washington.edu>
1101         * wmbiff/wmbiffrc.5.in: note the hash caveat
1103 2003-03-30 Sunday 11:05 UTC -- Neil Spring <nspring@cs.washington.edu>
1105         * wmbiff/passwordMgr.c: remove (unreleased) foolhardy
1106           null-termination
1108 2003-03-30 Sunday 10:57 UTC -- Neil Spring <nspring@cs.washington.edu>
1110         * wmbiff/test_wmbiff.c: just so as not to confuse anyone that
1111           wmbiff allows #'s in passwords
1113 2003-03-30 Sunday 10:38 UTC -- Neil Spring <nspring@cs.washington.edu>
1115         * README, wmbiff/wmbiff.c, wmgeneral/wmgeneral.c,
1116           wmgeneral/wmgeneral.h: support setting the background color using
1117           -bg
1119 2003-03-28 Friday 08:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1121         * wmbiff/test_wmbiff.c: check that passwords with # can be parsed
1123 2003-03-28 Friday 08:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1125         * wmbiff/wmbiffrc.5.in: doc password parsing damage
1127 2003-03-11 Tuesday 08:07 UTC -- Neil Spring <nspring@cs.washington.edu>
1129         * README: gnupg reorganized their website
1131 2003-03-11 Tuesday 08:03 UTC -- Neil Spring <nspring@cs.washington.edu>
1133         * configure.ac: provide a helpful message as to where gnutls and
1134           libgcrypt can be found in configure.ac
1136 2003-03-06 Thursday 21:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1138         * wmbiff/wmbiff.c: fix debian bug #183529
1140 2003-03-03 Monday 19:06 UTC -- Neil Spring <nspring@cs.washington.edu>
1142         * wmbiff/passwordMgr.c: make returned password length consistent
1143           with stored password length
1145 2003-03-02 Sunday 02:37 UTC -- Neil Spring <nspring@cs.washington.edu>
1147         * configure.ac, wmbiff/Imap4Client.c, wmbiff/passwordMgr.c,
1148           wmbiff/passwordMgr.h: in-memory frobnication of imap passwords
1150 2003-03-02 Sunday 02:17 UTC -- Neil Spring <nspring@cs.washington.edu>
1152         * wmbiff/: Imap4Client.c, Makefile.am, Pop3Client.c, regulo.c,
1153           regulo.h, socket.c, test_wmbiff.c, wmbiff.c: hostname paranoia
1154           patch -- use -relax to skip hostname validation check, parse
1155           ambiguous config lines
1157 2003-03-02 Sunday 01:04 UTC -- Neil Spring <nspring@cs.washington.edu>
1159         * wmbiff/wmbiff.c, wmgeneral/wmgeneral.c: indent run
1161 2003-02-13 Thursday 21:07 UTC -- Neil Spring <nspring@cs.washington.edu>
1163         * Makefile.am, configure.ac: 0.4.14
1165 2003-02-08 Saturday 21:04 UTC -- Neil Spring <nspring@cs.washington.edu>
1167         * wmbiff/: wmbiff.1, wmbiffrc.5.in: document restart schemes
1169 2003-02-08 Saturday 07:06 UTC -- Neil Spring <nspring@cs.washington.edu>
1171         * wmbiff/wmbiff.c: restart wmbiff also on ctrl-shift-left click
1173 2003-02-08 Saturday 03:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1175         * wmbiff/wmbiff.c: restart on sig usr1 using exec()
1177 2003-02-08 Saturday 03:43 UTC -- Neil Spring <nspring@cs.washington.edu>
1179         * autogen.sh: I think symlink is okay for autoreconf
1181 2003-02-08 Saturday 03:42 UTC -- Neil Spring <nspring@cs.washington.edu>
1183         * wmgeneral/: wmgeneral.c, wmgeneral.h: much prefer if wmgeneral
1184           proclaimed that it would not modify argv; I think it's even true
1186 2003-01-28 Tuesday 11:14 UTC -- Neil Spring <nspring@cs.washington.edu>
1188         * configure.ac: remove check for gnuregex
1190 2003-01-28 Tuesday 11:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1192         * wmbiff/Imap4Client.c: bugfix to avoid problems with the new regex
1193           scheme and the default mailbox (aliasing sucks.)
1195 2003-01-28 Tuesday 11:12 UTC -- Neil Spring <nspring@cs.washington.edu>
1197         * wmbiff/charutil.h: remove gnuregex.h incl
1199 2003-01-28 Tuesday 11:12 UTC -- Neil Spring <nspring@cs.washington.edu>
1201         * wmbiff/wmbiff.c: newline after error message
1203 2003-01-25 Saturday 04:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1205         * autogen.sh: remove dangling symlinks config.guess, config.sub
1207 2003-01-25 Saturday 04:33 UTC -- Neil Spring <nspring@cs.washington.edu>
1209         * wmgeneral/list.c: compiler warning appeasement (shadowing index)
1211 2003-01-25 Saturday 04:32 UTC -- Neil Spring <nspring@cs.washington.edu>
1213         * wmbiff/Makefile.am: use the non gnu-make form of the
1214           indent-a-c-file rule
1216 2003-01-22 Wednesday 01:56 UTC -- Neil Spring <nspring@cs.washington.edu>
1218         * autogen.sh: make sure ChangeLog exists locally.
1220 2003-01-21 Tuesday 08:56 UTC -- Neil Spring <nspring@cs.washington.edu>
1222         * wmbiff/tlsComm.c: fix some minor damage when select is
1223           interrupted (EINTR)
1225 2003-01-21 Tuesday 05:55 UTC -- Neil Spring <nspring@cs.washington.edu>
1227         * autogen.sh: warn if autoconf/libgnutls.m4 does not exist
1229 2003-01-20 Monday 19:52 UTC -- Neil Spring <nspring@cs.washington.edu>
1231         * wmbiff/Makefile.am: add libgcrypt libraries if used to
1232           test_wmbiff
1234 2003-01-20 Monday 19:52 UTC -- Neil Spring <nspring@cs.washington.edu>
1236         * configure.ac: remove possibly unneeded check for gdbm
1238 2003-01-19 Sunday 13:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1240         * wmbiff/: Client.h, Imap4Client.c, Makefile.am, Pop3Client.c,
1241           ShellClient.c, charutil.c, charutil.h, passwordMgr.c,
1242           test_wmbiff.c, tlsComm.c, wmbiff.c: general portability fixes,
1243           including HAVE___ATTRIBUTE__
1245 2003-01-19 Sunday 13:12 UTC -- Neil Spring <nspring@cs.washington.edu>
1247         * wmbiff/: regulo.c, regulo.h: posix based regular expression
1248           handling with a not so lame interface
1250 2003-01-19 Sunday 13:11 UTC -- Neil Spring <nspring@cs.washington.edu>
1252         * configure.ac: portability fixes: HAVE___ATTRIBUTE__ (maybe),
1253           libnsl (solaris), -no-cpp-precomp (os x)
1255 2003-01-04 Saturday 03:39 UTC -- Neil Spring <nspring@cs.washington.edu>
1257         * configure.ac, wmbiff/wmbiff.c: 0.4.12, release to fix bad
1258           -geometry handling
1260 2003-01-03 Friday 20:37 UTC -- Neil Spring <nspring@cs.washington.edu>
1262         * wmbiff/wmbiff.c: fix geometry argument handling bug (Debian
1263           #175220)
1265 2002-12-29 Sunday 07:46 UTC -- Neil Spring <nspring@cs.washington.edu>
1267         * scripts/security.debian.rb: I meant to say 6 hours
1269 2002-12-29 Sunday 05:42 UTC -- Neil Spring <nspring@cs.washington.edu>
1271         * wmbiff/sample.wmbiffrc: shell recipe for security.debian.rb
1273 2002-12-29 Sunday 05:28 UTC -- Neil Spring <nspring@cs.washington.edu>
1275         * scripts/security.debian.rb: didn't mean to commit with a 6 minute
1276           refresh interval
1278 2002-12-29 Sunday 04:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1280         * Makefile.am, check-includes.rb, configure.ac: add scripts
1281           subdirectory to build system
1283 2002-12-29 Sunday 04:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1285         * scripts/: Makefile.am, security.debian.rb: new scripts directory
1286           to hold debian security checker and install it.
1288 2002-12-29 Sunday 03:25 UTC -- Neil Spring <nspring@cs.washington.edu>
1290         * wmbiff/wmbiff.c: general cleanup - use strdup_ordie,
1291           malloc_ordie.  reduce using ints and chars interchangeably.
1292           static annotations on module-local variables
1294 2002-12-29 Sunday 03:22 UTC -- Neil Spring <nspring@cs.washington.edu>
1296         * wmbiff/tlsComm.c: bad_certificate called as if void, so change
1297           the signature
1299 2002-12-29 Sunday 03:22 UTC -- Neil Spring <nspring@cs.washington.edu>
1301         * configure.ac: autodetect whether to use poll()
1303 2002-12-29 Sunday 02:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1305         * wmgeneral/: Makefile.am, wmgeneral.c, wmgeneral.h: make
1306           AddMouseRegion take an unsigned int for the region index (which
1307           is an _index_ which means negative values need not apply)
1309 2002-12-29 Sunday 02:31 UTC -- Neil Spring <nspring@cs.washington.edu>
1311         * wmbiff/: charutil.c, charutil.h: change signature of *Trim to
1312           reflect that they can't fail (void instead of int); the return
1313           values are ignored in wmbiff
1315 2002-12-29 Sunday 01:36 UTC -- Neil Spring <nspring@cs.washington.edu>
1317         * wmbiff/wmbiff.c: reorder functions to avoid pre-declaration.
1318           should simplify reading the (now very long) code
1320 2002-12-29 Sunday 01:11 UTC -- Neil Spring <nspring@cs.washington.edu>
1322         * wmgeneral/: misc.c, misc.h: exec command can take a const char *
1324 2002-12-29 Sunday 01:05 UTC -- Neil Spring <nspring@cs.washington.edu>
1326         * wmbiff/sample.wmbiffrc: another askpass recipe
1328 2002-12-29 Sunday 00:57 UTC -- Neil Spring <nspring@cs.washington.edu>
1330         * wmbiff/wmbiff.c: cleanup unused variables
1332 2002-12-29 Sunday 00:57 UTC -- Neil Spring <nspring@cs.washington.edu>
1334         * wmbiff/Makefile.am: surgical indent rule
1336 2002-12-29 Sunday 00:37 UTC -- Neil Spring <nspring@cs.washington.edu>
1338         * configure.ac, wmbiff/wmbiff.c: use automake/autoconf defined
1339           PACKAGE_VERSION and PACKAGE_BUGREPORT
1341 2002-12-29 Sunday 00:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1343         * wmbiff/passwordMgr.c: support arbitrarily long password query
1344           commands
1346 2002-12-29 Sunday 00:14 UTC -- Neil Spring <nspring@cs.washington.edu>
1348         * wmbiff/wmbiff.c: configuration file parsing cleanup, support
1349           longer configuration options, remove some ad-hockery in favor of
1350           sscanf
1352 2002-12-13 Friday 05:38 UTC -- Neil Spring <nspring@cs.washington.edu>
1354         * configure.ac, wmbiff/tlsComm.c, wmbiff/wmbiff.1, wmbiff/wmbiff.c:
1355           0.4.10, -skip-certificate-check option
1357 2002-12-09 Monday 21:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1359         * AUTHORS, wmbiff/sample.wmbiffrc, wmbiff/wmbiff.c,
1360           wmbiff/wmbiffrc.5.in: Peter McAlpine's globalnotify patch
1362 2002-12-09 Monday 21:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1364         * wmbiff/Imap4Client.c: minor change to timeout behavior, just
1365           delay a while before next check
1367 2002-12-02 Monday 07:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1369         * configure.ac: require gnutls 0.5.9, release 0.4.9
1371 2002-11-30 Saturday 07:58 UTC -- Neil Spring <nspring@cs.washington.edu>
1373         * wmbiff/Imap4Client.c: more robust ETIMEDOUT handling -- just
1374           chill out for a few minues rather than blacklist as a compromise
1375           between the responsiveness of not retrying unresponsive servers
1376           and the robustness of prodding on.  the right thing is probably a
1377           non-blocking connect, but that's  messy
1379 2002-11-15 Friday 08:06 UTC -- Neil Spring <nspring@cs.washington.edu>
1381         * wmbiff/tlsComm.c: should really be able to catch these problems
1382           earler - without gnutls, the build would fail
1384 2002-11-15 Friday 08:05 UTC -- Neil Spring <nspring@cs.washington.edu>
1386         * autogen.sh: red hat hackery
1388 2002-11-13 Wednesday 06:44 UTC -- Neil Spring <nspring@cs.washington.edu>
1390         * wmbiff/wmbiff.1, wmbiff/wmbiff.c, wmgeneral/wmgeneral.c,
1391           wmgeneral/wmgeneral.h: a method for not using the withdrawn state
1393 2002-11-12 Tuesday 08:27 UTC -- Neil Spring <nspring@cs.washington.edu>
1395         * Makefile.am, configure.ac, wmbiff/wmbiff.c, wmbiff/wmbiffrc.5.in,
1396           wmgeneral/wmgeneral.c, wmgeneral/wmgeneral.h: Allow automatic
1397           sizing of the wmbiff window, effective for other window managers.
1399 2002-10-26 Saturday 23:17 UTC -- Jordi Mallach <jordi@sindominio.net>
1401         * FromCVS.sh, autogen.sh: Rename FromCVS.sh to autogen.sh, which is
1402           the "common" name for such script.
1404 2002-10-26 Saturday 23:15 UTC -- Jordi Mallach <jordi@sindominio.net>
1406         * ChangeLog, Makefile.am, maint/changelog-header,
1407           maint/prerelease.sh: Stop doing the ChangeLog header hack.
1408           Instead, remove ChangeLog entirely from CVS and get it generated
1409           correctly on dist. Remove unneeded maint scripts.
1411 2002-10-26 Saturday 23:12 UTC -- Jordi Mallach <jordi@sindominio.net>
1413         * FromCVS.sh: Add automake-1.7 support.
1415 2002-10-20 Sunday 21:58 UTC -- Jordi Mallach <jordi@sindominio.net>
1417         * wmbiff/: wmbiff.1, wmbiffrc.5.in: do not specify Debian
1418           GNU/Linux... I'm actually more interested in the Hurd right now
1419           :)
1421 2002-10-14 Monday 05:52 UTC -- Neil Spring <nspring@cs.washington.edu>
1423         * wmbiff/maildirClient.c: use mkstemp instead of mktemp to appease
1424           the compiler
1426 2002-10-14 Monday 01:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1428         * wmbiff/wmbiffrc.5.in: add the 'this file automatically generated'
1429           tag
1431 2002-10-13 Sunday 21:28 UTC -- Neil Spring <nspring@cs.washington.edu>
1433         * wmbiff/: Imap4Client.c, tlsComm.c, tlsComm.h: Check certificate
1434           hostname, using gnutls's new function
1436 2002-10-13 Sunday 21:27 UTC -- Neil Spring <nspring@cs.washington.edu>
1438         * wmbiff/Client.h: a formatting glitch
1440 2002-10-13 Sunday 21:27 UTC -- Neil Spring <nspring@cs.washington.edu>
1442         * FromCVS.sh, Makefile.am: use autoreconf instead of the ad-hockery
1444 2002-09-25 Wednesday 06:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1446         * FAQ: why doesn't wmbiff update my mailbox count when I read a
1447           message
1449 2002-09-20 Friday 19:50 UTC -- Neil Spring <nspring@cs.washington.edu>
1451         * FromCVS.sh: support redhat autoconf sadness
1453 2002-09-19 Thursday 07:00 UTC -- Neil Spring <nspring@cs.washington.edu>
1455         * wmbiff/test_wmbiff.c: allow test to run when nnot linked with
1456           gnutls
1458 2002-09-18 Wednesday 23:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1460         * wmbiff/maildirClient.c: compiler warning fixes
1462 2002-09-18 Wednesday 23:43 UTC -- Neil Spring <nspring@cs.washington.edu>
1464         * ChangeLog, configure.ac, wmbiff/Client.h, wmbiff/Imap4Client.c,
1465           wmbiff/Makefile.am, wmbiff/maildirClient.c, wmbiff/test_wmbiff.c,
1466           wmbiff/wmbiffrc.5.in: bugfix to allow imap mailbox filenames to
1467           contain spaces, test that it works; also, prepare 0.4.8
1469 2002-09-14 Saturday 18:51 UTC -- Dwayne C. Litzenberger <dlitz@dlitz.net>
1471         * wmbiff/: Client.h, maildirClient.c, wmbiffrc.5.in: *
1472           maildirClient: Added support for quick checking of writable
1473           network-mounted   maildirs where directory caching normally
1474           causes unwanted delays.
1476 2002-08-16 Friday 07:55 UTC -- Neil Spring <nspring@cs.washington.edu>
1478         * ChangeLog, configure.ac, autoconf/libgnutls.m4,
1479           wmbiff/Imap4Client.c, wmbiff/gnutls-common.c,
1480           wmbiff/gnutls-common.h, wmbiff/tlsComm.c: handle new
1481           gnutls/gnutls.h convention, release 0.4.7
1483 2002-08-06 Tuesday 08:05 UTC -- Neil Spring <nspring@cs.washington.edu>
1485         * FromCVS.sh: seek out and use athe underrated automake 1.6.
1487 2002-07-27 Saturday 17:50 UTC -- Neil Spring <nspring@cs.washington.edu>
1489         * wmbiff/: Imap4Client.c, tlsComm.c: trivial formatting fixes
1491 2002-07-19 Friday 18:51 UTC -- Neil Spring <nspring@cs.washington.edu>
1493         * ChangeLog, configure.ac: release version 0.4.6
1495 2002-07-18 Thursday 02:55 UTC -- Neil Spring <nspring@cs.washington.edu>
1497         * wmbiff/wmbiff.c: ignore sigpipe, possible bugfix for abnormal
1498           termination during suspend for imap/gnutls
1500 2002-07-04 Thursday 08:00 UTC -- Neil Spring <nspring@cs.washington.edu>
1502         * ChangeLog, configure.ac: last minute changes for 0.4.5
1504 2002-07-04 Thursday 01:07 UTC -- Neil Spring <nspring@cs.washington.edu>
1506         * wmbiff/: Imap4Client.c, Makefile.am, Pop3Client.c, charutil.c,
1507           tlsComm.c, wmbiff.c: valgrind debugging, and support for -exit.
1508           some bugs were probably fixed, but since nobody has noticed yet,
1509           I don't know if they mattered
1511 2002-07-04 Thursday 00:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1513         * wmgeneral/wmgeneral.c: reminder in where valgrind complains
1515 2002-07-04 Thursday 00:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1517         * Makefile.am: add a top-level 'indent' rule
1519 2002-07-03 Wednesday 02:28 UTC -- Neil Spring <nspring@cs.washington.edu>
1521         * wmbiff/tlsComm.c: doubled the timeout to 40 seconds.
1523 2002-06-26 Wednesday 19:04 UTC -- Neil Spring <nspring@cs.washington.edu>
1525         * ChangeLog, Makefile.am, autoconf/Makefile.am: die configure.in!
1526           die acconfig.h!
1528 2002-06-26 Wednesday 18:56 UTC -- Neil Spring <nspring@cs.washington.edu>
1530         * ChangeLog, FromCVS.sh, Makefile.am, configure.ac, configure.in,
1531           autoconf/acconfig.h: migrate to newer autoconf (2.5) to try to
1532           debug making-from-scratch problem and get rid of acconfig.h cruft
1534 2002-06-25 Tuesday 23:52 UTC -- Neil Spring <nspring@cs.washington.edu>
1536         * Makefile.am: tiny automake 1.6 fix (doesn't appear to use
1537           stamp-h.  who knew.)
1539 2002-06-25 Tuesday 23:33 UTC -- Neil Spring <nspring@cs.washington.edu>
1541         * autoconf/libgnutls.m4: trivial upstream bugfix
1543 2002-06-25 Tuesday 23:29 UTC -- Neil Spring <nspring@cs.washington.edu>
1545         * wmbiff/Makefile.am: never underestimate the complexity of
1546           solutions involving automake
1548 2002-06-25 Tuesday 23:24 UTC -- Neil Spring <nspring@cs.washington.edu>
1550         * configure.in, wmbiff/Makefile.am: corrections to conditional
1551           compilation of gnutls-common for automake 1.5 (and thereby the
1552           true automake way)
1554 2002-06-25 Tuesday 23:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1556         * configure.in, wmbiff/Makefile.am: only compile gnutls-common.[ch]
1557           if gnutls is configured in (duh), and only check for gcrypt.h if
1558           libgcrypt is installed and current
1560 2002-06-24 Monday 07:18 UTC -- Neil Spring <nspring@cs.washington.edu>
1562         * ChangeLog, FromCVS.sh: roughly finished 0.4.4
1564 2002-06-24 Monday 07:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1566         * wmbiff/tlsComm.c: restore certificate checking
1568 2002-06-24 Monday 07:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1570         * wmbiff/: gnutls-common.c, gnutls-common.h: indent run
1572 2002-06-24 Monday 01:23 UTC -- Neil Spring <nspring@cs.washington.edu>
1574         * wmbiff/Makefile.am, configure.in: basic gnutls 0.4.3 support
1575           (that is, it compiles.)
1577 2002-06-24 Monday 01:18 UTC -- Neil Spring <nspring@cs.washington.edu>
1579         * wmbiff/: gnutls-common.c, gnutls-common.h, tlsComm.c: basic
1580           gnutls 0.4.3 support (that is, it compiles.)
1582 2002-06-23 Sunday 01:26 UTC -- Neil Spring <nspring@cs.washington.edu>
1584         * wmbiff/wmbiff.c: cleanup to periodic mail checking, removal of
1585           the first mail check - now all cases are the same
1587 2002-06-21 Friday 04:34 UTC -- Neil Spring <nspring@cs.washington.edu>
1589         * wmbiff/wmbiff.c: y_ and x_origin, and num_mailboxes constants,
1590           highlight color for fn, restructured mailbox creation routines
1592 2002-06-21 Friday 04:31 UTC -- Neil Spring <nspring@cs.washington.edu>
1594         * wmbiff/Pop3Client.c: splint
1596 2002-06-21 Friday 04:31 UTC -- Neil Spring <nspring@cs.washington.edu>
1598         * wmbiff/: LicqClient.c, ShellClient.c, charutil.c,
1599           maildirClient.c, mboxClient.c, passwordMgr.c, test_wmbiff.c:
1600           config.h
1602 2002-06-21 Friday 04:30 UTC -- Neil Spring <nspring@cs.washington.edu>
1604         * wmbiff/Imap4Client.c: clarity and splint
1606 2002-06-21 Friday 04:29 UTC -- Neil Spring <nspring@cs.washington.edu>
1608         * wmbiff/Client.h: splint support
1610 2002-06-21 Friday 04:29 UTC -- Neil Spring <nspring@cs.washington.edu>
1612         * wmbiff/wmbiff.1: highlight color
1614 2002-06-21 Friday 04:28 UTC -- Neil Spring <nspring@cs.washington.edu>
1616         * wmbiff/Makefile.am: verify that config.h is included in each .c
1617           file
1619 2002-06-15 Saturday 09:05 UTC -- Neil Spring <nspring@cs.washington.edu>
1621         * configure.in: likely bugfix for newer autoconf?
1623 2002-06-15 Saturday 09:04 UTC -- Neil Spring <nspring@cs.washington.edu>
1625         * Makefile.am: keep automake1.6 happy
1627 2002-06-08 Saturday 22:22 UTC -- Neil Spring <nspring@cs.washington.edu>
1629         * ChangeLog, configure.in: release 0.4.3 final updates
1631 2002-06-08 Saturday 22:20 UTC -- Neil Spring <nspring@cs.washington.edu>
1633         * wmbiff/wmbiff.c: make the background black when using fonts
1635 2002-06-08 Saturday 22:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1637         * wmgeneral/: wmgeneral.c, wmgeneral.h: font support, ability to
1638           erase rectangles
1640 2002-06-08 Saturday 22:14 UTC -- Neil Spring <nspring@cs.washington.edu>
1642         * wmbiff/Client.h: slightly changed debug messages; exists() is
1643           more a test -f than a test -e
1645 2002-06-08 Saturday 22:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1647         * wmbiff/wmbiff.1: documentation of -fg and -font options
1649 2002-06-08 Saturday 22:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1651         * wmbiff/: Imap4Client.c, ShellClient.c: cleanup for splint
1652           annotations
1654 2002-06-08 Saturday 22:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1656         * wmbiff/wmbiff.c: basic font support, color selection, cleanup to
1657           default configuration code, bugifx and cleanup to mouse region
1658           code
1660 2002-06-08 Saturday 21:40 UTC -- Neil Spring <nspring@cs.washington.edu>
1662         * wmbiff/socket.c: need config.h to get IPv6 support
1664 2002-06-01 Saturday 18:10 UTC -- Neil Spring <nspring@cs.washington.edu>
1666         * ChangeLog: 0.4.2
1668 2002-06-01 Saturday 17:58 UTC -- Neil Spring <nspring@cs.washington.edu>
1670         * configure.in, wmbiff/wmbiff.c: oops, didn't really want to
1671           release with the crazy font stuff quite yet
1673 2002-06-01 Saturday 07:03 UTC -- Neil Spring <nspring@cs.washington.edu>
1675         * ChangeLog, configure.in, wmbiff/test-wmbiffrc.shell: release
1676           0.4.1
1678 2002-06-01 Saturday 07:01 UTC -- Neil Spring <nspring@cs.washington.edu>
1680         * AUTHORS: release preparation
1682 2002-06-01 Saturday 06:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1684         * wmgeneral/wmgeneral.h: prototypes for basic font support
1686 2002-06-01 Saturday 06:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1688         * wmgeneral/wmgeneral.c: indent run
1690 2002-06-01 Saturday 06:02 UTC -- Neil Spring <nspring@cs.washington.edu>
1692         * wmbiff/: Client.h, ShellClient.c, charutil.c, mboxClient.c:
1693           indent run
1695 2002-06-01 Saturday 06:01 UTC -- Neil Spring <nspring@cs.washington.edu>
1697         * wmbiff/wmbiff.c: font support, disabled by default
1699 2002-06-01 Saturday 06:00 UTC -- Neil Spring <nspring@cs.washington.edu>
1701         * wmbiff/tlsComm.c: a start at certificate checking (a daunting
1702           task at the moment)
1704 2002-06-01 Saturday 05:59 UTC -- Neil Spring <nspring@cs.washington.edu>
1706         * wmbiff/Client.h: declare exists()
1708 2002-06-01 Saturday 05:51 UTC -- Neil Spring <nspring@cs.washington.edu>
1710         * wmgeneral/wmgeneral.c: some basic font support, renaming some
1711           variables for clarity
1713 2002-06-01 Saturday 05:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1715         * wmbiff/socket.c: correct date
1717 2002-06-01 Saturday 05:42 UTC -- Neil Spring <nspring@cs.washington.edu>
1719         * configure.in, wmbiff/socket.c: IPv6 support using getaddrinfo
1720           from Jun-ichiro itojun Hagino <itojun@iijlab.net>
1722 2002-05-03 Friday 05:51 UTC -- Neil Spring <nspring@cs.washington.edu>
1724         * ChangeLog, configure.in: Release 0.4.0
1726 2002-05-03 Friday 05:51 UTC -- Neil Spring <nspring@cs.washington.edu>
1728         * Makefile.am: don't list TODO changes in ChangeLog, to avoid
1729           confusion
1731 2002-05-03 Friday 05:43 UTC -- Neil Spring <nspring@cs.washington.edu>
1733         * wmbiff/mboxClient.c: type casting hackery to help architectures I
1734           don't have
1736 2002-05-03 Friday 05:42 UTC -- Neil Spring <nspring@cs.washington.edu>
1738         * wmbiff/: sample.wmbiffrc, wmbiffrc.5.in: lpq example creep
1740 2002-05-03 Friday 05:42 UTC -- Neil Spring <nspring@cs.washington.edu>
1742         * wmbiff/ShellClient.c: bugfix when alternates between numeric and
1743           text
1745 2002-04-29 Monday 02:01 UTC -- Neil Spring <nspring@cs.washington.edu>
1747         * wmbiff/: Client.h, ShellClient.c, charutil.c, charutil.h: lclint
1748           cleanups - strdup_ordie, some null annotations
1750 2002-04-27 Saturday 08:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1752         * wmbiff/: Client.h, ShellClient.c, passwordMgr.c: cleanup to use
1753           grabCommandOutput in passwordMgr instead of duplicating the
1754           popen/fgets/pclose code
1756 2002-04-27 Saturday 08:29 UTC -- Neil Spring <nspring@cs.washington.edu>
1758         * wmbiff/: Client.h, Makefile.am, charutil.c, passwordMgr.c,
1759           passwordMgr.h, test_wmbiff.c: move passwordMgr testing to
1760           test_wmbiff.c; catch a small bug in handling empty passwords
1762 2002-04-27 Saturday 08:29 UTC -- Neil Spring <nspring@cs.washington.edu>
1764         * FromCVS.sh: apparently aclocal barfs when macros are defined both
1765           in the system directory and in a local copy.  semper fragile.
1767 2002-04-25 Thursday 20:28 UTC -- Neil Spring <nspring@cs.washington.edu>
1769         * README: add a note about gnutls version 0.3.5
1771 2002-04-25 Thursday 18:33 UTC -- Neil Spring <nspring@cs.washington.edu>
1773         * configure.in: hack attempt at supporting gnutls built locally
1775 2002-04-25 Thursday 17:31 UTC -- Neil Spring <nspring@cs.washington.edu>
1777         * ChangeLog, FromCVS.sh, autoconf/libgcrypt.m4,
1778           autoconf/libgnutls.m4: add m4 macros for libgcrypt and libgnutls
1779           to the repository, so that FromCVS can be run to regenerate
1780           configure.in, even on systems without gnutls.
1782 2002-04-20 Saturday 09:55 UTC -- Neil Spring <nspring@cs.washington.edu>
1784         * wmbiff/Makefile.am: correct a problem uncovered by sourceforge's
1785           compile farm
1787 2002-04-20 Saturday 09:27 UTC -- Neil Spring <nspring@cs.washington.edu>
1789         * wmbiff/ShellClient.c: BSD fix (no strndup, no sighandler_t)
1791 2002-04-20 Saturday 09:12 UTC -- Neil Spring <nspring@cs.washington.edu>
1793         * wmbiff/: LicqClient.c, mboxClient.c: move msgs=-1 assignment on
1794           failure to the common openMailbox()
1796 2002-04-20 Saturday 08:53 UTC -- Neil Spring <nspring@cs.washington.edu>
1798         * ChangeLog, configure.in, wmbiff/Client.h: update meta-information
1799           for prerelease 5
1801 2002-04-20 Saturday 08:51 UTC -- Neil Spring <nspring@cs.washington.edu>
1803         * wmbiff/Makefile.am: correct syntax for making a test program
1805 2002-04-20 Saturday 08:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1807         * wmbiff/sample.wmbiffrc: finish deprecating
1809 2002-04-20 Saturday 08:12 UTC -- Neil Spring <nspring@cs.washington.edu>
1811         * wmbiff/: sample.wmbiffrc, wmbiffrc.5.in: document back-tick
1812           expansion, deprecate mbox style without mbox: prefix
1814 2002-04-20 Saturday 07:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1816         * wmbiff/: Client.h, LicqClient.c, ShellClient.c, mboxClient.c:
1817           oops (indent)
1819 2002-04-20 Saturday 07:53 UTC -- Neil Spring <nspring@cs.washington.edu>
1821         * wmbiff/: LicqClient.c, mboxClient.c: refactor mailbox stat()'ting
1822           to reduce duplicated code and supprort backticks.
1824 2002-04-20 Saturday 07:52 UTC -- Neil Spring <nspring@cs.washington.edu>
1826         * wmbiff/ShellClient.c: refactor command execution code to support
1827           backtick foo expansion
1829 2002-04-20 Saturday 07:50 UTC -- Neil Spring <nspring@cs.washington.edu>
1831         * wmbiff/: Makefile.am, test_wmbiff.c: add tests for bbacktick
1832           expansion
1834 2002-04-20 Saturday 07:49 UTC -- Neil Spring <nspring@cs.washington.edu>
1836         * wmbiff/Client.h: ctime has become useless; new prototypes to
1837           handle backtick
1839 2002-04-16 Tuesday 07:37 UTC -- Neil Spring <nspring@cs.washington.edu>
1841         * ChangeLog, wmbiff/Client.h, wmbiff/Imap4Client.c,
1842           wmbiff/LicqClient.c, wmbiff/Pop3Client.c, wmbiff/mboxClient.c,
1843           wmbiff/passwordMgr.c, wmbiff/wmbiff.c: remove vestigial
1844           pc->open()
1846 2002-04-16 Tuesday 07:08 UTC -- Neil Spring <nspring@cs.washington.edu>
1848         * wmbiff/test-make.sh: unnecessary now that autoconf is involved
1850 2002-04-15 Monday 22:58 UTC -- Neil Spring <nspring@cs.washington.edu>
1852         * Makefile.am: dist the FAQ
1854 2002-04-15 Monday 21:19 UTC -- Neil Spring <nspring@cs.washington.edu>
1856         * wmgeneral/: Makefile.am, list.c, list.h, misc.c, misc.h,
1857           wmgeneral.c, wmgeneral.h: run make indent; also tolerate standard
1858           geometry string (dumping the dimensions provided)
1860 2002-04-15 Monday 21:06 UTC -- Neil Spring <nspring@cs.washington.edu>
1862         * wmbiff/wmbiff.c: bugfix to sigchld_handler (argh)
1864 2002-04-15 Monday 08:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1866         * ChangeLog, Makefile.am, configure.in, wmbiff/Makefile.am,
1867           autoconf/Makefile.am: try to make the distcheck target work
1868           correctly.  voodoo.
1870 2002-04-15 Monday 08:14 UTC -- Neil Spring <nspring@cs.washington.edu>
1872         * FAQ: a little documentation
1874 2002-04-15 Monday 02:21 UTC -- Neil Spring <nspring@cs.washington.edu>
1876         * wmbiff/wmbiff.c: treat  all gicu messages as new (they're unread)
1878 2002-04-15 Monday 02:10 UTC -- Neil Spring <nspring@cs.washington.edu>
1880         * configure.in: chmod 0444 wmbiffrc.5 to remind me not to try to
1881           edit it.
1883 2002-04-15 Monday 02:09 UTC -- Neil Spring <nspring@cs.washington.edu>
1885         * wmbiff/wmbiffrc.5.in: document finger, changes to shell
1887 2002-04-15 Monday 01:58 UTC -- Neil Spring <nspring@cs.washington.edu>
1889         * wmbiff/: ShellClient.c, wmbiff.c: waitpid until done
1891 2002-04-15 Monday 01:48 UTC -- Neil Spring <nspring@cs.washington.edu>
1893         * configure.in: slightly nicer message
1895 2002-04-15 Monday 01:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1897         * ChangeLog, configure.in, wmbiff/wmbiff-master-contrast.xpm:
1898           0.4.0pre4 - finger support, text from shell support, minor code
1899           reorganization
1901 2002-04-15 Monday 01:38 UTC -- Neil Spring <nspring@cs.washington.edu>
1903         * AUTHORS, README: add Andelko Horvat to the list of contributors,
1904           remove author list from README
1906 2002-04-15 Monday 01:30 UTC -- Neil Spring <nspring@cs.washington.edu>
1908         * wmbiff/test-wmbiffrc.shell: test finger as well
1910 2002-04-15 Monday 01:30 UTC -- Neil Spring <nspring@cs.washington.edu>
1912         * wmbiff/Client.h: TextStatus to hold a three-character status
1913           message
1915 2002-04-15 Monday 01:30 UTC -- Neil Spring <nspring@cs.washington.edu>
1917         * wmbiff/wmbiff.c: support TextString as status; factor
1918           blitMsgCounters as displayMsgCounters was starting to get ugly,
1919           add finger recipe to use ShellClient instead of a separate module
1921 2002-04-15 Monday 01:26 UTC -- Neil Spring <nspring@cs.washington.edu>
1923         * wmbiff/passwordMgr.c: use chomp to remove the newline from
1924           ssh-askpass output
1926 2002-04-15 Monday 01:26 UTC -- Neil Spring <nspring@cs.washington.edu>
1928         * wmbiff/: charutil.c, charutil.h: duplicate perl's chomp()
1930 2002-04-15 Monday 01:26 UTC -- Neil Spring <nspring@cs.washington.edu>
1932         * wmbiff/ShellClient.c: return sigchld to default hander before
1933           using popen; handle text input. Much complexity, I hope it's
1934           worth it.
1936 2002-04-15 Monday 01:25 UTC -- Neil Spring <nspring@cs.washington.edu>
1938         * wmbiff/wmbiff-master-led.xpm: support yellow text
1940 2002-04-15 Monday 01:24 UTC -- Neil Spring <nspring@cs.washington.edu>
1942         * wmbiff/Makefile.am: derive wmbiff-master-contrast.xpm from
1943           wmbiff-master-led.xpm
1945 2002-04-12 Friday 05:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1947         * wmbiff/socket.c: extra debugging messages, to be in-line with our
1948           -debug to stdout philosophy
1950 2002-04-11 Thursday 21:39 UTC -- Jordi Mallach <jordi@sindominio.net>
1952         * autoconf/: install-sh, missing, mkinstalldirs: Shouldn't be in
1953           CVS...
1955 2002-04-11 Thursday 18:24 UTC -- Neil Spring <nspring@cs.washington.edu>
1957         * configure.in: attempt to fix Jordi's configure bug
1959 2002-04-11 Thursday 07:24 UTC -- Neil Spring <nspring@cs.washington.edu>
1961         * wmbiff/Pop3Client.c: APOP bugfix (unreleased bug)
1963 2002-04-09 Tuesday 07:52 UTC -- Neil Spring <nspring@cs.washington.edu>
1965         * ChangeLog, configure.in: bump version to 0.4.0pre3 - permissions
1966           checking for .wmbiffrc added.
1968 2002-04-09 Tuesday 07:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1970         * Makefile.am: try to tell the difference between running make dist
1971           with cvs and missing cvs2cl (an error), and running make dist
1972           without cvs (which should be ok).
1974 2002-04-09 Tuesday 07:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1976         * wmbiff/: LicqClient.c, maildirClient.c, mboxClient.c: some
1977           explicit casts to make compiling on non-linux a bit more
1978           warning-free
1980 2002-04-09 Tuesday 07:44 UTC -- Neil Spring <nspring@cs.washington.edu>
1982         * wmbiff/wmbiff.c: permissions checking for .wmbiffrc (if it
1983           exists), some minor cleanup associated with this.
1985 2002-04-09 Tuesday 07:43 UTC -- Neil Spring <nspring@cs.washington.edu>
1987         * wmbiff/Makefile.am: _DATA files don't get distributed, add the
1988           skins into extra_dist. automake can be confusing
1990 2002-04-08 Monday 09:35 UTC -- Neil Spring <nspring@cs.washington.edu>
1992         * configure.in, wmbiff/wmbiffrc.5, wmbiff/wmbiffrc.5.in:
1993           automatically generate wmbiffrc.5 based on the results of
1994           configure, so that the configure-time chosen defaults are
1995           accurately shown
1997 2002-04-07 Sunday 19:30 UTC -- Neil Spring <nspring@cs.washington.edu>
1999         * configure.in: don't try to configure gnutls if libz or libgdbm
2000           aren't installed
2002 2002-04-07 Sunday 19:30 UTC -- Neil Spring <nspring@cs.washington.edu>
2004         * FromCVS.sh: allow for automake 1.5's need for depcomp
2006 2002-04-07 Sunday 05:08 UTC -- Neil Spring <nspring@cs.washington.edu>
2008         * COPYING, ChangeLog, FromCVS.sh, INSTALL, Makefile.am,
2009           configure.in, autoconf/acconfig.h, autoconf/install-sh,
2010           autoconf/missing, autoconf/mkinstalldirs, maint/changelog-header,
2011           wmbiff/Client.h, wmbiff/Imap4Client.c, wmbiff/LicqClient.c,
2012           wmbiff/Makefile, wmbiff/Makefile.am, wmbiff/Pop3Client.c,
2013           wmbiff/charutil.h, wmbiff/maildirClient.c, wmbiff/mboxClient.c,
2014           wmbiff/tlsComm.c, wmbiff/wmbiff.c, wmgeneral/Makefile.am,
2015           wmgeneral/wmgeneral.c: use automake / autoconf; after checkout
2016           run ./FromCVS.sh
2018 2002-04-07 Sunday 03:23 UTC -- Neil Spring <nspring@cs.washington.edu>
2020         * AUTHORS: automake required file, duplicated from README
2022 2002-04-05 Friday 19:44 UTC -- Neil Spring <nspring@cs.washington.edu>
2024         * wmbiff/wmbiff-master-contrast.xpm: a first cut higher-contrast
2025           skin
2027 2002-04-05 Friday 19:43 UTC -- Neil Spring <nspring@cs.washington.edu>
2029         * wmbiff/: Makefile, sample.wmbiffrc, test-make.sh, wmbiff.c:
2030           askpass - invoke ssh-askpass to fill in passwords for IMAP
2031           servers; skin - dynamically load an .xpm background
2033 2002-04-05 Friday 19:42 UTC -- Neil Spring <nspring@cs.washington.edu>
2035         * wmbiff/wmbiffrc.5: documentation of askpass and skin
2037 2002-04-05 Friday 19:08 UTC -- Neil Spring <nspring@cs.washington.edu>
2039         * wmbiff/tlsComm.c: explicit handling of timeouts
2041 2002-04-05 Friday 19:02 UTC -- Neil Spring <nspring@cs.washington.edu>
2043         * wmbiff/passwordMgr.c: askpass having a space in it is an INFO,
2044           not an ERR.
2046 2002-04-04 Thursday 08:51 UTC -- Neil Spring <nspring@cs.washington.edu>
2048         * wmbiff/: Client.h, Imap4Client.c, Makefile, Pop3Client.c,
2049           passwordMgr.c, passwordMgr.h, sample.wmbiffrc, test-make.sh:
2050           interactive password prompting support for imap - leave password
2051           in the : format blank to use
2053 2002-03-26 Tuesday 16:30 UTC -- Jordi Mallach <jordi@sindominio.net>
2055         * ChangeLog, wmbiff/Makefile: Released WMBiff 0.3.8.
2057 2002-03-18 Monday 09:47 UTC -- Neil Spring <nspring@cs.washington.edu>
2059         * wmgeneral/wmgeneral.h: un-shadow index
2061 2002-03-18 Monday 09:46 UTC -- Neil Spring <nspring@cs.washington.edu>
2063         * wmgeneral/wmgeneral.c: un-shadow a global variable
2065 2002-03-14 Thursday 08:51 UTC -- Neil Spring <nspring@cs.washington.edu>
2067         * README: correct and expand upon crypto instructions
2069 2002-03-12 Tuesday 23:53 UTC -- Neil Spring <nspring@cs.washington.edu>
2071         * wmbiff/: Client.h, Imap4Client.c, Pop3Client.c, ShellClient.c,
2072           tlsComm.c: fixed misunderstanding of the use of ## in macros with
2073           strings - the compiler does the concatenation, not the
2074           preprocessor
2076 2002-03-11 Monday 00:11 UTC -- Neil Spring <nspring@cs.washington.edu>
2078         * wmbiff/tlsComm.c: slightly better message on expect failure
2080 2002-03-09 Saturday 08:50 UTC -- Neil Spring <nspring@cs.washington.edu>
2082         * wmbiff/ShellClient.c: debug messages cleanup; start handling
2083           pclose errors; remove open() function pointer assignment;
2084           #include fix
2086 2002-03-09 Saturday 08:03 UTC -- Neil Spring <nspring@cs.washington.edu>
2088         * wmgeneral/: list.h, wmgeneral.c: minor warning cleanups
2090 2002-03-08 Friday 19:26 UTC -- Neil Spring <nspring@cs.washington.edu>
2092         * README: credit Ben
2094 2002-03-07 Thursday 22:20 UTC -- Neil Spring <nspring@cs.washington.edu>
2096         * wmbiff/ShellClient.c: fix error return status (ben's 'lil' patch)
2098 2002-03-07 Thursday 07:04 UTC -- Neil Spring <nspring@cs.washington.edu>
2100         * wmbiff/ShellClient.c: appropriate credits
2102 2002-03-06 Wednesday 18:01 UTC -- Neil Spring <nspring@cs.washington.edu>
2104         * wmbiff/ShellClient.c: fix my sloppy mistake in shell path parsing
2106 2002-03-06 Wednesday 07:59 UTC -- Neil Spring <nspring@cs.washington.edu>
2108         * wmbiff/ShellClient.c: misplaced string.h
2110 2002-03-06 Wednesday 07:59 UTC -- Neil Spring <nspring@cs.washington.edu>
2112         * wmbiff/wmbiff.c: rename in Read_Config_File for more 'index'
2113           purging
2115 2002-03-06 Wednesday 07:44 UTC -- Neil Spring <nspring@cs.washington.edu>
2117         * wmbiff/ShellClient.c: fix a potential file descriptor leak
2119 2002-03-06 Wednesday 07:15 UTC -- Neil Spring <nspring@cs.washington.edu>
2121         * wmbiff/: Client.h, Makefile, ShellClient.c, mboxClient.c,
2122           sample.wmbiffrc, test-wmbiffrc.shell, wmbiff.1, wmbiff.c,
2123           wmbiffrc.5: Draft shell command and gnomeicu support from Benoît
2124           Rouits with minor modifications 1) implement gicu using the shell
2125           module rather than as a separate module, 2) edit Ben's shell
2126           format to have extra colons for extensibility, 3) add some extra
2127           error checking in the shell method.  I also added a test wmbiffrc
2128           that can be used to verify that the gicu and shell methods
2129           "work".
2131 2002-03-05 Tuesday 05:02 UTC -- Dwayne C. Litzenberger <dlitz@dlitz.net>
2133         * wmbiff/maildirClient.c: cosmetic changes
2135 2002-03-04 Monday 06:57 UTC -- Neil Spring <nspring@cs.washington.edu>
2137         * wmbiff/mboxClient.c: convert a lingering fprintf to DM
2139 2002-03-02 Saturday 23:25 UTC -- Neil Spring <nspring@cs.washington.edu>
2141         * wmbiff/: Imap4Client.c, Makefile, wmbiff.c: a little -Wshadow and
2142           -Wcast-qual cleanup (or, eliminate the use of 'index' as a
2143           variable name)
2145 2002-03-02 Saturday 22:38 UTC -- Neil Spring <nspring@cs.washington.edu>
2147         * wmbiff/Client.h: add preprocessor define to handle portability of
2148           __attribute__ tag to non-gcc compilers (untested)
2150 2002-03-02 Saturday 06:42 UTC -- Neil Spring <nspring@cs.washington.edu>
2152         * wmbiff/tlsComm.c: indent run (oops)
2154 2002-03-02 Saturday 06:41 UTC -- Neil Spring <nspring@cs.washington.edu>
2156         * wmbiff/: Pop3Client.c, Imap4Client.c: minor reorganization of
2157           gcrypt-needing authentication schemes
2159 2002-03-02 Saturday 06:39 UTC -- Neil Spring <nspring@cs.washington.edu>
2161         * wmbiff/tlsComm.c: attribute tags for warning cleanup w/o gnutls
2163 2002-03-02 Saturday 06:36 UTC -- Neil Spring <nspring@cs.washington.edu>
2165         * wmbiff/wmbiff.c: gcc attribute tags, minor debug message cleanup
2167 2002-03-02 Saturday 06:31 UTC -- Neil Spring <nspring@cs.washington.edu>
2169         * wmbiff/Makefile: rearrange which compiler warnings are implied by
2170           DEBUG
2172 2002-03-02 Saturday 05:58 UTC -- Neil Spring <nspring@cs.washington.edu>
2174         * wmbiff/Client.h: use off_t instead of size_t in Licq and Maildir
2175           for file sizes from stat()
2177 2002-03-02 Saturday 05:50 UTC -- Neil Spring <nspring@cs.washington.edu>
2179         * wmbiff/tlsComm.c: bugfix to support compilation without crypto
2181 2002-03-01 Friday 11:58 UTC -- Jordi Mallach <jordi@sindominio.net>
2183         * wmbiff/wmbiff.c: Added -debug to help text.  Removed Gennady's
2184           mail address and added our devel list.
2186 2002-03-01 Friday 11:28 UTC -- Jordi Mallach <jordi@sindominio.net>
2188         * wmbiff/Makefile: Fixed install rule in Makefile.
2190 2002-03-01 Friday 08:41 UTC -- Neil Spring <nspring@cs.washington.edu>
2192         * wmbiff/: Client.h, Imap4Client.c, LicqClient.c, Makefile,
2193           Pop3Client.c, maildirClient.c, mboxClient.c, tlsComm.c,
2194           tlsComm.h, wmbiff.1, wmbiff.c, wmbiffrc.5: Replaced DEBUG_x
2195           preprocessor defines with a -debug option and debug configuration
2196           keyword.  Replaced most debugging messages with a DM (debug
2197           message) macro.  Removed gnutls version 0.2.x support.  Added
2198           troubleshooting section to man page.
2200 2002-02-03 Sunday 22:48 UTC -- Jordi Mallach <jordi@sindominio.net>
2202         * ChangeLog: Released WMBiff 0.3.7.
2204 2002-02-03 Sunday 22:43 UTC -- Jordi Mallach <jordi@sindominio.net>
2206         * wmbiff/Makefile: Bumped WMBIFF_VERSION to 0.3.7.
2208 2002-02-02 Saturday 18:04 UTC -- Jordi Mallach <jordi@sindominio.net>
2210         * wmbiff/: Client.h, Imap4Client.c, Makefile, Pop3Client.c,
2211           charutil.h: Makefile fixes from Simon L. Nielsen, which help
2212           building wmbiff in FreeBSD.  Fixed the previous IMAP regex patch.
2214 2002-01-27 Sunday 20:20 UTC -- Jordi Mallach <jordi@sindominio.net>
2216         * ChangeLog, maint/changelog.sed, maint/prerelease.sh: Some fixes
2217           for the maint scripts.
2219 2002-01-27 Sunday 19:59 UTC -- Jordi Mallach <jordi@sindominio.net>
2221         * ChangeLog: Released WMBiff 0.3.6.
2223 2002-01-27 Sunday 19:56 UTC -- Jordi Mallach <jordi@sindominio.net>
2225         * wmbiff/Imap4Client.c: Indent fixes.
2227 2002-01-27 Sunday 19:52 UTC -- Jordi Mallach <jordi@sindominio.net>
2229         * wmbiff/Makefile: Bump WMBIFF_VERSION to 0.3.6.
2231 2002-01-27 Sunday 12:46 UTC -- Jordi Mallach <jordi@sindominio.net>
2233         * README, wmbiff/Imap4Client.c, wmbiff/Makefile, wmbiff/wmbiffrc.5:
2234           Alternate regex for imap/imaps which allows "@" in passwords.
2235           Fix to correctly handle the auth list in imap.  Patch from David
2236           Smith <davidsmith@acm.org>.
2238 2002-01-14 Monday 01:51 UTC -- Jordi Mallach <jordi@sindominio.net>
2240         * ChangeLog: Released WMBiff 0.3.5.
2242 2002-01-14 Monday 01:50 UTC -- Jordi Mallach <jordi@sindominio.net>
2244         * wmbiff/Makefile: Bump WMBIFF_VERSION to 0.3.5.
2246 2002-01-12 Saturday 19:18 UTC -- Neil Spring <nspring@cs.washington.edu>
2248         * wmbiff/Imap4Client.c: quote patch from Nick Mitchell, ref debian
2249           #128863
2251 2002-01-12 Saturday 06:17 UTC -- Neil Spring <nspring@cs.washington.edu>
2253         * wmbiff/tlsComm.c: debugging for gnutls3
2255 2002-01-12 Saturday 05:50 UTC -- Neil Spring <nspring@cs.washington.edu>
2257         * wmbiff/Makefile: clarify what to do with gnutls version define
2259 2002-01-12 Saturday 05:30 UTC -- Neil Spring <nspring@cs.washington.edu>
2261         * wmbiff/: Makefile, charutil.c, tlsComm.c: update for the
2262           interface change in gnutls 0.3.0
2264 2001-11-23 Friday 15:57 UTC -- Jordi Mallach <jordi@sindominio.net>
2266         * ChangeLog: Released WMBiff 0.3.4.
2268 2001-11-23 Friday 15:55 UTC -- Jordi Mallach <jordi@sindominio.net>
2270         * wmbiff/Makefile: Bumped version to 0.3.4, and release.
2272 2001-11-23 Friday 15:53 UTC -- Jordi Mallach <jordi@sindominio.net>
2274         * ChangeLog, wmbiff/sample.wmbiffrc: Doc updates for 0.3.4.
2276 2001-11-16 Friday 07:11 UTC -- Neil Spring <nspring@cs.washington.edu>
2278         * wmbiff/: Imap4Client.c, Pop3Client.c, charutil.c: regexes limit
2279           password and username to 32 characters
2281 2001-11-16 Friday 06:08 UTC -- Neil Spring <nspring@cs.washington.edu>
2283         * wmgeneral/: wmgeneral.c, wmgeneral.h: -Wwrite-strings cleanliness
2285 2001-11-16 Friday 01:13 UTC -- Neil Spring <nspring@cs.washington.edu>
2287         * wmbiff/: Client.h, Imap4Client.c, Makefile, Pop3Client.c,
2288           charutil.c: rewrite of authentication code to a) allow users to
2289           specify authentication type, b) fall back to other authentication
2290           methods when hash-based authentication fails (because not
2291           everybody uses the cleartext password file) c) fix debug messages
2293 2001-11-16 Friday 00:40 UTC -- Neil Spring <nspring@cs.washington.edu>
2295         * wmbiff/charutil.h: regex helpers common to pop3 and imap4 clients
2296           extracted and moved here
2298 2001-11-16 Friday 00:40 UTC -- Neil Spring <nspring@cs.washington.edu>
2300         * wmbiff/: tlsComm.c, tlsComm.h: blacklist and debugging updates
2301           for gnutls 0.2.10 and DM macro
2303 2001-11-16 Friday 00:39 UTC -- Neil Spring <nspring@cs.washington.edu>
2305         * wmbiff/wmbiffrc.5: authentication method list, reduced
2306           indentation to fit screen better
2308 2001-11-16 Friday 00:38 UTC -- Neil Spring <nspring@cs.washington.edu>
2310         * wmbiff/wmbiff-master-led.xpm: made pixmap const char
2312 2001-11-16 Friday 00:37 UTC -- Neil Spring <nspring@cs.washington.edu>
2314         * wmbiff/wmbiff.c: -Wwrite-strings cleanliness
2316 2001-11-02 Friday 08:53 UTC -- Neil Spring <nspring@cs.washington.edu>
2318         * wmbiff/: Imap4Client.c, wmbiff.c, wmbiffrc.5: Prefer "imaps"
2319           instead of "sslimap" (sslimap is still supported, but imaps is
2320           documented, and a better name).
2322 2001-11-02 Friday 08:48 UTC -- Neil Spring <nspring@cs.washington.edu>
2324         * wmbiff/tlsComm.c: Small debugging message to help if a connection
2325           ends unexpectedly.
2327 2001-10-29 Monday 13:57 UTC -- Jordi Mallach <jordi@sindominio.net>
2329         * ChangeLog: Released WMBiff 0.3.3.
2331 2001-10-29 Monday 13:54 UTC -- Jordi Mallach <jordi@sindominio.net>
2333         * wmbiff/: Imap4Client.c, wmbiff.c: Indent run.
2335 2001-10-28 Sunday 23:32 UTC -- Jordi Mallach <jordi@sindominio.net>
2337         * ChangeLog, README, wmbiff/Makefile, wmbiff/sample.wmbiffrc:
2338           Preparation for 0.3.3.  Documentation updates.
2340 2001-10-28 Sunday 22:22 UTC -- Neil Spring <nspring@cs.washington.edu>
2342         * wmbiff/wmbiff.c: Bugfix: initialize libgcrypt properly before
2343           cram-md5 (or probably apop) authentication.
2345 2001-10-24 Wednesday 15:35 UTC -- Jordi Mallach <jordi@sindominio.net>
2347         * maint/changelog.sed: Added Neil to the sed script.
2349 2001-10-23 Tuesday 21:14 UTC -- Neil Spring <nspring@cs.washington.edu>
2351         * wmbiff/Imap4Client.c: error check just in case sighup patch is
2352           applied
2354 2001-10-23 Tuesday 18:35 UTC -- Jordi Mallach <jordi@sindominio.net>
2356         * ChangeLog: Released WMBiff 0.3.2.
2358 2001-10-23 Tuesday 18:33 UTC -- Jordi Mallach <jordi@sindominio.net>
2360         * wmbiff/Makefile: Bump WMBIFF_VERSION to 0.3.2.
2362 2001-10-05 Friday 16:10 UTC -- Jordi Mallach <jordi@sindominio.net>
2364         * wmbiff/Makefile: Changed order of additions to LIBS and
2365           EXTRAFLAGS, removed extra WMBIFF_VERSION definition.
2367 2001-10-04 Thursday 09:50 UTC -- Jordi Mallach <jordi@sindominio.net>
2369         * README, wmbiff/Client.h, wmbiff/Imap4Client.c,
2370           wmbiff/LicqClient.c, wmbiff/Makefile, wmbiff/Pop3Client.c,
2371           wmbiff/charutil.c, wmbiff/charutil.h, wmbiff/maildirClient.c,
2372           wmbiff/mboxClient.c, wmbiff/socket.c, wmbiff/tlsComm.c,
2373           wmbiff/tlsComm.h, wmbiff/wmbiff.1, wmbiff/wmbiff.c,
2374           wmbiff/wmbiffrc.5: * Big patch from Neil Spring which adds lots
2375           of crypto support to WMBiff.  * WMBiff can now speak IMAP over
2376           TLS and CRAM-MD5, and APOP using libgcrypt.  * Known problems:
2377           - gnutls is being developed still, so it may have security
2378           related bugs.    - A bug in gnutls (a too-small buffer) may cause
2379           problems      in the parsing of openssl certificates. This should
2380           be fixed by gnutls      soon, hopefully. Added error messages if
2381           this bug is tickled. If you've      got problems with IMAP SSL,
2382           please try upgrading gnutls. If the problem      persists, let us
2383           know.    - IMAP has totally been rewritten, so bugs may crop up.
2384           - Pop3 hasn't been rewritten to use the TLS primitives, though
2385           it probably      could be if someone wanted to.  * There's a new
2386           interface for reading and writing to the socket in
2387           tlsComm.[ch].  This makes the IMAP code somewhat independent of
2388           whether   ssl is used, and provides nicer primitives to help skip
2389           'informational'   messages.  * WITH_TLS and WITH_GCRYPT are
2390           on-by-default in the Makefile.  TLS   applies to encryption,
2391           GCRYPT to cram-md5 and apop authentication.    Since gnutls
2392           depends on libgcrypt anyway, these probably don't need to be
2393           independent.  Some compile warnings may be generated when these
2394           are    disabled.  * Added code to optionally include dmalloc.h
2395           and link -ldmalloc. This   doesn't do anything at the moment, but
2396           shouldn't hurt. It's off-by-default.  * IMAP connections are now
2397           persistent.  persistent.  This is to cut down on   the need to
2398           re-negotiate an SSL connection every time you want to check
2399           mail. It tries to use just one connection per
2400           (server/username/password/port   number), which means multiple
2401           mailboxes need only one connection.  * There are a handful of
2402           lclint (http://lclint.cs.virginia.edu) annotations   in
2403           tlsComm.[ch]. These should also not hurt anyone, and are meant to
2404           keep   the signal to noise ratio of lclint high.  * The rewritten
2405           IMAP code uses the GNU regex library to handle the
2406           configuration line.  I think its clearer than the cascading
2407           strtok()   solution, but the regex might not be perfect.  *
2408           Removed an unnecessary "inline" keyword from charutil.h.  * Added
2409           a TODO document with the bits that are missing from the picture.
2410           * Please bow in awe at NAKAYAMA Takao, Jay T. Francis and
2411           specially   Neil Spring for all of this.
2413 2001-10-04 Thursday 09:21 UTC -- Jordi Mallach <jordi@sindominio.net>
2415         * wmbiff/ApopClient.c: Removed unneeded Apop support code, now
2416           integrated in Neil and Jay's patch.
2418 2001-10-04 Thursday 09:00 UTC -- Jordi Mallach <jordi@sindominio.net>
2420         * maint/changelog.sed: Added my other SF account, which I intend to
2421           use now.
2423 2001-10-04 Thursday 08:54 UTC -- Jordi Mallach <jordi@sindominio.net>
2425         * ChangeLog, README, wmbiff/Client.h, wmbiff/Makefile,
2426           wmbiff/sample.wmbiffrc, wmbiff/wmbiff.1, wmbiff/wmbiff.c,
2427           wmbiff/wmbiffrc.5: Backed out hoehoe's patch, preparing to apply
2428           Neil's.
2430 2001-09-24 Monday 11:58 UTC -- Jordi Mallach <jordi@sindominio.net>
2432         * ChangeLog, README, wmbiff/ApopClient.c, wmbiff/Client.h,
2433           wmbiff/Makefile, wmbiff/sample.wmbiffrc, wmbiff/wmbiff.1,
2434           wmbiff/wmbiff.c, wmbiff/wmbiffrc.5: Added APOP support, patch
2435           from NAKAYAMA Takao <hoehoe@wakaba.jp>.  Fixed some bits of the
2436           manpage (Jordi) Bumped version to 0.3.2.
2438 2001-09-24 Monday 11:56 UTC -- Jordi Mallach <jordi@sindominio.net>
2440         * maint/prerelease.sh: Removed -t to cvs2cl invocation, to make
2441           cleaner ChangeLogs.
2443 2001-06-24 Sunday 18:17 UTC -- Jordi Mallach <jordi@sindominio.net>
2445         * ChangeLog: Released wmbiff 0.3.1.
2447 2001-06-24 Sunday 18:08 UTC -- Jordi Mallach <jordi@sindominio.net>
2449         * ChangeLog, README: Removed duplicate entry for Vladimir Popov in
2450           README.
2452 2001-06-23 Saturday 00:09 UTC -- Jordi Mallach <jordi@sindominio.net>
2454         * wmbiff/Imap4Client.c: Imap fix from Rob Funk
2456 2001-06-23 Saturday 00:07 UTC -- Jordi Mallach <jordi@sindominio.net>
2458         * ChangeLog, maint/changelog.sed, maint/prerelease.sh: Renamed
2459           CHANGES to ChangeLog and RELEASE-NOTES to NEWS, modified release
2460           scripts accordingly. Added Mark to the sed file.
2462 2001-06-22 Friday 23:55 UTC -- Jordi Mallach <jordi@sindominio.net>
2464         * CHANGES, RELEASE-NOTES: Renamed to NEWS and ChangeLog
2466 2001-06-19 Tuesday 03:52 UTC -- Dwayne C. Litzenberger <dlitz@dlitz.net>
2468         * CHANGES, maint/prerelease.sh: * Whoops!  Messed up CVS expansion
2469           in maint/prerelease.sh.  Fixed it.  * Also changed
2470           maint/prerelease.sh a bit.
2472 2001-06-19 Tuesday 03:38 UTC -- Dwayne C. Litzenberger <dlitz@dlitz.net>
2474         * CHANGES, ChangeLog, README, RELEASE-NOTES, maint/changelog.sed,
2475           maint/prerelease.sh, wmbiff/Client.h, wmbiff/Imap4Client.c,
2476           wmbiff/LicqClient.c, wmbiff/Makefile, wmbiff/Pop3Client.c,
2477           wmbiff/charutil.c, wmbiff/charutil.h, wmbiff/maildirClient.c,
2478           wmbiff/mboxClient.c, wmbiff/sample.wmbiffrc, wmbiff/socket.c,
2479           wmbiff/wmbiff.1, wmbiff/wmbiff.c, wmbiff/wmbiffrc.5: * Another
2480           big patch that mucks with everything.  I probably deserve to be
2481           flamed for this practice.  Feel free... :-) * Added
2482           maint/prerelease.sh script.  Run it before making any releases.
2483           * Added maint/changelog.sed.  Add your SourceForge userid here.
2484           * Moved ChangeLog to RELEASE-NOTES (see below).  * Added a new
2485           file, CHANGES (created by maint/prerelease.sh) that tabulates
2486           all the CVS changes.  * Added "distclean" to wmbiff/Makefile.  *
2487           Added CVS Id$ to all the files in wmbiff/ .  * I reformatted ths
2488           changelog, again.  I hope this is the last time I need   to do
2489           this.  The CVS logs should be used for all changes, and this file
2490           should by updated for user-visible changes only, from now on.
2491           (Dwayne C. Litzenberger)  * Updated the README to reflect that
2492           Gennady Belyakov died right after releasing   wmBiff 0.2.  May
2493           your soul rest in peace, Gennady.  (Dwayne C. Litzenberger)
2495 2001-06-16 Saturday 01:02 UTC -- Jordi Mallach <jordi@sindominio.net>
2497         * ChangeLog, wmbiff/Makefile, wmbiff/sample.wmbiffrc,
2498           wmbiff/wmbiff.c: An FHS fix for wmbiff.c and use $(CC) in the
2499           Makefile
2501 2001-05-17 Thursday 04:22 UTC -- Dwayne C. Litzenberger <dlitz@dlitz.net>
2503         * ChangeLog, wmbiff/Makefile, wmbiff/charutil.c: Committing Mark
2504           Hurley's patch
2506 2001-05-16 Wednesday 10:48 UTC -- Jordi Mallach <jordi@sindominio.net>
2508         * ChangeLog, README: Updated some obsolete info in README
2510 2001-05-11 Friday 15:04 UTC -- Jordi Mallach <jordi@sindominio.net>
2512         * ChangeLog, wmbiff/Imap4Client.c, wmbiff/Makefile,
2513           wmbiff/charutil.c, wmbiff/charutil.h, wmbiff/wmbiff.c: Mark's
2514           wmbiffrc parsing fix, small Makefile changes and bump version to
2515           0.3.0.
2517 2001-05-11 Friday 14:49 UTC -- Jordi Mallach <jordi@sindominio.net>
2519         * wmbiff/Makefile: Uncommitted stuff to deal with the removal of
2520           the xmp link
2522 2001-05-04 Friday 11:01 UTC -- Jordi Mallach <jordi@sindominio.net>
2524         * ChangeLog, wmbiff/Makefile: Updated Changelog and Makefile for
2525           0.2r.
2527 2001-05-01 Tuesday 16:11 UTC -- Jordi Mallach <jordi@sindominio.net>
2529         * README.licq, ChangeLog, README, wmgeneral/list.c,
2530           wmgeneral/list.h, wmgeneral/misc.c, wmgeneral/misc.h,
2531           wmgeneral/wmgeneral.h, wmbiff/socket.c, wmgeneral/wmgeneral.c,
2532           wmbiff/Imap4Client.c, wmbiff/Makefile, wmbiff/mboxClient.c,
2533           wmbiff/sample.wmbiffrc, wmbiff/wmbiff.1, wmbiff/wmbiff.c,
2534           wmbiff/wmbiff-master-led.xpm, wmbiff/Client.h,
2535           wmbiff/LicqClient.c, wmbiff/Pop3Client.c, wmbiff/maildirClient.c,
2536           wmbiff/wmbiffrc.5: Initial import to SourceForge, version
2537           0.2q1+Debian
2539 2001-05-01 Tuesday 16:11 UTC -- Jordi Mallach <jordi@sindominio.net>
2541         * README.licq, ChangeLog, README, wmgeneral/list.c,
2542           wmgeneral/list.h, wmgeneral/misc.c, wmgeneral/misc.h,
2543           wmgeneral/wmgeneral.h, wmbiff/socket.c, wmgeneral/wmgeneral.c,
2544           wmbiff/Imap4Client.c, wmbiff/Makefile, wmbiff/mboxClient.c,
2545           wmbiff/sample.wmbiffrc, wmbiff/wmbiff.1, wmbiff/wmbiff.c,
2546           wmbiff/wmbiff-master-led.xpm, wmbiff/Client.h,
2547           wmbiff/LicqClient.c, wmbiff/Pop3Client.c, wmbiff/maildirClient.c,
2548           wmbiff/wmbiffrc.5: Initial revision