1 2014-02-10 Martin Mares <mj@ucw.cz>
3 * Relaxed parsing of encoded MIME headers (RFC 2047).
4 Follows changes in recent versions of Mutt. Unfortunalely,
5 most contemporary MUA's are made by dilletantes.
9 2014-02-05 Martin Mares <mj@ucw.cz>
11 * Fixed a trivial bug in formatting of message snippets, which caused
12 "-omps" output to lack space between mail address and personal info.
16 2010-07-18 Martin Mares <mj@ucw.cz>
18 * Added incremental search of mailbox names (invoked by the "/" key).
20 * New messages can be reported by on-screen display using OSDD.
24 2008-03-05 Martin Mares <mj@ucw.cz>
26 * Added support for lighting keyboard LEDs via the XKB protocol
27 if a connection to the X server is available.
31 2008-02-13 Martin Mares <mj@ucw.cz>
33 * Added support for gzipped mailboxes, based on a patch by
38 2008-01-16 Martin Mares <mj@ucw.cz>
40 * Non-ASCII characters are displayed properly in UTF-8 locale.
41 Unfortunately, this needs linking checkmail with libncursesw,
42 because plain libncurses chokes on multi-byte characters whose
43 parts do not look printable. This mode is now enabled by default,
44 tweak the Makefile if you do not have libncursesw.
48 2007-06-25 Martin Mares <mj@ucw.cz>
50 * Non-ASCII characters encoded as per RFC 2047 are now deciphered
51 and converted to the native character set. (We use parsing code
52 from Mutt 1.5.16, slightly adapted for our use.)
54 * The system locale and iconv routines are used for operations with
55 charsets. We use the not too well documented "//TRANSLIT" suffix to
56 make iconv perform transliteration when it encounters a character,
57 which cannot be represented in the destination charset. This is
58 a GNU extension, but we hope that it gets ignored on other systems.
60 * Mail sender addresses are now parsed (again using Mutt's routines)
61 and you can use the `m' and `p' options to select whether you
62 want to display the full name of the sender, the address of his/her
65 * Mailboxes can be assigned hotkeys, which override the default
66 key bindings. This is available as the `!<hotkey>' option.
68 * If a mailbox contains no new messages, you can choose to highlight
69 flagged messages (those with `X-Status: F' header, see the `F'
70 command in Mutt) instead. See the `f' option.
72 * Folded headers are now parsed properly.
76 2006-06-03 Martin Mares <mj@ucw.cz>
78 * cm.c (add_snippet): Compress spaces and avoid printing unprintable
83 2005-05-25 Martin Mares <mj@ucw.cz>
85 * cm.c (add_snippet): Don't forget to terminate the string. Gets rid of
86 occassional garbage at the end of mail snippets.
88 * Ctrl-L now refreshes the screen.
90 * `B' disables (and `b' enables) all beeping.
94 2005-05-23 Martin Mares <mj@ucw.cz>
96 * Replaced the `-h' switch by a general interface for setting options.
98 * Added `hide', `hide if empty', `beep' and `highlight' options.
100 * Introduced mbox priorities independent on highlighting. TAB selects
101 the highest priority mbox with new messages.
103 * Introduced hiding according to priority.
105 * Mailboxes can now carry custom names.
107 * Removed the non-functional `-l' switch.
109 * Introduced `snippet' option which shows sender and subject of the freshest
110 new message. So far very rough.
112 * Added release scripts.
116 2005-05-20 Martin Mares <mj@ucw.cz>