wmbiff: bumped to 0.4.34.
[dockapps.git] / wmbiff / ChangeLog
blob021e4a7bbb86b3415f4ee1bcee5408322776f281
1 2019-07-22  Jeremy Sowden <jeremy@azazel.net>
3         * ChangeLog, NEWS, configure.ac: bumped to 0.4.34.
5 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
7         * wmbiff/wmbiff.c: use one for-loop when creating backing XPM.  Fixes
8         static analysis warning about uninitialized value.
10 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
12         * wmbiff/passwordMgr.c: fixed possible null-pointer dereference.
14 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
16         * wmbiff/Imap4Client.c, wmbiff/passwordMgr.c, wmbiff/test_tlscomm.c,
17         wmbiff/tlsComm.c, wmgeneral/wmgeneral.c: fixed leaks.
19 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
21         * wmbiff/wmbiff.c: removed superfluous assignment.
23 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
25         * wmbiff/Pop3Client.c: replaced strncpy with memcpy.
27 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
29         * wmbiff/Client.h, wmbiff/Imap4Client.c, wmbiff/MessageList.c,
30         wmbiff/MessageList.h, wmbiff/Pop3Client.c, wmbiff/ShellClient.c,
31         wmbiff/maildirClient.c, wmbiff/mboxClient.c, wmbiff/passwordMgr.c,
32         wmbiff/passwordMgr.h, wmbiff/test_wmbiff.c, wmbiff/tlsComm.c,
33         wmbiff/tlsComm.h, wmbiff/wmbiff.c: stop hiding pointers behind typedefs.
35 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
37         * .gitignore: added .gitignore.
39 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
41         * Makefile.am, autoconf/Makefile.am, configure.ac: removed autoconf
42         directory.
44 2019-07-02  Jeremy Sowden <jeremy@azazel.net>
46         * autogen: added autogen.
48 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
50         * wmbiff/Client.h, wmbiff/Imap4Client.c, wmbiff/passwordMgr.c: use
51         `size_t` for password-lengths.
53 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
55         * wmbiff/Imap4Client.c: fixed endianness problems parsing server-ports.
56         `regulo_atoi` expects a pointer-to-int and `PCU.serverPort` is a
57         `uint16_t`, so `&PCU.serverPort` is not compatible and we need to use an
58         `int` temporary variable to avoid endianness problems.
60 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
62         * wmbiff/socket.c: fixed endianness problems connecting to POP and IMAP
63         servers.  `addr.sin_addr.s_addr` is a `uint32_t` in NBO, so assigning a
64         `struct in_addr` cast to `unsigned long` will break on 64-bit big-endian
65         architectures.
67 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
69         * wmbiff/test_wmbiff.c: `addr.sin_port` is in NBO, so we should use
70         ntohs(3), not htons(3).
72 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
74         * wmbiff/socket.c, wmbiff/test_wmbiff.c: tidy up socket connexions.
76 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
78         * wmbiff/socket.c: correct the address size passed to connect(2).
79         `addr` is a `struct sockaddr_in`, not a `struct sockaddr`; using `sizeof
80         var` instead of `sizeof (type)` ensures that the right size is used.
82 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
84         * wmbiff/regulo.c, wmbiff/wmbiff/regulo.h: `regulo_match` modifies
85         `instructions[i].destination`, so remove `const`.
87 2019-06-28  Jeremy Sowden <jeremy@azazel.net>
89         * wmbiff/regulo.c: use temporary variables and remove casts.
91 2019-03-01  Doug Torrance <dtorrance@piedmont.edu>
93         * ChangeLog, NEWS, configure.ac: Bump to version 0.4.33
95 2019-03-01  Doug Torrance <dtorrance@piedmont.edu>
97         * wmbiff/tlsComm.c: Remove unnecessary loop.  The last release of
98         wmbiff included a patch by Nye Liu from Debian bug #917467 [1].
99         However, the second part of that patch is not necessary.  From Andreas
100         Metzler's comment
102             I am not sure about the second part of the patch. I understand
103             wmbiff breaking on GNUTLS_E_AGAIN from gnutls_read, because this
104             only started to happen recently (with TLS1.3) on blocking sockets.
105             What I do not get from my rudimentary understanding C
106             programmimg is the second part, this is in the else of "if
107             (scs->tls_state)", so, afaiui for non-encrypted connections. Is the
108             change necessary there at all, is it the right thing to retry read
109             on EAGAIN then? We revert the second part of the patch.
111         [1] https://bugs.debian.org/917467
113 2019-02-12  Doug Torrance <dtorrance@piedmont.edu>
115         * ChangeLog, NEWS, configure.ac: Bump to version 0.4.32.
117 2019-02-12  Doug Torrance <dtorrance@piedmont.edu>
119         * wmbiff/Imap4Client.c, wmbiff/tlsComm.c:
120         handle EAGAIN or GNUTLS_E_AGAIN
122         From Debian bug #917467, reported by Nye Liu <nyet@nyet.org> [1]:
124         If gnutls_read() or read() report EAGAIN, tlscomm_expect() fails:
126         wmbiff/nyet  comm: wrote a000 CAPABILITY
127         wmbiff/nyet  comm: imap.***.***:993: expecting: * CAPABILITY
128         wmbiff/nyet  comm: imap.***.***:993: gnutls error reading: Resource
129             temporarily unavailable, try again.
130         wmbiff/nyet  imap4: unable to query capability stringwmbiff/nyet
131             comm: wrote a002 LOGOUT wmbiff/nyet
132         comm: imap.***.***:993: closing.
134         [1] https://bugs.debian.org/917467
136 2018-05-14  Doug Torrance <dtorrance@piedmont.edu>
138         * FAQ, README, configure.ac, wmbiff/sample.wmbiffrc, wmbiff/wmbiff.1:
139         Update mailing list links to new Google Groups.
142 2017-06-23  Doug Torrance <dtorrance@piedmont.edu>
144         * ChangeLog, NEWS, configure.ac: Bump to version 0.4.31.
146 2017-06-23  Doug Torrance <dtorrance@piedmont.edu>
148         * wmbiff/Imap4Client.c, wmbiff/ShellClient.c,
149         wmbiff/passwordMgr.c, wmbiff/test_wmbiff.c:
150         Remove #define _GNU_SOURCE; already defined in CFLAGS.
153 2017-06-23  Doug Torrance <dtorrance@piedmont.edu>
155         * wmbiff/maildirClient.c: Manually copy mailbox path.
157         Patch by Demi <m@tfiu.de> to fix Debian bug #621690 [1].
159         [1] https://bugs.debian.org/621690
161 2016-11-30  Doug Torrance <dtorrance@piedmont.edu>
163         * ChangeLog, NEWS, configure.ac: Bump to verson 0.4.30.
165 2016-11-30  Doug Torrance <dtorrance@piedmont.edu>
167         * wmbiff/Imap4Client.c, wmbiff/ShellClient.c, wmbiff/passwordMgr.c,
168         wmbiff/test_wmbiff.c: Add #define _GNU_SOURCE to avoid "implicit
169         declaration" warnings.
171 2016-11-30  Doug Torrance <dtorrance@piedmont.edu>
173         * wmbiff/Client.h, wmbiff/socket.c: Use unsigned data type for port
174         number.
176 2016-07-20  Doug Torrance <dtorrance@piedmont.edu>
178         * wmbiff/wmbiff.1, wmbiff/wmbiff.c: Fix typos.
180 2016-07-19  Doug Torrance <dtorrance@piedmont.edu>
182         * ChangeLog, configure.ac: Bump to version 0.4.29.
184 2016-07-19  Doug Torrance <dtorrance@piedmont.edu>
186         * wmbiff/Imap4Client.c: Close mailbox before we call
187         status on it.
189         Additional patch by Nye Liu <nyet@nyet.org> to fix Debian bug
190         #830889 [1].
192         [1] https://bugs.debian.org/830889
194 2016-07-12  Doug Torrance <dtorrance@piedmont.edu>
196         * wmbiff/Imap4Client.c: EXAMINE before STATUS
198         Patch by Nye Liu <nyet@nyet.org> to fix Debian bug #830889 [1].
200         Outlook Office365 IMAP servers now expect a client to issue at least
201         one EXAMINE before STATUS, or UNSEEN is always zero.
203         [1] https://bugs.debian.org/830889
205 2015-10-25  Doug Torrance <dtorrance@piedmont.edu>
207         * wmbiff/wmbiff.1, wmbiff/wmbiff.c: Add missing command line options
208         to documentation.
210         Closes Debian bug #770117 [1].
212         [1] https://bugs.debian.org/770117
214 2015-08-16  Rodolfo García Peñas (kix) <kix@kix.es>
216         * wmbiff/tlsComm.c: FTBFS with initialize_gnutls
218         The first argument for the function initialize_gnutls is an intptr_t
219         so wmbiff fails to build from source. This patch changes the current
220         int to intptr_t.
222 2014-11-07  Doug Torrance <dtorrance@monmouthcollege.edu>
224         * wmbiff/Makefile.am: Remove sourceforgeupload target from
225         Makefile; no longer needed.
227 2014-11-07  Doug Torrance <dtorrance@monmouthcollege.edu>
229         * wmbiff/README, wmbiff/configure.ac,
230         wmbiff/wmbiff/sample.wmbiffrc, wmbiff/wmbiff/wmbiff.1:
231         Update email address.
233 2014-11-07  Doug Torrance <dtorrance@monmouthcollege.edu>
235         * wmbiff/wmbiff/Imap4Client.c, wmbiff/wmbiff/Pop3Client.c:
236         Use PACKAGE_BUGREPORT instead of hardcoding address.
238 2014-11-07  Doug Torrance <dtorrance@monmouthcollege.edu>
240         * wmbiff/FAQ: Update FAQ.
242 2014-11-05  Doug Torrance <dtorrance@monmouthcollege.edu>
244         * wmbiff/wmbiff/tlsComm.c, wmbiff/wmbiff/tlsComm.h: Fix cast
245         to pointer from integer of different size compiler warning.
247 2014-11-05  Doug Torrance <dtorrance@monmouthcollege.edu>
249         * wmbiff/wmbiff/gnutls-common.c, wmbiff/wmbiff/gnutls-common.h,
250         wmbiff/wmbiff/tlsComm.c: Fix compiler warnings from
251         deprecated gnutls types.
253 2014-11-05  Doug Torrance <dtorrance@monmouthcollege.edu>
255         * wmbiff/wmbiff/wmbiff.1, wmbiff/wmbiff/wmbiffrc.5.in: Fix
256         manpages.  In particular, fix spelling-error-in-manpage,
257         hyphen-used-as-minus-sign, and manpage-has-errors-from-man Lintian
258         warnings from the Debian package.
260 2014-11-05  Doug Torrance <dtorrance@monmouthcollege.edu>
262         * wmbiff/configure.ac: Remove arguments to AM_INIT_AUTOMAKE
263         in configure.ac.  This patch serves two purposes:
264         - Avoid a " AM_INIT_AUTOMAKE: two- and three-arguments forms are
265           deprecated" warning when running autoreconf.
266         - Fix "syntax error near unexpected token" when running configure.
268 2014-11-05  Doug Torrance <dtorrance@monmouthcollege.edu>
270         * wmbiff/INSTALL: Remove INSTALL; automatically generated by
271         autotools.
273 2014-11-04  Doug Torrance <dtorrance@monmouthcollege.edu>
275         * wmbiff/wmgeneral/wmgeneral.h: Increase number of actions
276         to 40.  Patch by Alberto Morales <amd77@gulic.org>.
277         For more information, see:
278         https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=589408
280 2014-11-04  Doug Torrance <dtorrance@monmouthcollege.edu>
282         * wmbiff/wmbiff/Client.h, wmbiff/wmbiff/Imap4Client.c: Allow
283         usernames with more than 32 characters.
284         Patch by Tommaso Parisi <tommasop.ml@libero.it>.
285         For more information, see:
286         https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=626393
288 2014-11-04  Doug Torrance <dtorrance@monmouthcollege.edu>
290         * wmbiff/wmbiff/socket.c: Fix connection leak.
291         Patch by Arnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>.
292         For more information, see:
293         https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=663876
295 2014-11-04  Doug Torrance <dtorrance@monmouthcollege.edu>
297         * wmbiff/scripts/security.debian.rb: Fix security.debian.rb
298         script.
299         Patch by Lothar Ketterer <lketterer@users.sourceforge.net>
300         For more information, see:
301         https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525749
303 2014-11-04  Doug Torrance <dtorrance@monmouthcollege.edu>
305         * wmbiff/wmbiff/gnutls-common.c: Remove LZO compression.
306         GnuTLS LZO support was removed in version 3.0.0.  Based on the patch
307         by Andreas Metzler <ametzler@debian.org>:
308         http://sources.debian.net/src/wmbiff/0.4.27-2.3/debian/patches/15_no_more_LZO.diff/
309         For more information, see:
310         https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=638736
312 2014-10-05  Doug Torrance <dtorrance@monmouthcollege.edu>
314         * wmbiff/AUTHORS, wmbiff/FAQ, wmbiff/Makefile.am, wmbiff/NEWS,
315         wmbiff/README, wmbiff/TODO, wmbiff/autoconf/Makefile.am,
316         wmbiff/configure.ac, wmbiff/scripts/security.debian.rb,
317         wmbiff/wmbiff/Client.h, wmbiff/wmbiff/Imap4Client.c,
318         wmbiff/wmbiff/Makefile.am, wmbiff/wmbiff/Pop3Client.c,
319         wmbiff/wmbiff/ShellClient.c, wmbiff/wmbiff/charutil.c,
320         wmbiff/wmbiff/charutil.h, wmbiff/wmbiff/gnutls-common.c,
321         wmbiff/wmbiff/maildirClient.c, wmbiff/wmbiff/mboxClient.c,
322         wmbiff/wmbiff/passwordMgr.c, wmbiff/wmbiff/sample.wmbiffrc,
323         wmbiff/wmbiff/socket.c, wmbiff/wmbiff/test_wmbiff.c,
324         wmbiff/wmbiff/tlsComm.c, wmbiff/wmbiff/tlsComm.h,
325         wmbiff/wmbiff/wmbiff.1, wmbiff/wmbiff/wmbiff.c,
326         wmbiff/wmbiff/wmbiffrc.5.in, wmbiff/wmgeneral/Makefile.am,
327         wmbiff/wmgeneral/misc.c, wmbiff/wmgeneral/wmgeneral.c: Remove
328         trailing whitespace.
330 2013-04-08  Gabriel VLASIU <gabriel@vlasiu.net>
332         * wmbiff/wmbiff/Makefile.am, wmbiff/wmbiff/mboxClient.c,
333         wmbiff/wmbiff/wmbiff-classic-master-led.xpm,
334         wmbiff/wmbiff/wmbiff.1, wmbiff/wmbiff/wmbiff.c: Enable classic mode.
336 2013-04-08  Gabriel VLASIU <gabriel@vlasiu.net>
338         * wmbiff/configure.ac, wmbiff/wmbiff/Imap4Client.c,
339         wmbiff/wmbiff/Pop3Client.c, wmbiff/wmbiff/gnutls-common.c,
340         wmbiff/wmbiff/test_tlscomm.c, wmbiff/wmbiff/test_wmbiff.c,
341         wmbiff/wmbiff/tlsComm.c, wmbiff/wmbiff/wmbiff.c,
342         wmbiff/wmbiff/wmbiffrc.5.in: Update gnutls code (require at least
343         2.2.0).
345 2013-04-08  Gabriel VLASIU <gabriel@vlasiu.net>
347         * wmbiff/wmbiff/wmbiff.1: Remove gnomeicu from wmbif's manual.
349 2013-04-04  Gabriel VLASIU <gabriel@vlasiu.net>
351         * wmbiff/wmgeneral/wmgeneral.c: Fix segfault when -display
352         or -geometry argument is missing.
354 2013-04-04  Gabriel VLASIU <gabriel@vlasiu.net>
356         * wmbiff/wmbiff/wmbiff.c: Free memory when using a custom
357         skin.
359 2013-04-04  Gabriel VLASIU <gabriel@vlasiu.net>
361         * wmbiff/wmbiff/wmbiff.c: Fix wmbiff restart.
363 2013-04-04  Gabriel VLASIU <gabriel@vlasiu.net>
365         * wmbiff/wmbiff/gnutls-common.c: More gnutls casts.
367 2013-04-04  Gabriel VLASIU <gabriel@vlasiu.net>
369         * wmbiff/wmbiff/wmbiff.c, wmbiff/wmgeneral/wmgeneral.c: Fix
370         memory leaks pointed out by valgrind.
372 2013-04-04  Gabriel VLASIU <gabriel@vlasiu.net>
374         * wmbiff/wmgeneral/Makefile.am, wmbiff/wmgeneral/list.c,
375         wmbiff/wmgeneral/list.h, wmbiff/wmgeneral/misc.c: Remove
376         unused files.
378 2013-04-03  Gabriel VLASIU <gabriel@imhotep.timteh.com>
380         * wmbiff/wmbiff/wmbiff.c: XKeycodeToKeysym is deprecated.
382 2013-04-03  Gabriel VLASIU <gabriel@imhotep.timteh.com>
384         * wmbiff/wmbiff/wmbiff.c: Remove unused variable.
386 2013-04-03  Gabriel VLASIU <gabriel@vlasiu.net>
388         * wmbiff/wmbiff/gnutls-common.c, wmbiff/wmbiff/test_wmbiff.c,
389         wmbiff/wmbiff/tlsComm.c: Fix signedness and/or cast.
391 2013-04-03  Gabriel VLASIU <gabriel@imhotep.timteh.com>
393         * wmbiff/wmbiff/Pop3Client.c: comparison between pointer and
394         integer.
396 2013-04-03  Gabriel VLASIU <gabriel@vlasiu.net>
398         * wmbiff/wmbiff/test_tlscomm.c: Add missing include.
400 2013-04-03  Gabriel VLASIU <gabriel@vlasiu.net>
402         * wmbiff/wmbiff/wmbiff.1, wmbiff/wmbiff/wmbiffrc.5.in: Update manual
403         for wmbiff and wmbiffrc.
405 2012-06-12  Wade Berrier <wberrier@gmail.com>
407         * wmbiff/configure.ac, wmbiff/scripts/Makefile.am: slight
408         automake/autoconf refresh AM_PATH_LIBGNUTLS seems to be obsolete.
409         Replace the check with
410         pkg-config using PKG_CHECK_MODULES.
411         AM_CONFIG_HEADER also seems to be obsolete.  Replace with
412         AC_CONFIG_HEADER.  Fix installing an extra script (security.debian.rb)
414 2012-06-05  Alexey I. Froloff <raorn@raorn.name>
416         * wmbiff/wmbiff/gnutls-common.c, wmbiff/wmbiff/socket.c,
417         wmbiff/wmgeneral/list.c, wmbiff/wmgeneral/list.h,
418         wmbiff/wmgeneral/misc.c: Mass update FSF address
420 2012-06-05  Alexey I. Froloff <raorn@raorn.name>
422         * wmbiff/configure.ac: Make autoreconf happy
424 2012-06-05  Alexey I. Froloff <raorn@raorn.name>
426         * wmbiff/Makefile.in, wmbiff/aclocal.m4,
427         wmbiff/autoconf/Makefile.in, wmbiff/autoconf/depcomp,
428         wmbiff/autoconf/install-sh, wmbiff/autoconf/missing,
429         wmbiff/autoconf/mkinstalldirs, wmbiff/config.h.in,
430         wmbiff/configure, wmbiff/scripts/Makefile.in,
431         wmbiff/wmbiff/Makefile.in, wmbiff/wmbiff/wmbiffrc.5,
432         wmbiff/wmgeneral/Makefile.in: Removed all autogenerated autotools
433         and imake stuff
434         There's no need to keep autogenerated files in repository.  Those
435         dockapps which use autotoold must be autoreconf'ed prior to build,
436         those which use imake must be xmkmf'ed.  As of wmbiff,
437         AC_PATH_XTRA_CORRECTED was a hack to avoid bug in older autoconf
438         version, which is no longer needed (it's 2012 now already).
440 2012-06-05  Alexey I. Froloff <raorn@raorn.name>
442         * wmbiff/COPYING: Mass update GPLv2 from
443         http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
445 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
447         * wmbiff/wmbiff-master-led.xpm,
448         wmbiff/wmbiff.c: Change default colors
450 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
452         * wmbiff/wmbiff.c: Remove trailing colon from
453         mailbox label So now we have one extra char for the label name.
455 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
457         * Makefile.am, README.licq,
458         wmbiff/Client.h, wmbiff/LicqClient.c,
459         wmbiff/Makefile.am, wmbiff/Makefile.in,
460         wmbiff/sample.wmbiffrc,
461         wmbiff/wmbiff.1, wmbiff/wmbiff.c:
462         Remove Licq, gnomeicu and finger support
464 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
466         * wmbiff/wmbiff.c: Raise sleep interval to 20
467         secs
469 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
471         * wmbiff/wmbiff.c: Trivial code cleanups
473 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
475         * wmbiff/wmbiff.c: Fix global notification Global notification would
476         only work if all 'notify' commands for all mailboxes were unset
477         (=='\0').  Fix that.
479 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
481         * wmbiff/wmbiff.c: Remove autofetch on new
482         email arrival
484 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
486         * wmbiff/wmbiff.c: Remove 'beep' option for
487         notification
489 2011-03-21  Carlos R. Mafra <crmafra@gmail.com>
491         * wmbiff/wmbiff.c: Display "0" when there are
492         no new emails ...instead of displaying the total number of emails in the
493         mailbox.  On my gmail account with +16k emails, there was not enough
494         space to display the account label. Besides, the total number of emails
495         is useless information anyway.
497 2005-10-08 Saturday 18:13 UTC -- Neil Spring <nspring@cs.washington.edu>
499         * configure.ac: year stale 0.4.26 news
501 2005-10-07 Friday 03:07 UTC -- Neil Spring <nspring@cs.washington.edu>
503         * wmbiff/wmbiff.c: fix debian #332540: prevent -c 'directory' from
504           making wmbiff run away
506 2005-05-08 Sunday 21:31 UTC -- Neil Spring <nspring@cs.washington.edu>
508         * wmbiff/: Client.h, MessageList.c, test_tlscomm.c, test_wmbiff.c,
509           tlsComm.c, tlsComm.h, wmbiff.c: changes for gnutls 1.2 and
510           attempt to make wmbiff more responsive to X events while
511           communicating over the network
513 2004-12-12 Sunday 00:06 UTC -- Neil Spring <nspring@cs.washington.edu>
515         * check-includes.rb: update the portability checker
517 2004-12-12 Sunday 00:05 UTC -- Neil Spring <nspring@cs.washington.edu>
519         * wmgeneral/wmgeneral.c: allow KeyPress events through
521 2004-12-12 Sunday 00:03 UTC -- Neil Spring <nspring@cs.washington.edu>
523         * wmbiff/passwordMgr.c: nicer debug message
525 2004-12-12 Sunday 00:02 UTC -- Neil Spring <nspring@cs.washington.edu>
527         * wmbiff/: gnutls-common.c, test_wmbiff.c: compiler appeasement
529 2004-12-12 Sunday 00:01 UTC -- Neil Spring <nspring@cs.washington.edu>
531         * wmbiff/: Pop3Client.c, wmbiff.c, wmbiffrc.5.in: tls and password
532           asking support for pop3, keyboard event handling for the main
533           window
535 2004-10-31 Sunday 22:09 UTC -- Neil Spring <nspring@cs.washington.edu>
537         * wmbiff/tlsComm.c: indent and make tls_check_certificate void
539 2004-10-01 Friday 21:15 UTC -- Neil Spring <nspring@cs.washington.edu>
541         * wmbiff/tlsComm.c: comment the SHUT_WR
543 2004-10-01 Friday 21:06 UTC -- Neil Spring <nspring@cs.washington.edu>
545         * wmbiff/tlsComm.c: indent, and return if no certificate came back
546           from the far side
548 2004-10-01 Friday 21:05 UTC -- Neil Spring <nspring@cs.washington.edu>
550         * wmbiff/socket.c: thwack duplicate error messages about connecting
551           to a remote server
553 2004-10-01 Friday 21:02 UTC -- Neil Spring <nspring@cs.washington.edu>
555         * wmbiff/wmbiff.c: indent
557 2004-08-23 Monday 00:37 UTC -- Neil Spring <nspring@cs.washington.edu>
559         * wmbiff/wmbiff.c: disable the secure memory warning (and its use)
561 2004-07-03 Saturday 23:45 UTC -- Neil Spring <nspring@cs.washington.edu>
563         * FAQ: some faqs
565 2004-07-03 Saturday 23:43 UTC -- Neil Spring <nspring@cs.washington.edu>
567         * scripts/security.debian.rb: handle the timeout error explicitly,
568           better for disconnected operation
570 2004-07-03 Saturday 23:43 UTC -- Neil Spring <nspring@cs.washington.edu>
572         * wmbiff/socket.c: strerror preferred to perror
574 2004-06-28 Monday 18:20 UTC -- Neil Spring <nspring@cs.washington.edu>
576         * scripts/security.debian.rb: fix debian #256505: a small problem
577           with the .wmbiff-sdr directory not being created
579 2004-06-23 Wednesday 21:51 UTC -- Neil Spring <nspring@cs.washington.edu>
581         * configure.ac: 0.4.25
583 2004-06-23 Wednesday 21:46 UTC -- Neil Spring <nspring@cs.washington.edu>
585         * configure.ac, wmbiff/tlsComm.c: probably fix the s390 debian
586           build problems
588 2004-06-20 Sunday 01:03 UTC -- Neil Spring <nspring@cs.washington.edu>
590         * wmbiff/tlsComm.c: oops, should pay attention to the retval of
591           tls_compare_certificates
593 2004-06-19 Saturday 21:38 UTC -- Neil Spring <nspring@cs.washington.edu>
595         * wmbiff/gnutls-common.c: warning cleanup
597 2004-06-19 Saturday 20:53 UTC -- Neil Spring <nspring@cs.washington.edu>
599         * configure.ac, wmbiff/Client.h, wmbiff/Imap4Client.c,
600           wmbiff/Pop3Client.c, wmbiff/gnutls-common.c,
601           wmbiff/gnutls-common.h, wmbiff/tlsComm.c, wmbiff/wmbiff.c,
602           wmgeneral/wmgeneral.c: 0.4.24, supporting newer gnutls, I think
604 2004-06-18 Friday 21:29 UTC -- Neil Spring <nspring@cs.washington.edu>
606         * wmbiff/wmbiff.c: paranoid test to see if /var/mail/nspring is
607           constructed wrong.
609 2004-04-28 Wednesday 00:19 UTC -- Neil Spring <nspring@cs.washington.edu>
611         * wmbiff/: Client.h, charutil.c, socket.c, test_wmbiff.c, wmbiff.c:
612           indent run
614 2004-04-28 Wednesday 00:18 UTC -- Neil Spring <nspring@cs.washington.edu>
616         * wmbiff/: socket.c, test_wmbiff.c: handle ip addresses instead of
617           hostnames in sock_connect
619 2004-04-27 Tuesday 23:35 UTC -- Neil Spring <nspring@cs.washington.edu>
621         * configure.ac: 0.4.23
623 2004-04-27 Tuesday 23:31 UTC -- Neil Spring <nspring@cs.washington.edu>
625         * wmbiff/test_wmbiff.c: ensure that sock_connect works with IP
626           addresses
628 2004-04-21 Wednesday 21:53 UTC -- Neil Spring <nspring@cs.washington.edu>
630         * wmbiff/Imap4Client.c: oops, broke the cacheHeaders flag
632 2004-04-20 Tuesday 04:55 UTC -- Neil Spring <nspring@cs.washington.edu>
634         * wmbiff/: charutil.c, charutil.h, test_wmbiff.c, wmbiff.c: factor
635           out comment stripping for testing, which seems to have passed
637 2004-04-06 Tuesday 20:58 UTC -- Neil Spring <nspring@cs.washington.edu>
639         * wmbiff/: Imap4Client.c, Pop3Client.c, test_wmbiff.c: fix debian
640           #242458 -- allow IP addresses as server names for IMAP mailboxes,
641           and also for POP3 mailboxes
643 2004-03-28 Sunday 00:36 UTC -- Neil Spring <nspring@cs.washington.edu>
645         * configure.ac: 0.4.22
647 2004-03-28 Sunday 00:28 UTC -- Neil Spring <nspring@cs.washington.edu>
649         * wmbiff/: Client.h, Imap4Client.c, Pop3Client.c, ShellClient.c,
650           charutil.c, maildirClient.c, mboxClient.c, passwordMgr.c,
651           regulo.c, test_tlscomm.c, tlsComm.c, tlsComm.h, wmbiff.c: lots of
652           indent changes and a change to let msglst enable header caching
653           for imap
655 2004-03-12 Friday 21:35 UTC -- Neil Spring <nspring@cs.washington.edu>
657         * wmbiff/wmbiffrc.5.in: mention courier imapd's means of specifying
658           subfolders
660 2004-02-14 Saturday 18:10 UTC -- Neil Spring <nspring@cs.washington.edu>
662         * wmbiff/Imap4Client.c: bugfix for cyrus imap servers, thanks to
663           Jon Ramsey
665 2004-01-01 Thursday 23:47 UTC -- Neil Spring <nspring@cs.washington.edu>
667         * configure.ac: really call it 0.4.20
669 2004-01-01 Thursday 07:47 UTC -- Neil Spring <nspring@cs.washington.edu>
671         * AUTHORS, wmbiff/Client.h, wmbiff/Imap4Client.c,
672           wmbiff/ShellClient.c, wmbiff/maildirClient.c,
673           wmbiff/mboxClient.c, wmbiff/passwordMgr.c, wmbiff/wmbiff.c: Sam
674           Izzo's patch
676 2003-12-30 Tuesday 19:44 UTC -- Neil Spring <nspring@cs.washington.edu>
678         * Makefile.am, configure.ac: add --disable-crypto
680 2003-12-22 Monday 00:08 UTC -- Neil Spring <nspring@cs.washington.edu>
682         * wmbiff/Imap4Client.c: print failure message if imap login fails
684 2003-11-09 Sunday 07:01 UTC -- Neil Spring <nspring@cs.washington.edu>
686         * wmbiff/sample.wmbiffrc: mac os 10.3 mail responds to a different
687           way of identifying the inbox
689 2003-11-09 Sunday 03:16 UTC -- Neil Spring <nspring@cs.washington.edu>
691         * configure.ac: 0.4.19
693 2003-11-09 Sunday 03:16 UTC -- Neil Spring <nspring@cs.washington.edu>
695         * wmbiff/test_tlscomm.c: fix bug #219787
697 2003-11-08 Saturday 23:46 UTC -- Neil Spring <nspring@cs.washington.edu>
699         * Makefile.am: helper rule for sourceforge upload (I know, I know,
700           maintenance cruft making it into the release, whatever)
702 2003-11-08 Saturday 23:46 UTC -- Neil Spring <nspring@cs.washington.edu>
704         * wmbiff/Client.h: philosophical definition of truth
706 2003-11-08 Saturday 23:45 UTC -- Neil Spring <nspring@cs.washington.edu>
708         * wmbiff/Imap4Client.c: because having both from and subject
709           headers is no longer a way to tell when the end has happened,
710           must clean up the completed command tag explicitly
712 2003-11-08 Saturday 23:44 UTC -- Neil Spring <nspring@cs.washington.edu>
714         * wmbiff/passwordMgr.c: avoid compiler warning from inconsistent
715           def of size_t as passed into printf
717 2003-11-08 Saturday 22:58 UTC -- Neil Spring <nspring@cs.washington.edu>
719         * wmbiff/: ShellClient.c, charutil.c: strcpy is not defined to
720           handle overlapping regions.  valgrind complains, rightly, so
721           reimplement lefttrim to avoid such behavior
723 2003-11-08 Saturday 22:17 UTC -- Neil Spring <nspring@cs.washington.edu>
725         * wmbiff/wmbiff.c: bump up default_sleep_interval to clean up
726           strace output while bored.
728 2003-11-08 Saturday 22:13 UTC -- Neil Spring <nspring@cs.washington.edu>
730         * wmbiff/Imap4Client.c: handle messages without subject lines in
731           msglst
733 2003-11-07 Friday 09:11 UTC -- Neil Spring <nspring@cs.washington.edu>
735         * wmbiff/passwordMgr.c: panther (mac 10.3) does not appear to
736           null-terminate passwords in the keychain for us
738 2003-10-29 Wednesday 18:15 UTC -- Neil Spring <nspring@cs.washington.edu>
740         * wmbiff/: Imap4Client.c, Pop3Client.c: handle capitalized FROM and
741           SUBJECT headers common typical of spam spam spam
743 2003-10-28 Tuesday 23:39 UTC -- Neil Spring <nspring@cs.washington.edu>
745         * wmbiff/test_tlscomm.c: indent and add another check
747 2003-10-28 Tuesday 23:38 UTC -- Neil Spring <nspring@cs.washington.edu>
749         * wmbiff/: Makefile.am, test_wmbiff.c: indent
751 2003-10-28 Tuesday 07:09 UTC -- Neil Spring <nspring@cs.washington.edu>
753         * wmbiff/: Makefile.am, test_tlscomm.c: fix bug reported by
754           Jingshao Chen <jingshaochen@sbcglobal.net> with buffering
755           trouble, and incorporate a regression test to keep it from
756           accidentally popping up again
758 2003-10-28 Tuesday 06:56 UTC -- Neil Spring <nspring@cs.washington.edu>
760         * wmbiff/: test_tlscomm.c, tlsComm.c: test for proper handling of
761           buffering small bits of expected data
763 2003-10-26 Sunday 08:33 UTC -- Neil Spring <nspring@cs.washington.edu>
765         * wmbiff/: Imap4Client.c, passwordMgr.c: sigh, I dislike running
766           make indent
768 2003-10-26 Sunday 08:31 UTC -- Neil Spring <nspring@cs.washington.edu>
770         * AUTHORS, wmbiff/Pop3Client.c, wmbiff/wmbiffrc.5.in: Paolo
771           Gianrossi's patch to provide msglst support for pop3 mailboxes
773 2003-10-26 Sunday 07:42 UTC -- Neil Spring <nspring@cs.washington.edu>
775         * check-includes.rb, wmbiff/maildirClient.c, wmbiff/socket.c:
776           include file reordering, based on wisdom from porting some other
777           networky code
779 2003-10-26 Sunday 07:31 UTC -- Neil Spring <nspring@cs.washington.edu>
781         * scripts/security.debian.rb: fix some ruby1.8 warnings, minor
782           cleanup
784 2003-10-10 Friday 18:00 UTC -- Neil Spring <nspring@cs.washington.edu>
786         * configure.ac: 0.4.18
788 2003-10-10 Friday 15:59 UTC -- Neil Spring <nspring@cs.washington.edu>
790         * scripts/security.debian.rb: fix ruby1.8's complaint.
792 2003-08-31 Sunday 18:05 UTC -- Neil Spring <nspring@cs.washington.edu>
794         * configure.ac: 0.4.17
796 2003-08-31 Sunday 06:47 UTC -- Neil Spring <nspring@cs.washington.edu>
798         * wmbiff/tlsComm.c: oops, looks like I resolved a conflict poorly
800 2003-08-31 Sunday 04:39 UTC -- Neil Spring <nspring@cs.washington.edu>
802         * wmbiff/Makefile.am: build the test cases well
804 2003-08-31 Sunday 03:33 UTC -- Neil Spring <nspring@cs.washington.edu>
806         * wmbiff/: test_wmbiff.c, tlsComm.h: check the newline bugfix
808 2003-08-31 Sunday 03:32 UTC -- Neil Spring <nspring@cs.washington.edu>
810         * wmbiff/tlsComm.c: bugfix to avoid handing odd newlines badly
812 2003-07-31 Thursday 23:37 UTC -- Neil Spring <nspring@cs.washington.edu>
814         * wmbiff/Imap4Client.c: fix some potential bugs - an access of
815           freed memory and an uninitialized reference counter
817 2003-07-20 Sunday 00:52 UTC -- Neil Spring <nspring@cs.washington.edu>
819         * wmbiff/: passwordMgr.c, test_wmbiff.c: fix a five-minute old
820           regression test failure where null was returned instead of an
821           empty string for an empty password.  not sure it matters, but
822           maybe.
824 2003-07-20 Sunday 00:44 UTC -- Neil Spring <nspring@cs.washington.edu>
826         * wmbiff/passwordMgr.c: oops, I left a use-after-free bug in the
827           askpass code
829 2003-07-19 Saturday 23:56 UTC -- Neil Spring <nspring@cs.washington.edu>
831         * configure.ac, wmbiff/passwordMgr.c: use the apple keychain to
832           grab passwords! I can very nearly forget about typing them in
833           anymore
835 2003-07-10 Thursday 17:44 UTC -- Neil Spring <nspring@cs.washington.edu>
837         * Makefile.am: ensure that the current directory is not setgid when
838           making a distribution; this borks some untars
840 2003-07-07 Monday 09:00 UTC -- Neil Spring <nspring@cs.washington.edu>
842         * wmbiff/Imap4Client.c: warnings cleanup
844 2003-07-07 Monday 08:57 UTC -- Neil Spring <nspring@cs.washington.edu>
846         * configure.ac, wmbiff/Client.h, wmgeneral/wmgeneral.c: call it
847           0.4.16
849 2003-07-07 Monday 08:43 UTC -- Neil Spring <nspring@cs.washington.edu>
851         * wmbiff/: Client.h, Imap4Client.c, passwordMgr.c, test_wmbiff.c:
852           fix memfrob * bug (memfrob makes *'s zero, so password length
853           must be tracked separately
855 2003-07-04 Friday 21:42 UTC -- Neil Spring <nspring@cs.washington.edu>
857         * wmbiff/wmbiff.c: handle comments the way I meant to...
859 2003-07-03 Thursday 11:10 UTC -- Neil Spring <nspring@cs.washington.edu>
861         * wmbiff/Imap4Client.c: switch the new header cache to use
862           reference counting (better, but possibly buggy) instead of
863           locking (dumb, and certainly buggy)
865 2003-07-03 Thursday 05:39 UTC -- Neil Spring <nspring@cs.washington.edu>
867         * wmbiff/Imap4Client.c: try to avoid repetitive complaints of
868           failed connections
870 2003-07-03 Thursday 05:34 UTC -- Neil Spring <nspring@cs.washington.edu>
872         * wmbiff/socket.c: avoid repetitive error messages when hostname
873           lookup fails (such as when disconnected)
875 2003-07-03 Thursday 05:33 UTC -- Neil Spring <nspring@cs.washington.edu>
877         * wmgeneral/wmgeneral.c: last fix to geometry handling had a
878           compiler warning
880 2003-07-03 Thursday 05:12 UTC -- Neil Spring <nspring@cs.washington.edu>
882         * wmgeneral/wmgeneral.c: try doing geometry the way X intends it to
883           be done, at least as far as I can tell.
885 2003-07-03 Thursday 01:03 UTC -- Neil Spring <nspring@cs.washington.edu>
887         * wmbiff/wmbiff.c: make #'s comments only if preceded by whitespace
888           or at the beginning of the line
890 2003-07-03 Thursday 00:53 UTC -- Neil Spring <nspring@cs.washington.edu>
892         * wmbiff/wmbiff.c: looks like I'd broken the button click events
893           recently
895 2003-07-03 Thursday 00:52 UTC -- Neil Spring <nspring@cs.washington.edu>
897         * wmbiff/sample.wmbiffrc: osascript samples for driving mac mail
898           using applescript
900 2003-06-30 Monday 23:42 UTC -- Neil Spring <nspring@cs.washington.edu>
902         * wmbiff/: Imap4Client.c, tlsComm.c: warning message beautification
904 2003-06-08 Sunday 07:01 UTC -- Neil Spring <nspring@cs.washington.edu>
906         * wmbiff/: Client.h, Imap4Client.c, MessageList.c, MessageList.h,
907           ShellClient.c: general rewrite of the msglst headers, so that the
908           list is pre-cached for responsiveness.
910 2003-06-08 Sunday 06:59 UTC -- Neil Spring <nspring@cs.washington.edu>
912         * wmbiff/wmbiffrc.5.in: document msglst and buttontwo
914 2003-06-08 Sunday 06:59 UTC -- Neil Spring <nspring@cs.washington.edu>
916         * wmbiff/wmbiff.c: show a watch pointer while working behind the
917           scenes
919 2003-06-03 Tuesday 04:57 UTC -- Neil Spring <nspring@cs.washington.edu>
921         * autogen.sh: enable dependency tracking
923 2003-04-17 Thursday 05:04 UTC -- Neil Spring <nspring@cs.washington.edu>
925         * scripts/security.debian.rb: trap socket errors
927 2003-04-17 Thursday 01:56 UTC -- Neil Spring <nspring@cs.washington.edu>
929         * scripts/security.debian.rb: print the detailed version
931 2003-04-17 Thursday 01:56 UTC -- Neil Spring <nspring@cs.washington.edu>
933         * wmbiff/: Client.h, ShellClient.c, passwordMgr.c: space for detail
934           in grab command output, use the detail to populate a message list
935           in a getheaders function (eg. can see the list of thought to be
936           updated packages if using hte security.debian script
938 2003-04-17 Thursday 01:54 UTC -- Neil Spring <nspring@cs.washington.edu>
940         * wmbiff/test-wmbiffrc.shell: test usingthe debian script, allows
941           trying shell get headers
943 2003-04-17 Thursday 01:54 UTC -- Neil Spring <nspring@cs.washington.edu>
945         * wmbiff/tlsComm.c: try to print a helpful hint message to use
946           gnutls-cli-debug
948 2003-04-16 Wednesday 23:30 UTC -- Neil Spring <nspring@cs.washington.edu>
950         * configure.ac: downgrade configure.ac use of AM_INIT_AUTOMAKE to
951           support automake-1.5
953 2003-04-16 Wednesday 08:21 UTC -- Neil Spring <nspring@cs.washington.edu>
955         * wmgeneral/wmgeneral.c: export GetColor
957 2003-04-16 Wednesday 08:18 UTC -- Neil Spring <nspring@cs.washington.edu>
959         * wmbiff/: Client.h, Imap4Client.c, MessageList.c, MessageList.h,
960           tlsComm.c, wmbiff.c: indent run
962 2003-04-16 Wednesday 08:16 UTC -- Neil Spring <nspring@cs.washington.edu>
964         * wmbiff/Imap4Client.c: get headers / message list support
966 2003-04-16 Wednesday 08:16 UTC -- Neil Spring <nspring@cs.washington.edu>
968         * wmbiff/Makefile.am: messagelist
970 2003-04-16 Wednesday 08:15 UTC -- Neil Spring <nspring@cs.washington.edu>
972         * wmbiff/tlsComm.c: rename state to tls_state for clarity, small
973           cleanup, fixes for buffering several lines in an expectation
975 2003-04-16 Wednesday 08:14 UTC -- Neil Spring <nspring@cs.washington.edu>
977         * wmbiff/: wmbiff.c, Client.h: message list, button 2 support
979 2003-04-16 Wednesday 08:13 UTC -- Neil Spring <nspring@cs.washington.edu>
981         * wmbiff/: MessageList.c, MessageList.h: list new messages,
982           currently only with an imap driver
984 2003-04-09 Wednesday 04:51 UTC -- Neil Spring <nspring@cs.washington.edu>
986         * autogen.sh: fall back to automake-1.5 if necessary
988 2003-04-07 Monday 10:10 UTC -- Neil Spring <nspring@cs.washington.edu>
990         * wmbiff/tlsComm.c: invalid is returned when it doesn't match?
992 2003-04-07 Monday 09:41 UTC -- Neil Spring <nspring@cs.washington.edu>
994         * wmbiff/tlsComm.c: fix some info messages - drop complaints about
995           version 0.2.3 of gnutls, mention certfile.
997 2003-04-07 Monday 09:33 UTC -- Neil Spring <nspring@cs.washington.edu>
999         * wmbiff/wmbiffrc.5.in: doc certfile
1001 2003-04-07 Monday 09:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1003         * wmbiff/tlsComm.c: handle certfile errors properly; positive
1004           return values from gnutls_certificate_set_x509_trust_file appear
1005           okay.
1007 2003-03-30 Sunday 11:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1009         * wmbiff/: passwordMgr.c, test_wmbiff.c: oh, now I get why that
1010           foolish null-termination was present.  it's better now
1012 2003-03-30 Sunday 11:23 UTC -- Neil Spring <nspring@cs.washington.edu>
1014         * configure.ac: 0.4.15
1016 2003-03-30 Sunday 11:22 UTC -- Neil Spring <nspring@cs.washington.edu>
1018         * wmbiff/wmbiffrc.5.in: note the hash caveat
1020 2003-03-30 Sunday 11:05 UTC -- Neil Spring <nspring@cs.washington.edu>
1022         * wmbiff/passwordMgr.c: remove (unreleased) foolhardy
1023           null-termination
1025 2003-03-30 Sunday 10:57 UTC -- Neil Spring <nspring@cs.washington.edu>
1027         * wmbiff/test_wmbiff.c: just so as not to confuse anyone that
1028           wmbiff allows #'s in passwords
1030 2003-03-30 Sunday 10:38 UTC -- Neil Spring <nspring@cs.washington.edu>
1032         * README, wmbiff/wmbiff.c, wmgeneral/wmgeneral.c,
1033           wmgeneral/wmgeneral.h: support setting the background color using
1034           -bg
1036 2003-03-28 Friday 08:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1038         * wmbiff/test_wmbiff.c: check that passwords with # can be parsed
1040 2003-03-28 Friday 08:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1042         * wmbiff/wmbiffrc.5.in: doc password parsing damage
1044 2003-03-11 Tuesday 08:07 UTC -- Neil Spring <nspring@cs.washington.edu>
1046         * README: gnupg reorganized their website
1048 2003-03-11 Tuesday 08:03 UTC -- Neil Spring <nspring@cs.washington.edu>
1050         * configure.ac: provide a helpful message as to where gnutls and
1051           libgcrypt can be found in configure.ac
1053 2003-03-06 Thursday 21:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1055         * wmbiff/wmbiff.c: fix debian bug #183529
1057 2003-03-03 Monday 19:06 UTC -- Neil Spring <nspring@cs.washington.edu>
1059         * wmbiff/passwordMgr.c: make returned password length consistent
1060           with stored password length
1062 2003-03-02 Sunday 02:37 UTC -- Neil Spring <nspring@cs.washington.edu>
1064         * configure.ac, wmbiff/Imap4Client.c, wmbiff/passwordMgr.c,
1065           wmbiff/passwordMgr.h: in-memory frobnication of imap passwords
1067 2003-03-02 Sunday 02:17 UTC -- Neil Spring <nspring@cs.washington.edu>
1069         * wmbiff/: Imap4Client.c, Makefile.am, Pop3Client.c, regulo.c,
1070           regulo.h, socket.c, test_wmbiff.c, wmbiff.c: hostname paranoia
1071           patch -- use -relax to skip hostname validation check, parse
1072           ambiguous config lines
1074 2003-03-02 Sunday 01:04 UTC -- Neil Spring <nspring@cs.washington.edu>
1076         * wmbiff/wmbiff.c, wmgeneral/wmgeneral.c: indent run
1078 2003-02-13 Thursday 21:07 UTC -- Neil Spring <nspring@cs.washington.edu>
1080         * Makefile.am, configure.ac: 0.4.14
1082 2003-02-08 Saturday 21:04 UTC -- Neil Spring <nspring@cs.washington.edu>
1084         * wmbiff/: wmbiff.1, wmbiffrc.5.in: document restart schemes
1086 2003-02-08 Saturday 07:06 UTC -- Neil Spring <nspring@cs.washington.edu>
1088         * wmbiff/wmbiff.c: restart wmbiff also on ctrl-shift-left click
1090 2003-02-08 Saturday 03:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1092         * wmbiff/wmbiff.c: restart on sig usr1 using exec()
1094 2003-02-08 Saturday 03:43 UTC -- Neil Spring <nspring@cs.washington.edu>
1096         * autogen.sh: I think symlink is okay for autoreconf
1098 2003-02-08 Saturday 03:42 UTC -- Neil Spring <nspring@cs.washington.edu>
1100         * wmgeneral/: wmgeneral.c, wmgeneral.h: much prefer if wmgeneral
1101           proclaimed that it would not modify argv; I think it's even true
1103 2003-01-28 Tuesday 11:14 UTC -- Neil Spring <nspring@cs.washington.edu>
1105         * configure.ac: remove check for gnuregex
1107 2003-01-28 Tuesday 11:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1109         * wmbiff/Imap4Client.c: bugfix to avoid problems with the new regex
1110           scheme and the default mailbox (aliasing sucks.)
1112 2003-01-28 Tuesday 11:12 UTC -- Neil Spring <nspring@cs.washington.edu>
1114         * wmbiff/charutil.h: remove gnuregex.h incl
1116 2003-01-28 Tuesday 11:12 UTC -- Neil Spring <nspring@cs.washington.edu>
1118         * wmbiff/wmbiff.c: newline after error message
1120 2003-01-25 Saturday 04:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1122         * autogen.sh: remove dangling symlinks config.guess, config.sub
1124 2003-01-25 Saturday 04:33 UTC -- Neil Spring <nspring@cs.washington.edu>
1126         * wmgeneral/list.c: compiler warning appeasement (shadowing index)
1128 2003-01-25 Saturday 04:32 UTC -- Neil Spring <nspring@cs.washington.edu>
1130         * wmbiff/Makefile.am: use the non gnu-make form of the
1131           indent-a-c-file rule
1133 2003-01-22 Wednesday 01:56 UTC -- Neil Spring <nspring@cs.washington.edu>
1135         * autogen.sh: make sure ChangeLog exists locally.
1137 2003-01-21 Tuesday 08:56 UTC -- Neil Spring <nspring@cs.washington.edu>
1139         * wmbiff/tlsComm.c: fix some minor damage when select is
1140           interrupted (EINTR)
1142 2003-01-21 Tuesday 05:55 UTC -- Neil Spring <nspring@cs.washington.edu>
1144         * autogen.sh: warn if autoconf/libgnutls.m4 does not exist
1146 2003-01-20 Monday 19:52 UTC -- Neil Spring <nspring@cs.washington.edu>
1148         * wmbiff/Makefile.am: add libgcrypt libraries if used to
1149           test_wmbiff
1151 2003-01-20 Monday 19:52 UTC -- Neil Spring <nspring@cs.washington.edu>
1153         * configure.ac: remove possibly unneeded check for gdbm
1155 2003-01-19 Sunday 13:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1157         * wmbiff/: Client.h, Imap4Client.c, Makefile.am, Pop3Client.c,
1158           ShellClient.c, charutil.c, charutil.h, passwordMgr.c,
1159           test_wmbiff.c, tlsComm.c, wmbiff.c: general portability fixes,
1160           including HAVE___ATTRIBUTE__
1162 2003-01-19 Sunday 13:12 UTC -- Neil Spring <nspring@cs.washington.edu>
1164         * wmbiff/: regulo.c, regulo.h: posix based regular expression
1165           handling with a not so lame interface
1167 2003-01-19 Sunday 13:11 UTC -- Neil Spring <nspring@cs.washington.edu>
1169         * configure.ac: portability fixes: HAVE___ATTRIBUTE__ (maybe),
1170           libnsl (solaris), -no-cpp-precomp (os x)
1172 2003-01-04 Saturday 03:39 UTC -- Neil Spring <nspring@cs.washington.edu>
1174         * configure.ac, wmbiff/wmbiff.c: 0.4.12, release to fix bad
1175           -geometry handling
1177 2003-01-03 Friday 20:37 UTC -- Neil Spring <nspring@cs.washington.edu>
1179         * wmbiff/wmbiff.c: fix geometry argument handling bug (Debian
1180           #175220)
1182 2002-12-29 Sunday 07:46 UTC -- Neil Spring <nspring@cs.washington.edu>
1184         * scripts/security.debian.rb: I meant to say 6 hours
1186 2002-12-29 Sunday 05:42 UTC -- Neil Spring <nspring@cs.washington.edu>
1188         * wmbiff/sample.wmbiffrc: shell recipe for security.debian.rb
1190 2002-12-29 Sunday 05:28 UTC -- Neil Spring <nspring@cs.washington.edu>
1192         * scripts/security.debian.rb: didn't mean to commit with a 6 minute
1193           refresh interval
1195 2002-12-29 Sunday 04:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1197         * Makefile.am, check-includes.rb, configure.ac: add scripts
1198           subdirectory to build system
1200 2002-12-29 Sunday 04:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1202         * scripts/: Makefile.am, security.debian.rb: new scripts directory
1203           to hold debian security checker and install it.
1205 2002-12-29 Sunday 03:25 UTC -- Neil Spring <nspring@cs.washington.edu>
1207         * wmbiff/wmbiff.c: general cleanup - use strdup_ordie,
1208           malloc_ordie.  reduce using ints and chars interchangeably.
1209           static annotations on module-local variables
1211 2002-12-29 Sunday 03:22 UTC -- Neil Spring <nspring@cs.washington.edu>
1213         * wmbiff/tlsComm.c: bad_certificate called as if void, so change
1214           the signature
1216 2002-12-29 Sunday 03:22 UTC -- Neil Spring <nspring@cs.washington.edu>
1218         * configure.ac: autodetect whether to use poll()
1220 2002-12-29 Sunday 02:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1222         * wmgeneral/: Makefile.am, wmgeneral.c, wmgeneral.h: make
1223           AddMouseRegion take an unsigned int for the region index (which
1224           is an _index_ which means negative values need not apply)
1226 2002-12-29 Sunday 02:31 UTC -- Neil Spring <nspring@cs.washington.edu>
1228         * wmbiff/: charutil.c, charutil.h: change signature of *Trim to
1229           reflect that they can't fail (void instead of int); the return
1230           values are ignored in wmbiff
1232 2002-12-29 Sunday 01:36 UTC -- Neil Spring <nspring@cs.washington.edu>
1234         * wmbiff/wmbiff.c: reorder functions to avoid pre-declaration.
1235           should simplify reading the (now very long) code
1237 2002-12-29 Sunday 01:11 UTC -- Neil Spring <nspring@cs.washington.edu>
1239         * wmgeneral/: misc.c, misc.h: exec command can take a const char *
1241 2002-12-29 Sunday 01:05 UTC -- Neil Spring <nspring@cs.washington.edu>
1243         * wmbiff/sample.wmbiffrc: another askpass recipe
1245 2002-12-29 Sunday 00:57 UTC -- Neil Spring <nspring@cs.washington.edu>
1247         * wmbiff/wmbiff.c: cleanup unused variables
1249 2002-12-29 Sunday 00:57 UTC -- Neil Spring <nspring@cs.washington.edu>
1251         * wmbiff/Makefile.am: surgical indent rule
1253 2002-12-29 Sunday 00:37 UTC -- Neil Spring <nspring@cs.washington.edu>
1255         * configure.ac, wmbiff/wmbiff.c: use automake/autoconf defined
1256           PACKAGE_VERSION and PACKAGE_BUGREPORT
1258 2002-12-29 Sunday 00:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1260         * wmbiff/passwordMgr.c: support arbitrarily long password query
1261           commands
1263 2002-12-29 Sunday 00:14 UTC -- Neil Spring <nspring@cs.washington.edu>
1265         * wmbiff/wmbiff.c: configuration file parsing cleanup, support
1266           longer configuration options, remove some ad-hockery in favor of
1267           sscanf
1269 2002-12-13 Friday 05:38 UTC -- Neil Spring <nspring@cs.washington.edu>
1271         * configure.ac, wmbiff/tlsComm.c, wmbiff/wmbiff.1, wmbiff/wmbiff.c:
1272           0.4.10, -skip-certificate-check option
1274 2002-12-09 Monday 21:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1276         * AUTHORS, wmbiff/sample.wmbiffrc, wmbiff/wmbiff.c,
1277           wmbiff/wmbiffrc.5.in: Peter McAlpine's globalnotify patch
1279 2002-12-09 Monday 21:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1281         * wmbiff/Imap4Client.c: minor change to timeout behavior, just
1282           delay a while before next check
1284 2002-12-02 Monday 07:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1286         * configure.ac: require gnutls 0.5.9, release 0.4.9
1288 2002-11-30 Saturday 07:58 UTC -- Neil Spring <nspring@cs.washington.edu>
1290         * wmbiff/Imap4Client.c: more robust ETIMEDOUT handling -- just
1291           chill out for a few minues rather than blacklist as a compromise
1292           between the responsiveness of not retrying unresponsive servers
1293           and the robustness of prodding on.  the right thing is probably a
1294           non-blocking connect, but that's  messy
1296 2002-11-15 Friday 08:06 UTC -- Neil Spring <nspring@cs.washington.edu>
1298         * wmbiff/tlsComm.c: should really be able to catch these problems
1299           earler - without gnutls, the build would fail
1301 2002-11-15 Friday 08:05 UTC -- Neil Spring <nspring@cs.washington.edu>
1303         * autogen.sh: red hat hackery
1305 2002-11-13 Wednesday 06:44 UTC -- Neil Spring <nspring@cs.washington.edu>
1307         * wmbiff/wmbiff.1, wmbiff/wmbiff.c, wmgeneral/wmgeneral.c,
1308           wmgeneral/wmgeneral.h: a method for not using the withdrawn state
1310 2002-11-12 Tuesday 08:27 UTC -- Neil Spring <nspring@cs.washington.edu>
1312         * Makefile.am, configure.ac, wmbiff/wmbiff.c, wmbiff/wmbiffrc.5.in,
1313           wmgeneral/wmgeneral.c, wmgeneral/wmgeneral.h: Allow automatic
1314           sizing of the wmbiff window, effective for other window managers.
1316 2002-10-26 Saturday 23:17 UTC -- Jordi Mallach <jordi@sindominio.net>
1318         * FromCVS.sh, autogen.sh: Rename FromCVS.sh to autogen.sh, which is
1319           the "common" name for such script.
1321 2002-10-26 Saturday 23:15 UTC -- Jordi Mallach <jordi@sindominio.net>
1323         * ChangeLog, Makefile.am, maint/changelog-header,
1324           maint/prerelease.sh: Stop doing the ChangeLog header hack.
1325           Instead, remove ChangeLog entirely from CVS and get it generated
1326           correctly on dist. Remove unneeded maint scripts.
1328 2002-10-26 Saturday 23:12 UTC -- Jordi Mallach <jordi@sindominio.net>
1330         * FromCVS.sh: Add automake-1.7 support.
1332 2002-10-20 Sunday 21:58 UTC -- Jordi Mallach <jordi@sindominio.net>
1334         * wmbiff/: wmbiff.1, wmbiffrc.5.in: do not specify Debian
1335           GNU/Linux... I'm actually more interested in the Hurd right now
1336           :)
1338 2002-10-14 Monday 05:52 UTC -- Neil Spring <nspring@cs.washington.edu>
1340         * wmbiff/maildirClient.c: use mkstemp instead of mktemp to appease
1341           the compiler
1343 2002-10-14 Monday 01:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1345         * wmbiff/wmbiffrc.5.in: add the 'this file automatically generated'
1346           tag
1348 2002-10-13 Sunday 21:28 UTC -- Neil Spring <nspring@cs.washington.edu>
1350         * wmbiff/: Imap4Client.c, tlsComm.c, tlsComm.h: Check certificate
1351           hostname, using gnutls's new function
1353 2002-10-13 Sunday 21:27 UTC -- Neil Spring <nspring@cs.washington.edu>
1355         * wmbiff/Client.h: a formatting glitch
1357 2002-10-13 Sunday 21:27 UTC -- Neil Spring <nspring@cs.washington.edu>
1359         * FromCVS.sh, Makefile.am: use autoreconf instead of the ad-hockery
1361 2002-09-25 Wednesday 06:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1363         * FAQ: why doesn't wmbiff update my mailbox count when I read a
1364           message
1366 2002-09-20 Friday 19:50 UTC -- Neil Spring <nspring@cs.washington.edu>
1368         * FromCVS.sh: support redhat autoconf sadness
1370 2002-09-19 Thursday 07:00 UTC -- Neil Spring <nspring@cs.washington.edu>
1372         * wmbiff/test_wmbiff.c: allow test to run when nnot linked with
1373           gnutls
1375 2002-09-18 Wednesday 23:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1377         * wmbiff/maildirClient.c: compiler warning fixes
1379 2002-09-18 Wednesday 23:43 UTC -- Neil Spring <nspring@cs.washington.edu>
1381         * ChangeLog, configure.ac, wmbiff/Client.h, wmbiff/Imap4Client.c,
1382           wmbiff/Makefile.am, wmbiff/maildirClient.c, wmbiff/test_wmbiff.c,
1383           wmbiff/wmbiffrc.5.in: bugfix to allow imap mailbox filenames to
1384           contain spaces, test that it works; also, prepare 0.4.8
1386 2002-09-14 Saturday 18:51 UTC -- Dwayne C. Litzenberger <dlitz@dlitz.net>
1388         * wmbiff/: Client.h, maildirClient.c, wmbiffrc.5.in: *
1389           maildirClient: Added support for quick checking of writable
1390           network-mounted   maildirs where directory caching normally
1391           causes unwanted delays.
1393 2002-08-16 Friday 07:55 UTC -- Neil Spring <nspring@cs.washington.edu>
1395         * ChangeLog, configure.ac, autoconf/libgnutls.m4,
1396           wmbiff/Imap4Client.c, wmbiff/gnutls-common.c,
1397           wmbiff/gnutls-common.h, wmbiff/tlsComm.c: handle new
1398           gnutls/gnutls.h convention, release 0.4.7
1400 2002-08-06 Tuesday 08:05 UTC -- Neil Spring <nspring@cs.washington.edu>
1402         * FromCVS.sh: seek out and use athe underrated automake 1.6.
1404 2002-07-27 Saturday 17:50 UTC -- Neil Spring <nspring@cs.washington.edu>
1406         * wmbiff/: Imap4Client.c, tlsComm.c: trivial formatting fixes
1408 2002-07-19 Friday 18:51 UTC -- Neil Spring <nspring@cs.washington.edu>
1410         * ChangeLog, configure.ac: release version 0.4.6
1412 2002-07-18 Thursday 02:55 UTC -- Neil Spring <nspring@cs.washington.edu>
1414         * wmbiff/wmbiff.c: ignore sigpipe, possible bugfix for abnormal
1415           termination during suspend for imap/gnutls
1417 2002-07-04 Thursday 08:00 UTC -- Neil Spring <nspring@cs.washington.edu>
1419         * ChangeLog, configure.ac: last minute changes for 0.4.5
1421 2002-07-04 Thursday 01:07 UTC -- Neil Spring <nspring@cs.washington.edu>
1423         * wmbiff/: Imap4Client.c, Makefile.am, Pop3Client.c, charutil.c,
1424           tlsComm.c, wmbiff.c: valgrind debugging, and support for -exit.
1425           some bugs were probably fixed, but since nobody has noticed yet,
1426           I don't know if they mattered
1428 2002-07-04 Thursday 00:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1430         * wmgeneral/wmgeneral.c: reminder in where valgrind complains
1432 2002-07-04 Thursday 00:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1434         * Makefile.am: add a top-level 'indent' rule
1436 2002-07-03 Wednesday 02:28 UTC -- Neil Spring <nspring@cs.washington.edu>
1438         * wmbiff/tlsComm.c: doubled the timeout to 40 seconds.
1440 2002-06-26 Wednesday 19:04 UTC -- Neil Spring <nspring@cs.washington.edu>
1442         * ChangeLog, Makefile.am, autoconf/Makefile.am: die configure.in!
1443           die acconfig.h!
1445 2002-06-26 Wednesday 18:56 UTC -- Neil Spring <nspring@cs.washington.edu>
1447         * ChangeLog, FromCVS.sh, Makefile.am, configure.ac, configure.in,
1448           autoconf/acconfig.h: migrate to newer autoconf (2.5) to try to
1449           debug making-from-scratch problem and get rid of acconfig.h cruft
1451 2002-06-25 Tuesday 23:52 UTC -- Neil Spring <nspring@cs.washington.edu>
1453         * Makefile.am: tiny automake 1.6 fix (doesn't appear to use
1454           stamp-h.  who knew.)
1456 2002-06-25 Tuesday 23:33 UTC -- Neil Spring <nspring@cs.washington.edu>
1458         * autoconf/libgnutls.m4: trivial upstream bugfix
1460 2002-06-25 Tuesday 23:29 UTC -- Neil Spring <nspring@cs.washington.edu>
1462         * wmbiff/Makefile.am: never underestimate the complexity of
1463           solutions involving automake
1465 2002-06-25 Tuesday 23:24 UTC -- Neil Spring <nspring@cs.washington.edu>
1467         * configure.in, wmbiff/Makefile.am: corrections to conditional
1468           compilation of gnutls-common for automake 1.5 (and thereby the
1469           true automake way)
1471 2002-06-25 Tuesday 23:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1473         * configure.in, wmbiff/Makefile.am: only compile gnutls-common.[ch]
1474           if gnutls is configured in (duh), and only check for gcrypt.h if
1475           libgcrypt is installed and current
1477 2002-06-24 Monday 07:18 UTC -- Neil Spring <nspring@cs.washington.edu>
1479         * ChangeLog, FromCVS.sh: roughly finished 0.4.4
1481 2002-06-24 Monday 07:16 UTC -- Neil Spring <nspring@cs.washington.edu>
1483         * wmbiff/tlsComm.c: restore certificate checking
1485 2002-06-24 Monday 07:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1487         * wmbiff/: gnutls-common.c, gnutls-common.h: indent run
1489 2002-06-24 Monday 01:23 UTC -- Neil Spring <nspring@cs.washington.edu>
1491         * wmbiff/Makefile.am, configure.in: basic gnutls 0.4.3 support
1492           (that is, it compiles.)
1494 2002-06-24 Monday 01:18 UTC -- Neil Spring <nspring@cs.washington.edu>
1496         * wmbiff/: gnutls-common.c, gnutls-common.h, tlsComm.c: basic
1497           gnutls 0.4.3 support (that is, it compiles.)
1499 2002-06-23 Sunday 01:26 UTC -- Neil Spring <nspring@cs.washington.edu>
1501         * wmbiff/wmbiff.c: cleanup to periodic mail checking, removal of
1502           the first mail check - now all cases are the same
1504 2002-06-21 Friday 04:34 UTC -- Neil Spring <nspring@cs.washington.edu>
1506         * wmbiff/wmbiff.c: y_ and x_origin, and num_mailboxes constants,
1507           highlight color for fn, restructured mailbox creation routines
1509 2002-06-21 Friday 04:31 UTC -- Neil Spring <nspring@cs.washington.edu>
1511         * wmbiff/Pop3Client.c: splint
1513 2002-06-21 Friday 04:31 UTC -- Neil Spring <nspring@cs.washington.edu>
1515         * wmbiff/: LicqClient.c, ShellClient.c, charutil.c,
1516           maildirClient.c, mboxClient.c, passwordMgr.c, test_wmbiff.c:
1517           config.h
1519 2002-06-21 Friday 04:30 UTC -- Neil Spring <nspring@cs.washington.edu>
1521         * wmbiff/Imap4Client.c: clarity and splint
1523 2002-06-21 Friday 04:29 UTC -- Neil Spring <nspring@cs.washington.edu>
1525         * wmbiff/Client.h: splint support
1527 2002-06-21 Friday 04:29 UTC -- Neil Spring <nspring@cs.washington.edu>
1529         * wmbiff/wmbiff.1: highlight color
1531 2002-06-21 Friday 04:28 UTC -- Neil Spring <nspring@cs.washington.edu>
1533         * wmbiff/Makefile.am: verify that config.h is included in each .c
1534           file
1536 2002-06-15 Saturday 09:05 UTC -- Neil Spring <nspring@cs.washington.edu>
1538         * configure.in: likely bugfix for newer autoconf?
1540 2002-06-15 Saturday 09:04 UTC -- Neil Spring <nspring@cs.washington.edu>
1542         * Makefile.am: keep automake1.6 happy
1544 2002-06-08 Saturday 22:22 UTC -- Neil Spring <nspring@cs.washington.edu>
1546         * ChangeLog, configure.in: release 0.4.3 final updates
1548 2002-06-08 Saturday 22:20 UTC -- Neil Spring <nspring@cs.washington.edu>
1550         * wmbiff/wmbiff.c: make the background black when using fonts
1552 2002-06-08 Saturday 22:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1554         * wmgeneral/: wmgeneral.c, wmgeneral.h: font support, ability to
1555           erase rectangles
1557 2002-06-08 Saturday 22:14 UTC -- Neil Spring <nspring@cs.washington.edu>
1559         * wmbiff/Client.h: slightly changed debug messages; exists() is
1560           more a test -f than a test -e
1562 2002-06-08 Saturday 22:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1564         * wmbiff/wmbiff.1: documentation of -fg and -font options
1566 2002-06-08 Saturday 22:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1568         * wmbiff/: Imap4Client.c, ShellClient.c: cleanup for splint
1569           annotations
1571 2002-06-08 Saturday 22:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1573         * wmbiff/wmbiff.c: basic font support, color selection, cleanup to
1574           default configuration code, bugifx and cleanup to mouse region
1575           code
1577 2002-06-08 Saturday 21:40 UTC -- Neil Spring <nspring@cs.washington.edu>
1579         * wmbiff/socket.c: need config.h to get IPv6 support
1581 2002-06-01 Saturday 18:10 UTC -- Neil Spring <nspring@cs.washington.edu>
1583         * ChangeLog: 0.4.2
1585 2002-06-01 Saturday 17:58 UTC -- Neil Spring <nspring@cs.washington.edu>
1587         * configure.in, wmbiff/wmbiff.c: oops, didn't really want to
1588           release with the crazy font stuff quite yet
1590 2002-06-01 Saturday 07:03 UTC -- Neil Spring <nspring@cs.washington.edu>
1592         * ChangeLog, configure.in, wmbiff/test-wmbiffrc.shell: release
1593           0.4.1
1595 2002-06-01 Saturday 07:01 UTC -- Neil Spring <nspring@cs.washington.edu>
1597         * AUTHORS: release preparation
1599 2002-06-01 Saturday 06:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1601         * wmgeneral/wmgeneral.h: prototypes for basic font support
1603 2002-06-01 Saturday 06:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1605         * wmgeneral/wmgeneral.c: indent run
1607 2002-06-01 Saturday 06:02 UTC -- Neil Spring <nspring@cs.washington.edu>
1609         * wmbiff/: Client.h, ShellClient.c, charutil.c, mboxClient.c:
1610           indent run
1612 2002-06-01 Saturday 06:01 UTC -- Neil Spring <nspring@cs.washington.edu>
1614         * wmbiff/wmbiff.c: font support, disabled by default
1616 2002-06-01 Saturday 06:00 UTC -- Neil Spring <nspring@cs.washington.edu>
1618         * wmbiff/tlsComm.c: a start at certificate checking (a daunting
1619           task at the moment)
1621 2002-06-01 Saturday 05:59 UTC -- Neil Spring <nspring@cs.washington.edu>
1623         * wmbiff/Client.h: declare exists()
1625 2002-06-01 Saturday 05:51 UTC -- Neil Spring <nspring@cs.washington.edu>
1627         * wmgeneral/wmgeneral.c: some basic font support, renaming some
1628           variables for clarity
1630 2002-06-01 Saturday 05:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1632         * wmbiff/socket.c: correct date
1634 2002-06-01 Saturday 05:42 UTC -- Neil Spring <nspring@cs.washington.edu>
1636         * configure.in, wmbiff/socket.c: IPv6 support using getaddrinfo
1637           from Jun-ichiro itojun Hagino <itojun@iijlab.net>
1639 2002-05-03 Friday 05:51 UTC -- Neil Spring <nspring@cs.washington.edu>
1641         * ChangeLog, configure.in: Release 0.4.0
1643 2002-05-03 Friday 05:51 UTC -- Neil Spring <nspring@cs.washington.edu>
1645         * Makefile.am: don't list TODO changes in ChangeLog, to avoid
1646           confusion
1648 2002-05-03 Friday 05:43 UTC -- Neil Spring <nspring@cs.washington.edu>
1650         * wmbiff/mboxClient.c: type casting hackery to help architectures I
1651           don't have
1653 2002-05-03 Friday 05:42 UTC -- Neil Spring <nspring@cs.washington.edu>
1655         * wmbiff/: sample.wmbiffrc, wmbiffrc.5.in: lpq example creep
1657 2002-05-03 Friday 05:42 UTC -- Neil Spring <nspring@cs.washington.edu>
1659         * wmbiff/ShellClient.c: bugfix when alternates between numeric and
1660           text
1662 2002-04-29 Monday 02:01 UTC -- Neil Spring <nspring@cs.washington.edu>
1664         * wmbiff/: Client.h, ShellClient.c, charutil.c, charutil.h: lclint
1665           cleanups - strdup_ordie, some null annotations
1667 2002-04-27 Saturday 08:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1669         * wmbiff/: Client.h, ShellClient.c, passwordMgr.c: cleanup to use
1670           grabCommandOutput in passwordMgr instead of duplicating the
1671           popen/fgets/pclose code
1673 2002-04-27 Saturday 08:29 UTC -- Neil Spring <nspring@cs.washington.edu>
1675         * wmbiff/: Client.h, Makefile.am, charutil.c, passwordMgr.c,
1676           passwordMgr.h, test_wmbiff.c: move passwordMgr testing to
1677           test_wmbiff.c; catch a small bug in handling empty passwords
1679 2002-04-27 Saturday 08:29 UTC -- Neil Spring <nspring@cs.washington.edu>
1681         * FromCVS.sh: apparently aclocal barfs when macros are defined both
1682           in the system directory and in a local copy.  semper fragile.
1684 2002-04-25 Thursday 20:28 UTC -- Neil Spring <nspring@cs.washington.edu>
1686         * README: add a note about gnutls version 0.3.5
1688 2002-04-25 Thursday 18:33 UTC -- Neil Spring <nspring@cs.washington.edu>
1690         * configure.in: hack attempt at supporting gnutls built locally
1692 2002-04-25 Thursday 17:31 UTC -- Neil Spring <nspring@cs.washington.edu>
1694         * ChangeLog, FromCVS.sh, autoconf/libgcrypt.m4,
1695           autoconf/libgnutls.m4: add m4 macros for libgcrypt and libgnutls
1696           to the repository, so that FromCVS can be run to regenerate
1697           configure.in, even on systems without gnutls.
1699 2002-04-20 Saturday 09:55 UTC -- Neil Spring <nspring@cs.washington.edu>
1701         * wmbiff/Makefile.am: correct a problem uncovered by sourceforge's
1702           compile farm
1704 2002-04-20 Saturday 09:27 UTC -- Neil Spring <nspring@cs.washington.edu>
1706         * wmbiff/ShellClient.c: BSD fix (no strndup, no sighandler_t)
1708 2002-04-20 Saturday 09:12 UTC -- Neil Spring <nspring@cs.washington.edu>
1710         * wmbiff/: LicqClient.c, mboxClient.c: move msgs=-1 assignment on
1711           failure to the common openMailbox()
1713 2002-04-20 Saturday 08:53 UTC -- Neil Spring <nspring@cs.washington.edu>
1715         * ChangeLog, configure.in, wmbiff/Client.h: update meta-information
1716           for prerelease 5
1718 2002-04-20 Saturday 08:51 UTC -- Neil Spring <nspring@cs.washington.edu>
1720         * wmbiff/Makefile.am: correct syntax for making a test program
1722 2002-04-20 Saturday 08:13 UTC -- Neil Spring <nspring@cs.washington.edu>
1724         * wmbiff/sample.wmbiffrc: finish deprecating
1726 2002-04-20 Saturday 08:12 UTC -- Neil Spring <nspring@cs.washington.edu>
1728         * wmbiff/: sample.wmbiffrc, wmbiffrc.5.in: document back-tick
1729           expansion, deprecate mbox style without mbox: prefix
1731 2002-04-20 Saturday 07:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1733         * wmbiff/: Client.h, LicqClient.c, ShellClient.c, mboxClient.c:
1734           oops (indent)
1736 2002-04-20 Saturday 07:53 UTC -- Neil Spring <nspring@cs.washington.edu>
1738         * wmbiff/: LicqClient.c, mboxClient.c: refactor mailbox stat()'ting
1739           to reduce duplicated code and supprort backticks.
1741 2002-04-20 Saturday 07:52 UTC -- Neil Spring <nspring@cs.washington.edu>
1743         * wmbiff/ShellClient.c: refactor command execution code to support
1744           backtick foo expansion
1746 2002-04-20 Saturday 07:50 UTC -- Neil Spring <nspring@cs.washington.edu>
1748         * wmbiff/: Makefile.am, test_wmbiff.c: add tests for bbacktick
1749           expansion
1751 2002-04-20 Saturday 07:49 UTC -- Neil Spring <nspring@cs.washington.edu>
1753         * wmbiff/Client.h: ctime has become useless; new prototypes to
1754           handle backtick
1756 2002-04-16 Tuesday 07:37 UTC -- Neil Spring <nspring@cs.washington.edu>
1758         * ChangeLog, wmbiff/Client.h, wmbiff/Imap4Client.c,
1759           wmbiff/LicqClient.c, wmbiff/Pop3Client.c, wmbiff/mboxClient.c,
1760           wmbiff/passwordMgr.c, wmbiff/wmbiff.c: remove vestigial
1761           pc->open()
1763 2002-04-16 Tuesday 07:08 UTC -- Neil Spring <nspring@cs.washington.edu>
1765         * wmbiff/test-make.sh: unnecessary now that autoconf is involved
1767 2002-04-15 Monday 22:58 UTC -- Neil Spring <nspring@cs.washington.edu>
1769         * Makefile.am: dist the FAQ
1771 2002-04-15 Monday 21:19 UTC -- Neil Spring <nspring@cs.washington.edu>
1773         * wmgeneral/: Makefile.am, list.c, list.h, misc.c, misc.h,
1774           wmgeneral.c, wmgeneral.h: run make indent; also tolerate standard
1775           geometry string (dumping the dimensions provided)
1777 2002-04-15 Monday 21:06 UTC -- Neil Spring <nspring@cs.washington.edu>
1779         * wmbiff/wmbiff.c: bugfix to sigchld_handler (argh)
1781 2002-04-15 Monday 08:15 UTC -- Neil Spring <nspring@cs.washington.edu>
1783         * ChangeLog, Makefile.am, configure.in, wmbiff/Makefile.am,
1784           autoconf/Makefile.am: try to make the distcheck target work
1785           correctly.  voodoo.
1787 2002-04-15 Monday 08:14 UTC -- Neil Spring <nspring@cs.washington.edu>
1789         * FAQ: a little documentation
1791 2002-04-15 Monday 02:21 UTC -- Neil Spring <nspring@cs.washington.edu>
1793         * wmbiff/wmbiff.c: treat  all gicu messages as new (they're unread)
1795 2002-04-15 Monday 02:10 UTC -- Neil Spring <nspring@cs.washington.edu>
1797         * configure.in: chmod 0444 wmbiffrc.5 to remind me not to try to
1798           edit it.
1800 2002-04-15 Monday 02:09 UTC -- Neil Spring <nspring@cs.washington.edu>
1802         * wmbiff/wmbiffrc.5.in: document finger, changes to shell
1804 2002-04-15 Monday 01:58 UTC -- Neil Spring <nspring@cs.washington.edu>
1806         * wmbiff/: ShellClient.c, wmbiff.c: waitpid until done
1808 2002-04-15 Monday 01:48 UTC -- Neil Spring <nspring@cs.washington.edu>
1810         * configure.in: slightly nicer message
1812 2002-04-15 Monday 01:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1814         * ChangeLog, configure.in, wmbiff/wmbiff-master-contrast.xpm:
1815           0.4.0pre4 - finger support, text from shell support, minor code
1816           reorganization
1818 2002-04-15 Monday 01:38 UTC -- Neil Spring <nspring@cs.washington.edu>
1820         * AUTHORS, README: add Andelko Horvat to the list of contributors,
1821           remove author list from README
1823 2002-04-15 Monday 01:30 UTC -- Neil Spring <nspring@cs.washington.edu>
1825         * wmbiff/test-wmbiffrc.shell: test finger as well
1827 2002-04-15 Monday 01:30 UTC -- Neil Spring <nspring@cs.washington.edu>
1829         * wmbiff/Client.h: TextStatus to hold a three-character status
1830           message
1832 2002-04-15 Monday 01:30 UTC -- Neil Spring <nspring@cs.washington.edu>
1834         * wmbiff/wmbiff.c: support TextString as status; factor
1835           blitMsgCounters as displayMsgCounters was starting to get ugly,
1836           add finger recipe to use ShellClient instead of a separate module
1838 2002-04-15 Monday 01:26 UTC -- Neil Spring <nspring@cs.washington.edu>
1840         * wmbiff/passwordMgr.c: use chomp to remove the newline from
1841           ssh-askpass output
1843 2002-04-15 Monday 01:26 UTC -- Neil Spring <nspring@cs.washington.edu>
1845         * wmbiff/: charutil.c, charutil.h: duplicate perl's chomp()
1847 2002-04-15 Monday 01:26 UTC -- Neil Spring <nspring@cs.washington.edu>
1849         * wmbiff/ShellClient.c: return sigchld to default hander before
1850           using popen; handle text input. Much complexity, I hope it's
1851           worth it.
1853 2002-04-15 Monday 01:25 UTC -- Neil Spring <nspring@cs.washington.edu>
1855         * wmbiff/wmbiff-master-led.xpm: support yellow text
1857 2002-04-15 Monday 01:24 UTC -- Neil Spring <nspring@cs.washington.edu>
1859         * wmbiff/Makefile.am: derive wmbiff-master-contrast.xpm from
1860           wmbiff-master-led.xpm
1862 2002-04-12 Friday 05:54 UTC -- Neil Spring <nspring@cs.washington.edu>
1864         * wmbiff/socket.c: extra debugging messages, to be in-line with our
1865           -debug to stdout philosophy
1867 2002-04-11 Thursday 21:39 UTC -- Jordi Mallach <jordi@sindominio.net>
1869         * autoconf/: install-sh, missing, mkinstalldirs: Shouldn't be in
1870           CVS...
1872 2002-04-11 Thursday 18:24 UTC -- Neil Spring <nspring@cs.washington.edu>
1874         * configure.in: attempt to fix Jordi's configure bug
1876 2002-04-11 Thursday 07:24 UTC -- Neil Spring <nspring@cs.washington.edu>
1878         * wmbiff/Pop3Client.c: APOP bugfix (unreleased bug)
1880 2002-04-09 Tuesday 07:52 UTC -- Neil Spring <nspring@cs.washington.edu>
1882         * ChangeLog, configure.in: bump version to 0.4.0pre3 - permissions
1883           checking for .wmbiffrc added.
1885 2002-04-09 Tuesday 07:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1887         * Makefile.am: try to tell the difference between running make dist
1888           with cvs and missing cvs2cl (an error), and running make dist
1889           without cvs (which should be ok).
1891 2002-04-09 Tuesday 07:45 UTC -- Neil Spring <nspring@cs.washington.edu>
1893         * wmbiff/: LicqClient.c, maildirClient.c, mboxClient.c: some
1894           explicit casts to make compiling on non-linux a bit more
1895           warning-free
1897 2002-04-09 Tuesday 07:44 UTC -- Neil Spring <nspring@cs.washington.edu>
1899         * wmbiff/wmbiff.c: permissions checking for .wmbiffrc (if it
1900           exists), some minor cleanup associated with this.
1902 2002-04-09 Tuesday 07:43 UTC -- Neil Spring <nspring@cs.washington.edu>
1904         * wmbiff/Makefile.am: _DATA files don't get distributed, add the
1905           skins into extra_dist. automake can be confusing
1907 2002-04-08 Monday 09:35 UTC -- Neil Spring <nspring@cs.washington.edu>
1909         * configure.in, wmbiff/wmbiffrc.5, wmbiff/wmbiffrc.5.in:
1910           automatically generate wmbiffrc.5 based on the results of
1911           configure, so that the configure-time chosen defaults are
1912           accurately shown
1914 2002-04-07 Sunday 19:30 UTC -- Neil Spring <nspring@cs.washington.edu>
1916         * configure.in: don't try to configure gnutls if libz or libgdbm
1917           aren't installed
1919 2002-04-07 Sunday 19:30 UTC -- Neil Spring <nspring@cs.washington.edu>
1921         * FromCVS.sh: allow for automake 1.5's need for depcomp
1923 2002-04-07 Sunday 05:08 UTC -- Neil Spring <nspring@cs.washington.edu>
1925         * COPYING, ChangeLog, FromCVS.sh, INSTALL, Makefile.am,
1926           configure.in, autoconf/acconfig.h, autoconf/install-sh,
1927           autoconf/missing, autoconf/mkinstalldirs, maint/changelog-header,
1928           wmbiff/Client.h, wmbiff/Imap4Client.c, wmbiff/LicqClient.c,
1929           wmbiff/Makefile, wmbiff/Makefile.am, wmbiff/Pop3Client.c,
1930           wmbiff/charutil.h, wmbiff/maildirClient.c, wmbiff/mboxClient.c,
1931           wmbiff/tlsComm.c, wmbiff/wmbiff.c, wmgeneral/Makefile.am,
1932           wmgeneral/wmgeneral.c: use automake / autoconf; after checkout
1933           run ./FromCVS.sh
1935 2002-04-07 Sunday 03:23 UTC -- Neil Spring <nspring@cs.washington.edu>
1937         * AUTHORS: automake required file, duplicated from README
1939 2002-04-05 Friday 19:44 UTC -- Neil Spring <nspring@cs.washington.edu>
1941         * wmbiff/wmbiff-master-contrast.xpm: a first cut higher-contrast
1942           skin
1944 2002-04-05 Friday 19:43 UTC -- Neil Spring <nspring@cs.washington.edu>
1946         * wmbiff/: Makefile, sample.wmbiffrc, test-make.sh, wmbiff.c:
1947           askpass - invoke ssh-askpass to fill in passwords for IMAP
1948           servers; skin - dynamically load an .xpm background
1950 2002-04-05 Friday 19:42 UTC -- Neil Spring <nspring@cs.washington.edu>
1952         * wmbiff/wmbiffrc.5: documentation of askpass and skin
1954 2002-04-05 Friday 19:08 UTC -- Neil Spring <nspring@cs.washington.edu>
1956         * wmbiff/tlsComm.c: explicit handling of timeouts
1958 2002-04-05 Friday 19:02 UTC -- Neil Spring <nspring@cs.washington.edu>
1960         * wmbiff/passwordMgr.c: askpass having a space in it is an INFO,
1961           not an ERR.
1963 2002-04-04 Thursday 08:51 UTC -- Neil Spring <nspring@cs.washington.edu>
1965         * wmbiff/: Client.h, Imap4Client.c, Makefile, Pop3Client.c,
1966           passwordMgr.c, passwordMgr.h, sample.wmbiffrc, test-make.sh:
1967           interactive password prompting support for imap - leave password
1968           in the : format blank to use
1970 2002-03-26 Tuesday 16:30 UTC -- Jordi Mallach <jordi@sindominio.net>
1972         * ChangeLog, wmbiff/Makefile: Released WMBiff 0.3.8.
1974 2002-03-18 Monday 09:47 UTC -- Neil Spring <nspring@cs.washington.edu>
1976         * wmgeneral/wmgeneral.h: un-shadow index
1978 2002-03-18 Monday 09:46 UTC -- Neil Spring <nspring@cs.washington.edu>
1980         * wmgeneral/wmgeneral.c: un-shadow a global variable
1982 2002-03-14 Thursday 08:51 UTC -- Neil Spring <nspring@cs.washington.edu>
1984         * README: correct and expand upon crypto instructions
1986 2002-03-12 Tuesday 23:53 UTC -- Neil Spring <nspring@cs.washington.edu>
1988         * wmbiff/: Client.h, Imap4Client.c, Pop3Client.c, ShellClient.c,
1989           tlsComm.c: fixed misunderstanding of the use of ## in macros with
1990           strings - the compiler does the concatenation, not the
1991           preprocessor
1993 2002-03-11 Monday 00:11 UTC -- Neil Spring <nspring@cs.washington.edu>
1995         * wmbiff/tlsComm.c: slightly better message on expect failure
1997 2002-03-09 Saturday 08:50 UTC -- Neil Spring <nspring@cs.washington.edu>
1999         * wmbiff/ShellClient.c: debug messages cleanup; start handling
2000           pclose errors; remove open() function pointer assignment;
2001           #include fix
2003 2002-03-09 Saturday 08:03 UTC -- Neil Spring <nspring@cs.washington.edu>
2005         * wmgeneral/: list.h, wmgeneral.c: minor warning cleanups
2007 2002-03-08 Friday 19:26 UTC -- Neil Spring <nspring@cs.washington.edu>
2009         * README: credit Ben
2011 2002-03-07 Thursday 22:20 UTC -- Neil Spring <nspring@cs.washington.edu>
2013         * wmbiff/ShellClient.c: fix error return status (ben's 'lil' patch)
2015 2002-03-07 Thursday 07:04 UTC -- Neil Spring <nspring@cs.washington.edu>
2017         * wmbiff/ShellClient.c: appropriate credits
2019 2002-03-06 Wednesday 18:01 UTC -- Neil Spring <nspring@cs.washington.edu>
2021         * wmbiff/ShellClient.c: fix my sloppy mistake in shell path parsing
2023 2002-03-06 Wednesday 07:59 UTC -- Neil Spring <nspring@cs.washington.edu>
2025         * wmbiff/ShellClient.c: misplaced string.h
2027 2002-03-06 Wednesday 07:59 UTC -- Neil Spring <nspring@cs.washington.edu>
2029         * wmbiff/wmbiff.c: rename in Read_Config_File for more 'index'
2030           purging
2032 2002-03-06 Wednesday 07:44 UTC -- Neil Spring <nspring@cs.washington.edu>
2034         * wmbiff/ShellClient.c: fix a potential file descriptor leak
2036 2002-03-06 Wednesday 07:15 UTC -- Neil Spring <nspring@cs.washington.edu>
2038         * wmbiff/: Client.h, Makefile, ShellClient.c, mboxClient.c,
2039           sample.wmbiffrc, test-wmbiffrc.shell, wmbiff.1, wmbiff.c,
2040           wmbiffrc.5: Draft shell command and gnomeicu support from Benoît
2041           Rouits with minor modifications 1) implement gicu using the shell
2042           module rather than as a separate module, 2) edit Ben's shell
2043           format to have extra colons for extensibility, 3) add some extra
2044           error checking in the shell method.  I also added a test wmbiffrc
2045           that can be used to verify that the gicu and shell methods
2046           "work".
2048 2002-03-05 Tuesday 05:02 UTC -- Dwayne C. Litzenberger <dlitz@dlitz.net>
2050         * wmbiff/maildirClient.c: cosmetic changes
2052 2002-03-04 Monday 06:57 UTC -- Neil Spring <nspring@cs.washington.edu>
2054         * wmbiff/mboxClient.c: convert a lingering fprintf to DM
2056 2002-03-02 Saturday 23:25 UTC -- Neil Spring <nspring@cs.washington.edu>
2058         * wmbiff/: Imap4Client.c, Makefile, wmbiff.c: a little -Wshadow and
2059           -Wcast-qual cleanup (or, eliminate the use of 'index' as a
2060           variable name)
2062 2002-03-02 Saturday 22:38 UTC -- Neil Spring <nspring@cs.washington.edu>
2064         * wmbiff/Client.h: add preprocessor define to handle portability of
2065           __attribute__ tag to non-gcc compilers (untested)
2067 2002-03-02 Saturday 06:42 UTC -- Neil Spring <nspring@cs.washington.edu>
2069         * wmbiff/tlsComm.c: indent run (oops)
2071 2002-03-02 Saturday 06:41 UTC -- Neil Spring <nspring@cs.washington.edu>
2073         * wmbiff/: Pop3Client.c, Imap4Client.c: minor reorganization of
2074           gcrypt-needing authentication schemes
2076 2002-03-02 Saturday 06:39 UTC -- Neil Spring <nspring@cs.washington.edu>
2078         * wmbiff/tlsComm.c: attribute tags for warning cleanup w/o gnutls
2080 2002-03-02 Saturday 06:36 UTC -- Neil Spring <nspring@cs.washington.edu>
2082         * wmbiff/wmbiff.c: gcc attribute tags, minor debug message cleanup
2084 2002-03-02 Saturday 06:31 UTC -- Neil Spring <nspring@cs.washington.edu>
2086         * wmbiff/Makefile: rearrange which compiler warnings are implied by
2087           DEBUG
2089 2002-03-02 Saturday 05:58 UTC -- Neil Spring <nspring@cs.washington.edu>
2091         * wmbiff/Client.h: use off_t instead of size_t in Licq and Maildir
2092           for file sizes from stat()
2094 2002-03-02 Saturday 05:50 UTC -- Neil Spring <nspring@cs.washington.edu>
2096         * wmbiff/tlsComm.c: bugfix to support compilation without crypto
2098 2002-03-01 Friday 11:58 UTC -- Jordi Mallach <jordi@sindominio.net>
2100         * wmbiff/wmbiff.c: Added -debug to help text.  Removed Gennady's
2101           mail address and added our devel list.
2103 2002-03-01 Friday 11:28 UTC -- Jordi Mallach <jordi@sindominio.net>
2105         * wmbiff/Makefile: Fixed install rule in Makefile.
2107 2002-03-01 Friday 08:41 UTC -- Neil Spring <nspring@cs.washington.edu>
2109         * wmbiff/: Client.h, Imap4Client.c, LicqClient.c, Makefile,
2110           Pop3Client.c, maildirClient.c, mboxClient.c, tlsComm.c,
2111           tlsComm.h, wmbiff.1, wmbiff.c, wmbiffrc.5: Replaced DEBUG_x
2112           preprocessor defines with a -debug option and debug configuration
2113           keyword.  Replaced most debugging messages with a DM (debug
2114           message) macro.  Removed gnutls version 0.2.x support.  Added
2115           troubleshooting section to man page.
2117 2002-02-03 Sunday 22:48 UTC -- Jordi Mallach <jordi@sindominio.net>
2119         * ChangeLog: Released WMBiff 0.3.7.
2121 2002-02-03 Sunday 22:43 UTC -- Jordi Mallach <jordi@sindominio.net>
2123         * wmbiff/Makefile: Bumped WMBIFF_VERSION to 0.3.7.
2125 2002-02-02 Saturday 18:04 UTC -- Jordi Mallach <jordi@sindominio.net>
2127         * wmbiff/: Client.h, Imap4Client.c, Makefile, Pop3Client.c,
2128           charutil.h: Makefile fixes from Simon L. Nielsen, which help
2129           building wmbiff in FreeBSD.  Fixed the previous IMAP regex patch.
2131 2002-01-27 Sunday 20:20 UTC -- Jordi Mallach <jordi@sindominio.net>
2133         * ChangeLog, maint/changelog.sed, maint/prerelease.sh: Some fixes
2134           for the maint scripts.
2136 2002-01-27 Sunday 19:59 UTC -- Jordi Mallach <jordi@sindominio.net>
2138         * ChangeLog: Released WMBiff 0.3.6.
2140 2002-01-27 Sunday 19:56 UTC -- Jordi Mallach <jordi@sindominio.net>
2142         * wmbiff/Imap4Client.c: Indent fixes.
2144 2002-01-27 Sunday 19:52 UTC -- Jordi Mallach <jordi@sindominio.net>
2146         * wmbiff/Makefile: Bump WMBIFF_VERSION to 0.3.6.
2148 2002-01-27 Sunday 12:46 UTC -- Jordi Mallach <jordi@sindominio.net>
2150         * README, wmbiff/Imap4Client.c, wmbiff/Makefile, wmbiff/wmbiffrc.5:
2151           Alternate regex for imap/imaps which allows "@" in passwords.
2152           Fix to correctly handle the auth list in imap.  Patch from David
2153           Smith <davidsmith@acm.org>.
2155 2002-01-14 Monday 01:51 UTC -- Jordi Mallach <jordi@sindominio.net>
2157         * ChangeLog: Released WMBiff 0.3.5.
2159 2002-01-14 Monday 01:50 UTC -- Jordi Mallach <jordi@sindominio.net>
2161         * wmbiff/Makefile: Bump WMBIFF_VERSION to 0.3.5.
2163 2002-01-12 Saturday 19:18 UTC -- Neil Spring <nspring@cs.washington.edu>
2165         * wmbiff/Imap4Client.c: quote patch from Nick Mitchell, ref debian
2166           #128863
2168 2002-01-12 Saturday 06:17 UTC -- Neil Spring <nspring@cs.washington.edu>
2170         * wmbiff/tlsComm.c: debugging for gnutls3
2172 2002-01-12 Saturday 05:50 UTC -- Neil Spring <nspring@cs.washington.edu>
2174         * wmbiff/Makefile: clarify what to do with gnutls version define
2176 2002-01-12 Saturday 05:30 UTC -- Neil Spring <nspring@cs.washington.edu>
2178         * wmbiff/: Makefile, charutil.c, tlsComm.c: update for the
2179           interface change in gnutls 0.3.0
2181 2001-11-23 Friday 15:57 UTC -- Jordi Mallach <jordi@sindominio.net>
2183         * ChangeLog: Released WMBiff 0.3.4.
2185 2001-11-23 Friday 15:55 UTC -- Jordi Mallach <jordi@sindominio.net>
2187         * wmbiff/Makefile: Bumped version to 0.3.4, and release.
2189 2001-11-23 Friday 15:53 UTC -- Jordi Mallach <jordi@sindominio.net>
2191         * ChangeLog, wmbiff/sample.wmbiffrc: Doc updates for 0.3.4.
2193 2001-11-16 Friday 07:11 UTC -- Neil Spring <nspring@cs.washington.edu>
2195         * wmbiff/: Imap4Client.c, Pop3Client.c, charutil.c: regexes limit
2196           password and username to 32 characters
2198 2001-11-16 Friday 06:08 UTC -- Neil Spring <nspring@cs.washington.edu>
2200         * wmgeneral/: wmgeneral.c, wmgeneral.h: -Wwrite-strings cleanliness
2202 2001-11-16 Friday 01:13 UTC -- Neil Spring <nspring@cs.washington.edu>
2204         * wmbiff/: Client.h, Imap4Client.c, Makefile, Pop3Client.c,
2205           charutil.c: rewrite of authentication code to a) allow users to
2206           specify authentication type, b) fall back to other authentication
2207           methods when hash-based authentication fails (because not
2208           everybody uses the cleartext password file) c) fix debug messages
2210 2001-11-16 Friday 00:40 UTC -- Neil Spring <nspring@cs.washington.edu>
2212         * wmbiff/charutil.h: regex helpers common to pop3 and imap4 clients
2213           extracted and moved here
2215 2001-11-16 Friday 00:40 UTC -- Neil Spring <nspring@cs.washington.edu>
2217         * wmbiff/: tlsComm.c, tlsComm.h: blacklist and debugging updates
2218           for gnutls 0.2.10 and DM macro
2220 2001-11-16 Friday 00:39 UTC -- Neil Spring <nspring@cs.washington.edu>
2222         * wmbiff/wmbiffrc.5: authentication method list, reduced
2223           indentation to fit screen better
2225 2001-11-16 Friday 00:38 UTC -- Neil Spring <nspring@cs.washington.edu>
2227         * wmbiff/wmbiff-master-led.xpm: made pixmap const char
2229 2001-11-16 Friday 00:37 UTC -- Neil Spring <nspring@cs.washington.edu>
2231         * wmbiff/wmbiff.c: -Wwrite-strings cleanliness
2233 2001-11-02 Friday 08:53 UTC -- Neil Spring <nspring@cs.washington.edu>
2235         * wmbiff/: Imap4Client.c, wmbiff.c, wmbiffrc.5: Prefer "imaps"
2236           instead of "sslimap" (sslimap is still supported, but imaps is
2237           documented, and a better name).
2239 2001-11-02 Friday 08:48 UTC -- Neil Spring <nspring@cs.washington.edu>
2241         * wmbiff/tlsComm.c: Small debugging message to help if a connection
2242           ends unexpectedly.
2244 2001-10-29 Monday 13:57 UTC -- Jordi Mallach <jordi@sindominio.net>
2246         * ChangeLog: Released WMBiff 0.3.3.
2248 2001-10-29 Monday 13:54 UTC -- Jordi Mallach <jordi@sindominio.net>
2250         * wmbiff/: Imap4Client.c, wmbiff.c: Indent run.
2252 2001-10-28 Sunday 23:32 UTC -- Jordi Mallach <jordi@sindominio.net>
2254         * ChangeLog, README, wmbiff/Makefile, wmbiff/sample.wmbiffrc:
2255           Preparation for 0.3.3.  Documentation updates.
2257 2001-10-28 Sunday 22:22 UTC -- Neil Spring <nspring@cs.washington.edu>
2259         * wmbiff/wmbiff.c: Bugfix: initialize libgcrypt properly before
2260           cram-md5 (or probably apop) authentication.
2262 2001-10-24 Wednesday 15:35 UTC -- Jordi Mallach <jordi@sindominio.net>
2264         * maint/changelog.sed: Added Neil to the sed script.
2266 2001-10-23 Tuesday 21:14 UTC -- Neil Spring <nspring@cs.washington.edu>
2268         * wmbiff/Imap4Client.c: error check just in case sighup patch is
2269           applied
2271 2001-10-23 Tuesday 18:35 UTC -- Jordi Mallach <jordi@sindominio.net>
2273         * ChangeLog: Released WMBiff 0.3.2.
2275 2001-10-23 Tuesday 18:33 UTC -- Jordi Mallach <jordi@sindominio.net>
2277         * wmbiff/Makefile: Bump WMBIFF_VERSION to 0.3.2.
2279 2001-10-05 Friday 16:10 UTC -- Jordi Mallach <jordi@sindominio.net>
2281         * wmbiff/Makefile: Changed order of additions to LIBS and
2282           EXTRAFLAGS, removed extra WMBIFF_VERSION definition.
2284 2001-10-04 Thursday 09:50 UTC -- Jordi Mallach <jordi@sindominio.net>
2286         * README, wmbiff/Client.h, wmbiff/Imap4Client.c,
2287           wmbiff/LicqClient.c, wmbiff/Makefile, wmbiff/Pop3Client.c,
2288           wmbiff/charutil.c, wmbiff/charutil.h, wmbiff/maildirClient.c,
2289           wmbiff/mboxClient.c, wmbiff/socket.c, wmbiff/tlsComm.c,
2290           wmbiff/tlsComm.h, wmbiff/wmbiff.1, wmbiff/wmbiff.c,
2291           wmbiff/wmbiffrc.5: * Big patch from Neil Spring which adds lots
2292           of crypto support to WMBiff.  * WMBiff can now speak IMAP over
2293           TLS and CRAM-MD5, and APOP using libgcrypt.  * Known problems:
2294           - gnutls is being developed still, so it may have security
2295           related bugs.    - A bug in gnutls (a too-small buffer) may cause
2296           problems      in the parsing of openssl certificates. This should
2297           be fixed by gnutls      soon, hopefully. Added error messages if
2298           this bug is tickled. If you've      got problems with IMAP SSL,
2299           please try upgrading gnutls. If the problem      persists, let us
2300           know.    - IMAP has totally been rewritten, so bugs may crop up.
2301           - Pop3 hasn't been rewritten to use the TLS primitives, though
2302           it probably      could be if someone wanted to.  * There's a new
2303           interface for reading and writing to the socket in
2304           tlsComm.[ch].  This makes the IMAP code somewhat independent of
2305           whether   ssl is used, and provides nicer primitives to help skip
2306           'informational'   messages.  * WITH_TLS and WITH_GCRYPT are
2307           on-by-default in the Makefile.  TLS   applies to encryption,
2308           GCRYPT to cram-md5 and apop authentication.    Since gnutls
2309           depends on libgcrypt anyway, these probably don't need to be
2310           independent.  Some compile warnings may be generated when these
2311           are    disabled.  * Added code to optionally include dmalloc.h
2312           and link -ldmalloc. This   doesn't do anything at the moment, but
2313           shouldn't hurt. It's off-by-default.  * IMAP connections are now
2314           persistent.  persistent.  This is to cut down on   the need to
2315           re-negotiate an SSL connection every time you want to check
2316           mail. It tries to use just one connection per
2317           (server/username/password/port   number), which means multiple
2318           mailboxes need only one connection.  * There are a handful of
2319           lclint (http://lclint.cs.virginia.edu) annotations   in
2320           tlsComm.[ch]. These should also not hurt anyone, and are meant to
2321           keep   the signal to noise ratio of lclint high.  * The rewritten
2322           IMAP code uses the GNU regex library to handle the
2323           configuration line.  I think its clearer than the cascading
2324           strtok()   solution, but the regex might not be perfect.  *
2325           Removed an unnecessary "inline" keyword from charutil.h.  * Added
2326           a TODO document with the bits that are missing from the picture.
2327           * Please bow in awe at NAKAYAMA Takao, Jay T. Francis and
2328           specially   Neil Spring for all of this.
2330 2001-10-04 Thursday 09:21 UTC -- Jordi Mallach <jordi@sindominio.net>
2332         * wmbiff/ApopClient.c: Removed unneeded Apop support code, now
2333           integrated in Neil and Jay's patch.
2335 2001-10-04 Thursday 09:00 UTC -- Jordi Mallach <jordi@sindominio.net>
2337         * maint/changelog.sed: Added my other SF account, which I intend to
2338           use now.
2340 2001-10-04 Thursday 08:54 UTC -- Jordi Mallach <jordi@sindominio.net>
2342         * ChangeLog, README, wmbiff/Client.h, wmbiff/Makefile,
2343           wmbiff/sample.wmbiffrc, wmbiff/wmbiff.1, wmbiff/wmbiff.c,
2344           wmbiff/wmbiffrc.5: Backed out hoehoe's patch, preparing to apply
2345           Neil's.
2347 2001-09-24 Monday 11:58 UTC -- Jordi Mallach <jordi@sindominio.net>
2349         * ChangeLog, README, wmbiff/ApopClient.c, wmbiff/Client.h,
2350           wmbiff/Makefile, wmbiff/sample.wmbiffrc, wmbiff/wmbiff.1,
2351           wmbiff/wmbiff.c, wmbiff/wmbiffrc.5: Added APOP support, patch
2352           from NAKAYAMA Takao <hoehoe@wakaba.jp>.  Fixed some bits of the
2353           manpage (Jordi) Bumped version to 0.3.2.
2355 2001-09-24 Monday 11:56 UTC -- Jordi Mallach <jordi@sindominio.net>
2357         * maint/prerelease.sh: Removed -t to cvs2cl invocation, to make
2358           cleaner ChangeLogs.
2360 2001-06-24 Sunday 18:17 UTC -- Jordi Mallach <jordi@sindominio.net>
2362         * ChangeLog: Released wmbiff 0.3.1.
2364 2001-06-24 Sunday 18:08 UTC -- Jordi Mallach <jordi@sindominio.net>
2366         * ChangeLog, README: Removed duplicate entry for Vladimir Popov in
2367           README.
2369 2001-06-23 Saturday 00:09 UTC -- Jordi Mallach <jordi@sindominio.net>
2371         * wmbiff/Imap4Client.c: Imap fix from Rob Funk
2373 2001-06-23 Saturday 00:07 UTC -- Jordi Mallach <jordi@sindominio.net>
2375         * ChangeLog, maint/changelog.sed, maint/prerelease.sh: Renamed
2376           CHANGES to ChangeLog and RELEASE-NOTES to NEWS, modified release
2377           scripts accordingly. Added Mark to the sed file.
2379 2001-06-22 Friday 23:55 UTC -- Jordi Mallach <jordi@sindominio.net>
2381         * CHANGES, RELEASE-NOTES: Renamed to NEWS and ChangeLog
2383 2001-06-19 Tuesday 03:52 UTC -- Dwayne C. Litzenberger <dlitz@dlitz.net>
2385         * CHANGES, maint/prerelease.sh: * Whoops!  Messed up CVS expansion
2386           in maint/prerelease.sh.  Fixed it.  * Also changed
2387           maint/prerelease.sh a bit.
2389 2001-06-19 Tuesday 03:38 UTC -- Dwayne C. Litzenberger <dlitz@dlitz.net>
2391         * CHANGES, ChangeLog, README, RELEASE-NOTES, maint/changelog.sed,
2392           maint/prerelease.sh, wmbiff/Client.h, wmbiff/Imap4Client.c,
2393           wmbiff/LicqClient.c, wmbiff/Makefile, wmbiff/Pop3Client.c,
2394           wmbiff/charutil.c, wmbiff/charutil.h, wmbiff/maildirClient.c,
2395           wmbiff/mboxClient.c, wmbiff/sample.wmbiffrc, wmbiff/socket.c,
2396           wmbiff/wmbiff.1, wmbiff/wmbiff.c, wmbiff/wmbiffrc.5: * Another
2397           big patch that mucks with everything.  I probably deserve to be
2398           flamed for this practice.  Feel free... :-) * Added
2399           maint/prerelease.sh script.  Run it before making any releases.
2400           * Added maint/changelog.sed.  Add your SourceForge userid here.
2401           * Moved ChangeLog to RELEASE-NOTES (see below).  * Added a new
2402           file, CHANGES (created by maint/prerelease.sh) that tabulates
2403           all the CVS changes.  * Added "distclean" to wmbiff/Makefile.  *
2404           Added CVS Id$ to all the files in wmbiff/ .  * I reformatted ths
2405           changelog, again.  I hope this is the last time I need   to do
2406           this.  The CVS logs should be used for all changes, and this file
2407           should by updated for user-visible changes only, from now on.
2408           (Dwayne C. Litzenberger)  * Updated the README to reflect that
2409           Gennady Belyakov died right after releasing   wmBiff 0.2.  May
2410           your soul rest in peace, Gennady.  (Dwayne C. Litzenberger)
2412 2001-06-16 Saturday 01:02 UTC -- Jordi Mallach <jordi@sindominio.net>
2414         * ChangeLog, wmbiff/Makefile, wmbiff/sample.wmbiffrc,
2415           wmbiff/wmbiff.c: An FHS fix for wmbiff.c and use $(CC) in the
2416           Makefile
2418 2001-05-17 Thursday 04:22 UTC -- Dwayne C. Litzenberger <dlitz@dlitz.net>
2420         * ChangeLog, wmbiff/Makefile, wmbiff/charutil.c: Committing Mark
2421           Hurley's patch
2423 2001-05-16 Wednesday 10:48 UTC -- Jordi Mallach <jordi@sindominio.net>
2425         * ChangeLog, README: Updated some obsolete info in README
2427 2001-05-11 Friday 15:04 UTC -- Jordi Mallach <jordi@sindominio.net>
2429         * ChangeLog, wmbiff/Imap4Client.c, wmbiff/Makefile,
2430           wmbiff/charutil.c, wmbiff/charutil.h, wmbiff/wmbiff.c: Mark's
2431           wmbiffrc parsing fix, small Makefile changes and bump version to
2432           0.3.0.
2434 2001-05-11 Friday 14:49 UTC -- Jordi Mallach <jordi@sindominio.net>
2436         * wmbiff/Makefile: Uncommitted stuff to deal with the removal of
2437           the xmp link
2439 2001-05-04 Friday 11:01 UTC -- Jordi Mallach <jordi@sindominio.net>
2441         * ChangeLog, wmbiff/Makefile: Updated Changelog and Makefile for
2442           0.2r.
2444 2001-05-01 Tuesday 16:11 UTC -- Jordi Mallach <jordi@sindominio.net>
2446         * README.licq, ChangeLog, README, wmgeneral/list.c,
2447           wmgeneral/list.h, wmgeneral/misc.c, wmgeneral/misc.h,
2448           wmgeneral/wmgeneral.h, wmbiff/socket.c, wmgeneral/wmgeneral.c,
2449           wmbiff/Imap4Client.c, wmbiff/Makefile, wmbiff/mboxClient.c,
2450           wmbiff/sample.wmbiffrc, wmbiff/wmbiff.1, wmbiff/wmbiff.c,
2451           wmbiff/wmbiff-master-led.xpm, wmbiff/Client.h,
2452           wmbiff/LicqClient.c, wmbiff/Pop3Client.c, wmbiff/maildirClient.c,
2453           wmbiff/wmbiffrc.5: Initial import to SourceForge, version
2454           0.2q1+Debian
2456 2001-05-01 Tuesday 16:11 UTC -- Jordi Mallach <jordi@sindominio.net>
2458         * README.licq, ChangeLog, README, wmgeneral/list.c,
2459           wmgeneral/list.h, wmgeneral/misc.c, wmgeneral/misc.h,
2460           wmgeneral/wmgeneral.h, wmbiff/socket.c, wmgeneral/wmgeneral.c,
2461           wmbiff/Imap4Client.c, wmbiff/Makefile, wmbiff/mboxClient.c,
2462           wmbiff/sample.wmbiffrc, wmbiff/wmbiff.1, wmbiff/wmbiff.c,
2463           wmbiff/wmbiff-master-led.xpm, wmbiff/Client.h,
2464           wmbiff/LicqClient.c, wmbiff/Pop3Client.c, wmbiff/maildirClient.c,
2465           wmbiff/wmbiffrc.5: Initial revision