Make AddMouseRegion's index unsigned
[dockapps.git] / wmbiff / ChangeLog
blobfe784243522254f7da90b40f35b55c4d2eeecc14
1 2020-04-17  Jeremy Sowden <jeremy@azazel.net>
3         * ChangeLog, configure.ac: wmbiff: bump to 0.4.36.
5 2020-04-17  Jeremy Sowden <jeremy@azazel.net>
7         * wmgeneral/wmgeneral.c, wmgeneral/wmgeneral.h:
8         wmbiff: fix multiple definitions of display variable.  The display
9         variable is declared in a header with no explicit linkage.  This results
10         in there being multiple definitions of it in wmbiff.o and libwmgeneral.a
11         and a failure during linking with gcc 10.  Add `extern` to the header
12         declaration and a separate declaration with no linkage in wmgeneral.c
13         where it is assigned.
14         Link: https://bugs.debian.org/957937
15         Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
17 2019-07-23  Jeremy Sowden <jeremy@azazel.net>
19         * ChangeLog, NEWS, configure.ac: bumped to 0.4.35.
21 2019-07-23  Jeremy Sowden <jeremy@azazel.net>
23         * AUTHORS: added Doug Torrance and myself to the list.
25 2019-07-23  Jeremy Sowden <jeremy@azazel.net>
27         * wmbiff/tlsComm.c: added support for TLS SNI.
29           From Debian bug #917993:
30             From: Nye Liu <nyet@nyet.org>
31             Subject: wmbiff: gmail (and many other IMAP servers) now require SNI
32             Date: Tue, 01 Jan 2019 18:33:51 -0800
34             wmbiff/gmail imap4: Need new connection to
35               ***@gmail.com@imap.gmail.com
36             wmbiff/gmail comm: certificate passed time check.
37             wmbiff/gmail comm: server's certificate (OU=No SNI provided\; please
38               fix your client.,CN=invalid2.invalid) does not match its hostname
39               (imap.gmail.com).  wmbiff/gmail comm: server's certificate does
40               not match its hostname.
41             wmbiff/gmail comm: to ignore this error, run wmbiff with the
42               -skip-certificate-check option
44 2019-07-22  Jeremy Sowden <jeremy@azazel.net>
46         * ChangeLog, NEWS, configure.ac: bumped to 0.4.34.
48 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
50         * wmbiff/wmbiff.c: use one for-loop when creating backing XPM.  Fixes
51         static analysis warning about uninitialized value.
53 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
55         * wmbiff/passwordMgr.c: fixed possible null-pointer dereference.
57 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
59         * wmbiff/Imap4Client.c, wmbiff/passwordMgr.c, wmbiff/test_tlscomm.c,
60         wmbiff/tlsComm.c, wmgeneral/wmgeneral.c: fixed leaks.
62 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
64         * wmbiff/wmbiff.c: removed superfluous assignment.
66 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
68         * wmbiff/Pop3Client.c: replaced strncpy with memcpy.
70 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
72         * wmbiff/Client.h, wmbiff/Imap4Client.c, wmbiff/MessageList.c,
73         wmbiff/MessageList.h, wmbiff/Pop3Client.c, wmbiff/ShellClient.c,
74         wmbiff/maildirClient.c, wmbiff/mboxClient.c, wmbiff/passwordMgr.c,
75         wmbiff/passwordMgr.h, wmbiff/test_wmbiff.c, wmbiff/tlsComm.c,
76         wmbiff/tlsComm.h, wmbiff/wmbiff.c: stop hiding pointers behind typedefs.
78 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
80         * .gitignore: added .gitignore.
82 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
84         * Makefile.am, autoconf/Makefile.am, configure.ac: removed autoconf
85         directory.
87 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
89         * autogen: added autogen.
91 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
93         * wmbiff/Client.h, wmbiff/Imap4Client.c, wmbiff/passwordMgr.c: use
94         `size_t` for password-lengths.
96 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
98         * wmbiff/Imap4Client.c: fixed endianness problems parsing server-ports.
99         `regulo_atoi` expects a pointer-to-int and `PCU.serverPort` is a
100         `uint16_t`, so `&PCU.serverPort` is not compatible and we need to use an
101         `int` temporary variable to avoid endianness problems.
103 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
105         * wmbiff/socket.c: fixed endianness problems connecting to POP and IMAP
106         servers.  `addr.sin_addr.s_addr` is a `uint32_t` in NBO, so assigning a
107         `struct in_addr` cast to `unsigned long` will break on 64-bit big-endian
108         architectures.
110 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
112         * wmbiff/test_wmbiff.c: `addr.sin_port` is in NBO, so we should use
113         ntohs(3), not htons(3).
115 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
117         * wmbiff/socket.c, wmbiff/test_wmbiff.c: tidy up socket connexions.
119 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
121         * wmbiff/socket.c: correct the address size passed to connect(2).
122         `addr` is a `struct sockaddr_in`, not a `struct sockaddr`; using `sizeof
123         var` instead of `sizeof (type)` ensures that the right size is used.
125 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
127         * wmbiff/regulo.c, wmbiff/wmbiff/regulo.h: `regulo_match` modifies
128         `instructions[i].destination`, so remove `const`.
130 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
132         * wmbiff/regulo.c: use temporary variables and remove casts.
134 2019-03-01  Doug Torrance <dtorrance@piedmont.edu>
136         * ChangeLog, NEWS, configure.ac: Bump to version 0.4.33
138 2019-03-01  Doug Torrance <dtorrance@piedmont.edu>
140         * wmbiff/tlsComm.c: Remove unnecessary loop.  The last release of
141         wmbiff included a patch by Nye Liu from Debian bug #917467 [1].
142         However, the second part of that patch is not necessary.  From Andreas
143         Metzler's comment
145             I am not sure about the second part of the patch. I understand
146             wmbiff breaking on GNUTLS_E_AGAIN from gnutls_read, because this
147             only started to happen recently (with TLS1.3) on blocking sockets.
148             What I do not get from my rudimentary understanding C
149             programmimg is the second part, this is in the else of "if
150             (scs->tls_state)", so, afaiui for non-encrypted connections. Is the
151             change necessary there at all, is it the right thing to retry read
152             on EAGAIN then? We revert the second part of the patch.
154         [1] https://bugs.debian.org/917467
156 2019-02-12  Doug Torrance <dtorrance@piedmont.edu>
158         * ChangeLog, NEWS, configure.ac: Bump to version 0.4.32.
160 2019-02-12  Doug Torrance <dtorrance@piedmont.edu>
162         * wmbiff/Imap4Client.c, wmbiff/tlsComm.c:
163         handle EAGAIN or GNUTLS_E_AGAIN
165         From Debian bug #917467, reported by Nye Liu <nyet@nyet.org> [1]:
167         If gnutls_read() or read() report EAGAIN, tlscomm_expect() fails:
169         wmbiff/nyet  comm: wrote a000 CAPABILITY
170         wmbiff/nyet  comm: imap.***.***:993: expecting: * CAPABILITY
171         wmbiff/nyet  comm: imap.***.***:993: gnutls error reading: Resource
172             temporarily unavailable, try again.
173         wmbiff/nyet  imap4: unable to query capability stringwmbiff/nyet
174             comm: wrote a002 LOGOUT wmbiff/nyet
175         comm: imap.***.***:993: closing.
177         [1] https://bugs.debian.org/917467
179 2018-05-14  Doug Torrance <dtorrance@piedmont.edu>
181         * FAQ, README, configure.ac, wmbiff/sample.wmbiffrc, wmbiff/wmbiff.1:
182         Update mailing list links to new Google Groups.
185 2017-06-23  Doug Torrance <dtorrance@piedmont.edu>
187         * ChangeLog, NEWS, configure.ac: Bump to version 0.4.31.
189 2017-06-23  Doug Torrance <dtorrance@piedmont.edu>
191         * wmbiff/Imap4Client.c, wmbiff/ShellClient.c,
192         wmbiff/passwordMgr.c, wmbiff/test_wmbiff.c:
193         Remove #define _GNU_SOURCE; already defined in CFLAGS.
196 2017-06-23  Doug Torrance <dtorrance@piedmont.edu>
198         * wmbiff/maildirClient.c: Manually copy mailbox path.
200         Patch by Demi <m@tfiu.de> to fix Debian bug #621690 [1].
202         [1] https://bugs.debian.org/621690
204 2016-11-30  Doug Torrance <dtorrance@piedmont.edu>
206         * ChangeLog, NEWS, configure.ac: Bump to verson 0.4.30.
208 2016-11-30  Doug Torrance <dtorrance@piedmont.edu>
210         * wmbiff/Imap4Client.c, wmbiff/ShellClient.c, wmbiff/passwordMgr.c,
211         wmbiff/test_wmbiff.c: Add #define _GNU_SOURCE to avoid "implicit
212         declaration" warnings.
214 2016-11-30  Doug Torrance <dtorrance@piedmont.edu>
216         * wmbiff/Client.h, wmbiff/socket.c: Use unsigned data type for port
217         number.
219 2016-07-20  Doug Torrance <dtorrance@piedmont.edu>
221         * wmbiff/wmbiff.1, wmbiff/wmbiff.c: Fix typos.
223 2016-07-19  Doug Torrance <dtorrance@piedmont.edu>
225         * ChangeLog, configure.ac: Bump to version 0.4.29.
227 2016-07-19  Doug Torrance <dtorrance@piedmont.edu>
229         * wmbiff/Imap4Client.c: Close mailbox before we call
230         status on it.
232         Additional patch by Nye Liu <nyet@nyet.org> to fix Debian bug
233         #830889 [1].
235         [1] https://bugs.debian.org/830889
237 2016-07-12  Doug Torrance <dtorrance@piedmont.edu>
239         * wmbiff/Imap4Client.c: EXAMINE before STATUS
241         Patch by Nye Liu <nyet@nyet.org> to fix Debian bug #830889 [1].
243         Outlook Office365 IMAP servers now expect a client to issue at least
244         one EXAMINE before STATUS, or UNSEEN is always zero.
246         [1] https://bugs.debian.org/830889
248 2015-10-25  Doug Torrance <dtorrance@piedmont.edu>
250         * wmbiff/wmbiff.1, wmbiff/wmbiff.c: Add missing command line options
251         to documentation.
253         Closes Debian bug #770117 [1].
255         [1] https://bugs.debian.org/770117
257 2015-08-16  Rodolfo García Peñas (kix) <kix@kix.es>
259         * wmbiff/tlsComm.c: FTBFS with initialize_gnutls
261         The first argument for the function initialize_gnutls is an intptr_t
262         so wmbiff fails to build from source. This patch changes the current
263         int to intptr_t.
265 2014-11-07  Doug Torrance <dtorrance@monmouthcollege.edu>
267         * wmbiff/Makefile.am: Remove sourceforgeupload target from
268         Makefile; no longer needed.
270 2014-11-07  Doug Torrance <dtorrance@monmouthcollege.edu>
272         * wmbiff/README, wmbiff/configure.ac,
273         wmbiff/wmbiff/sample.wmbiffrc, wmbiff/wmbiff/wmbiff.1:
274         Update email address.
276 2014-11-07  Doug Torrance <dtorrance@monmouthcollege.edu>
278         * wmbiff/wmbiff/Imap4Client.c, wmbiff/wmbiff/Pop3Client.c:
279         Use PACKAGE_BUGREPORT instead of hardcoding address.
281 2014-11-07  Doug Torrance <dtorrance@monmouthcollege.edu>
283         * wmbiff/FAQ: Update FAQ.
285 2014-11-05  Doug Torrance <dtorrance@monmouthcollege.edu>
287         * wmbiff/wmbiff/tlsComm.c, wmbiff/wmbiff/tlsComm.h: Fix cast
288         to pointer from integer of different size compiler warning.
290 2014-11-05  Doug Torrance <dtorrance@monmouthcollege.edu>
292         * wmbiff/wmbiff/gnutls-common.c, wmbiff/wmbiff/gnutls-common.h,
293         wmbiff/wmbiff/tlsComm.c: Fix compiler warnings from
294         deprecated gnutls types.
296 2014-11-05  Doug Torrance <dtorrance@monmouthcollege.edu>
298         * wmbiff/wmbiff/wmbiff.1, wmbiff/wmbiff/wmbiffrc.5.in: Fix
299         manpages.  In particular, fix spelling-error-in-manpage,
300         hyphen-used-as-minus-sign, and manpage-has-errors-from-man Lintian
301         warnings from the Debian package.
303 2014-11-05  Doug Torrance <dtorrance@monmouthcollege.edu>
305         * wmbiff/configure.ac: Remove arguments to AM_INIT_AUTOMAKE
306         in configure.ac.  This patch serves two purposes:
307         - Avoid a " AM_INIT_AUTOMAKE: two- and three-arguments forms are
308           deprecated" warning when running autoreconf.
309         - Fix "syntax error near unexpected token" when running configure.
311 2014-11-05  Doug Torrance <dtorrance@monmouthcollege.edu>
313         * wmbiff/INSTALL: Remove INSTALL; automatically generated by
314         autotools.
316 2014-11-04  Doug Torrance <dtorrance@monmouthcollege.edu>
318         * wmbiff/wmgeneral/wmgeneral.h: Increase number of actions
319         to 40.  Patch by Alberto Morales <amd77@gulic.org>.
320         For more information, see:
321         https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=589408
323 2014-11-04  Doug Torrance <dtorrance@monmouthcollege.edu>
325         * wmbiff/wmbiff/Client.h, wmbiff/wmbiff/Imap4Client.c: Allow
326         usernames with more than 32 characters.
327         Patch by Tommaso Parisi <tommasop.ml@libero.it>.
328         For more information, see:
329         https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=626393
331 2014-11-04  Doug Torrance <dtorrance@monmouthcollege.edu>
333         * wmbiff/wmbiff/socket.c: Fix connection leak.
334         Patch by Arnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>.
335         For more information, see:
336         https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=663876
338 2014-11-04  Doug Torrance <dtorrance@monmouthcollege.edu>
340         * wmbiff/scripts/security.debian.rb: Fix security.debian.rb
341         script.
342         Patch by Lothar Ketterer <lketterer@users.sourceforge.net>
343         For more information, see:
344         https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525749
346 2014-11-04  Doug Torrance <dtorrance@monmouthcollege.edu>
348         * wmbiff/wmbiff/gnutls-common.c: Remove LZO compression.
349         GnuTLS LZO support was removed in version 3.0.0.  Based on the patch
350         by Andreas Metzler <ametzler@debian.org>:
351         http://sources.debian.net/src/wmbiff/0.4.27-2.3/debian/patches/15_no_more_LZO.diff/
352         For more information, see:
353         https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=638736
355 2014-10-05  Doug Torrance <dtorrance@monmouthcollege.edu>
357         * wmbiff/AUTHORS, wmbiff/FAQ, wmbiff/Makefile.am, wmbiff/NEWS,
358         wmbiff/README, wmbiff/TODO, wmbiff/autoconf/Makefile.am,
359         wmbiff/configure.ac, wmbiff/scripts/security.debian.rb,
360         wmbiff/wmbiff/Client.h, wmbiff/wmbiff/Imap4Client.c,
361         wmbiff/wmbiff/Makefile.am, wmbiff/wmbiff/Pop3Client.c,
362         wmbiff/wmbiff/ShellClient.c, wmbiff/wmbiff/charutil.c,
363         wmbiff/wmbiff/charutil.h, wmbiff/wmbiff/gnutls-common.c,
364         wmbiff/wmbiff/maildirClient.c, wmbiff/wmbiff/mboxClient.c,
365         wmbiff/wmbiff/passwordMgr.c, wmbiff/wmbiff/sample.wmbiffrc,
366         wmbiff/wmbiff/socket.c, wmbiff/wmbiff/test_wmbiff.c,
367         wmbiff/wmbiff/tlsComm.c, wmbiff/wmbiff/tlsComm.h,
368         wmbiff/wmbiff/wmbiff.1, wmbiff/wmbiff/wmbiff.c,
369         wmbiff/wmbiff/wmbiffrc.5.in, wmbiff/wmgeneral/Makefile.am,
370         wmbiff/wmgeneral/misc.c, wmbiff/wmgeneral/wmgeneral.c: Remove
371         trailing whitespace.
373 2013-04-08  Gabriel VLASIU <gabriel@vlasiu.net>
375         * wmbiff/wmbiff/Makefile.am, wmbiff/wmbiff/mboxClient.c,
376         wmbiff/wmbiff/wmbiff-classic-master-led.xpm,
377         wmbiff/wmbiff/wmbiff.1, wmbiff/wmbiff/wmbiff.c: Enable classic mode.
379 2013-04-08  Gabriel VLASIU <gabriel@vlasiu.net>
381         * wmbiff/configure.ac, wmbiff/wmbiff/Imap4Client.c,
382         wmbiff/wmbiff/Pop3Client.c, wmbiff/wmbiff/gnutls-common.c,
383         wmbiff/wmbiff/test_tlscomm.c, wmbiff/wmbiff/test_wmbiff.c,
384         wmbiff/wmbiff/tlsComm.c, wmbiff/wmbiff/wmbiff.c,
385         wmbiff/wmbiff/wmbiffrc.5.in: Update gnutls code (require at least
386         2.2.0).
388 2013-04-08  Gabriel VLASIU <gabriel@vlasiu.net>
390         * wmbiff/wmbiff/wmbiff.1: Remove gnomeicu from wmbif's manual.
392 2013-04-04  Gabriel VLASIU <gabriel@vlasiu.net>
394         * wmbiff/wmgeneral/wmgeneral.c: Fix segfault when -display
395         or -geometry argument is missing.
397 2013-04-04  Gabriel VLASIU <gabriel@vlasiu.net>
399         * wmbiff/wmbiff/wmbiff.c: Free memory when using a custom
400         skin.
402 2013-04-04  Gabriel VLASIU <gabriel@vlasiu.net>
404         * wmbiff/wmbiff/wmbiff.c: Fix wmbiff restart.
406 2013-04-04  Gabriel VLASIU <gabriel@vlasiu.net>
408         * wmbiff/wmbiff/gnutls-common.c: More gnutls casts.
410 2013-04-04  Gabriel VLASIU <gabriel@vlasiu.net>
412         * wmbiff/wmbiff/wmbiff.c, wmbiff/wmgeneral/wmgeneral.c: Fix
413         memory leaks pointed out by valgrind.
415 2013-04-04  Gabriel VLASIU <gabriel@vlasiu.net>
417         * wmbiff/wmgeneral/Makefile.am, wmbiff/wmgeneral/list.c,
418         wmbiff/wmgeneral/list.h, wmbiff/wmgeneral/misc.c: Remove
419         unused files.
421 2013-04-03  Gabriel VLASIU <gabriel@imhotep.timteh.com>
423         * wmbiff/wmbiff/wmbiff.c: XKeycodeToKeysym is deprecated.
425 2013-04-03  Gabriel VLASIU <gabriel@imhotep.timteh.com>
427         * wmbiff/wmbiff/wmbiff.c: Remove unused variable.
429 2013-04-03  Gabriel VLASIU <gabriel@vlasiu.net>
431         * wmbiff/wmbiff/gnutls-common.c, wmbiff/wmbiff/test_wmbiff.c,
432         wmbiff/wmbiff/tlsComm.c: Fix signedness and/or cast.
434 2013-04-03  Gabriel VLASIU <gabriel@imhotep.timteh.com>
436         * wmbiff/wmbiff/Pop3Client.c: comparison between pointer and
437         integer.
439 2013-04-03  Gabriel VLASIU <gabriel@vlasiu.net>
441         * wmbiff/wmbiff/test_tlscomm.c: Add missing include.
443 2013-04-03  Gabriel VLASIU <gabriel@vlasiu.net>
445         * wmbiff/wmbiff/wmbiff.1, wmbiff/wmbiff/wmbiffrc.5.in: Update manual
446         for wmbiff and wmbiffrc.
448 2012-06-12  Wade Berrier <wberrier@gmail.com>
450         * wmbiff/configure.ac, wmbiff/scripts/Makefile.am: slight
451         automake/autoconf refresh AM_PATH_LIBGNUTLS seems to be obsolete.
452         Replace the check with
453         pkg-config using PKG_CHECK_MODULES.
454         AM_CONFIG_HEADER also seems to be obsolete.  Replace with
455         AC_CONFIG_HEADER.  Fix installing an extra script (security.debian.rb)
457 2012-06-05  Alexey I. Froloff <raorn@raorn.name>
459         * wmbiff/wmbiff/gnutls-common.c, wmbiff/wmbiff/socket.c,
460         wmbiff/wmgeneral/list.c, wmbiff/wmgeneral/list.h,
461         wmbiff/wmgeneral/misc.c: Mass update FSF address
463 2012-06-05  Alexey I. Froloff <raorn@raorn.name>
465         * wmbiff/configure.ac: Make autoreconf happy
467 2012-06-05  Alexey I. Froloff <raorn@raorn.name>
469         * wmbiff/Makefile.in, wmbiff/aclocal.m4,
470         wmbiff/autoconf/Makefile.in, wmbiff/autoconf/depcomp,
471         wmbiff/autoconf/install-sh, wmbiff/autoconf/missing,
472         wmbiff/autoconf/mkinstalldirs, wmbiff/config.h.in,
473         wmbiff/configure, wmbiff/scripts/Makefile.in,
474         wmbiff/wmbiff/Makefile.in, wmbiff/wmbiff/wmbiffrc.5,
475         wmbiff/wmgeneral/Makefile.in: Removed all autogenerated autotools
476         and imake stuff
477         There's no need to keep autogenerated files in repository.  Those
478         dockapps which use autotoold must be autoreconf'ed prior to build,
479         those which use imake must be xmkmf'ed.  As of wmbiff,
480         AC_PATH_XTRA_CORRECTED was a hack to avoid bug in older autoconf
481         version, which is no longer needed (it's 2012 now already).
483 2012-06-05  Alexey I. Froloff <raorn@raorn.name>
485         * wmbiff/COPYING: Mass update GPLv2 from
486         http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
488 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
490         * wmbiff/wmbiff-master-led.xpm,
491         wmbiff/wmbiff.c: Change default colors
493 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
495         * wmbiff/wmbiff.c: Remove trailing colon from
496         mailbox label So now we have one extra char for the label name.
498 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
500         * Makefile.am, README.licq,
501         wmbiff/Client.h, wmbiff/LicqClient.c,
502         wmbiff/Makefile.am, wmbiff/Makefile.in,
503         wmbiff/sample.wmbiffrc,
504         wmbiff/wmbiff.1, wmbiff/wmbiff.c:
505         Remove Licq, gnomeicu and finger support
507 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
509         * wmbiff/wmbiff.c: Raise sleep interval to 20
510         secs
512 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
514         * wmbiff/wmbiff.c: Trivial code cleanups
516 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
518         * wmbiff/wmbiff.c: Fix global notification Global notification would
519         only work if all 'notify' commands for all mailboxes were unset
520         (=='\0').  Fix that.
522 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
524         * wmbiff/wmbiff.c: Remove autofetch on new
525         email arrival
527 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
529         * wmbiff/wmbiff.c: Remove 'beep' option for
530         notification
532 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
534         * wmbiff/wmbiff.c: Display "0" when there are
535         no new emails ...instead of displaying the total number of emails in the
536         mailbox.  On my gmail account with +16k emails, there was not enough
537         space to display the account label. Besides, the total number of emails
538         is useless information anyway.
540 2005-10-08 Saturday 18:13 UTC -- Neil Spring <nspring@cs.washington.edu>
542         * configure.ac: year stale 0.4.26 news
544 2005-10-07 Friday 03:07 UTC -- Neil Spring <nspring@cs.washington.edu>
546         * wmbiff/wmbiff.c: fix debian #332540: prevent -c 'directory' from
547           making wmbiff run away
549 2005-05-08 Sunday 21:31 UTC -- Neil Spring <nspring@cs.washington.edu>
551         * wmbiff/: Client.h, MessageList.c, test_tlscomm.c, test_wmbiff.c,
552           tlsComm.c, tlsComm.h, wmbiff.c: changes for gnutls 1.2 and
553           attempt to make wmbiff more responsive to X events while
554           communicating over the network
556 2004-12-12 Sunday 00:06 UTC -- Neil Spring <nspring@cs.washington.edu>
558         * check-includes.rb: update the portability checker
560 2004-12-12 Sunday 00:05 UTC -- Neil Spring <nspring@cs.washington.edu>
562         * wmgeneral/wmgeneral.c: allow KeyPress events through
564 2004-12-12 Sunday 00:03 UTC -- Neil Spring <nspring@cs.washington.edu>
566         * wmbiff/passwordMgr.c: nicer debug message
568 2004-12-12 Sunday 00:02 UTC -- Neil Spring <nspring@cs.washington.edu>
570         * wmbiff/: gnutls-common.c, test_wmbiff.c: compiler appeasement
572 2004-12-12 Sunday 00:01 UTC -- Neil Spring <nspring@cs.washington.edu>
574         * wmbiff/: Pop3Client.c, wmbiff.c, wmbiffrc.5.in: tls and password
575           asking support for pop3, keyboard event handling for the main
576           window
578 2004-10-31 Sunday 22:09 UTC -- Neil Spring <nspring@cs.washington.edu>
580         * wmbiff/tlsComm.c: indent and make tls_check_certificate void
582 2004-10-01 Friday 21:15 UTC -- Neil Spring <nspring@cs.washington.edu>
584         * wmbiff/tlsComm.c: comment the SHUT_WR
586 2004-10-01 Friday 21:06 UTC -- Neil Spring <nspring@cs.washington.edu>
588         * wmbiff/tlsComm.c: indent, and return if no certificate came back
589           from the far side
591 2004-10-01 Friday 21:05 UTC -- Neil Spring <nspring@cs.washington.edu>
593         * wmbiff/socket.c: thwack duplicate error messages about connecting
594           to a remote server
596 2004-10-01 Friday 21:02 UTC -- Neil Spring <nspring@cs.washington.edu>
598         * wmbiff/wmbiff.c: indent
600 2004-08-23 Monday 00:37 UTC -- Neil Spring <nspring@cs.washington.edu>
602         * wmbiff/wmbiff.c: disable the secure memory warning (and its use)
604 2004-07-03 Saturday 23:45 UTC -- Neil Spring <nspring@cs.washington.edu>
606         * FAQ: some faqs
608 2004-07-03 Saturday 23:43 UTC -- Neil Spring <nspring@cs.washington.edu>
610         * scripts/security.debian.rb: handle the timeout error explicitly,
611           better for disconnected operation
613 2004-07-03 Saturday 23:43 UTC -- Neil Spring <nspring@cs.washington.edu>
615         * wmbiff/socket.c: strerror preferred to perror
617 2004-06-28 Monday 18:20 UTC -- Neil Spring <nspring@cs.washington.edu>
619         * scripts/security.debian.rb: fix debian #256505: a small problem
620           with the .wmbiff-sdr directory not being created
622 2004-06-23 Wednesday 21:51 UTC -- Neil Spring <nspring@cs.washington.edu>
624         * configure.ac: 0.4.25
626 2004-06-23 Wednesday 21:46 UTC -- Neil Spring <nspring@cs.washington.edu>
628         * configure.ac, wmbiff/tlsComm.c: probably fix the s390 debian
629           build problems
631 2004-06-20 Sunday 01:03 UTC -- Neil Spring <nspring@cs.washington.edu>
633         * wmbiff/tlsComm.c: oops, should pay attention to the retval of
634           tls_compare_certificates
636 2004-06-19 Saturday 21:38 UTC -- Neil Spring <nspring@cs.washington.edu>
638         * wmbiff/gnutls-common.c: warning cleanup
640 2004-06-19 Saturday 20:53 UTC -- Neil Spring <nspring@cs.washington.edu>
642         * configure.ac, wmbiff/Client.h, wmbiff/Imap4Client.c,
643           wmbiff/Pop3Client.c, wmbiff/gnutls-common.c,
644           wmbiff/gnutls-common.h, wmbiff/tlsComm.c, wmbiff/wmbiff.c,
645           wmgeneral/wmgeneral.c: 0.4.24, supporting newer gnutls, I think
647 2004-06-18 Friday 21:29 UTC -- Neil Spring <nspring@cs.washington.edu>
649         * wmbiff/wmbiff.c: paranoid test to see if /var/mail/nspring is
650           constructed wrong.
652 2004-04-28 Wednesday 00:19 UTC -- Neil Spring <nspring@cs.washington.edu>
654         * wmbiff/: Client.h, charutil.c, socket.c, test_wmbiff.c, wmbiff.c:
655           indent run
657 2004-04-28 Wednesday 00:18 UTC -- Neil Spring <nspring@cs.washington.edu>
659         * wmbiff/: socket.c, test_wmbiff.c: handle ip addresses instead of
660           hostnames in sock_connect
662 2004-04-27 Tuesday 23:35 UTC -- Neil Spring <nspring@cs.washington.edu>
664         * configure.ac: 0.4.23
666 2004-04-27 Tuesday 23:31 UTC -- Neil Spring <nspring@cs.washington.edu>
668         * wmbiff/test_wmbiff.c: ensure that sock_connect works with IP
669           addresses
671 2004-04-21 Wednesday 21:53 UTC -- Neil Spring <nspring@cs.washington.edu>
673         * wmbiff/Imap4Client.c: oops, broke the cacheHeaders flag
675 2004-04-20 Tuesday 04:55 UTC -- Neil Spring <nspring@cs.washington.edu>
677         * wmbiff/: charutil.c, charutil.h, test_wmbiff.c, wmbiff.c: factor
678           out comment stripping for testing, which seems to have passed
680 2004-04-06 Tuesday 20:58 UTC -- Neil Spring <nspring@cs.washington.edu>
682         * wmbiff/: Imap4Client.c, Pop3Client.c, test_wmbiff.c: fix debian
683           #242458 -- allow IP addresses as server names for IMAP mailboxes,
684           and also for POP3 mailboxes
686 2004-03-28 Sunday 00:36 UTC -- Neil Spring <nspring@cs.washington.edu>
688         * configure.ac: 0.4.22
690 2004-03-28 Sunday 00:28 UTC -- Neil Spring <nspring@cs.washington.edu>
692         * wmbiff/: Client.h, Imap4Client.c, Pop3Client.c, ShellClient.c,
693           charutil.c, maildirClient.c, mboxClient.c, passwordMgr.c,
694           regulo.c, test_tlscomm.c, tlsComm.c, tlsComm.h, wmbiff.c: lots of
695           indent changes and a change to let msglst enable header caching
696           for imap
698 2004-03-12 Friday 21:35 UTC -- Neil Spring <nspring@cs.washington.edu>
700         * wmbiff/wmbiffrc.5.in: mention courier imapd's means of specifying
701           subfolders
703 2004-02-14 Saturday 18:10 UTC -- Neil Spring <nspring@cs.washington.edu>
705         * wmbiff/Imap4Client.c: bugfix for cyrus imap servers, thanks to
706           Jon Ramsey
708 2004-01-01 Thursday 23:47 UTC -- Neil Spring <nspring@cs.washington.edu>
710         * configure.ac: really call it 0.4.20
712 2004-01-01 Thursday 07:47 UTC -- Neil Spring <nspring@cs.washington.edu>
714         * AUTHORS, wmbiff/Client.h, wmbiff/Imap4Client.c,
715           wmbiff/ShellClient.c, wmbiff/maildirClient.c,
716           wmbiff/mboxClient.c, wmbiff/passwordMgr.c, wmbiff/wmbiff.c: Sam
717           Izzo's patch
719 2003-12-30 Tuesday 19:44 UTC -- Neil Spring <nspring@cs.washington.edu>
721         * Makefile.am, configure.ac: add --disable-crypto
723 2003-12-22 Monday 00:08 UTC -- Neil Spring <nspring@cs.washington.edu>
725         * wmbiff/Imap4Client.c: print failure message if imap login fails
727 2003-11-09 Sunday 07:01 UTC -- Neil Spring <nspring@cs.washington.edu>
729         * wmbiff/sample.wmbiffrc: mac os 10.3 mail responds to a different
730           way of identifying the inbox
732 2003-11-09 Sunday 03:16 UTC -- Neil Spring <nspring@cs.washington.edu>
734         * configure.ac: 0.4.19
736 2003-11-09 Sunday 03:16 UTC -- Neil Spring <nspring@cs.washington.edu>
738         * wmbiff/test_tlscomm.c: fix bug #219787
740 2003-11-08 Saturday 23:46 UTC -- Neil Spring <nspring@cs.washington.edu>
742         * Makefile.am: helper rule for sourceforge upload (I know, I know,
743           maintenance cruft making it into the release, whatever)
745 2003-11-08 Saturday 23:46 UTC -- Neil Spring <nspring@cs.washington.edu>
747         * wmbiff/Client.h: philosophical definition of truth
749 2003-11-08 Saturday 23:45 UTC -- Neil Spring <nspring@cs.washington.edu>
751         * wmbiff/Imap4Client.c: because having both from and subject
752           headers is no longer a way to tell when the end has happened,
753           must clean up the completed command tag explicitly
755 2003-11-08 Saturday 23:44 UTC -- Neil Spring <nspring@cs.washington.edu>
757         * wmbiff/passwordMgr.c: avoid compiler warning from inconsistent
758           def of size_t as passed into printf
760 2003-11-08 Saturday 22:58 UTC -- Neil Spring <nspring@cs.washington.edu>
762         * wmbiff/: ShellClient.c, charutil.c: strcpy is not defined to
763           handle overlapping regions.  valgrind complains, rightly, so
764           reimplement lefttrim to avoid such behavior
766 2003-11-08 Saturday 22:17 UTC -- Neil Spring <nspring@cs.washington.edu>
768         * wmbiff/wmbiff.c: bump up default_sleep_interval to clean up
769           strace output while bored.
771 2003-11-08 Saturday 22:13 UTC -- Neil Spring <nspring@cs.washington.edu>
773         * wmbiff/Imap4Client.c: handle messages without subject lines in
774           msglst
776 2003-11-07 Friday 09:11 UTC -- Neil Spring <nspring@cs.washington.edu>
778         * wmbiff/passwordMgr.c: panther (mac 10.3) does not appear to
779           null-terminate passwords in the keychain for us
781 2003-10-29 Wednesday 18:15 UTC -- Neil Spring <nspring@cs.washington.edu>
783         * wmbiff/: Imap4Client.c, Pop3Client.c: handle capitalized FROM and
784           SUBJECT headers common typical of spam spam spam
786 2003-10-28 Tuesday 23:39 UTC -- Neil Spring <nspring@cs.washington.edu>
788         * wmbiff/test_tlscomm.c: indent and add another check
790 2003-10-28 Tuesday 23:38 UTC -- Neil Spring <nspring@cs.washington.edu>
792         * wmbiff/: Makefile.am, test_wmbiff.c: indent
794 2003-10-28 Tuesday 07:09 UTC -- Neil Spring <nspring@cs.washington.edu>
796         * wmbiff/: Makefile.am, test_tlscomm.c: fix bug reported by
797           Jingshao Chen <jingshaochen@sbcglobal.net> with buffering
798           trouble, and incorporate a regression test to keep it from
799           accidentally popping up again
801 2003-10-28 Tuesday 06:56 UTC -- Neil Spring <nspring@cs.washington.edu>
803         * wmbiff/: test_tlscomm.c, tlsComm.c: test for proper handling of
804           buffering small bits of expected data
806 2003-10-26 Sunday 08:33 UTC -- Neil Spring <nspring@cs.washington.edu>
808         * wmbiff/: Imap4Client.c, passwordMgr.c: sigh, I dislike running
809           make indent
811 2003-10-26 Sunday 08:31 UTC -- Neil Spring <nspring@cs.washington.edu>
813         * AUTHORS, wmbiff/Pop3Client.c, wmbiff/wmbiffrc.5.in: Paolo
814           Gianrossi's patch to provide msglst support for pop3 mailboxes
816 2003-10-26 Sunday 07:42 UTC -- Neil Spring <nspring@cs.washington.edu>
818         * check-includes.rb, wmbiff/maildirClient.c, wmbiff/socket.c:
819           include file reordering, based on wisdom from porting some other
820           networky code
822 2003-10-26 Sunday 07:31 UTC -- Neil Spring <nspring@cs.washington.edu>
824         * scripts/security.debian.rb: fix some ruby1.8 warnings, minor
825           cleanup
827 2003-10-10 Friday 18:00 UTC -- Neil Spring <nspring@cs.washington.edu>
829         * configure.ac: 0.4.18
831 2003-10-10 Friday 15:59 UTC -- Neil Spring <nspring@cs.washington.edu>
833         * scripts/security.debian.rb: fix ruby1.8's complaint.
835 2003-08-31 Sunday 18:05 UTC -- Neil Spring <nspring@cs.washington.edu>
837         * configure.ac: 0.4.17
839 2003-08-31 Sunday 06:47 UTC -- Neil Spring <nspring@cs.washington.edu>
841         * wmbiff/tlsComm.c: oops, looks like I resolved a conflict poorly
843 2003-08-31 Sunday 04:39 UTC -- Neil Spring <nspring@cs.washington.edu>
845         * wmbiff/Makefile.am: build the test cases well
847 2003-08-31 Sunday 03:33 UTC -- Neil Spring <nspring@cs.washington.edu>
849         * wmbiff/: test_wmbiff.c, tlsComm.h: check the newline bugfix
851 2003-08-31 Sunday 03:32 UTC -- Neil Spring <nspring@cs.washington.edu>
853         * wmbiff/tlsComm.c: bugfix to avoid handing odd newlines badly
855 2003-07-31 Thursday 23:37 UTC -- Neil Spring <nspring@cs.washington.edu>
857         * wmbiff/Imap4Client.c: fix some potential bugs - an access of
858           freed memory and an uninitialized reference counter
860 2003-07-20 Sunday 00:52 UTC -- Neil Spring <nspring@cs.washington.edu>
862         * wmbiff/: passwordMgr.c, test_wmbiff.c: fix a five-minute old
863           regression test failure where null was returned instead of an
864           empty string for an empty password.  not sure it matters, but
865           maybe.
867 2003-07-20 Sunday 00:44 UTC -- Neil Spring <nspring@cs.washington.edu>
869         * wmbiff/passwordMgr.c: oops, I left a use-after-free bug in the
870           askpass code
872 2003-07-19 Saturday 23:56 UTC -- Neil Spring <nspring@cs.washington.edu>
874         * configure.ac, wmbiff/passwordMgr.c: use the apple keychain to
875           grab passwords! I can very nearly forget about typing them in
876           anymore
878 2003-07-10 Thursday 17:44 UTC -- Neil Spring <nspring@cs.washington.edu>
880         * Makefile.am: ensure that the current directory is not setgid when
881           making a distribution; this borks some untars
883 2003-07-07 Monday 09:00 UTC -- Neil Spring <nspring@cs.washington.edu>
885         * wmbiff/Imap4Client.c: warnings cleanup
887 2003-07-07 Monday 08:57 UTC -- Neil Spring <nspring@cs.washington.edu>
889         * configure.ac, wmbiff/Client.h, wmgeneral/wmgeneral.c: call it
890           0.4.16
892 2003-07-07 Monday 08:43 UTC -- Neil Spring <nspring@cs.washington.edu>
894         * wmbiff/: Client.h, Imap4Client.c, passwordMgr.c, test_wmbiff.c:
895           fix memfrob * bug (memfrob makes *'s zero, so password length
896           must be tracked separately
898 2003-07-04 Friday 21:42 UTC -- Neil Spring <nspring@cs.washington.edu>
900         * wmbiff/wmbiff.c: handle comments the way I meant to...
902 2003-07-03 Thursday 11:10 UTC -- Neil Spring <nspring@cs.washington.edu>
904         * wmbiff/Imap4Client.c: switch the new header cache to use
905           reference counting (better, but possibly buggy) instead of
906           locking (dumb, and certainly buggy)
908 2003-07-03 Thursday 05:39 UTC -- Neil Spring <nspring@cs.washington.edu>
910         * wmbiff/Imap4Client.c: try to avoid repetitive complaints of
911           failed connections
913 2003-07-03 Thursday 05:34 UTC -- Neil Spring <nspring@cs.washington.edu>
915         * wmbiff/socket.c: avoid repetitive error messages when hostname
916           lookup fails (such as when disconnected)
918 2003-07-03 Thursday 05:33 UTC -- Neil Spring <nspring@cs.washington.edu>
920         * wmgeneral/wmgeneral.c: last fix to geometry handling had a
921           compiler warning
923 2003-07-03 Thursday 05:12 UTC -- Neil Spring <nspring@cs.washington.edu>
925         * wmgeneral/wmgeneral.c: try doing geometry the way X intends it to
926           be done, at least as far as I can tell.
928 2003-07-03 Thursday 01:03 UTC -- Neil Spring <nspring@cs.washington.edu>
930         * wmbiff/wmbiff.c: make #'s comments only if preceded by whitespace
931           or at the beginning of the line
933 2003-07-03 Thursday 00:53 UTC -- Neil Spring <nspring@cs.washington.edu>
935         * wmbiff/wmbiff.c: looks like I'd broken the button click events
936           recently
938 2003-07-03 Thursday 00:52 UTC -- Neil Spring <nspring@cs.washington.edu>
940         * wmbiff/sample.wmbiffrc: osascript samples for driving mac mail
941           using applescript
943 2003-06-30 Monday 23:42 UTC -- Neil Spring <nspring@cs.washington.edu>
945         * wmbiff/: Imap4Client.c, tlsComm.c: warning message beautification
947 2003-06-08 Sunday 07:01 UTC -- Neil Spring <nspring@cs.washington.edu>
949         * wmbiff/: Client.h, Imap4Client.c, MessageList.c, MessageList.h,
950           ShellClient.c: general rewrite of the msglst headers, so that the
951           list is pre-cached for responsiveness.
953 2003-06-08 Sunday 06:59 UTC -- Neil Spring <nspring@cs.washington.edu>
955         * wmbiff/wmbiffrc.5.in: document msglst and buttontwo
957 2003-06-08 Sunday 06:59 UTC -- Neil Spring <nspring@cs.washington.edu>
959         * wmbiff/wmbiff.c: show a watch pointer while working behind the
960           scenes
962 2003-06-03 Tuesday 04:57 UTC -- Neil Spring <nspring@cs.washington.edu>
964         * autogen.sh: enable dependency tracking
966 2003-04-17 Thursday 05:04 UTC -- Neil Spring <nspring@cs.washington.edu>
968         * scripts/security.debian.rb: trap socket errors
970 2003-04-17 Thursday 01:56 UTC -- Neil Spring <nspring@cs.washington.edu>
972         * scripts/security.debian.rb: print the detailed version
974 2003-04-17 Thursday 01:56 UTC -- Neil Spring <nspring@cs.washington.edu>
976         * wmbiff/: Client.h, ShellClient.c, passwordMgr.c: space for detail
977           in grab command output, use the detail to populate a message list
978           in a getheaders function (eg. can see the list of thought to be
979           updated packages if using hte security.debian script
981 2003-04-17 Thursday 01:54 UTC -- Neil Spring <nspring@cs.washington.edu>
983         * wmbiff/test-wmbiffrc.shell: test usingthe debian script, allows
984           trying shell get headers
986 2003-04-17 Thursday 01:54 UTC -- Neil Spring <nspring@cs.washington.edu>
988         * wmbiff/tlsComm.c: try to print a helpful hint message to use
989           gnutls-cli-debug
991 2003-04-16 Wednesday 23:30 UTC -- Neil Spring <nspring@cs.washington.edu>
993         * configure.ac: downgrade configure.ac use of AM_INIT_AUTOMAKE to
994           support automake-1.5
996 2003-04-16 Wednesday 08:21 UTC -- Neil Spring <nspring@cs.washington.edu>
998         * wmgeneral/wmgeneral.c: export GetColor
1000 2003-04-16 Wednesday 08:18 UTC -- Neil Spring <nspring@cs.washington.edu>
1002         * wmbiff/: Client.h, Imap4Client.c, MessageList.c, MessageList.h,
1003           tlsComm.c, wmbiff.c: indent run
1005 2003-04-16 Wednesday 08:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1007         * wmbiff/Imap4Client.c: get headers / message list support
1009 2003-04-16 Wednesday 08:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1011         * wmbiff/Makefile.am: messagelist
1013 2003-04-16 Wednesday 08:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1015         * wmbiff/tlsComm.c: rename state to tls_state for clarity, small
1016           cleanup, fixes for buffering several lines in an expectation
1018 2003-04-16 Wednesday 08:14 UTC -- Neil Spring <nspring@cs.washington.edu>
1020         * wmbiff/: wmbiff.c, Client.h: message list, button 2 support
1022 2003-04-16 Wednesday 08:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1024         * wmbiff/: MessageList.c, MessageList.h: list new messages,
1025           currently only with an imap driver
1027 2003-04-09 Wednesday 04:51 UTC -- Neil Spring <nspring@cs.washington.edu>
1029         * autogen.sh: fall back to automake-1.5 if necessary
1031 2003-04-07 Monday 10:10 UTC -- Neil Spring <nspring@cs.washington.edu>
1033         * wmbiff/tlsComm.c: invalid is returned when it doesn't match?
1035 2003-04-07 Monday 09:41 UTC -- Neil Spring <nspring@cs.washington.edu>
1037         * wmbiff/tlsComm.c: fix some info messages - drop complaints about
1038           version 0.2.3 of gnutls, mention certfile.
1040 2003-04-07 Monday 09:33 UTC -- Neil Spring <nspring@cs.washington.edu>
1042         * wmbiff/wmbiffrc.5.in: doc certfile
1044 2003-04-07 Monday 09:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1046         * wmbiff/tlsComm.c: handle certfile errors properly; positive
1047           return values from gnutls_certificate_set_x509_trust_file appear
1048           okay.
1050 2003-03-30 Sunday 11:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1052         * wmbiff/: passwordMgr.c, test_wmbiff.c: oh, now I get why that
1053           foolish null-termination was present.  it's better now
1055 2003-03-30 Sunday 11:23 UTC -- Neil Spring <nspring@cs.washington.edu>
1057         * configure.ac: 0.4.15
1059 2003-03-30 Sunday 11:22 UTC -- Neil Spring <nspring@cs.washington.edu>
1061         * wmbiff/wmbiffrc.5.in: note the hash caveat
1063 2003-03-30 Sunday 11:05 UTC -- Neil Spring <nspring@cs.washington.edu>
1065         * wmbiff/passwordMgr.c: remove (unreleased) foolhardy
1066           null-termination
1068 2003-03-30 Sunday 10:57 UTC -- Neil Spring <nspring@cs.washington.edu>
1070         * wmbiff/test_wmbiff.c: just so as not to confuse anyone that
1071           wmbiff allows #'s in passwords
1073 2003-03-30 Sunday 10:38 UTC -- Neil Spring <nspring@cs.washington.edu>
1075         * README, wmbiff/wmbiff.c, wmgeneral/wmgeneral.c,
1076           wmgeneral/wmgeneral.h: support setting the background color using
1077           -bg
1079 2003-03-28 Friday 08:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1081         * wmbiff/test_wmbiff.c: check that passwords with # can be parsed
1083 2003-03-28 Friday 08:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1085         * wmbiff/wmbiffrc.5.in: doc password parsing damage
1087 2003-03-11 Tuesday 08:07 UTC -- Neil Spring <nspring@cs.washington.edu>
1089         * README: gnupg reorganized their website
1091 2003-03-11 Tuesday 08:03 UTC -- Neil Spring <nspring@cs.washington.edu>
1093         * configure.ac: provide a helpful message as to where gnutls and
1094           libgcrypt can be found in configure.ac
1096 2003-03-06 Thursday 21:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1098         * wmbiff/wmbiff.c: fix debian bug #183529
1100 2003-03-03 Monday 19:06 UTC -- Neil Spring <nspring@cs.washington.edu>
1102         * wmbiff/passwordMgr.c: make returned password length consistent
1103           with stored password length
1105 2003-03-02 Sunday 02:37 UTC -- Neil Spring <nspring@cs.washington.edu>
1107         * configure.ac, wmbiff/Imap4Client.c, wmbiff/passwordMgr.c,
1108           wmbiff/passwordMgr.h: in-memory frobnication of imap passwords
1110 2003-03-02 Sunday 02:17 UTC -- Neil Spring <nspring@cs.washington.edu>
1112         * wmbiff/: Imap4Client.c, Makefile.am, Pop3Client.c, regulo.c,
1113           regulo.h, socket.c, test_wmbiff.c, wmbiff.c: hostname paranoia
1114           patch -- use -relax to skip hostname validation check, parse
1115           ambiguous config lines
1117 2003-03-02 Sunday 01:04 UTC -- Neil Spring <nspring@cs.washington.edu>
1119         * wmbiff/wmbiff.c, wmgeneral/wmgeneral.c: indent run
1121 2003-02-13 Thursday 21:07 UTC -- Neil Spring <nspring@cs.washington.edu>
1123         * Makefile.am, configure.ac: 0.4.14
1125 2003-02-08 Saturday 21:04 UTC -- Neil Spring <nspring@cs.washington.edu>
1127         * wmbiff/: wmbiff.1, wmbiffrc.5.in: document restart schemes
1129 2003-02-08 Saturday 07:06 UTC -- Neil Spring <nspring@cs.washington.edu>
1131         * wmbiff/wmbiff.c: restart wmbiff also on ctrl-shift-left click
1133 2003-02-08 Saturday 03:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1135         * wmbiff/wmbiff.c: restart on sig usr1 using exec()
1137 2003-02-08 Saturday 03:43 UTC -- Neil Spring <nspring@cs.washington.edu>
1139         * autogen.sh: I think symlink is okay for autoreconf
1141 2003-02-08 Saturday 03:42 UTC -- Neil Spring <nspring@cs.washington.edu>
1143         * wmgeneral/: wmgeneral.c, wmgeneral.h: much prefer if wmgeneral
1144           proclaimed that it would not modify argv; I think it's even true
1146 2003-01-28 Tuesday 11:14 UTC -- Neil Spring <nspring@cs.washington.edu>
1148         * configure.ac: remove check for gnuregex
1150 2003-01-28 Tuesday 11:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1152         * wmbiff/Imap4Client.c: bugfix to avoid problems with the new regex
1153           scheme and the default mailbox (aliasing sucks.)
1155 2003-01-28 Tuesday 11:12 UTC -- Neil Spring <nspring@cs.washington.edu>
1157         * wmbiff/charutil.h: remove gnuregex.h incl
1159 2003-01-28 Tuesday 11:12 UTC -- Neil Spring <nspring@cs.washington.edu>
1161         * wmbiff/wmbiff.c: newline after error message
1163 2003-01-25 Saturday 04:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1165         * autogen.sh: remove dangling symlinks config.guess, config.sub
1167 2003-01-25 Saturday 04:33 UTC -- Neil Spring <nspring@cs.washington.edu>
1169         * wmgeneral/list.c: compiler warning appeasement (shadowing index)
1171 2003-01-25 Saturday 04:32 UTC -- Neil Spring <nspring@cs.washington.edu>
1173         * wmbiff/Makefile.am: use the non gnu-make form of the
1174           indent-a-c-file rule
1176 2003-01-22 Wednesday 01:56 UTC -- Neil Spring <nspring@cs.washington.edu>
1178         * autogen.sh: make sure ChangeLog exists locally.
1180 2003-01-21 Tuesday 08:56 UTC -- Neil Spring <nspring@cs.washington.edu>
1182         * wmbiff/tlsComm.c: fix some minor damage when select is
1183           interrupted (EINTR)
1185 2003-01-21 Tuesday 05:55 UTC -- Neil Spring <nspring@cs.washington.edu>
1187         * autogen.sh: warn if autoconf/libgnutls.m4 does not exist
1189 2003-01-20 Monday 19:52 UTC -- Neil Spring <nspring@cs.washington.edu>
1191         * wmbiff/Makefile.am: add libgcrypt libraries if used to
1192           test_wmbiff
1194 2003-01-20 Monday 19:52 UTC -- Neil Spring <nspring@cs.washington.edu>
1196         * configure.ac: remove possibly unneeded check for gdbm
1198 2003-01-19 Sunday 13:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1200         * wmbiff/: Client.h, Imap4Client.c, Makefile.am, Pop3Client.c,
1201           ShellClient.c, charutil.c, charutil.h, passwordMgr.c,
1202           test_wmbiff.c, tlsComm.c, wmbiff.c: general portability fixes,
1203           including HAVE___ATTRIBUTE__
1205 2003-01-19 Sunday 13:12 UTC -- Neil Spring <nspring@cs.washington.edu>
1207         * wmbiff/: regulo.c, regulo.h: posix based regular expression
1208           handling with a not so lame interface
1210 2003-01-19 Sunday 13:11 UTC -- Neil Spring <nspring@cs.washington.edu>
1212         * configure.ac: portability fixes: HAVE___ATTRIBUTE__ (maybe),
1213           libnsl (solaris), -no-cpp-precomp (os x)
1215 2003-01-04 Saturday 03:39 UTC -- Neil Spring <nspring@cs.washington.edu>
1217         * configure.ac, wmbiff/wmbiff.c: 0.4.12, release to fix bad
1218           -geometry handling
1220 2003-01-03 Friday 20:37 UTC -- Neil Spring <nspring@cs.washington.edu>
1222         * wmbiff/wmbiff.c: fix geometry argument handling bug (Debian
1223           #175220)
1225 2002-12-29 Sunday 07:46 UTC -- Neil Spring <nspring@cs.washington.edu>
1227         * scripts/security.debian.rb: I meant to say 6 hours
1229 2002-12-29 Sunday 05:42 UTC -- Neil Spring <nspring@cs.washington.edu>
1231         * wmbiff/sample.wmbiffrc: shell recipe for security.debian.rb
1233 2002-12-29 Sunday 05:28 UTC -- Neil Spring <nspring@cs.washington.edu>
1235         * scripts/security.debian.rb: didn't mean to commit with a 6 minute
1236           refresh interval
1238 2002-12-29 Sunday 04:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1240         * Makefile.am, check-includes.rb, configure.ac: add scripts
1241           subdirectory to build system
1243 2002-12-29 Sunday 04:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1245         * scripts/: Makefile.am, security.debian.rb: new scripts directory
1246           to hold debian security checker and install it.
1248 2002-12-29 Sunday 03:25 UTC -- Neil Spring <nspring@cs.washington.edu>
1250         * wmbiff/wmbiff.c: general cleanup - use strdup_ordie,
1251           malloc_ordie.  reduce using ints and chars interchangeably.
1252           static annotations on module-local variables
1254 2002-12-29 Sunday 03:22 UTC -- Neil Spring <nspring@cs.washington.edu>
1256         * wmbiff/tlsComm.c: bad_certificate called as if void, so change
1257           the signature
1259 2002-12-29 Sunday 03:22 UTC -- Neil Spring <nspring@cs.washington.edu>
1261         * configure.ac: autodetect whether to use poll()
1263 2002-12-29 Sunday 02:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1265         * wmgeneral/: Makefile.am, wmgeneral.c, wmgeneral.h: make
1266           AddMouseRegion take an unsigned int for the region index (which
1267           is an _index_ which means negative values need not apply)
1269 2002-12-29 Sunday 02:31 UTC -- Neil Spring <nspring@cs.washington.edu>
1271         * wmbiff/: charutil.c, charutil.h: change signature of *Trim to
1272           reflect that they can't fail (void instead of int); the return
1273           values are ignored in wmbiff
1275 2002-12-29 Sunday 01:36 UTC -- Neil Spring <nspring@cs.washington.edu>
1277         * wmbiff/wmbiff.c: reorder functions to avoid pre-declaration.
1278           should simplify reading the (now very long) code
1280 2002-12-29 Sunday 01:11 UTC -- Neil Spring <nspring@cs.washington.edu>
1282         * wmgeneral/: misc.c, misc.h: exec command can take a const char *
1284 2002-12-29 Sunday 01:05 UTC -- Neil Spring <nspring@cs.washington.edu>
1286         * wmbiff/sample.wmbiffrc: another askpass recipe
1288 2002-12-29 Sunday 00:57 UTC -- Neil Spring <nspring@cs.washington.edu>
1290         * wmbiff/wmbiff.c: cleanup unused variables
1292 2002-12-29 Sunday 00:57 UTC -- Neil Spring <nspring@cs.washington.edu>
1294         * wmbiff/Makefile.am: surgical indent rule
1296 2002-12-29 Sunday 00:37 UTC -- Neil Spring <nspring@cs.washington.edu>
1298         * configure.ac, wmbiff/wmbiff.c: use automake/autoconf defined
1299           PACKAGE_VERSION and PACKAGE_BUGREPORT
1301 2002-12-29 Sunday 00:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1303         * wmbiff/passwordMgr.c: support arbitrarily long password query
1304           commands
1306 2002-12-29 Sunday 00:14 UTC -- Neil Spring <nspring@cs.washington.edu>
1308         * wmbiff/wmbiff.c: configuration file parsing cleanup, support
1309           longer configuration options, remove some ad-hockery in favor of
1310           sscanf
1312 2002-12-13 Friday 05:38 UTC -- Neil Spring <nspring@cs.washington.edu>
1314         * configure.ac, wmbiff/tlsComm.c, wmbiff/wmbiff.1, wmbiff/wmbiff.c:
1315           0.4.10, -skip-certificate-check option
1317 2002-12-09 Monday 21:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1319         * AUTHORS, wmbiff/sample.wmbiffrc, wmbiff/wmbiff.c,
1320           wmbiff/wmbiffrc.5.in: Peter McAlpine's globalnotify patch
1322 2002-12-09 Monday 21:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1324         * wmbiff/Imap4Client.c: minor change to timeout behavior, just
1325           delay a while before next check
1327 2002-12-02 Monday 07:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1329         * configure.ac: require gnutls 0.5.9, release 0.4.9
1331 2002-11-30 Saturday 07:58 UTC -- Neil Spring <nspring@cs.washington.edu>
1333         * wmbiff/Imap4Client.c: more robust ETIMEDOUT handling -- just
1334           chill out for a few minues rather than blacklist as a compromise
1335           between the responsiveness of not retrying unresponsive servers
1336           and the robustness of prodding on.  the right thing is probably a
1337           non-blocking connect, but that's  messy
1339 2002-11-15 Friday 08:06 UTC -- Neil Spring <nspring@cs.washington.edu>
1341         * wmbiff/tlsComm.c: should really be able to catch these problems
1342           earler - without gnutls, the build would fail
1344 2002-11-15 Friday 08:05 UTC -- Neil Spring <nspring@cs.washington.edu>
1346         * autogen.sh: red hat hackery
1348 2002-11-13 Wednesday 06:44 UTC -- Neil Spring <nspring@cs.washington.edu>
1350         * wmbiff/wmbiff.1, wmbiff/wmbiff.c, wmgeneral/wmgeneral.c,
1351           wmgeneral/wmgeneral.h: a method for not using the withdrawn state
1353 2002-11-12 Tuesday 08:27 UTC -- Neil Spring <nspring@cs.washington.edu>
1355         * Makefile.am, configure.ac, wmbiff/wmbiff.c, wmbiff/wmbiffrc.5.in,
1356           wmgeneral/wmgeneral.c, wmgeneral/wmgeneral.h: Allow automatic
1357           sizing of the wmbiff window, effective for other window managers.
1359 2002-10-26 Saturday 23:17 UTC -- Jordi Mallach <jordi@sindominio.net>
1361         * FromCVS.sh, autogen.sh: Rename FromCVS.sh to autogen.sh, which is
1362           the "common" name for such script.
1364 2002-10-26 Saturday 23:15 UTC -- Jordi Mallach <jordi@sindominio.net>
1366         * ChangeLog, Makefile.am, maint/changelog-header,
1367           maint/prerelease.sh: Stop doing the ChangeLog header hack.
1368           Instead, remove ChangeLog entirely from CVS and get it generated
1369           correctly on dist. Remove unneeded maint scripts.
1371 2002-10-26 Saturday 23:12 UTC -- Jordi Mallach <jordi@sindominio.net>
1373         * FromCVS.sh: Add automake-1.7 support.
1375 2002-10-20 Sunday 21:58 UTC -- Jordi Mallach <jordi@sindominio.net>
1377         * wmbiff/: wmbiff.1, wmbiffrc.5.in: do not specify Debian
1378           GNU/Linux... I'm actually more interested in the Hurd right now
1379           :)
1381 2002-10-14 Monday 05:52 UTC -- Neil Spring <nspring@cs.washington.edu>
1383         * wmbiff/maildirClient.c: use mkstemp instead of mktemp to appease
1384           the compiler
1386 2002-10-14 Monday 01:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1388         * wmbiff/wmbiffrc.5.in: add the 'this file automatically generated'
1389           tag
1391 2002-10-13 Sunday 21:28 UTC -- Neil Spring <nspring@cs.washington.edu>
1393         * wmbiff/: Imap4Client.c, tlsComm.c, tlsComm.h: Check certificate
1394           hostname, using gnutls's new function
1396 2002-10-13 Sunday 21:27 UTC -- Neil Spring <nspring@cs.washington.edu>
1398         * wmbiff/Client.h: a formatting glitch
1400 2002-10-13 Sunday 21:27 UTC -- Neil Spring <nspring@cs.washington.edu>
1402         * FromCVS.sh, Makefile.am: use autoreconf instead of the ad-hockery
1404 2002-09-25 Wednesday 06:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1406         * FAQ: why doesn't wmbiff update my mailbox count when I read a
1407           message
1409 2002-09-20 Friday 19:50 UTC -- Neil Spring <nspring@cs.washington.edu>
1411         * FromCVS.sh: support redhat autoconf sadness
1413 2002-09-19 Thursday 07:00 UTC -- Neil Spring <nspring@cs.washington.edu>
1415         * wmbiff/test_wmbiff.c: allow test to run when nnot linked with
1416           gnutls
1418 2002-09-18 Wednesday 23:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1420         * wmbiff/maildirClient.c: compiler warning fixes
1422 2002-09-18 Wednesday 23:43 UTC -- Neil Spring <nspring@cs.washington.edu>
1424         * ChangeLog, configure.ac, wmbiff/Client.h, wmbiff/Imap4Client.c,
1425           wmbiff/Makefile.am, wmbiff/maildirClient.c, wmbiff/test_wmbiff.c,
1426           wmbiff/wmbiffrc.5.in: bugfix to allow imap mailbox filenames to
1427           contain spaces, test that it works; also, prepare 0.4.8
1429 2002-09-14 Saturday 18:51 UTC -- Dwayne C. Litzenberger <dlitz@dlitz.net>
1431         * wmbiff/: Client.h, maildirClient.c, wmbiffrc.5.in: *
1432           maildirClient: Added support for quick checking of writable
1433           network-mounted   maildirs where directory caching normally
1434           causes unwanted delays.
1436 2002-08-16 Friday 07:55 UTC -- Neil Spring <nspring@cs.washington.edu>
1438         * ChangeLog, configure.ac, autoconf/libgnutls.m4,
1439           wmbiff/Imap4Client.c, wmbiff/gnutls-common.c,
1440           wmbiff/gnutls-common.h, wmbiff/tlsComm.c: handle new
1441           gnutls/gnutls.h convention, release 0.4.7
1443 2002-08-06 Tuesday 08:05 UTC -- Neil Spring <nspring@cs.washington.edu>
1445         * FromCVS.sh: seek out and use athe underrated automake 1.6.
1447 2002-07-27 Saturday 17:50 UTC -- Neil Spring <nspring@cs.washington.edu>
1449         * wmbiff/: Imap4Client.c, tlsComm.c: trivial formatting fixes
1451 2002-07-19 Friday 18:51 UTC -- Neil Spring <nspring@cs.washington.edu>
1453         * ChangeLog, configure.ac: release version 0.4.6
1455 2002-07-18 Thursday 02:55 UTC -- Neil Spring <nspring@cs.washington.edu>
1457         * wmbiff/wmbiff.c: ignore sigpipe, possible bugfix for abnormal
1458           termination during suspend for imap/gnutls
1460 2002-07-04 Thursday 08:00 UTC -- Neil Spring <nspring@cs.washington.edu>
1462         * ChangeLog, configure.ac: last minute changes for 0.4.5
1464 2002-07-04 Thursday 01:07 UTC -- Neil Spring <nspring@cs.washington.edu>
1466         * wmbiff/: Imap4Client.c, Makefile.am, Pop3Client.c, charutil.c,
1467           tlsComm.c, wmbiff.c: valgrind debugging, and support for -exit.
1468           some bugs were probably fixed, but since nobody has noticed yet,
1469           I don't know if they mattered
1471 2002-07-04 Thursday 00:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1473         * wmgeneral/wmgeneral.c: reminder in where valgrind complains
1475 2002-07-04 Thursday 00:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1477         * Makefile.am: add a top-level 'indent' rule
1479 2002-07-03 Wednesday 02:28 UTC -- Neil Spring <nspring@cs.washington.edu>
1481         * wmbiff/tlsComm.c: doubled the timeout to 40 seconds.
1483 2002-06-26 Wednesday 19:04 UTC -- Neil Spring <nspring@cs.washington.edu>
1485         * ChangeLog, Makefile.am, autoconf/Makefile.am: die configure.in!
1486           die acconfig.h!
1488 2002-06-26 Wednesday 18:56 UTC -- Neil Spring <nspring@cs.washington.edu>
1490         * ChangeLog, FromCVS.sh, Makefile.am, configure.ac, configure.in,
1491           autoconf/acconfig.h: migrate to newer autoconf (2.5) to try to
1492           debug making-from-scratch problem and get rid of acconfig.h cruft
1494 2002-06-25 Tuesday 23:52 UTC -- Neil Spring <nspring@cs.washington.edu>
1496         * Makefile.am: tiny automake 1.6 fix (doesn't appear to use
1497           stamp-h.  who knew.)
1499 2002-06-25 Tuesday 23:33 UTC -- Neil Spring <nspring@cs.washington.edu>
1501         * autoconf/libgnutls.m4: trivial upstream bugfix
1503 2002-06-25 Tuesday 23:29 UTC -- Neil Spring <nspring@cs.washington.edu>
1505         * wmbiff/Makefile.am: never underestimate the complexity of
1506           solutions involving automake
1508 2002-06-25 Tuesday 23:24 UTC -- Neil Spring <nspring@cs.washington.edu>
1510         * configure.in, wmbiff/Makefile.am: corrections to conditional
1511           compilation of gnutls-common for automake 1.5 (and thereby the
1512           true automake way)
1514 2002-06-25 Tuesday 23:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1516         * configure.in, wmbiff/Makefile.am: only compile gnutls-common.[ch]
1517           if gnutls is configured in (duh), and only check for gcrypt.h if
1518           libgcrypt is installed and current
1520 2002-06-24 Monday 07:18 UTC -- Neil Spring <nspring@cs.washington.edu>
1522         * ChangeLog, FromCVS.sh: roughly finished 0.4.4
1524 2002-06-24 Monday 07:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1526         * wmbiff/tlsComm.c: restore certificate checking
1528 2002-06-24 Monday 07:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1530         * wmbiff/: gnutls-common.c, gnutls-common.h: indent run
1532 2002-06-24 Monday 01:23 UTC -- Neil Spring <nspring@cs.washington.edu>
1534         * wmbiff/Makefile.am, configure.in: basic gnutls 0.4.3 support
1535           (that is, it compiles.)
1537 2002-06-24 Monday 01:18 UTC -- Neil Spring <nspring@cs.washington.edu>
1539         * wmbiff/: gnutls-common.c, gnutls-common.h, tlsComm.c: basic
1540           gnutls 0.4.3 support (that is, it compiles.)
1542 2002-06-23 Sunday 01:26 UTC -- Neil Spring <nspring@cs.washington.edu>
1544         * wmbiff/wmbiff.c: cleanup to periodic mail checking, removal of
1545           the first mail check - now all cases are the same
1547 2002-06-21 Friday 04:34 UTC -- Neil Spring <nspring@cs.washington.edu>
1549         * wmbiff/wmbiff.c: y_ and x_origin, and num_mailboxes constants,
1550           highlight color for fn, restructured mailbox creation routines
1552 2002-06-21 Friday 04:31 UTC -- Neil Spring <nspring@cs.washington.edu>
1554         * wmbiff/Pop3Client.c: splint
1556 2002-06-21 Friday 04:31 UTC -- Neil Spring <nspring@cs.washington.edu>
1558         * wmbiff/: LicqClient.c, ShellClient.c, charutil.c,
1559           maildirClient.c, mboxClient.c, passwordMgr.c, test_wmbiff.c:
1560           config.h
1562 2002-06-21 Friday 04:30 UTC -- Neil Spring <nspring@cs.washington.edu>
1564         * wmbiff/Imap4Client.c: clarity and splint
1566 2002-06-21 Friday 04:29 UTC -- Neil Spring <nspring@cs.washington.edu>
1568         * wmbiff/Client.h: splint support
1570 2002-06-21 Friday 04:29 UTC -- Neil Spring <nspring@cs.washington.edu>
1572         * wmbiff/wmbiff.1: highlight color
1574 2002-06-21 Friday 04:28 UTC -- Neil Spring <nspring@cs.washington.edu>
1576         * wmbiff/Makefile.am: verify that config.h is included in each .c
1577           file
1579 2002-06-15 Saturday 09:05 UTC -- Neil Spring <nspring@cs.washington.edu>
1581         * configure.in: likely bugfix for newer autoconf?
1583 2002-06-15 Saturday 09:04 UTC -- Neil Spring <nspring@cs.washington.edu>
1585         * Makefile.am: keep automake1.6 happy
1587 2002-06-08 Saturday 22:22 UTC -- Neil Spring <nspring@cs.washington.edu>
1589         * ChangeLog, configure.in: release 0.4.3 final updates
1591 2002-06-08 Saturday 22:20 UTC -- Neil Spring <nspring@cs.washington.edu>
1593         * wmbiff/wmbiff.c: make the background black when using fonts
1595 2002-06-08 Saturday 22:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1597         * wmgeneral/: wmgeneral.c, wmgeneral.h: font support, ability to
1598           erase rectangles
1600 2002-06-08 Saturday 22:14 UTC -- Neil Spring <nspring@cs.washington.edu>
1602         * wmbiff/Client.h: slightly changed debug messages; exists() is
1603           more a test -f than a test -e
1605 2002-06-08 Saturday 22:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1607         * wmbiff/wmbiff.1: documentation of -fg and -font options
1609 2002-06-08 Saturday 22:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1611         * wmbiff/: Imap4Client.c, ShellClient.c: cleanup for splint
1612           annotations
1614 2002-06-08 Saturday 22:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1616         * wmbiff/wmbiff.c: basic font support, color selection, cleanup to
1617           default configuration code, bugifx and cleanup to mouse region
1618           code
1620 2002-06-08 Saturday 21:40 UTC -- Neil Spring <nspring@cs.washington.edu>
1622         * wmbiff/socket.c: need config.h to get IPv6 support
1624 2002-06-01 Saturday 18:10 UTC -- Neil Spring <nspring@cs.washington.edu>
1626         * ChangeLog: 0.4.2
1628 2002-06-01 Saturday 17:58 UTC -- Neil Spring <nspring@cs.washington.edu>
1630         * configure.in, wmbiff/wmbiff.c: oops, didn't really want to
1631           release with the crazy font stuff quite yet
1633 2002-06-01 Saturday 07:03 UTC -- Neil Spring <nspring@cs.washington.edu>
1635         * ChangeLog, configure.in, wmbiff/test-wmbiffrc.shell: release
1636           0.4.1
1638 2002-06-01 Saturday 07:01 UTC -- Neil Spring <nspring@cs.washington.edu>
1640         * AUTHORS: release preparation
1642 2002-06-01 Saturday 06:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1644         * wmgeneral/wmgeneral.h: prototypes for basic font support
1646 2002-06-01 Saturday 06:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1648         * wmgeneral/wmgeneral.c: indent run
1650 2002-06-01 Saturday 06:02 UTC -- Neil Spring <nspring@cs.washington.edu>
1652         * wmbiff/: Client.h, ShellClient.c, charutil.c, mboxClient.c:
1653           indent run
1655 2002-06-01 Saturday 06:01 UTC -- Neil Spring <nspring@cs.washington.edu>
1657         * wmbiff/wmbiff.c: font support, disabled by default
1659 2002-06-01 Saturday 06:00 UTC -- Neil Spring <nspring@cs.washington.edu>
1661         * wmbiff/tlsComm.c: a start at certificate checking (a daunting
1662           task at the moment)
1664 2002-06-01 Saturday 05:59 UTC -- Neil Spring <nspring@cs.washington.edu>
1666         * wmbiff/Client.h: declare exists()
1668 2002-06-01 Saturday 05:51 UTC -- Neil Spring <nspring@cs.washington.edu>
1670         * wmgeneral/wmgeneral.c: some basic font support, renaming some
1671           variables for clarity
1673 2002-06-01 Saturday 05:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1675         * wmbiff/socket.c: correct date
1677 2002-06-01 Saturday 05:42 UTC -- Neil Spring <nspring@cs.washington.edu>
1679         * configure.in, wmbiff/socket.c: IPv6 support using getaddrinfo
1680           from Jun-ichiro itojun Hagino <itojun@iijlab.net>
1682 2002-05-03 Friday 05:51 UTC -- Neil Spring <nspring@cs.washington.edu>
1684         * ChangeLog, configure.in: Release 0.4.0
1686 2002-05-03 Friday 05:51 UTC -- Neil Spring <nspring@cs.washington.edu>
1688         * Makefile.am: don't list TODO changes in ChangeLog, to avoid
1689           confusion
1691 2002-05-03 Friday 05:43 UTC -- Neil Spring <nspring@cs.washington.edu>
1693         * wmbiff/mboxClient.c: type casting hackery to help architectures I
1694           don't have
1696 2002-05-03 Friday 05:42 UTC -- Neil Spring <nspring@cs.washington.edu>
1698         * wmbiff/: sample.wmbiffrc, wmbiffrc.5.in: lpq example creep
1700 2002-05-03 Friday 05:42 UTC -- Neil Spring <nspring@cs.washington.edu>
1702         * wmbiff/ShellClient.c: bugfix when alternates between numeric and
1703           text
1705 2002-04-29 Monday 02:01 UTC -- Neil Spring <nspring@cs.washington.edu>
1707         * wmbiff/: Client.h, ShellClient.c, charutil.c, charutil.h: lclint
1708           cleanups - strdup_ordie, some null annotations
1710 2002-04-27 Saturday 08:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1712         * wmbiff/: Client.h, ShellClient.c, passwordMgr.c: cleanup to use
1713           grabCommandOutput in passwordMgr instead of duplicating the
1714           popen/fgets/pclose code
1716 2002-04-27 Saturday 08:29 UTC -- Neil Spring <nspring@cs.washington.edu>
1718         * wmbiff/: Client.h, Makefile.am, charutil.c, passwordMgr.c,
1719           passwordMgr.h, test_wmbiff.c: move passwordMgr testing to
1720           test_wmbiff.c; catch a small bug in handling empty passwords
1722 2002-04-27 Saturday 08:29 UTC -- Neil Spring <nspring@cs.washington.edu>
1724         * FromCVS.sh: apparently aclocal barfs when macros are defined both
1725           in the system directory and in a local copy.  semper fragile.
1727 2002-04-25 Thursday 20:28 UTC -- Neil Spring <nspring@cs.washington.edu>
1729         * README: add a note about gnutls version 0.3.5
1731 2002-04-25 Thursday 18:33 UTC -- Neil Spring <nspring@cs.washington.edu>
1733         * configure.in: hack attempt at supporting gnutls built locally
1735 2002-04-25 Thursday 17:31 UTC -- Neil Spring <nspring@cs.washington.edu>
1737         * ChangeLog, FromCVS.sh, autoconf/libgcrypt.m4,
1738           autoconf/libgnutls.m4: add m4 macros for libgcrypt and libgnutls
1739           to the repository, so that FromCVS can be run to regenerate
1740           configure.in, even on systems without gnutls.
1742 2002-04-20 Saturday 09:55 UTC -- Neil Spring <nspring@cs.washington.edu>
1744         * wmbiff/Makefile.am: correct a problem uncovered by sourceforge's
1745           compile farm
1747 2002-04-20 Saturday 09:27 UTC -- Neil Spring <nspring@cs.washington.edu>
1749         * wmbiff/ShellClient.c: BSD fix (no strndup, no sighandler_t)
1751 2002-04-20 Saturday 09:12 UTC -- Neil Spring <nspring@cs.washington.edu>
1753         * wmbiff/: LicqClient.c, mboxClient.c: move msgs=-1 assignment on
1754           failure to the common openMailbox()
1756 2002-04-20 Saturday 08:53 UTC -- Neil Spring <nspring@cs.washington.edu>
1758         * ChangeLog, configure.in, wmbiff/Client.h: update meta-information
1759           for prerelease 5
1761 2002-04-20 Saturday 08:51 UTC -- Neil Spring <nspring@cs.washington.edu>
1763         * wmbiff/Makefile.am: correct syntax for making a test program
1765 2002-04-20 Saturday 08:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1767         * wmbiff/sample.wmbiffrc: finish deprecating
1769 2002-04-20 Saturday 08:12 UTC -- Neil Spring <nspring@cs.washington.edu>
1771         * wmbiff/: sample.wmbiffrc, wmbiffrc.5.in: document back-tick
1772           expansion, deprecate mbox style without mbox: prefix
1774 2002-04-20 Saturday 07:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1776         * wmbiff/: Client.h, LicqClient.c, ShellClient.c, mboxClient.c:
1777           oops (indent)
1779 2002-04-20 Saturday 07:53 UTC -- Neil Spring <nspring@cs.washington.edu>
1781         * wmbiff/: LicqClient.c, mboxClient.c: refactor mailbox stat()'ting
1782           to reduce duplicated code and supprort backticks.
1784 2002-04-20 Saturday 07:52 UTC -- Neil Spring <nspring@cs.washington.edu>
1786         * wmbiff/ShellClient.c: refactor command execution code to support
1787           backtick foo expansion
1789 2002-04-20 Saturday 07:50 UTC -- Neil Spring <nspring@cs.washington.edu>
1791         * wmbiff/: Makefile.am, test_wmbiff.c: add tests for bbacktick
1792           expansion
1794 2002-04-20 Saturday 07:49 UTC -- Neil Spring <nspring@cs.washington.edu>
1796         * wmbiff/Client.h: ctime has become useless; new prototypes to
1797           handle backtick
1799 2002-04-16 Tuesday 07:37 UTC -- Neil Spring <nspring@cs.washington.edu>
1801         * ChangeLog, wmbiff/Client.h, wmbiff/Imap4Client.c,
1802           wmbiff/LicqClient.c, wmbiff/Pop3Client.c, wmbiff/mboxClient.c,
1803           wmbiff/passwordMgr.c, wmbiff/wmbiff.c: remove vestigial
1804           pc->open()
1806 2002-04-16 Tuesday 07:08 UTC -- Neil Spring <nspring@cs.washington.edu>
1808         * wmbiff/test-make.sh: unnecessary now that autoconf is involved
1810 2002-04-15 Monday 22:58 UTC -- Neil Spring <nspring@cs.washington.edu>
1812         * Makefile.am: dist the FAQ
1814 2002-04-15 Monday 21:19 UTC -- Neil Spring <nspring@cs.washington.edu>
1816         * wmgeneral/: Makefile.am, list.c, list.h, misc.c, misc.h,
1817           wmgeneral.c, wmgeneral.h: run make indent; also tolerate standard
1818           geometry string (dumping the dimensions provided)
1820 2002-04-15 Monday 21:06 UTC -- Neil Spring <nspring@cs.washington.edu>
1822         * wmbiff/wmbiff.c: bugfix to sigchld_handler (argh)
1824 2002-04-15 Monday 08:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1826         * ChangeLog, Makefile.am, configure.in, wmbiff/Makefile.am,
1827           autoconf/Makefile.am: try to make the distcheck target work
1828           correctly.  voodoo.
1830 2002-04-15 Monday 08:14 UTC -- Neil Spring <nspring@cs.washington.edu>
1832         * FAQ: a little documentation
1834 2002-04-15 Monday 02:21 UTC -- Neil Spring <nspring@cs.washington.edu>
1836         * wmbiff/wmbiff.c: treat  all gicu messages as new (they're unread)
1838 2002-04-15 Monday 02:10 UTC -- Neil Spring <nspring@cs.washington.edu>
1840         * configure.in: chmod 0444 wmbiffrc.5 to remind me not to try to
1841           edit it.
1843 2002-04-15 Monday 02:09 UTC -- Neil Spring <nspring@cs.washington.edu>
1845         * wmbiff/wmbiffrc.5.in: document finger, changes to shell
1847 2002-04-15 Monday 01:58 UTC -- Neil Spring <nspring@cs.washington.edu>
1849         * wmbiff/: ShellClient.c, wmbiff.c: waitpid until done
1851 2002-04-15 Monday 01:48 UTC -- Neil Spring <nspring@cs.washington.edu>
1853         * configure.in: slightly nicer message
1855 2002-04-15 Monday 01:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1857         * ChangeLog, configure.in, wmbiff/wmbiff-master-contrast.xpm:
1858           0.4.0pre4 - finger support, text from shell support, minor code
1859           reorganization
1861 2002-04-15 Monday 01:38 UTC -- Neil Spring <nspring@cs.washington.edu>
1863         * AUTHORS, README: add Andelko Horvat to the list of contributors,
1864           remove author list from README
1866 2002-04-15 Monday 01:30 UTC -- Neil Spring <nspring@cs.washington.edu>
1868         * wmbiff/test-wmbiffrc.shell: test finger as well
1870 2002-04-15 Monday 01:30 UTC -- Neil Spring <nspring@cs.washington.edu>
1872         * wmbiff/Client.h: TextStatus to hold a three-character status
1873           message
1875 2002-04-15 Monday 01:30 UTC -- Neil Spring <nspring@cs.washington.edu>
1877         * wmbiff/wmbiff.c: support TextString as status; factor
1878           blitMsgCounters as displayMsgCounters was starting to get ugly,
1879           add finger recipe to use ShellClient instead of a separate module
1881 2002-04-15 Monday 01:26 UTC -- Neil Spring <nspring@cs.washington.edu>
1883         * wmbiff/passwordMgr.c: use chomp to remove the newline from
1884           ssh-askpass output
1886 2002-04-15 Monday 01:26 UTC -- Neil Spring <nspring@cs.washington.edu>
1888         * wmbiff/: charutil.c, charutil.h: duplicate perl's chomp()
1890 2002-04-15 Monday 01:26 UTC -- Neil Spring <nspring@cs.washington.edu>
1892         * wmbiff/ShellClient.c: return sigchld to default hander before
1893           using popen; handle text input. Much complexity, I hope it's
1894           worth it.
1896 2002-04-15 Monday 01:25 UTC -- Neil Spring <nspring@cs.washington.edu>
1898         * wmbiff/wmbiff-master-led.xpm: support yellow text
1900 2002-04-15 Monday 01:24 UTC -- Neil Spring <nspring@cs.washington.edu>
1902         * wmbiff/Makefile.am: derive wmbiff-master-contrast.xpm from
1903           wmbiff-master-led.xpm
1905 2002-04-12 Friday 05:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1907         * wmbiff/socket.c: extra debugging messages, to be in-line with our
1908           -debug to stdout philosophy
1910 2002-04-11 Thursday 21:39 UTC -- Jordi Mallach <jordi@sindominio.net>
1912         * autoconf/: install-sh, missing, mkinstalldirs: Shouldn't be in
1913           CVS...
1915 2002-04-11 Thursday 18:24 UTC -- Neil Spring <nspring@cs.washington.edu>
1917         * configure.in: attempt to fix Jordi's configure bug
1919 2002-04-11 Thursday 07:24 UTC -- Neil Spring <nspring@cs.washington.edu>
1921         * wmbiff/Pop3Client.c: APOP bugfix (unreleased bug)
1923 2002-04-09 Tuesday 07:52 UTC -- Neil Spring <nspring@cs.washington.edu>
1925         * ChangeLog, configure.in: bump version to 0.4.0pre3 - permissions
1926           checking for .wmbiffrc added.
1928 2002-04-09 Tuesday 07:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1930         * Makefile.am: try to tell the difference between running make dist
1931           with cvs and missing cvs2cl (an error), and running make dist
1932           without cvs (which should be ok).
1934 2002-04-09 Tuesday 07:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1936         * wmbiff/: LicqClient.c, maildirClient.c, mboxClient.c: some
1937           explicit casts to make compiling on non-linux a bit more
1938           warning-free
1940 2002-04-09 Tuesday 07:44 UTC -- Neil Spring <nspring@cs.washington.edu>
1942         * wmbiff/wmbiff.c: permissions checking for .wmbiffrc (if it
1943           exists), some minor cleanup associated with this.
1945 2002-04-09 Tuesday 07:43 UTC -- Neil Spring <nspring@cs.washington.edu>
1947         * wmbiff/Makefile.am: _DATA files don't get distributed, add the
1948           skins into extra_dist. automake can be confusing
1950 2002-04-08 Monday 09:35 UTC -- Neil Spring <nspring@cs.washington.edu>
1952         * configure.in, wmbiff/wmbiffrc.5, wmbiff/wmbiffrc.5.in:
1953           automatically generate wmbiffrc.5 based on the results of
1954           configure, so that the configure-time chosen defaults are
1955           accurately shown
1957 2002-04-07 Sunday 19:30 UTC -- Neil Spring <nspring@cs.washington.edu>
1959         * configure.in: don't try to configure gnutls if libz or libgdbm
1960           aren't installed
1962 2002-04-07 Sunday 19:30 UTC -- Neil Spring <nspring@cs.washington.edu>
1964         * FromCVS.sh: allow for automake 1.5's need for depcomp
1966 2002-04-07 Sunday 05:08 UTC -- Neil Spring <nspring@cs.washington.edu>
1968         * COPYING, ChangeLog, FromCVS.sh, INSTALL, Makefile.am,
1969           configure.in, autoconf/acconfig.h, autoconf/install-sh,
1970           autoconf/missing, autoconf/mkinstalldirs, maint/changelog-header,
1971           wmbiff/Client.h, wmbiff/Imap4Client.c, wmbiff/LicqClient.c,
1972           wmbiff/Makefile, wmbiff/Makefile.am, wmbiff/Pop3Client.c,
1973           wmbiff/charutil.h, wmbiff/maildirClient.c, wmbiff/mboxClient.c,
1974           wmbiff/tlsComm.c, wmbiff/wmbiff.c, wmgeneral/Makefile.am,
1975           wmgeneral/wmgeneral.c: use automake / autoconf; after checkout
1976           run ./FromCVS.sh
1978 2002-04-07 Sunday 03:23 UTC -- Neil Spring <nspring@cs.washington.edu>
1980         * AUTHORS: automake required file, duplicated from README
1982 2002-04-05 Friday 19:44 UTC -- Neil Spring <nspring@cs.washington.edu>
1984         * wmbiff/wmbiff-master-contrast.xpm: a first cut higher-contrast
1985           skin
1987 2002-04-05 Friday 19:43 UTC -- Neil Spring <nspring@cs.washington.edu>
1989         * wmbiff/: Makefile, sample.wmbiffrc, test-make.sh, wmbiff.c:
1990           askpass - invoke ssh-askpass to fill in passwords for IMAP
1991           servers; skin - dynamically load an .xpm background
1993 2002-04-05 Friday 19:42 UTC -- Neil Spring <nspring@cs.washington.edu>
1995         * wmbiff/wmbiffrc.5: documentation of askpass and skin
1997 2002-04-05 Friday 19:08 UTC -- Neil Spring <nspring@cs.washington.edu>
1999         * wmbiff/tlsComm.c: explicit handling of timeouts
2001 2002-04-05 Friday 19:02 UTC -- Neil Spring <nspring@cs.washington.edu>
2003         * wmbiff/passwordMgr.c: askpass having a space in it is an INFO,
2004           not an ERR.
2006 2002-04-04 Thursday 08:51 UTC -- Neil Spring <nspring@cs.washington.edu>
2008         * wmbiff/: Client.h, Imap4Client.c, Makefile, Pop3Client.c,
2009           passwordMgr.c, passwordMgr.h, sample.wmbiffrc, test-make.sh:
2010           interactive password prompting support for imap - leave password
2011           in the : format blank to use
2013 2002-03-26 Tuesday 16:30 UTC -- Jordi Mallach <jordi@sindominio.net>
2015         * ChangeLog, wmbiff/Makefile: Released WMBiff 0.3.8.
2017 2002-03-18 Monday 09:47 UTC -- Neil Spring <nspring@cs.washington.edu>
2019         * wmgeneral/wmgeneral.h: un-shadow index
2021 2002-03-18 Monday 09:46 UTC -- Neil Spring <nspring@cs.washington.edu>
2023         * wmgeneral/wmgeneral.c: un-shadow a global variable
2025 2002-03-14 Thursday 08:51 UTC -- Neil Spring <nspring@cs.washington.edu>
2027         * README: correct and expand upon crypto instructions
2029 2002-03-12 Tuesday 23:53 UTC -- Neil Spring <nspring@cs.washington.edu>
2031         * wmbiff/: Client.h, Imap4Client.c, Pop3Client.c, ShellClient.c,
2032           tlsComm.c: fixed misunderstanding of the use of ## in macros with
2033           strings - the compiler does the concatenation, not the
2034           preprocessor
2036 2002-03-11 Monday 00:11 UTC -- Neil Spring <nspring@cs.washington.edu>
2038         * wmbiff/tlsComm.c: slightly better message on expect failure
2040 2002-03-09 Saturday 08:50 UTC -- Neil Spring <nspring@cs.washington.edu>
2042         * wmbiff/ShellClient.c: debug messages cleanup; start handling
2043           pclose errors; remove open() function pointer assignment;
2044           #include fix
2046 2002-03-09 Saturday 08:03 UTC -- Neil Spring <nspring@cs.washington.edu>
2048         * wmgeneral/: list.h, wmgeneral.c: minor warning cleanups
2050 2002-03-08 Friday 19:26 UTC -- Neil Spring <nspring@cs.washington.edu>
2052         * README: credit Ben
2054 2002-03-07 Thursday 22:20 UTC -- Neil Spring <nspring@cs.washington.edu>
2056         * wmbiff/ShellClient.c: fix error return status (ben's 'lil' patch)
2058 2002-03-07 Thursday 07:04 UTC -- Neil Spring <nspring@cs.washington.edu>
2060         * wmbiff/ShellClient.c: appropriate credits
2062 2002-03-06 Wednesday 18:01 UTC -- Neil Spring <nspring@cs.washington.edu>
2064         * wmbiff/ShellClient.c: fix my sloppy mistake in shell path parsing
2066 2002-03-06 Wednesday 07:59 UTC -- Neil Spring <nspring@cs.washington.edu>
2068         * wmbiff/ShellClient.c: misplaced string.h
2070 2002-03-06 Wednesday 07:59 UTC -- Neil Spring <nspring@cs.washington.edu>
2072         * wmbiff/wmbiff.c: rename in Read_Config_File for more 'index'
2073           purging
2075 2002-03-06 Wednesday 07:44 UTC -- Neil Spring <nspring@cs.washington.edu>
2077         * wmbiff/ShellClient.c: fix a potential file descriptor leak
2079 2002-03-06 Wednesday 07:15 UTC -- Neil Spring <nspring@cs.washington.edu>
2081         * wmbiff/: Client.h, Makefile, ShellClient.c, mboxClient.c,
2082           sample.wmbiffrc, test-wmbiffrc.shell, wmbiff.1, wmbiff.c,
2083           wmbiffrc.5: Draft shell command and gnomeicu support from Benoît
2084           Rouits with minor modifications 1) implement gicu using the shell
2085           module rather than as a separate module, 2) edit Ben's shell
2086           format to have extra colons for extensibility, 3) add some extra
2087           error checking in the shell method.  I also added a test wmbiffrc
2088           that can be used to verify that the gicu and shell methods
2089           "work".
2091 2002-03-05 Tuesday 05:02 UTC -- Dwayne C. Litzenberger <dlitz@dlitz.net>
2093         * wmbiff/maildirClient.c: cosmetic changes
2095 2002-03-04 Monday 06:57 UTC -- Neil Spring <nspring@cs.washington.edu>
2097         * wmbiff/mboxClient.c: convert a lingering fprintf to DM
2099 2002-03-02 Saturday 23:25 UTC -- Neil Spring <nspring@cs.washington.edu>
2101         * wmbiff/: Imap4Client.c, Makefile, wmbiff.c: a little -Wshadow and
2102           -Wcast-qual cleanup (or, eliminate the use of 'index' as a
2103           variable name)
2105 2002-03-02 Saturday 22:38 UTC -- Neil Spring <nspring@cs.washington.edu>
2107         * wmbiff/Client.h: add preprocessor define to handle portability of
2108           __attribute__ tag to non-gcc compilers (untested)
2110 2002-03-02 Saturday 06:42 UTC -- Neil Spring <nspring@cs.washington.edu>
2112         * wmbiff/tlsComm.c: indent run (oops)
2114 2002-03-02 Saturday 06:41 UTC -- Neil Spring <nspring@cs.washington.edu>
2116         * wmbiff/: Pop3Client.c, Imap4Client.c: minor reorganization of
2117           gcrypt-needing authentication schemes
2119 2002-03-02 Saturday 06:39 UTC -- Neil Spring <nspring@cs.washington.edu>
2121         * wmbiff/tlsComm.c: attribute tags for warning cleanup w/o gnutls
2123 2002-03-02 Saturday 06:36 UTC -- Neil Spring <nspring@cs.washington.edu>
2125         * wmbiff/wmbiff.c: gcc attribute tags, minor debug message cleanup
2127 2002-03-02 Saturday 06:31 UTC -- Neil Spring <nspring@cs.washington.edu>
2129         * wmbiff/Makefile: rearrange which compiler warnings are implied by
2130           DEBUG
2132 2002-03-02 Saturday 05:58 UTC -- Neil Spring <nspring@cs.washington.edu>
2134         * wmbiff/Client.h: use off_t instead of size_t in Licq and Maildir
2135           for file sizes from stat()
2137 2002-03-02 Saturday 05:50 UTC -- Neil Spring <nspring@cs.washington.edu>
2139         * wmbiff/tlsComm.c: bugfix to support compilation without crypto
2141 2002-03-01 Friday 11:58 UTC -- Jordi Mallach <jordi@sindominio.net>
2143         * wmbiff/wmbiff.c: Added -debug to help text.  Removed Gennady's
2144           mail address and added our devel list.
2146 2002-03-01 Friday 11:28 UTC -- Jordi Mallach <jordi@sindominio.net>
2148         * wmbiff/Makefile: Fixed install rule in Makefile.
2150 2002-03-01 Friday 08:41 UTC -- Neil Spring <nspring@cs.washington.edu>
2152         * wmbiff/: Client.h, Imap4Client.c, LicqClient.c, Makefile,
2153           Pop3Client.c, maildirClient.c, mboxClient.c, tlsComm.c,
2154           tlsComm.h, wmbiff.1, wmbiff.c, wmbiffrc.5: Replaced DEBUG_x
2155           preprocessor defines with a -debug option and debug configuration
2156           keyword.  Replaced most debugging messages with a DM (debug
2157           message) macro.  Removed gnutls version 0.2.x support.  Added
2158           troubleshooting section to man page.
2160 2002-02-03 Sunday 22:48 UTC -- Jordi Mallach <jordi@sindominio.net>
2162         * ChangeLog: Released WMBiff 0.3.7.
2164 2002-02-03 Sunday 22:43 UTC -- Jordi Mallach <jordi@sindominio.net>
2166         * wmbiff/Makefile: Bumped WMBIFF_VERSION to 0.3.7.
2168 2002-02-02 Saturday 18:04 UTC -- Jordi Mallach <jordi@sindominio.net>
2170         * wmbiff/: Client.h, Imap4Client.c, Makefile, Pop3Client.c,
2171           charutil.h: Makefile fixes from Simon L. Nielsen, which help
2172           building wmbiff in FreeBSD.  Fixed the previous IMAP regex patch.
2174 2002-01-27 Sunday 20:20 UTC -- Jordi Mallach <jordi@sindominio.net>
2176         * ChangeLog, maint/changelog.sed, maint/prerelease.sh: Some fixes
2177           for the maint scripts.
2179 2002-01-27 Sunday 19:59 UTC -- Jordi Mallach <jordi@sindominio.net>
2181         * ChangeLog: Released WMBiff 0.3.6.
2183 2002-01-27 Sunday 19:56 UTC -- Jordi Mallach <jordi@sindominio.net>
2185         * wmbiff/Imap4Client.c: Indent fixes.
2187 2002-01-27 Sunday 19:52 UTC -- Jordi Mallach <jordi@sindominio.net>
2189         * wmbiff/Makefile: Bump WMBIFF_VERSION to 0.3.6.
2191 2002-01-27 Sunday 12:46 UTC -- Jordi Mallach <jordi@sindominio.net>
2193         * README, wmbiff/Imap4Client.c, wmbiff/Makefile, wmbiff/wmbiffrc.5:
2194           Alternate regex for imap/imaps which allows "@" in passwords.
2195           Fix to correctly handle the auth list in imap.  Patch from David
2196           Smith <davidsmith@acm.org>.
2198 2002-01-14 Monday 01:51 UTC -- Jordi Mallach <jordi@sindominio.net>
2200         * ChangeLog: Released WMBiff 0.3.5.
2202 2002-01-14 Monday 01:50 UTC -- Jordi Mallach <jordi@sindominio.net>
2204         * wmbiff/Makefile: Bump WMBIFF_VERSION to 0.3.5.
2206 2002-01-12 Saturday 19:18 UTC -- Neil Spring <nspring@cs.washington.edu>
2208         * wmbiff/Imap4Client.c: quote patch from Nick Mitchell, ref debian
2209           #128863
2211 2002-01-12 Saturday 06:17 UTC -- Neil Spring <nspring@cs.washington.edu>
2213         * wmbiff/tlsComm.c: debugging for gnutls3
2215 2002-01-12 Saturday 05:50 UTC -- Neil Spring <nspring@cs.washington.edu>
2217         * wmbiff/Makefile: clarify what to do with gnutls version define
2219 2002-01-12 Saturday 05:30 UTC -- Neil Spring <nspring@cs.washington.edu>
2221         * wmbiff/: Makefile, charutil.c, tlsComm.c: update for the
2222           interface change in gnutls 0.3.0
2224 2001-11-23 Friday 15:57 UTC -- Jordi Mallach <jordi@sindominio.net>
2226         * ChangeLog: Released WMBiff 0.3.4.
2228 2001-11-23 Friday 15:55 UTC -- Jordi Mallach <jordi@sindominio.net>
2230         * wmbiff/Makefile: Bumped version to 0.3.4, and release.
2232 2001-11-23 Friday 15:53 UTC -- Jordi Mallach <jordi@sindominio.net>
2234         * ChangeLog, wmbiff/sample.wmbiffrc: Doc updates for 0.3.4.
2236 2001-11-16 Friday 07:11 UTC -- Neil Spring <nspring@cs.washington.edu>
2238         * wmbiff/: Imap4Client.c, Pop3Client.c, charutil.c: regexes limit
2239           password and username to 32 characters
2241 2001-11-16 Friday 06:08 UTC -- Neil Spring <nspring@cs.washington.edu>
2243         * wmgeneral/: wmgeneral.c, wmgeneral.h: -Wwrite-strings cleanliness
2245 2001-11-16 Friday 01:13 UTC -- Neil Spring <nspring@cs.washington.edu>
2247         * wmbiff/: Client.h, Imap4Client.c, Makefile, Pop3Client.c,
2248           charutil.c: rewrite of authentication code to a) allow users to
2249           specify authentication type, b) fall back to other authentication
2250           methods when hash-based authentication fails (because not
2251           everybody uses the cleartext password file) c) fix debug messages
2253 2001-11-16 Friday 00:40 UTC -- Neil Spring <nspring@cs.washington.edu>
2255         * wmbiff/charutil.h: regex helpers common to pop3 and imap4 clients
2256           extracted and moved here
2258 2001-11-16 Friday 00:40 UTC -- Neil Spring <nspring@cs.washington.edu>
2260         * wmbiff/: tlsComm.c, tlsComm.h: blacklist and debugging updates
2261           for gnutls 0.2.10 and DM macro
2263 2001-11-16 Friday 00:39 UTC -- Neil Spring <nspring@cs.washington.edu>
2265         * wmbiff/wmbiffrc.5: authentication method list, reduced
2266           indentation to fit screen better
2268 2001-11-16 Friday 00:38 UTC -- Neil Spring <nspring@cs.washington.edu>
2270         * wmbiff/wmbiff-master-led.xpm: made pixmap const char
2272 2001-11-16 Friday 00:37 UTC -- Neil Spring <nspring@cs.washington.edu>
2274         * wmbiff/wmbiff.c: -Wwrite-strings cleanliness
2276 2001-11-02 Friday 08:53 UTC -- Neil Spring <nspring@cs.washington.edu>
2278         * wmbiff/: Imap4Client.c, wmbiff.c, wmbiffrc.5: Prefer "imaps"
2279           instead of "sslimap" (sslimap is still supported, but imaps is
2280           documented, and a better name).
2282 2001-11-02 Friday 08:48 UTC -- Neil Spring <nspring@cs.washington.edu>
2284         * wmbiff/tlsComm.c: Small debugging message to help if a connection
2285           ends unexpectedly.
2287 2001-10-29 Monday 13:57 UTC -- Jordi Mallach <jordi@sindominio.net>
2289         * ChangeLog: Released WMBiff 0.3.3.
2291 2001-10-29 Monday 13:54 UTC -- Jordi Mallach <jordi@sindominio.net>
2293         * wmbiff/: Imap4Client.c, wmbiff.c: Indent run.
2295 2001-10-28 Sunday 23:32 UTC -- Jordi Mallach <jordi@sindominio.net>
2297         * ChangeLog, README, wmbiff/Makefile, wmbiff/sample.wmbiffrc:
2298           Preparation for 0.3.3.  Documentation updates.
2300 2001-10-28 Sunday 22:22 UTC -- Neil Spring <nspring@cs.washington.edu>
2302         * wmbiff/wmbiff.c: Bugfix: initialize libgcrypt properly before
2303           cram-md5 (or probably apop) authentication.
2305 2001-10-24 Wednesday 15:35 UTC -- Jordi Mallach <jordi@sindominio.net>
2307         * maint/changelog.sed: Added Neil to the sed script.
2309 2001-10-23 Tuesday 21:14 UTC -- Neil Spring <nspring@cs.washington.edu>
2311         * wmbiff/Imap4Client.c: error check just in case sighup patch is
2312           applied
2314 2001-10-23 Tuesday 18:35 UTC -- Jordi Mallach <jordi@sindominio.net>
2316         * ChangeLog: Released WMBiff 0.3.2.
2318 2001-10-23 Tuesday 18:33 UTC -- Jordi Mallach <jordi@sindominio.net>
2320         * wmbiff/Makefile: Bump WMBIFF_VERSION to 0.3.2.
2322 2001-10-05 Friday 16:10 UTC -- Jordi Mallach <jordi@sindominio.net>
2324         * wmbiff/Makefile: Changed order of additions to LIBS and
2325           EXTRAFLAGS, removed extra WMBIFF_VERSION definition.
2327 2001-10-04 Thursday 09:50 UTC -- Jordi Mallach <jordi@sindominio.net>
2329         * README, wmbiff/Client.h, wmbiff/Imap4Client.c,
2330           wmbiff/LicqClient.c, wmbiff/Makefile, wmbiff/Pop3Client.c,
2331           wmbiff/charutil.c, wmbiff/charutil.h, wmbiff/maildirClient.c,
2332           wmbiff/mboxClient.c, wmbiff/socket.c, wmbiff/tlsComm.c,
2333           wmbiff/tlsComm.h, wmbiff/wmbiff.1, wmbiff/wmbiff.c,
2334           wmbiff/wmbiffrc.5: * Big patch from Neil Spring which adds lots
2335           of crypto support to WMBiff.  * WMBiff can now speak IMAP over
2336           TLS and CRAM-MD5, and APOP using libgcrypt.  * Known problems:
2337           - gnutls is being developed still, so it may have security
2338           related bugs.    - A bug in gnutls (a too-small buffer) may cause
2339           problems      in the parsing of openssl certificates. This should
2340           be fixed by gnutls      soon, hopefully. Added error messages if
2341           this bug is tickled. If you've      got problems with IMAP SSL,
2342           please try upgrading gnutls. If the problem      persists, let us
2343           know.    - IMAP has totally been rewritten, so bugs may crop up.
2344           - Pop3 hasn't been rewritten to use the TLS primitives, though
2345           it probably      could be if someone wanted to.  * There's a new
2346           interface for reading and writing to the socket in
2347           tlsComm.[ch].  This makes the IMAP code somewhat independent of
2348           whether   ssl is used, and provides nicer primitives to help skip
2349           'informational'   messages.  * WITH_TLS and WITH_GCRYPT are
2350           on-by-default in the Makefile.  TLS   applies to encryption,
2351           GCRYPT to cram-md5 and apop authentication.    Since gnutls
2352           depends on libgcrypt anyway, these probably don't need to be
2353           independent.  Some compile warnings may be generated when these
2354           are    disabled.  * Added code to optionally include dmalloc.h
2355           and link -ldmalloc. This   doesn't do anything at the moment, but
2356           shouldn't hurt. It's off-by-default.  * IMAP connections are now
2357           persistent.  persistent.  This is to cut down on   the need to
2358           re-negotiate an SSL connection every time you want to check
2359           mail. It tries to use just one connection per
2360           (server/username/password/port   number), which means multiple
2361           mailboxes need only one connection.  * There are a handful of
2362           lclint (http://lclint.cs.virginia.edu) annotations   in
2363           tlsComm.[ch]. These should also not hurt anyone, and are meant to
2364           keep   the signal to noise ratio of lclint high.  * The rewritten
2365           IMAP code uses the GNU regex library to handle the
2366           configuration line.  I think its clearer than the cascading
2367           strtok()   solution, but the regex might not be perfect.  *
2368           Removed an unnecessary "inline" keyword from charutil.h.  * Added
2369           a TODO document with the bits that are missing from the picture.
2370           * Please bow in awe at NAKAYAMA Takao, Jay T. Francis and
2371           specially   Neil Spring for all of this.
2373 2001-10-04 Thursday 09:21 UTC -- Jordi Mallach <jordi@sindominio.net>
2375         * wmbiff/ApopClient.c: Removed unneeded Apop support code, now
2376           integrated in Neil and Jay's patch.
2378 2001-10-04 Thursday 09:00 UTC -- Jordi Mallach <jordi@sindominio.net>
2380         * maint/changelog.sed: Added my other SF account, which I intend to
2381           use now.
2383 2001-10-04 Thursday 08:54 UTC -- Jordi Mallach <jordi@sindominio.net>
2385         * ChangeLog, README, wmbiff/Client.h, wmbiff/Makefile,
2386           wmbiff/sample.wmbiffrc, wmbiff/wmbiff.1, wmbiff/wmbiff.c,
2387           wmbiff/wmbiffrc.5: Backed out hoehoe's patch, preparing to apply
2388           Neil's.
2390 2001-09-24 Monday 11:58 UTC -- Jordi Mallach <jordi@sindominio.net>
2392         * ChangeLog, README, wmbiff/ApopClient.c, wmbiff/Client.h,
2393           wmbiff/Makefile, wmbiff/sample.wmbiffrc, wmbiff/wmbiff.1,
2394           wmbiff/wmbiff.c, wmbiff/wmbiffrc.5: Added APOP support, patch
2395           from NAKAYAMA Takao <hoehoe@wakaba.jp>.  Fixed some bits of the
2396           manpage (Jordi) Bumped version to 0.3.2.
2398 2001-09-24 Monday 11:56 UTC -- Jordi Mallach <jordi@sindominio.net>
2400         * maint/prerelease.sh: Removed -t to cvs2cl invocation, to make
2401           cleaner ChangeLogs.
2403 2001-06-24 Sunday 18:17 UTC -- Jordi Mallach <jordi@sindominio.net>
2405         * ChangeLog: Released wmbiff 0.3.1.
2407 2001-06-24 Sunday 18:08 UTC -- Jordi Mallach <jordi@sindominio.net>
2409         * ChangeLog, README: Removed duplicate entry for Vladimir Popov in
2410           README.
2412 2001-06-23 Saturday 00:09 UTC -- Jordi Mallach <jordi@sindominio.net>
2414         * wmbiff/Imap4Client.c: Imap fix from Rob Funk
2416 2001-06-23 Saturday 00:07 UTC -- Jordi Mallach <jordi@sindominio.net>
2418         * ChangeLog, maint/changelog.sed, maint/prerelease.sh: Renamed
2419           CHANGES to ChangeLog and RELEASE-NOTES to NEWS, modified release
2420           scripts accordingly. Added Mark to the sed file.
2422 2001-06-22 Friday 23:55 UTC -- Jordi Mallach <jordi@sindominio.net>
2424         * CHANGES, RELEASE-NOTES: Renamed to NEWS and ChangeLog
2426 2001-06-19 Tuesday 03:52 UTC -- Dwayne C. Litzenberger <dlitz@dlitz.net>
2428         * CHANGES, maint/prerelease.sh: * Whoops!  Messed up CVS expansion
2429           in maint/prerelease.sh.  Fixed it.  * Also changed
2430           maint/prerelease.sh a bit.
2432 2001-06-19 Tuesday 03:38 UTC -- Dwayne C. Litzenberger <dlitz@dlitz.net>
2434         * CHANGES, ChangeLog, README, RELEASE-NOTES, maint/changelog.sed,
2435           maint/prerelease.sh, wmbiff/Client.h, wmbiff/Imap4Client.c,
2436           wmbiff/LicqClient.c, wmbiff/Makefile, wmbiff/Pop3Client.c,
2437           wmbiff/charutil.c, wmbiff/charutil.h, wmbiff/maildirClient.c,
2438           wmbiff/mboxClient.c, wmbiff/sample.wmbiffrc, wmbiff/socket.c,
2439           wmbiff/wmbiff.1, wmbiff/wmbiff.c, wmbiff/wmbiffrc.5: * Another
2440           big patch that mucks with everything.  I probably deserve to be
2441           flamed for this practice.  Feel free... :-) * Added
2442           maint/prerelease.sh script.  Run it before making any releases.
2443           * Added maint/changelog.sed.  Add your SourceForge userid here.
2444           * Moved ChangeLog to RELEASE-NOTES (see below).  * Added a new
2445           file, CHANGES (created by maint/prerelease.sh) that tabulates
2446           all the CVS changes.  * Added "distclean" to wmbiff/Makefile.  *
2447           Added CVS Id$ to all the files in wmbiff/ .  * I reformatted ths
2448           changelog, again.  I hope this is the last time I need   to do
2449           this.  The CVS logs should be used for all changes, and this file
2450           should by updated for user-visible changes only, from now on.
2451           (Dwayne C. Litzenberger)  * Updated the README to reflect that
2452           Gennady Belyakov died right after releasing   wmBiff 0.2.  May
2453           your soul rest in peace, Gennady.  (Dwayne C. Litzenberger)
2455 2001-06-16 Saturday 01:02 UTC -- Jordi Mallach <jordi@sindominio.net>
2457         * ChangeLog, wmbiff/Makefile, wmbiff/sample.wmbiffrc,
2458           wmbiff/wmbiff.c: An FHS fix for wmbiff.c and use $(CC) in the
2459           Makefile
2461 2001-05-17 Thursday 04:22 UTC -- Dwayne C. Litzenberger <dlitz@dlitz.net>
2463         * ChangeLog, wmbiff/Makefile, wmbiff/charutil.c: Committing Mark
2464           Hurley's patch
2466 2001-05-16 Wednesday 10:48 UTC -- Jordi Mallach <jordi@sindominio.net>
2468         * ChangeLog, README: Updated some obsolete info in README
2470 2001-05-11 Friday 15:04 UTC -- Jordi Mallach <jordi@sindominio.net>
2472         * ChangeLog, wmbiff/Imap4Client.c, wmbiff/Makefile,
2473           wmbiff/charutil.c, wmbiff/charutil.h, wmbiff/wmbiff.c: Mark's
2474           wmbiffrc parsing fix, small Makefile changes and bump version to
2475           0.3.0.
2477 2001-05-11 Friday 14:49 UTC -- Jordi Mallach <jordi@sindominio.net>
2479         * wmbiff/Makefile: Uncommitted stuff to deal with the removal of
2480           the xmp link
2482 2001-05-04 Friday 11:01 UTC -- Jordi Mallach <jordi@sindominio.net>
2484         * ChangeLog, wmbiff/Makefile: Updated Changelog and Makefile for
2485           0.2r.
2487 2001-05-01 Tuesday 16:11 UTC -- Jordi Mallach <jordi@sindominio.net>
2489         * README.licq, ChangeLog, README, wmgeneral/list.c,
2490           wmgeneral/list.h, wmgeneral/misc.c, wmgeneral/misc.h,
2491           wmgeneral/wmgeneral.h, wmbiff/socket.c, wmgeneral/wmgeneral.c,
2492           wmbiff/Imap4Client.c, wmbiff/Makefile, wmbiff/mboxClient.c,
2493           wmbiff/sample.wmbiffrc, wmbiff/wmbiff.1, wmbiff/wmbiff.c,
2494           wmbiff/wmbiff-master-led.xpm, wmbiff/Client.h,
2495           wmbiff/LicqClient.c, wmbiff/Pop3Client.c, wmbiff/maildirClient.c,
2496           wmbiff/wmbiffrc.5: Initial import to SourceForge, version
2497           0.2q1+Debian
2499 2001-05-01 Tuesday 16:11 UTC -- Jordi Mallach <jordi@sindominio.net>
2501         * README.licq, ChangeLog, README, wmgeneral/list.c,
2502           wmgeneral/list.h, wmgeneral/misc.c, wmgeneral/misc.h,
2503           wmgeneral/wmgeneral.h, wmbiff/socket.c, wmgeneral/wmgeneral.c,
2504           wmbiff/Imap4Client.c, wmbiff/Makefile, wmbiff/mboxClient.c,
2505           wmbiff/sample.wmbiffrc, wmbiff/wmbiff.1, wmbiff/wmbiff.c,
2506           wmbiff/wmbiff-master-led.xpm, wmbiff/Client.h,
2507           wmbiff/LicqClient.c, wmbiff/Pop3Client.c, wmbiff/maildirClient.c,
2508           wmbiff/wmbiffrc.5: Initial revision