f88e63789a396b1091e1efc7697db026e27e0029
[claws.git] / ChangeLog
1 2006-11-13 [wwp]        2.6.0cvs40
2
3         * src/plugins/pgpinline/pgpinline.c
4                 fix candidate for bug #1057, thanks to Colin.
5
6 2006-11-13 [wwp]        2.6.0cvs39
7
8         * src/compose.c
9         * src/quote_fmt_parse.y
10                 fix bug 1052: current parser buffer was not always allocated, ptr to this buffer could be
11                 returned as NULL whereas no parser error has occurred. in consequence, defining a template
12                 body as "%d" (w/o the quotes) for the first time of the instance of claws-mail, was reporting
13                 a parser error. make sure that the buffer is always allocated, even to an empty string.
14
15                 fix mis-unescaping in compose.:compose_quote_fmt(): unescaping of the fmt string was always done
16                 whereas it must be done *only* when receiving quote format strings issued from the prefs
17                 (compose new message, reply, forward, redirect formats), *not* when applying templates.
18                 in consequences, applying templates w/ sequences like \\|p{echo} were failing. make
19                 sure that unescaping is done only when necessary.
20
21 2006-11-12 [colin]      2.6.0cvs38
22
23         * po/de.po
24                 Fix typo (s/KB/MB)
25
26 2006-11-12 [colin]      2.6.0cvs37
27
28         * src/plugins/pgpinline/pgpinline.c
29         * src/plugins/pgpmime/pgpmime.c
30                 Release GPG context at the latest 
31                 possible moment. Maybe fixes 
32                 bug 1057, 'crash on sending signed 
33                 message to a newsgroup'
34                 
35
36 2006-11-12 [colin]      2.6.0cvs36
37
38         * src/plugins/pgpcore/sgpgme.c
39                 Tell a bit more when gpg's status doesn't
40                 contain any signature
41
42 2006-11-12 [colin]      2.6.0cvs35
43
44         * src/compose.c
45                 Fix bug 1060, 'compilation error with 
46                 Irix's cc'
47
48 2006-11-12 [paul]       2.6.0cvs34
49
50         * doc/man/claws-mail.1
51         * src/prefs_gtk.c
52         * src/plugins/clamav/README
53         * src/plugins/spamassassin/README
54         * tools/README
55         * tools/freshmeat_search.pl
56         * tools/google_search.pl
57         * tools/multiwebsearch.pl
58                 more renaming
59         * src/plugins/trayicon/trayicon.c
60                 fix compiliation warning
61
62 2006-11-11 [colin]      2.6.0cvs33
63
64         * src/folderview.c
65                 Forbid drag and drop from/to different
66                 folders of type F_UNKNOWN
67
68 2006-11-11 [colin]      2.6.0cvs32
69
70         * src/plugins/pgpinline/pgpinline.c
71                 Fix typo in previous commit:
72                 - gpgme_new(&ctx);
73                 + if ((err = gpgme_new(&data->ctx)) ...)
74
75 2006-11-11 [colin]      2.6.0cvs31
76
77         * src/plugins/pgpinline/pgpinline.c
78         * src/plugins/pgpmime/pgpmime.c
79                 Check success after calling gpgme_new
80                 Maybe fixes bug 1057, 'crash on sending 
81                 signed message to a newsgroup'
82
83 2006-11-11 [colin]      2.6.0cvs30
84
85         * src/undo.c
86                 init undostruct to 0s (from
87                 valgrind log of bug 1057)
88
89 2006-11-10 [colin]      2.6.0cvs29
90
91         * src/mainwindow.c
92                 Set cursor to wait before filtering
93                 duplicates in all folders
94         * src/plugins/bogofilter/bogofilter.c
95         * src/plugins/bogofilter/bogofilter.h
96         * src/plugins/bogofilter/bogofilter_gtk.c
97                 Completely thread away the bogofilter
98                 filtering
99
100 2006-11-10 [mones]      2.6.0cvs28
101
102         * src/compose.c
103         * src/compose.h
104                 added COMPOSE_CHECK_BEFORE_SEND hook
105
106 2006-11-10 [paul]       2.6.0cvs27
107
108         * src/crash.c
109                 more renaming
110                 add libSM to get_compiled_in_features()
111         * src/main.c
112                 more renaming
113
114 2006-11-10 [colin]      2.6.0cvs26
115
116         * src/etpan/imap-thread.c
117                 Add a reference to libetpan's sasl engine
118                 so that sasl_done() doesn't get called by
119                 libetpan, and doesn't break openssl.
120                 Should fix bug 1053, 'SC fails to reestablish 
121                 a secure connection'
122                 Patch by Hoa
123
124 2006-11-10 [colin]      2.6.0cvs25
125
126         * manual/addrbook.xml
127         * manual/advanced.xml
128         * manual/faq.xml
129         * manual/intro.xml
130                 Some more renaming
131
132 2006-11-09 [colin]      2.6.0cvs24
133
134         * src/plugins/bogofilter/bogofilter_gtk.c
135                 Add comment about annoyance
136
137 2006-11-09 [colin]      2.6.0cvs23
138
139         * src/plugins/bogofilter/bogofilter.c
140         * src/plugins/bogofilter/bogofilter_gtk.c
141                 Prepare things needed to thread bogofilter
142                 filtering: separate bogo stuff and possible GUI
143                 stuff. 
144
145 2006-11-09 [colin]      2.6.0cvs22
146
147         * src/account.c
148         * src/compose.c
149                 Search for one of our accounts in Delivered-To
150                 (helps for auto-account selection when 
151                  replying/forwarding)
152         * src/folderview.c
153         * src/mainwindow.c
154         * src/mainwindow.h
155         * src/plugins/trayicon/trayicon.c
156                 Allow opening a new mail with any account from
157                 the contextual menu
158
159 2006-11-09 [wwp]        2.6.0cvs21
160
161         * src/compose.c
162         * src/prefs_common.c
163         * src/prefs_common.h
164         * src/prefs_compose_writing.c
165                 add a compose new message format (in prefs/compose/writing), it's a
166                 simple subject+body template to use when opening a new composition
167                 window. It's similar to the existent reply and forward formats.
168
169                 enhanced the template/format % symbols substitution mechanism to
170                 use current composition window information when % are used in
171                 the compose new message format or in templates applied to new
172                 messages (there were useless in that situations before). When
173                 applied to new messages, %d corresponds to the system time/date.
174
175 2006-11-09 [paul]       2.6.0cvs20
176
177         * src/gtk/authors.h
178                 fix last commit
179
180 2006-11-09 [paul]       2.6.0cvs19
181
182         * src/gtk/authors.h
183                 keep tje alphabetical order
184
185 2006-11-08 [colin]      2.6.0cvs18
186
187         * src/etpan/imap-thread.c
188                 Fix bug 1054, 'Slowness logging big 
189                 data chunks'
190
191 2006-11-08 [paul]       2.6.0cvs17
192
193         * tools/Makefile.am
194                 fix the renaming
195
196 2006-11-08 [paul]       2.6.0cvs16
197
198         * src/common/defs.h
199                 update BUGZILLA_URI
200
201 2006-11-08 [paul]       2.6.0cvs15
202
203         * tools/Makefile.am
204         * tools/OOo2claws-mail.pl
205         * tools/OOo2sylpheed.pl
206         * tools/README
207         * tools/acroread2claws-mail.pl
208         * tools/acroread2sylpheed.pl
209         * tools/kmail2claws-mail.pl
210         * tools/kmail2claws-mail_v2.pl
211         * tools/kmail2sylpheed.pl
212         * tools/kmail2sylpheed_v2.pl
213         * tools/maildir2claws-mail.pl
214         * tools/maildir2sylpheed.pl
215         * tools/nautilus2claws-mail.sh
216         * tools/nautilus2sylpheed.sh
217         * tools/outlook2claws-mail.pl
218         * tools/outlook2sylpheed.pl
219         * tools/tb2claws-mail
220         * tools/tb2sylpheed
221         * tools/tbird2claws.py
222         * tools/tbird2syl.py
223         * tools/kdeservicemenu/claws-mail-kdeservicemenu.pl
224         * tools/kdeservicemenu/install.sh
225         * tools/kdeservicemenu/sylpheed-kdeservicemenu.pl
226         * tools/kdeservicemenu/template_claws-mail-attach-files.desktop
227         * tools/kdeservicemenu/template_claws-mail-compress-attach.desktop
228         * tools/kdeservicemenu/template_sylpheed-attach-files.desktop
229         * tools/kdeservicemenu/template_sylpheed-compress-attach.desktop
230                 renamed (removed, added) tools files
231
232 2006-11-08 [paul]       2.6.0cvs14
233
234         * src/main.c
235         * src/common/defs.h
236                 Migrate sylpheedrc to clawsrc, and fix the standard
237                 plugins path in the process
238
239 2006-11-07 [colin]      2.6.0cvs13
240
241         * src/Makefile.am
242                 Symlink sylpheed-claws relative to 
243                 claws-mail
244
245 2006-11-07 [colin]      2.6.0cvs12
246
247         * src/compose.c
248                 Fix typo - Reply-To/Mailing-list is broken in 2.6 :-/
249
250 2006-11-07 [paul]       2.6.0cvs11
251
252         * src/gtk/about.c
253                 Fix a missed occurence of
254                 Sylpheed-Claws
255
256 2006-11-07 [paul]       2.6.0cvs10
257
258         * src/Makefile.am
259                 Fix symlink installation
260
261 2006-11-07 [paul]       2.6.0cvs9
262
263         * src/Makefile.am
264                 Symlink claws-mail to sylpheed-claws
265         * src/common/utils.c
266                 Fix migrating symlinks
267         * src/etpan/imap-thread.c
268                 check certificate only when there's
269                 no error
270
271 2006-11-07 [paul]       2.6.0cvs8
272
273         * Makefile.am
274                 Fix icon breakages with Gtk, which needs a 
275                 cache updated to see them.
276
277 2006-11-07 [paul]       2.6.0cvs7
278
279         * .cvsignore
280         * AUTHORS
281         * COPYING
282         * INSTALL
283         * Makefile.am
284         * NEWS
285         * README
286         * RELEASE_NOTES
287         * autogen.sh
288         * claws-mail-128x128.png
289         * claws-mail-64x64.png
290         * claws-mail.ico
291         * claws-mail.pc.in
292         * claws-mail.png
293         * configure.ac
294         * sylpheed-claws-128x128.png
295         * sylpheed-claws-64x64.png
296         * sylpheed-claws.desktop
297         * sylpheed-claws.ico
298         * sylpheed-claws.pc.in
299         * sylpheed-claws.png
300         * debian/README.Debian
301         * debian/changelog
302         * debian/claws-mail.desktop
303         * debian/claws-mail.menu
304         * debian/claws-mail.postinst.debhelper
305         * debian/claws-mail.postrm.debhelper
306         * debian/control
307         * debian/copyright
308         * debian/files
309         * debian/rules
310         * debian/sylpheed-claws.desktop
311         * debian/sylpheed-claws.menu
312         * debian/sylpheed-claws.postinst.debhelper
313         * debian/sylpheed-claws.postrm.debhelper
314         * doc/man/Makefile.am
315         * doc/man/claws-mail.1
316         * doc/man/sylpheed-claws.1
317         * doc/src/ChangeLog.claws-pre0.8.0
318         * manual/Makefile.am
319         * manual/account.xml
320         * manual/ack.xml
321         * manual/addrbook.xml
322         * manual/advanced.xml
323         * manual/claws-mail-manual.xml
324         * manual/faq.xml
325         * manual/glossary.xml
326         * manual/handling.xml
327         * manual/intro.xml
328         * manual/keyboard.xml
329         * manual/plugins.xml
330         * manual/starting.xml
331         * manual/sylpheed-claws-manual.xml
332         * manual/xml2pdf
333         * manual/dist/.cvsignore
334         * manual/dist/html/.cvsignore
335         * manual/dist/html/Makefile.am
336         * manual/dist/pdf/.cvsignore
337         * manual/dist/pdf/Makefile.am
338         * manual/dist/ps/.cvsignore
339         * manual/dist/ps/Makefile.am
340         * manual/dist/txt/.cvsignore
341         * manual/dist/txt/Makefile.am
342         * manual/es/Makefile.am
343         * manual/es/advanced.xml
344         * manual/es/claws-mail-manual.xml
345         * manual/es/faq.xml
346         * manual/es/glossary.xml
347         * manual/es/handling.xml
348         * manual/es/intro.xml
349         * manual/es/plugins.xml
350         * manual/es/sylpheed-claws-manual.xml
351         * manual/es/dist/.cvsignore
352         * manual/es/dist/html/.cvsignore
353         * manual/es/dist/html/Makefile.am
354         * manual/es/dist/pdf/.cvsignore
355         * manual/es/dist/pdf/Makefile.am
356         * manual/es/dist/ps/.cvsignore
357         * manual/es/dist/ps/Makefile.am
358         * manual/es/dist/txt/.cvsignore
359         * manual/es/dist/txt/Makefile.am
360         * manual/fr/Makefile.am
361         * manual/fr/account.xml
362         * manual/fr/ack.xml
363         * manual/fr/addrbook.xml
364         * manual/fr/advanced.xml
365         * manual/fr/claws-mail-manual.xml
366         * manual/fr/faq.xml
367         * manual/fr/glossary.xml
368         * manual/fr/handling.xml
369         * manual/fr/intro.xml
370         * manual/fr/keyboard.xml
371         * manual/fr/plugins.xml
372         * manual/fr/starting.xml
373         * manual/fr/sylpheed-claws-manual.xml
374         * manual/fr/dist/.cvsignore
375         * manual/fr/dist/html/.cvsignore
376         * manual/fr/dist/html/Makefile.am
377         * manual/fr/dist/pdf/.cvsignore
378         * manual/fr/dist/pdf/Makefile.am
379         * manual/fr/dist/ps/.cvsignore
380         * manual/fr/dist/ps/Makefile.am
381         * manual/fr/dist/txt/.cvsignore
382         * manual/fr/dist/txt/Makefile.am
383         * manual/pl/Makefile.am
384         * manual/pl/account.xml
385         * manual/pl/ack.xml
386         * manual/pl/addrbook.xml
387         * manual/pl/advanced.xml
388         * manual/pl/claws-mail-manual.xml
389         * manual/pl/faq.xml
390         * manual/pl/glossary.xml
391         * manual/pl/handling.xml
392         * manual/pl/intro.xml
393         * manual/pl/keyboard.xml
394         * manual/pl/plugins.xml
395         * manual/pl/starting.xml
396         * manual/pl/sylpheed-claws-manual.xml
397         * manual/pl/dist/.cvsignore
398         * manual/pl/dist/html/.cvsignore
399         * manual/pl/dist/html/Makefile.am
400         * manual/pl/dist/pdf/.cvsignore
401         * manual/pl/dist/pdf/Makefile.am
402         * manual/pl/dist/ps/.cvsignore
403         * manual/pl/dist/ps/Makefile.am
404         * manual/pl/dist/txt/.cvsignore
405         * manual/pl/dist/txt/Makefile.am
406         * po/.cvsignore
407         * po/Makevars
408         * src/.cvsignore
409         * src/Makefile.am
410         * src/account.c
411         * src/account.h
412         * src/action.c
413         * src/action.h
414         * src/adbookbase.h
415         * src/addr_compl.c
416         * src/addr_compl.h
417         * src/addrbook.c
418         * src/addrcache.c
419         * src/addrcache.h
420         * src/addrcindex.c
421         * src/addrcindex.h
422         * src/addrclip.c
423         * src/addrclip.h
424         * src/addrdefs.h
425         * src/addressadd.c
426         * src/addressadd.h
427         * src/addressbook.c
428         * src/addressbook.h
429         * src/addressbook_foldersel.c
430         * src/addressbook_foldersel.h
431         * src/addrgather.c
432         * src/addrgather.h
433         * src/addrharvest.c
434         * src/addrharvest.h
435         * src/addrindex.c
436         * src/addrindex.h
437         * src/addritem.c
438         * src/addritem.h
439         * src/addrquery.c
440         * src/addrquery.h
441         * src/addrselect.c
442         * src/addrselect.h
443         * src/alertpanel.c
444         * src/alertpanel.h
445         * src/browseldap.c
446         * src/browseldap.h
447         * src/codeconv.c
448         * src/codeconv.h
449         * src/compose.c
450         * src/crash.c
451         * src/crash.h
452         * src/customheader.c
453         * src/customheader.h
454         * src/displayheader.c
455         * src/displayheader.h
456         * src/editaddress.c
457         * src/editaddress.h
458         * src/editbook.c
459         * src/editbook.h
460         * src/editgroup.c
461         * src/editgroup.h
462         * src/editjpilot.c
463         * src/editjpilot.h
464         * src/editldap.c
465         * src/editldap.h
466         * src/editldap_basedn.c
467         * src/editldap_basedn.h
468         * src/editvcard.c
469         * src/editvcard.h
470         * src/exphtmldlg.c
471         * src/exphtmldlg.h
472         * src/expldifdlg.c
473         * src/expldifdlg.h
474         * src/export.c
475         * src/exporthtml.c
476         * src/exporthtml.h
477         * src/exportldif.c
478         * src/exportldif.h
479         * src/filtering.c
480         * src/filtering.h
481         * src/folder.c
482         * src/folder.h
483         * src/folder_item_prefs.c
484         * src/folder_item_prefs.h
485         * src/foldersel.c
486         * src/foldersel.h
487         * src/folderutils.c
488         * src/folderutils.h
489         * src/folderview.c
490         * src/folderview.h
491         * src/grouplistdialog.c
492         * src/grouplistdialog.h
493         * src/html.c
494         * src/html.h
495         * src/image_viewer.c
496         * src/image_viewer.h
497         * src/imap.c
498         * src/imap.h
499         * src/imap_gtk.c
500         * src/imap_gtk.h
501         * src/import.c
502         * src/import.h
503         * src/importldif.c
504         * src/importldif.h
505         * src/importmutt.c
506         * src/importmutt.h
507         * src/importpine.c
508         * src/importpine.h
509         * src/inc.c
510         * src/inc.h
511         * src/jpilot.c
512         * src/jpilot.h
513         * src/ldapctrl.c
514         * src/ldapctrl.h
515         * src/ldaplocate.c
516         * src/ldaplocate.h
517         * src/ldapquery.c
518         * src/ldapquery.h
519         * src/ldapserver.c
520         * src/ldapserver.h
521         * src/ldaputil.c
522         * src/ldaputil.h
523         * src/ldif.c
524         * src/ldif.h
525         * src/localfolder.c
526         * src/localfolder.h
527         * src/main.c
528         * src/main.h
529         * src/mainwindow.c
530         * src/mainwindow.h
531         * src/manual.c
532         * src/manual.h
533         * src/matcher.c
534         * src/matcher.h
535         * src/matcher_parser.h
536         * src/matcher_parser_lex.l
537         * src/matcher_parser_parse.y
538         * src/mbox.c
539         * src/mbox.h
540         * src/message_search.c
541         * src/message_search.h
542         * src/messageview.c
543         * src/messageview.h
544         * src/mh.c
545         * src/mh.h
546         * src/mh_gtk.c
547         * src/mh_gtk.h
548         * src/mimeview.c
549         * src/mimeview.h
550         * src/msgcache.c
551         * src/msgcache.h
552         * src/mutt.c
553         * src/mutt.h
554         * src/news.c
555         * src/news.h
556         * src/news_gtk.c
557         * src/news_gtk.h
558         * src/noticeview.c
559         * src/noticeview.h
560         * src/partial_download.c
561         * src/partial_download.h
562         * src/pine.c
563         * src/pine.h
564         * src/pop.c
565         * src/pop.h
566         * src/prefs_account.c
567         * src/prefs_account.h
568         * src/prefs_actions.c
569         * src/prefs_actions.h
570         * src/prefs_common.c
571         * src/prefs_common.h
572         * src/prefs_compose_writing.c
573         * src/prefs_compose_writing.h
574         * src/prefs_customheader.c
575         * src/prefs_customheader.h
576         * src/prefs_display_header.c
577         * src/prefs_display_header.h
578         * src/prefs_ext_prog.c
579         * src/prefs_ext_prog.h
580         * src/prefs_filtering.c
581         * src/prefs_folder_column.c
582         * src/prefs_folder_column.h
583         * src/prefs_folder_item.c
584         * src/prefs_folder_item.h
585         * src/prefs_fonts.c
586         * src/prefs_fonts.h
587         * src/prefs_gtk.c
588         * src/prefs_gtk.h
589         * src/prefs_image_viewer.c
590         * src/prefs_image_viewer.h
591         * src/prefs_matcher.c
592         * src/prefs_matcher.h
593         * src/prefs_message.c
594         * src/prefs_message.h
595         * src/prefs_msg_colors.c
596         * src/prefs_msg_colors.h
597         * src/prefs_other.c
598         * src/prefs_other.h
599         * src/prefs_quote.c
600         * src/prefs_quote.h
601         * src/prefs_receive.c
602         * src/prefs_receive.h
603         * src/prefs_send.c
604         * src/prefs_send.h
605         * src/prefs_spelling.c
606         * src/prefs_spelling.h
607         * src/prefs_summaries.c
608         * src/prefs_summaries.h
609         * src/prefs_summary_column.c
610         * src/prefs_summary_column.h
611         * src/prefs_template.c
612         * src/prefs_template.h
613         * src/prefs_themes.c
614         * src/prefs_themes.h
615         * src/prefs_toolbar.c
616         * src/prefs_toolbar.h
617         * src/prefs_wrapping.c
618         * src/prefs_wrapping.h
619         * src/privacy.c
620         * src/privacy.h
621         * src/procheader.c
622         * src/procheader.h
623         * src/procmime.c
624         * src/procmime.h
625         * src/procmsg.c
626         * src/procmsg.h
627         * src/quote_fmt.c
628         * src/quote_fmt_parse.y
629         * src/recv.c
630         * src/recv.h
631         * src/remotefolder.c
632         * src/remotefolder.h
633         * src/send_message.c
634         * src/send_message.h
635         * src/setup.c
636         * src/setup.h
637         * src/sourcewindow.c
638         * src/sourcewindow.h
639         * src/ssl_manager.c
640         * src/ssl_manager.h
641         * src/statusbar.c
642         * src/statusbar.h
643         * src/stock_pixmap.c
644         * src/stock_pixmap.h
645         * src/summary_search.c
646         * src/summary_search.h
647         * src/summaryview.c
648         * src/summaryview.h
649         * src/syldap.c
650         * src/syldap.h
651         * src/textview.c
652         * src/textview.h
653         * src/toolbar.c
654         * src/toolbar.h
655         * src/undo.c
656         * src/undo.h
657         * src/unmime.c
658         * src/unmime.h
659         * src/vcard.c
660         * src/vcard.h
661         * src/wizard.c
662         * src/wizard.h
663         * src/common/base64.c
664         * src/common/base64.h
665         * src/common/defs.h
666         * src/common/hooks.c
667         * src/common/hooks.h
668         * src/common/log.c
669         * src/common/log.h
670         * src/common/mgutils.c
671         * src/common/mgutils.h
672         * src/common/nntp.c
673         * src/common/nntp.h
674         * src/common/passcrypt.c
675         * src/common/passcrypt.h.in
676         * src/common/plugin.c
677         * src/common/plugin.h
678         * src/common/prefs.c
679         * src/common/prefs.h
680         * src/common/progressindicator.c
681         * src/common/progressindicator.h
682         * src/common/quoted-printable.c
683         * src/common/quoted-printable.h
684         * src/common/session.c
685         * src/common/session.h
686         * src/common/smtp.c
687         * src/common/smtp.h
688         * src/common/socket.c
689         * src/common/socket.h
690         * src/common/ssl.c
691         * src/common/ssl.h
692         * src/common/stringtable.c
693         * src/common/stringtable.h
694         * src/common/sylpheed.c
695         * src/common/sylpheed.h
696         * src/common/template.c
697         * src/common/template.h
698         * src/common/timing.h
699         * src/common/utils.c
700         * src/common/utils.h
701         * src/common/version.h.in
702         * src/common/xml.c
703         * src/common/xml.h
704         * src/common/xmlprops.c
705         * src/common/xmlprops.h
706         * src/gtk/about.c
707         * src/gtk/colorlabel.c
708         * src/gtk/colorlabel.h
709         * src/gtk/colorsel.c
710         * src/gtk/colorsel.h
711         * src/gtk/combobox.c
712         * src/gtk/combobox.h
713         * src/gtk/description_window.c
714         * src/gtk/description_window.h
715         * src/gtk/filesel.c
716         * src/gtk/filesel.h
717         * src/gtk/foldersort.c
718         * src/gtk/foldersort.h
719         * src/gtk/gtkaspell.c
720         * src/gtk/gtkaspell.h
721         * src/gtk/gtksctree.c
722         * src/gtk/gtkshruler.c
723         * src/gtk/gtkshruler.h
724         * src/gtk/gtkutils.c
725         * src/gtk/gtkutils.h
726         * src/gtk/icon_legend.c
727         * src/gtk/icon_legend.h
728         * src/gtk/logwindow.c
729         * src/gtk/logwindow.h
730         * src/gtk/manage_window.c
731         * src/gtk/manage_window.h
732         * src/gtk/pluginwindow.c
733         * src/gtk/pluginwindow.h
734         * src/gtk/prefswindow.c
735         * src/gtk/prefswindow.h
736         * src/gtk/quicksearch.c
737         * src/gtk/quicksearch.h
738         * src/pixmaps/claws-mail.xpm
739         * src/pixmaps/claws-mail_icon.xpm
740         * src/pixmaps/claws-mail_logo.xpm
741         * src/pixmaps/sylpheed-claws.xpm
742         * src/pixmaps/sylpheed-claws_icon.xpm
743         * src/pixmaps/sylpheed-claws_logo.xpm
744         * src/plugins/bogofilter/Makefile.am
745         * src/plugins/bogofilter/bogofilter.c
746         * src/plugins/bogofilter/bogofilter.h
747         * src/plugins/bogofilter/bogofilter_gtk.c
748         * src/plugins/clamav/Makefile.am
749         * src/plugins/clamav/clamav_plugin.c
750         * src/plugins/clamav/clamav_plugin.h
751         * src/plugins/clamav/clamav_plugin_gtk.c
752         * src/plugins/demo/Makefile.am
753         * src/plugins/demo/demo.c
754         * src/plugins/dillo_viewer/Makefile.am
755         * src/plugins/dillo_viewer/README
756         * src/plugins/dillo_viewer/dillo_prefs.c
757         * src/plugins/dillo_viewer/dillo_prefs.h
758         * src/plugins/dillo_viewer/dillo_viewer.c
759         * src/plugins/pgpcore/Makefile.am
760         * src/plugins/pgpcore/passphrase.c
761         * src/plugins/pgpcore/passphrase.h
762         * src/plugins/pgpcore/pgp_viewer.c
763         * src/plugins/pgpcore/pgp_viewer.h
764         * src/plugins/pgpcore/plugin.c
765         * src/plugins/pgpcore/prefs_gpg.c
766         * src/plugins/pgpcore/prefs_gpg.h
767         * src/plugins/pgpcore/select-keys.c
768         * src/plugins/pgpcore/select-keys.h
769         * src/plugins/pgpcore/sgpgme.c
770         * src/plugins/pgpcore/sgpgme.h
771         * src/plugins/pgpcore/sylpheed.def
772         * src/plugins/pgpcore/version.rc
773         * src/plugins/pgpinline/Makefile.am
774         * src/plugins/pgpinline/pgpinline.c
775         * src/plugins/pgpinline/pgpinline.h
776         * src/plugins/pgpinline/plugin.c
777         * src/plugins/pgpinline/sylpheed.def
778         * src/plugins/pgpinline/version.rc
779         * src/plugins/pgpmime/Makefile.am
780         * src/plugins/pgpmime/pgpmime.c
781         * src/plugins/pgpmime/pgpmime.h
782         * src/plugins/pgpmime/plugin.c
783         * src/plugins/pgpmime/sylpheed.def
784         * src/plugins/pgpmime/version.rc
785         * src/plugins/spamassassin/Makefile.am
786         * src/plugins/spamassassin/README
787         * src/plugins/spamassassin/spamassassin.c
788         * src/plugins/spamassassin/spamassassin.h
789         * src/plugins/spamassassin/spamassassin_gtk.c
790         * src/plugins/trayicon/Makefile.am
791         * src/plugins/trayicon/trayicon.c
792         * tools/OOo2sylpheed.pl
793         * tools/README
794         * tools/README.sylprint
795         * tools/acroread2sylpheed.pl
796         * tools/claws.i18n.status.pl
797         * tools/filter_conv.pl
798         * tools/filter_conv_new.pl
799         * tools/freshmeat_search.pl
800         * tools/google_search.pl
801         * tools/kmail2sylpheed.pl
802         * tools/kmail2sylpheed_v2.pl
803         * tools/make.themes.project
804         * tools/multiwebsearch.pl
805         * tools/nautilus2sylpheed.sh
806         * tools/outlook2sylpheed.pl
807         * tools/sylprint.pl
808         * tools/sylprint.rc
809         * tools/tb2sylpheed
810         * tools/textviewer.sh
811         * tools/vcard2xml.py
812         * tools/kdeservicemenu/README
813         * tools/kdeservicemenu/sylpheed-kdeservicemenu.pl
814         * tools/kdeservicemenu/template_sylpheed-attach-files.desktop
815         * tools/kdeservicemenu/template_sylpheed-compress-attach.desktop
816                 Change name to Claws Mail. Announce to follow...
817
818 2006-11-06 [wwp]        2.6.0cvs6
819
820         * src/prefs_template.c
821                 unify messages related to quote format/template errors (fix
822                 capitalization), again.
823
824 2006-11-06 [wwp]        2.6.0cvs5
825
826         * src/prefs_quote.c
827                 unify messages related to quote format/template errors.
828
829 2006-11-06 [wwp]        2.6.0cvs4
830
831         * src/prefs_msg_colors.c
832                 more uses of Q_ macro for contextual translations, thanks
833                 to Fabien (fzzzzz).
834
835 2006-11-06 [wwp]        2.6.0cvs3
836
837         * src/compose.c
838         * src/common/utils.c
839         * src/common/utils.h
840                 show an alertpanel to make sure users are aware that sensitive
841                 files are attached (it's file blacklist-based). This will fix
842                 interaction w/ GoogleEarth for instance, thanks to Colin.
843
844 2006-11-06 [wwp]        2.6.0cvs2
845
846         * src/prefs_quote.c
847         * src/prefs_template.c
848         * src/prefs_template.h
849                 check quote format when applying/closing prefs. For now this only
850                 shows up an error dialog box, not preventing the user from using
851                 a broken quote (reply, forwards) format.
852
853 2006-11-06 [wwp]        2.6.0cvs1
854
855         * src/prefs_template.c
856                 fix missing checks of some template fields.
857
858 2006-11-06 [paul]       2.6.0
859
860         * NEWS
861         * README
862         * RELEASE_NOTES
863                 2.6.0 released
864
865 2006-11-06 [paul]       2.5.6cvs22
866
867         * manual/advanced.xml
868         * manual/es/advanced.xml
869                 put 'respect_flowed_format' info in the correct
870                 place
871
872 2006-11-06 [mones]      2.5.6cvs21
873
874         * po/es.po
875                 Minor fixes for release
876
877 2006-11-06 [paul]       2.5.6cvs20
878
879         * po/cs.po
880         * po/de.po
881         * po/fr.po
882         * po/it.po
883         * po/nl.po
884         * po/pt_BR.po
885         * po/sk.po
886         * po/sv.po
887         * po/zh_CN.po
888                 updated by Tim Brain, Stephan Sachse, Fabien Vantard,
889                 Andrea Spadaccini, Tim Dijkstra, Frederico Goncalves
890                 Guimaraes, Andrej Kacian, Anders Troback, and Ralgh
891                 Young
892
893 2006-11-02 [colin]      2.5.6cvs19
894
895         * src/imap.c
896         * src/imap.h
897         * src/prefs_account.c
898         * src/etpan/imap-thread.c
899                 Add GSSAPI support - fixes Debian bug #383274
900
901 2006-11-01 [colin]      2.5.6cvs18
902
903         * src/jpilot.c
904                 Handle libpisock12 support. Probably
905                 fixes bug 1046, 'jpilot AddressDB.pdb 
906                 import fail'
907
908 2006-11-01 [colin]      2.5.6cvs17
909
910         * src/folderutils.c
911                 debug_print() folderutils_mark_all_read()
912
913 2006-11-01 [colin]      2.5.6cvs16
914
915         * COPYING
916                 Add missed files to the Apache exception
917
918 2006-10-31 [colin]      2.5.6cvs15
919
920         * src/folder.c
921         * src/folder.h
922                 Add a copy_private_data() func to FolderClasses
923                 Doesn't break the feature freeze, because we 
924                 won't use it (right now) in the core.
925
926 2006-10-31 [colin]      2.5.6cvs14
927
928         * COPYING
929                 Allow linking with the Apache licensed files in
930                 src/plugins/spamassassin. Hopefully fixes 
931                 bug 1048, 'Spamassassin plugin license problem'
932
933 2006-10-31 [wwp]        2.5.6cvs13
934
935         * src/compose.c
936                 fix and optimize trimming of leading linefeeds in body loop.
937
938 2006-10-31 [colin]      2.5.6cvs12
939
940         * src/etpan/imap-thread.c
941         * src/imap.c
942                 Make really sure to have NULL sets in case
943                 of error
944
945 2006-10-30 [wwp]        2.5.6cvs11
946
947         * src/prefs_common.c
948         * src/prefs_common.h
949         * src/compose.c
950                 fix broken storage of quote format template when it contains \-escape
951                 sequences. The application of such sequences is also fixed now (\t
952                 in quote format will be a real tab instead of a 't', for instance).
953
954 2006-10-27 [colin]      2.5.6cvs10
955
956         * src/compose.c
957                 Probably fix bug 1045, 'sylpheed-claws 
958                 doesn't remove the mail from the IMAP 
959                 Queue folder after sending'. From
960                 2.5.6cvs3-stable
961
962 2006-10-27 [colin]      2.5.6cvs9
963
964         * configure.ac
965                 Require libetpan-0.48. I'm so annoying,
966                 I know ;-)
967
968 2006-10-27 [colin]      2.5.6cvs8
969
970         * src/folder.c
971         * src/imap.c
972                 Probably fix bug 1044, 'sylpheed-claws 
973                 segfaults while moving mails' - Fix relation
974                 usage when moving to an IMAP mailbox from another
975                 mailbox
976
977 2006-10-26 [paul]       2.5.6cvs7
978
979         * src/gtk/about.c
980                 add libSM to compiled-in features
981                 list
982
983 2006-10-24 [colin]      2.5.6cvs6
984
985         * src/textview.c
986         * src/gtk/gtkutils.c
987                 Fix crash when printing emails with an
988                 xface
989
990 2006-10-24 [mones]      2.5.6cvs5
991
992         * manual/es/advanced.xml
993                 Synchronize hidden option respect_flowed_format
994         * po/es.po
995                 Updated translation
996
997 2006-10-21 [paul]       2.5.6cvs4
998
999         * src/gtk/authors.h
1000         * src/plugins/pgpcore/pgp_viewer.c
1001         * src/plugins/pgpcore/sgpgme.c
1002                 fix building on BSDs
1003                 Thanks to Michael Hughes
1004                 <Sylpheed-Claws_user@thehugheslogcabin.net>
1005
1006 2006-10-20 [colin]      2.5.6cvs3
1007
1008         * configure.ac
1009                 Bump up libetpan requirement
1010                 *** THIS COMMIT REQUIRES LIBETPAN CVS ***
1011         * src/common/utils.c
1012         * src/common/utils.h
1013                 Add convenience get_file_mtime()
1014         * src/imap.c
1015         * src/etpan/imap-thread.c
1016         * src/etpan/imap-thread.h
1017                 Implement UIDPLUS support if the server
1018                 supports it - faster sending in this case
1019
1020 2006-10-19 [colin]      2.5.6cvs2
1021
1022         * src/gtk/quicksearch.c
1023                 Fix emptying in type-ahead+extended mode
1024         * src/mainwindow.c
1025         * src/mainwindow.h
1026                 Add a hook for offline state change
1027         * src/plugins/trayicon/trayicon.c
1028                 Use it to display offline icons
1029         * src/plugins/trayicon/Makefile.am
1030         * src/plugins/trayicon/newmail.offline.xpm
1031         * src/plugins/trayicon/newmarkedmail.offline.xpm
1032         * src/plugins/trayicon/nomail.offline.xpm
1033         * src/plugins/trayicon/unreadmail.offline.xpm
1034         * src/plugins/trayicon/unreadmarkedmail.offline.xpm
1035                 Add the icons
1036
1037 2006-10-12 [paul]       2.5.6cvs1
1038
1039         * NEWS
1040         * README
1041         * configure.ac
1042                 Update version number following
1043                 stable release
1044
1045 2006-10-19 [colin]      2.5.5cvs18
1046
1047         * manual/handling.xml
1048                 Add type-ahead search
1049
1050 2006-10-18 [colin]      2.5.5cvs17
1051
1052         * src/gtk/quicksearch.c
1053                 Remove "save to history only if there's
1054                 no syntax error", it breaks for some 
1055                 reason which I'll investigate later.
1056
1057 2006-10-18 [colin]      2.5.5cvs16
1058
1059         * src/prefs_common.c
1060         * src/prefs_common.h
1061         * src/summaryview.c
1062         * src/gtk/quicksearch.c
1063         * src/gtk/quicksearch.h
1064                 Add a type-ahead option for fast searches
1065                 Patch by Fabien Vantard
1066
1067 2006-10-18 [colin]      2.5.5cvs15
1068
1069         * src/compose.c
1070         * src/compose.h
1071                 Add Options/Reply mode/ menu to be able to
1072                 change the recipients of a reply on the fly
1073
1074 2006-10-18 [colin]      2.5.5cvs14
1075
1076         * src/compose.c
1077                 Fix redirecting of our own sent mails
1078
1079 2006-10-17 [wwp]        2.5.5cvs13
1080
1081         * src/send_message.c
1082                 Fix duplicate error messages when sending, and missing
1083                 newline in such error messages.
1084
1085 2006-10-17 [colin]      2.5.5cvs12
1086
1087         * src/compose.c
1088                 Compare addresses case-insensitive
1089
1090 2006-10-17 [colin]      2.5.5cvs11
1091
1092         * src/plugins/pgpcore/sgpgme.c
1093                 Fix return status
1094
1095 2006-10-17 [colin]      2.5.5cvs10
1096
1097         * src/plugins/pgpcore/pgp_viewer.c
1098                 Fix return status
1099
1100 2006-10-17 [colin]      2.5.5cvs9
1101
1102         * src/quote_fmt.c
1103                 Fix a typo (thanks to Fabien)
1104
1105 2006-10-16 [colin]      2.5.5cvs8
1106
1107         * src/textview.c
1108                 Fix problem with quote-folding when emails
1109                 don't convert cleanly to UTF-8
1110
1111 2006-10-14 [colin]      2.5.5cvs7
1112
1113         * src/prefs_template.c
1114                 Reset fields when reopening
1115                 the window
1116
1117 2006-10-13 [paul]       2.5.5cvs6
1118
1119         * manual/advanced.xml
1120         * src/prefs_message.c
1121                 make 'respect_flowed_format' a hidden
1122                 option, and add a manual entry for it
1123                 Thanks to Colin
1124
1125 2006-10-12 [colin]      2.5.5cvs5
1126
1127         * src/codeconv.c
1128                 Revert part of 2.5.2cvs21:
1129                 Don't optimise by reusing the 
1130                 last iconv converter if possible:
1131                 it seems slightly broken in a 
1132                 very hard way to reproduce
1133
1134 2006-10-12 [colin]      2.5.5cvs4
1135
1136         * src/prefs_common.c
1137         * src/prefs_common.h
1138         * src/prefs_message.c
1139         * src/procmime.c
1140                 Fix bug 1035, 'Incorrect handling 
1141                 of flowed lines'. We now optionnaly
1142                 handle this format (preference is in
1143                 Message View/Text options section)
1144
1145 2006-10-12 [colin]      2.5.5cvs3
1146
1147         * po/POTFILES.in
1148                 Add new file
1149         * src/plugins/pgpcore/pgp_viewer.c
1150         * src/plugins/pgpcore/sgpgme.c
1151                 Don't try to import without asking
1152
1153 2006-10-12 [colin]      2.5.5cvs2
1154
1155         * src/compose.c
1156                 Fix bug 1036, 'Forwarding a mutlipart
1157                 mail with a "text/html" block to ms
1158                 outlook users leeds to freeze of
1159                 outlook'. Poor outlook users...
1160
1161 2006-10-12 [paul]       2.5.5cvs1
1162
1163         * NEWS
1164         * README
1165         * configure.ac
1166                 Update version number following
1167                 stable release
1168
1169 2006-10-11 [paul]       2.5.4cvs1
1170
1171         * NEWS
1172         * README
1173         * configure.ac
1174                 Update version number following
1175                 stable release
1176
1177 2006-10-11 [paul]       2.5.3cvs32
1178
1179         * src/textview.c
1180                 fix bug 1032, 'Segmentation fault when showing
1181                 message' (bug in quote folding)
1182                 Thanks to Colin
1183
1184 2006-10-10 [colin]      2.5.3cvs31
1185
1186         * src/quote_fmt.c
1187                 Rephrase english a bit
1188
1189 2006-10-10 [colin]      2.5.3cvs30
1190
1191         * src/prefs_compose_writing.c
1192                 Stop making the page larger than the window
1193
1194 2006-10-10 [wwp]        2.5.3cvs29
1195
1196         * src/compose.c
1197         * src/prefs_template.c
1198         * src/quote_fmt.c
1199         * src/quote_fmt.h
1200         * src/quote_fmt_lex.l
1201         * src/quote_fmt_parse.y
1202                 Extend the quote parser a bit: allow to get access to
1203                 basic (composing) account info.
1204
1205 2006-10-10 [colin]      2.5.3cvs28
1206
1207         * src/procheader.c
1208                 Fix this \t problem in subject
1209
1210 2006-10-09 [colin]      2.5.3cvs27
1211
1212         * src/main.c
1213         * src/prefs_gtk.c
1214                 Prepare cache a bit later
1215                 If section already exists, skip the new one 
1216                 (as previously); avoid writing the same block
1217                 twice - if we find a second block with the 
1218                 same id, skip it.
1219         * src/plugins/pgpcore/pgp_viewer.c
1220                 Set cursor to busy when retrieving a key
1221         * src/plugins/pgpcore/sgpgme.c
1222                 allow 5 seconds for gpg to export the key
1223                 
1224
1225 2006-10-09 [colin]      2.5.3cvs26
1226
1227         * configure.ac
1228         * src/msgcache.c
1229         * src/prefs_gtk.c
1230                 Check for existence of fgets_unlocked
1231                 and fwrite_unlocked
1232
1233 2006-10-09 [paul]       2.5.3cvs25
1234
1235         * src/prefs_summaries.c
1236                 replace strftime() with fast_strftime() and in
1237                 the consequence fix the bug in the display of
1238                 AM/PM in the 'Example' string
1239
1240 2006-10-09 [ticho]      2.5.3cvs24
1241
1242         * po/sk.po
1243                 Updated (and fixed up somewhat) Slovak translation.
1244
1245 2006-10-08 [colin]      2.5.3cvs23
1246
1247         * src/prefs_folder_item.c
1248                 Explain why prefs in the top-level folder
1249                 aren't retained, but are still useful
1250
1251 2006-10-08 [colin]      2.5.3cvs22
1252
1253         * src/prefs_gtk.c
1254                 Don't cache anything if caching fails
1255
1256 2006-10-08 [colin]      2.5.3cvs21
1257
1258         * src/common/utils.c
1259                 always include gi18n.h
1260
1261 2006-10-07 [colin]      2.5.3cvs20
1262
1263         * src/plugins/pgpcore/pgp_viewer.c
1264                 Kill gpg after 5 seconds wait
1265
1266 2006-10-07 [colin]      2.5.3cvs19
1267
1268         * src/plugins/pgpcore/pgp_viewer.c
1269         * src/plugins/pgpcore/pgp_viewer.h
1270                 Fix copyright
1271
1272 2006-10-07 [colin]      2.5.3cvs18
1273
1274         * src/plugins/pgpcore/pgp_viewer.c
1275         * src/plugins/pgpcore/pgp_viewer.h
1276                 Actually add the files to CVS
1277
1278 2006-10-07 [colin]      2.5.3cvs17
1279
1280         * src/plugins/pgpcore/sgpgme.c
1281                 Be sure not to crash on 'application/pgp-signature' that
1282                 are not application/pgp-signatures
1283
1284 2006-10-07 [colin]      2.5.3cvs16
1285
1286         * src/textview.c
1287         * src/textview.h
1288                 Make a bit more of the API available
1289         * src/plugins/pgpcore/Makefile.am
1290         * src/plugins/pgpcore/plugin.c
1291         * src/plugins/pgpcore/sgpgme.c
1292                 Add basic key import/export
1293
1294 2006-10-07 [colin]      2.5.3cvs15
1295
1296         * src/folderview.c
1297         * src/imap.c
1298         * src/prefs_account.c
1299         * src/wizard.c
1300                 Warn users *everywhere* if libetpan's not
1301                 linked in
1302
1303 2006-10-06 [mones]      2.5.3cvs14
1304
1305         * po/de.po
1306         * po/es.po
1307                 updated by Stephan Sachse and me
1308
1309 2006-10-06 [colin]      2.5.3cvs13
1310
1311         * src/main.c
1312         * src/common/sylpheed.c
1313                 Don't load common plugins if --exit is passed
1314         * src/prefs_gtk.c
1315         * src/prefs_gtk.h
1316                 Implement a cache to avoid reading the same
1317                 files over and over again at startup
1318
1319 2006-10-06 [colin]      2.5.3cvs12
1320
1321         * src/summaryview.c
1322         * src/gtk/quicksearch.c
1323                 Update display every 5k mails on fast searches
1324
1325 2006-10-06 [colin]      2.5.3cvs11
1326
1327         * src/textview.c
1328                 Don't do quote folding on HTML or ERTF.
1329                 May fix the Cygwin issues if they were
1330                 happening with HTML mails?
1331
1332 2006-10-05 [colin]      2.5.3cvs10
1333
1334         * src/prefs_gtk.c
1335                 Oops, forgot one
1336
1337 2006-10-05 [colin]      2.5.3cvs9
1338
1339         * src/prefs_gtk.c
1340                 Use unlocked_stdio here too
1341
1342 2006-10-05 [colin]      2.5.3cvs8
1343
1344         * src/folderview.c
1345                 Fix go to next * after preferences apply
1346         * src/msgcache.c
1347                 Do the fd lock/unlock ourselves instead of
1348                 letting the libc do it at each write 
1349
1350 2006-10-05 [colin]      2.5.3cvs7
1351
1352         * src/common/utils.c
1353                 Faster division, thanks to Jean Diraison
1354
1355 2006-10-05 [paul]       2.5.3cvs6
1356
1357         * src/common/utils.c
1358                 fix building with --disable-nls
1359
1360 2006-10-04 [colin]      2.5.3cvs5
1361
1362         * src/folder.c
1363                 Maybe fix a segfault
1364
1365 2006-10-04 [wwp]        2.5.3cvs4
1366
1367         * src/prefs_folder_item.c
1368                 Fine-tune layouts in folder item prefs. Suggested by
1369                 Fabien Vantard <fzzzzz@gmail.com>.
1370
1371 2006-10-04 [wwp]        2.5.3cvs3
1372
1373         * src/prefs_folder_item.c
1374                 Kill the clandestine passengers. You didn't see anything.
1375
1376 2006-10-04 [wwp]        2.5.3cvs2
1377
1378         * src/prefs_folder_item.c
1379                 Add a way to test the subject simplify regexp in
1380                 folder prefs. Patch by Fabien Vantard <fzzzzz@gmail.com>,
1381                 w/ few layout changes.
1382
1383 2006-20-04 [paul]       2.5.3cvs1
1384
1385         * NEWS
1386         * README
1387         * configure.ac
1388                 Update version number following
1389                 stable release
1390
1391 2006-10-04 [colin]      2.5.2cvs42
1392
1393         * src/folder.c
1394         * src/folder.h
1395         * src/summaryview.c
1396                 Provide a way for folder classes to set their sort
1397                 type and key
1398
1399 2006-10-03 [colin]      2.5.2cvs41
1400
1401         * src/mh.c
1402                 Don't use strlen() to know if the
1403                 string's empty
1404
1405 2006-10-03 [colin]      2.5.2cvs40
1406
1407         * src/mh.c
1408                 Fix "check for new folders" with accentued folders
1409
1410 2006-10-03 [ticho]      2.5.2cvs39
1411
1412         * src/filtering.c
1413         * src/folder.c
1414         * src/inc.c
1415         * src/mbox.c
1416                 Colin's fix for "copy" filtering rules.
1417
1418 2006-10-02 [colin]      2.5.2cvs38
1419
1420         * src/folderview.c
1421                 Fix for double-click too
1422
1423 2006-10-02 [colin]      2.5.2cvs37
1424
1425         * src/folderview.c
1426                 correct fix for cvs36
1427
1428 2006-10-02 [colin]      2.5.2cvs36
1429
1430         * src/folderview.c
1431                 Fix 'goto next unread' after collapsing/expanding 
1432                 a node.
1433
1434 2006-10-02 [colin]      2.5.2cvs35
1435
1436         * src/summaryview.c
1437                 Fix double freeze/thaw
1438         * src/common/utils.c
1439         * src/common/utils.h
1440                 Reimplement strftime
1441         * src/procheader.c
1442                 Use it
1443
1444
1445 2006-10-02 [colin]      2.5.2cvs34
1446
1447         * src/mh.c
1448                 Time mh_write_sequences() - it's fast
1449         * src/summaryview.c
1450                 Init a variable to shut up gcc
1451
1452 2006-10-01 [colin]      2.5.2cvs33
1453
1454         * src/folder.c
1455         * src/mh.c
1456         * src/mh.h
1457         * src/msgcache.c
1458                 Add helper mh_set_mtime(), and set mtime to stat()'s result
1459                 Add fsync but disable it, it's slow as hell
1460
1461 2006-10-01 [colin]      2.5.2cvs32
1462
1463         * src/mh.c
1464         * src/msgcache.c
1465                 fflush() caches and mh_sequences before
1466                 fclose()ing
1467
1468 2006-10-01 [colin]      2.5.2cvs31
1469
1470         * src/msgcache.c
1471                 Don't ftruncate when not using mmap
1472
1473 2006-09-30 [colin]      2.5.2cvs30
1474
1475         * src/main.c
1476                 Write folder list *after* saving caches
1477
1478 2006-09-30 [colin]      2.5.2cvs29
1479
1480         * src/folder.c
1481         * src/mh.c
1482                 Debug forced mtime changes
1483
1484 2006-09-30 [colin]      2.5.2cvs28
1485
1486         * src/folder.c
1487         * src/main.c
1488                 Remove useless debug_print()s (code
1489                 well-tested)
1490
1491 2006-09-30 [colin]      2.5.2cvs27
1492
1493         * src/mh.c
1494                 Do stuff faster when writing mh_sequences
1495
1496 2006-09-30 [colin]      2.5.2cvs26
1497
1498         * src/mh.c
1499                 Don't let the writing of .mh_sequences, which
1500                 can change the folder's mtime, let us think
1501                 we need to scan.
1502
1503 2006-09-30 [colin]      2.5.2cvs25
1504
1505         * src/folder.c
1506                 Move a debug_print where it belongs 
1507                 (processing)
1508         * src/summaryview.c
1509                 Don't mess with a huge slow subject
1510                 table if we're not threading by
1511                 subject
1512
1513 2006-09-30 [colin]      2.5.2cvs24
1514
1515         * src/msgcache.c
1516                 Reenable mmaped reads (*not* writes!)
1517         * src/procmsg.c
1518                 Don't destroy and recreate hashtables just
1519                 for fun
1520         * src/common/utils.c
1521                 Remove useless reply prefixes (it's case
1522                 unsensitive)
1523
1524 2006-09-30 [wwp]        2.5.2cvs23
1525
1526         * tools/fix_date.sh
1527                 Fixed a minor bug in date value extraction, added a switch
1528                 to replace non RFC-compliant Date: value, added a switch
1529                 to use strict RFC matching patterns for dates.
1530
1531 2006-09-29 [colin]      2.5.2cvs22
1532
1533         * src/matcher_parser.h
1534         * src/matcher_parser_parse.y
1535         * src/prefs_filtering.c
1536         * src/statusbar.c
1537         * src/summary_search.c
1538         * src/summaryview.c
1539         * src/gtk/quicksearch.c
1540         * src/gtk/quicksearch.h
1541                 Optimise searches by setting different
1542                 refresh intervals (depending if the 
1543                 search is fast or not)
1544
1545 2006-09-29 [colin]      2.5.2cvs21
1546
1547         * src/codeconv.c
1548                 Optimise by reusing the last iconv converter
1549                 if possible
1550         * src/textview.c
1551                 Optimise a bit (the foldable quotes feature
1552                 still has an awful O(n^2) algo
1553
1554 2006-09-29 [colin]      2.5.2cvs20
1555
1556         * src/gtk/gtksctree.c
1557         * src/gtk/gtksctree.h
1558                 Optimise de-selection via up/down or
1559                 another key
1560
1561 2006-09-28 [colin]      2.5.2cvs19
1562
1563         * src/action.c
1564         * src/compose.c
1565         * src/folderview.c
1566         * src/mainwindow.c
1567         * src/messageview.c
1568         * src/summary_search.c
1569         * src/toolbar.c
1570                 Avoid using summaryview->ctree directly
1571
1572 2006-09-28 [colin]      2.5.2cvs18
1573
1574         * src/summaryview.c
1575         * src/summaryview.h
1576                 Add helpers to freeze/thaw/grab_focus
1577                 Factorize calls to freeze/thaw/grab_focus
1578                 
1579
1580 2006-09-28 [colin]      2.5.2cvs17
1581
1582         * src/main.c
1583                 More guards for the session management
1584
1585 2006-09-28 [colin]      2.5.2cvs16
1586
1587         * src/folderview.c
1588         * src/gtk/gtksctree.c
1589         * src/gtk/gtksctree.h
1590                 Make expanding not recursive in folderview
1591
1592 2006-09-28 [colin]      2.5.2cvs15
1593
1594         * src/addressbook.c
1595                 If nothing is selected in the list (right part)
1596                 and a group is selected in the tree (left part),
1597                 mail this group.
1598
1599 2006-09-28 [colin]      2.5.2cvs14
1600
1601         * src/Makefile.am
1602                 Actually use SM_LIBS
1603
1604 2006-09-28 [ticho]      2.5.2cvs13
1605
1606         * src/export.c
1607         * src/messageview.c
1608         * src/mimeview.c
1609         * src/news.c
1610         * src/pop.c
1611         * src/prefs_themes.c
1612         * src/procmsg.c
1613                 Small i18n string optimization.
1614         * src/send_message.c
1615         * src/summaryview.c
1616         * src/common/session.c
1617         * src/common/smtp.c
1618         * src/common/ssl_certificate.c
1619         * src/common/utils.c
1620                 Use "Couldn't" instead of "Can't" in UI messages,
1621                 where appropriate.
1622
1623 2006-09-28 [colin]      2.5.2cvs12
1624
1625         * configure.ac
1626                 Possibly fix link errors
1627
1628 2006-09-27 [wwp]        2.5.2cvs11
1629
1630         * src/gtk/authors.h
1631         * doc/man/sylpheed-claws.1
1632         * manual/ack.xml
1633         * manual/es/ack.xml
1634         * manual/fr/ack.xml
1635         * manual/pl/ack.xml
1636                 Updated authors info (me, myself and I).
1637
1638 2006-09-27 [colin]      2.5.2cvs10
1639
1640         * src/addressbook.c
1641                 Remove useless printf
1642
1643 2006-09-27 [wwp]        2.5.2cvs9
1644
1645         * src/editgroup.c
1646         * src/send_message.c
1647         * src/inc.c
1648         * src/prefs_common.c
1649         * src/prefs_common.h
1650         * src/gtk/progressdialog.c
1651                 remember more windows' sizes (send dialog, received dialog,
1652                 edit group in addressbook).
1653
1654 2006-09-27 [colin]      2.5.2cvs8
1655
1656         * configure.ac
1657         * src/main.c
1658         * src/mainwindow.h
1659                 Use libSM to communicate with the session
1660                 manager, so that we can know when the 
1661                 session ends, save our caches, and draft
1662                 our compose windows.
1663
1664 2006-09-27 [colin]      2.5.2cvs7
1665
1666         * src/addressbook.c
1667                 Fix issues:
1668                 o Allow Book and Group creation from the tree's
1669                   contextual menu
1670                 o Do not actually delete the contacts when 
1671                   deleting groups from the tree (duh!)
1672
1673 2006-09-27 [colin]      2.5.2cvs6
1674
1675         * src/compose.c
1676         * src/compose.h
1677         * src/mainwindow.c
1678         * src/textview.c
1679         * src/toolbar.c
1680                 o Allow passing an email address to 
1681                   compose_new_with_folderitem
1682                 o Update callers
1683                 o Use current folderitem when clicking
1684                   on a TextView mailto: link
1685                 o Fix a possible leak in TextView
1686
1687 2006-09-27 [colin]      2.5.2cvs5
1688
1689         * src/html.c
1690                 Use UTF-8 chars to replace HTML entities
1691
1692 2006-09-27 [colin]      2.5.2cvs4
1693
1694         * AUTHORS
1695         * src/prefs_account.c
1696         * src/gtk/authors.h
1697                 Fix bug #1024 (Array index out of
1698                 range in sylpheed-claws-2.5.2)
1699                 Patch by Ales Nosek <anosek@suse.cz>
1700
1701 2006-09-27 [colin]      2.5.2cvs3
1702
1703         * src/addr_compl.c
1704                 Actually do the test
1705
1706 2006-09-27 [colin]      2.5.2cvs2
1707
1708         * src/addr_compl.c
1709         * src/addr_compl.h
1710                 Allow completing with comma (in certain cases: vCalendar
1711                 for example doesn't support that)
1712                 Patch by Fabien Vantard
1713
1714 2006-09-26 [colin]      2.5.2cvs1
1715
1716         * src/Makefile.am
1717         * src/addr_compl.c
1718         * src/addr_compl.h
1719         * src/addrbook.c
1720         * src/addrbook.h
1721         * src/addressbook.c
1722         * src/addrindex.c
1723         * src/addrindex.h
1724         * src/compose.c
1725         * src/prefs_common.c
1726         * src/prefs_filtering_action.c
1727         * src/prefs_folder_item.c
1728         * src/prefs_template.c
1729         * src/stock_pixmap.c
1730         * src/stock_pixmap.h
1731         * src/pixmaps/addr_one.xpm
1732         * src/pixmaps/addr_two.xpm
1733                 Add auto-completion on groups
1734
1735 2006-09-26 [colin]      2.5.2
1736
1737         * NEWS
1738         * README
1739         * RELEASE_NOTES
1740                 2.5.2 released
1741
1742 2006-09-26 [colin]      2.5.1cvs5
1743
1744         * src/matcher.c
1745                 Fix condition
1746
1747 2006-09-26 [colin]      2.5.1cvs4
1748
1749         * src/mbox.c
1750                 Revert cvs1 (useless as the message is printed 
1751                 every 500 mails)
1752
1753 2006-09-26 [colin]      2.5.1cvs3
1754
1755         * src/partial_download.c
1756                 Fix crasher found by Alexsandar Urosevic
1757
1758 2006-09-26 [colin]      2.5.1cvs2
1759
1760         * src/summaryview.c
1761                 Fix bug #1023 (Sylpheed deletes too much messages)
1762
1763 2006-09-26 [ticho]      2.5.1cvs1
1764
1765         * src/mbox.c
1766                 Make use of gettext's multiple plurals for statusbar
1767                 progress message.
1768
1769 2006-09-25 [paul]       2.5.1
1770
1771         * NEWS
1772         * README
1773         * RELEASE_NOTES
1774                 2.5.1 released
1775
1776 2006-09-25 [colin]      2.5.0cvs3
1777
1778         * src/plugins/bogofilter/bogofilter.c
1779         * src/plugins/clamav/clamav_plugin.c
1780         * src/plugins/spamassassin/spamassassin.c
1781                 BogoFilter, Spamassassin: Fix double hook registering after
1782                 visiting preferences
1783                 Spamassassin, Clamav: Just set the mails to move instead of
1784                 doing the move - caller will move the things at once.
1785
1786 2006-09-25 [colin]      2.5.0cvs2
1787
1788         * src/imap.c
1789         * src/etpan/imap-thread.c
1790                 Use UID SEARCH ALL instead of UID 1:*
1791                 (braindead servers can't figure out that's
1792                 the same...)
1793
1794 2006-09-25 [wwp]        2.5.0cvs1
1795
1796         * src/message_search.c
1797                 Added the ability to stop a running search (in message body).
1798
1799 2006-09-25 [paul]       2.5.0
1800
1801         * NEWS
1802         * README
1803         * RELEASE_NOTES
1804                 2.5.0 released
1805
1806 2006-09-25 [paul]       2.4.0cvs214
1807
1808         * po/cs.po
1809         * po/de.po
1810         * po/fi.po
1811         * po/fr.po
1812         * po/nl.po
1813         * po/pt_BR.po
1814         * po/sk.po
1815         * po/sr.po
1816         * po/zh_CN.po
1817                 updated by Tim, Stephan Sachse, Flammie Pirinen,
1818                 Fabien Vantard, Tim Dijkstra, Frederico Goncalves Guimaraes,
1819                 Ticho, Aleksander Urosevic, Ralgh Young
1820
1821 2006-09-24 [mones]      2.4.0cvs213
1822
1823         * po/es.po
1824                 Updated for release
1825
1826 2006-09-23 [colin]      2.4.0cvs212
1827
1828         * src/gtk/inputdialog.c
1829                 Fix [ ] remember this appearing in normal
1830                 input dialogs after it's been used by
1831                 mimeview.
1832         * src/folder.c
1833         * src/folderview.c
1834         * src/msgcache.c
1835         * src/procmsg.c
1836         * src/summaryview.c
1837         * src/textview.c
1838         * src/common/timing.h
1839                 Enable timings in debug mode and make it
1840                 look prettier.
1841
1842 2006-09-22 [colin]      2.4.0cvs211
1843
1844         * README
1845                 Revert test change
1846         * commitHelper
1847                 ping the correct URI
1848
1849 2006-09-22 [colin]      2.4.0cvs210
1850
1851         * README
1852                 Let's see if bug #1022 is fixed
1853
1854 2006-09-21 [colin]      2.4.0cvs209
1855
1856         * src/wizard.c
1857         * src/common/plugin.c
1858                 Prepare infra to load predefined plugins when
1859                 no configuration existed. Don't actually load
1860                 anything yet (feat. freeze)
1861
1862 2006-09-21 [wwp]        2.4.0cvs208
1863
1864         * manual/fr/faq.xml
1865                 Partial sync w/ 2.4.0cvs72:
1866                 wrap file and minor updates.
1867
1868 2006-09-21 [wwp]        2.4.0cvs207
1869
1870         * tools/fix_date.sh
1871                 several fixes and enhancements. A new --force switch has been
1872                 added to prevent overriding by default Date: header when
1873                 already existing.
1874
1875 2006-09-21 [paul]       2.4.0cvs206
1876
1877         * src/common/utils.c
1878                 add Chinese UTF8 Re prefix
1879
1880 2006-09-21 [wwp]        2.4.0cvs205
1881
1882         * tools/Makefile.am
1883                 Fics alfabettical order.
1884
1885 2006-09-21 [wwp]        2.4.0cvs204
1886
1887         * tools/fix_date.sh
1888         * tools/Makefile.am
1889                 Added an action tool to fix missing Date field in emails.
1890                 Updated Makefile.am to reflect those last two additions.
1891
1892 2006-09-21 [wwp]        2.4.0cvs203
1893
1894         * tools/uuooffice
1895                 Added a action tool to open uuencoded docs w/
1896                 OpenOffice (based on uudec method).
1897
1898 2006-09-21 [colin]      2.4.0cvs202
1899
1900         * src/compose.c
1901         * src/textview.c
1902                 Workaround possible GTK crash: remove selection 
1903                 clipboard before destroying widget, or GTK+-2.10
1904                 dies. Thanks to Hiro.
1905
1906 2006-09-20 [colin]      2.4.0cvs201
1907
1908         * src/compose.c
1909                 Fix free-after-use in some cases (when 
1910                 procmime_encode_content() frees mimeinfo->data.mem
1911                 and turns it to a temp file)
1912
1913 2006-09-20 [colin]      2.4.0cvs200
1914
1915         * src/folderview.c
1916         * src/summaryview.c
1917         * src/gtk/gtksctree.c
1918         * src/gtk/gtksctree.h
1919                 Add tooltips in the folderview and summaryview
1920                 (Doesn't break string freeze as they already
1921                 exist)
1922         * src/toolbar.c
1923                 Put the spam button in the default configuration
1924                 if compiled with bogo plugin too
1925
1926 2006-09-19 [colin]      2.4.0cvs199
1927
1928         * src/summaryview.c
1929         * src/summaryview.h
1930                 Update folder name label on folder rename
1931         * src/prefs_matcher.c
1932         * src/gtk/logwindow.h
1933                 Fix warnings
1934                 Patches by Fabien
1935
1936 2006-09-19 [wwp]        2.4.0cvs198
1937
1938         * src/summary_search.c
1939                 fix can't click forward/backward buttons in the
1940                 search messages.
1941
1942 2006-09-18 [paul]       2.4.0cvs197
1943
1944         * src/wizard.c
1945                 add missing bracket, capitalise the A of
1946                 'SpamAssassin'
1947
1948 2006-09-18 [paul]       2.4.0cvs196
1949
1950         * src/compose.c
1951                 fix bug 1012 'crashed upon sending mail
1952                 from compose window'
1953                 Thanks to Colin
1954
1955 2006-09-16 [colin]      2.4.0cvs195
1956
1957         * src/folderview.c
1958                 Fix "real-time" sorting by freezing/thawing
1959
1960 2006-09-16 [colin]      2.4.0cvs194
1961
1962         * manual/faq.xml
1963                 Fix the anti-spam entry a bit
1964
1965 2006-09-16 [colin]      2.4.0cvs193
1966
1967         * src/wizard.c
1968                 Make sure reviewers have no excuse when stating
1969                 Sylpheed-Claws doesn't have antispam capabilities.
1970
1971 2006-09-16 [colin]      2.4.0cvs192
1972
1973         * src/main.c
1974                 Revert part of 2.3.0cvs18, Saving caches on SIGPIPE,
1975                 as if the SIGPIPE comes from etpan's thread we could
1976                 trigger a GUI update from this thread.
1977
1978 2006-09-16 [colin]      2.4.0cvs191
1979
1980         * src/summaryview.c
1981                 Init all members of the struct
1982
1983 2006-09-16 [paul]       2.4.0cvs190
1984
1985         * src/account.c
1986                 improvements to the English
1987
1988 2006-09-15 [colin]      2.4.0cvs189
1989
1990         * src/summaryview.c
1991                 HIG order on dialog
1992
1993 2006-09-14 [colin]      2.4.0cvs188
1994
1995         * src/common/socket.c
1996         * src/common/socket.h
1997         * src/common/ssl.c
1998         * src/common/ssl_certificate.c
1999         * src/common/ssl_certificate.h
2000         * src/etpan/imap-thread.c
2001                 the get_fqdn() call done to get canonical name when
2002                 checking an SSL certificate is blocking, which is
2003                 sad as we just did a non-blocking lookup to connect.
2004                 Fix that by letting the fqdn available to the SockInfo,
2005                 and use that in ssl_certificate_check(). For IMAP,
2006                 we don't do it as the lookup's done by libetpan, but
2007                 it's less annoying as IMAP connections as much more
2008                 rare than POP3 connections.
2009
2010 2006-09-14 [paul]       2.4.0cvs187
2011
2012         * manual/advanced.xml
2013                 improvements to the English,
2014                 properly place the new hidden options
2015                 within the alphabetical order
2016         * src/gtk/pluginwindow.c
2017                 improvements to the English
2018
2019 2006-09-14 [colin]      2.4.0cvs186
2020
2021         * src/prefs_common.c
2022         * src/prefs_common.h
2023         * src/gtk/gtksctree.c
2024         * manual/advanced.xml
2025                 New hidden pref, stripes_color_offset, to change
2026                 the value added/substracted to normal bgcolor to
2027                 create the stripes in summaries
2028
2029 2006-09-13 [colin]      2.4.0cvs185
2030
2031         * src/gedit-print.c
2032         * src/messageview.c
2033         * src/messageview.h
2034         * src/summaryview.c
2035         * src/textview.c
2036                 Fix misc. printing issues: 
2037                 - Bad font for linkified headers
2038                 - Different font if the mail was displayed or not
2039                 - Factorize the thing
2040
2041 2006-09-13 [colin]      2.4.0cvs184
2042
2043         * src/common/ssl_certificate.c
2044                 Only get FQDN once when checking certificate
2045
2046 2006-09-13 [colin]      2.4.0cvs183
2047
2048         * src/account.c
2049         * src/gtk/pluginwindow.c
2050                 Misc. GUI fixes by Fabien
2051
2052 2006-09-13 [wwp]        2.4.0cvs182
2053
2054         * configure.ac
2055         * src/common/utils.h
2056         * src/common/utils.c
2057                 get rid of unused wide-char functions.
2058
2059 2006-09-13 [wwp]        2.4.0cvs181
2060
2061         * src/plugins/pgpinline/sylpheed.def
2062         * src/textview.c
2063                 merge more w32 patches from gpg4win sources (Marcus Brinkmann <marcus@g10code.de>):
2064                 add privacy_reset_error to the .def file,
2065                 do not fork for an external textviewer.
2066
2067 2006-09-13 [wwp]        2.4.0cvs180
2068
2069         * src/prefs_common.c
2070                 fix broken font entry in prefs (patch issued by the gpg4win team,
2071                 probably by Marcus Brinkmann <marcus@g10code.de>).
2072
2073 2006-09-13 [colin]      2.4.0cvs179
2074
2075         * src/folder.h
2076                 Fix a warning in summaryview.c
2077         * src/mainwindow.c
2078         * src/summaryview.c
2079         * src/summaryview.h
2080                 Add missing Mark/* elements in the
2081                 main menu
2082
2083 2006-09-12 [colin]      2.4.0cvs178
2084
2085         * src/prefs_actions.c
2086         * src/prefs_filtering_action.c
2087         * src/prefs_matcher.c
2088                 Use (New) instead of New everywhere
2089
2090 2006-09-12 [wwp]        2.4.0cvs177
2091
2092         * manual/fr/addrbook.xml
2093         * manual/fr/handling.xml
2094                 updated some quotes in the fr manual to match the fr translation.
2095
2096 2006-09-12 [wwp]        2.4.0cvs176
2097
2098         * src/prefs_matcher.c
2099                 don't store translated string elements in matcher expressions.
2100                 Also fixed a misused of Q_().
2101
2102 2006-09-11 [wwp]        2.4.0cvs175
2103
2104         * src/plugins//bogofilter/bogofilter.c
2105         * src/plugins//clamav/clamav_plugin.c
2106         * src/plugins//demo/demo.c
2107         * src/plugins//dillo_viewer/dillo_viewer.c
2108         * src/plugins//pgpcore/plugin.c
2109         * src/plugins//pgpinline/plugin.c
2110         * src/plugins//pgpmime/plugin.c
2111         * src/plugins//spamassassin/spamassassin.c
2112                 gettext-ize more strings (mostly plugin error messages).
2113
2114 2006-09-11 [colin]      2.4.0cvs174
2115
2116         * src/alertpanel.c
2117                 Make maximum buffer size bigger to avoid
2118                 truncating translated messages. Patch by
2119                 Fabien
2120
2121 2006-09-11 [colin]      2.4.0cvs173
2122
2123         * src/etpan/imap-thread.c
2124                 Fix compilation on OpenBSD, thanks to 
2125                 Landry
2126
2127 2006-09-10 [wwp]        2.4.0cvs172
2128
2129         * manual/account.xml
2130         * manual/addrbook.xml
2131         * manual/handling.xml
2132         * manual/es/handling.xml
2133         * manual/fr/account.xml
2134         * manual/fr/addrbook.xml
2135         * manual/fr/handling.xml
2136                 documented addressbook matching (condition configuration):
2137                   addrbook.xml, en fr
2138                 documented per-account filtering rules (handling/filtering
2139                   section, account section):
2140                   account.xml, handling.xml, en fr
2141                 slightly updated the handling/searching section to tell few
2142                   words about the extended search ability:
2143                   handling.xml, en fr
2144                 added missing <quote></quotes> to Quick Search:
2145                   handling.xml, en fr es
2146                 fixed a typo (auomatically):
2147                   handling.xml, en
2148                 changes revisited by Paul.
2149
2150 2006-09-10 [paul]       2.4.0cvs171
2151
2152         * src/prefs_actions.c
2153         * src/prefs_filtering.c
2154         * src/prefs_template.c
2155                 adjustments to the gui
2156                 Patch by Fabien Vantard (slightly modified)
2157
2158 2006-09-10 [colin]      2.4.0cvs170
2159
2160         * src/summaryview.c
2161                 Check folderitem/summaryview consistency
2162                 (basically automates Update summary). Fixes
2163                 #1011 (wrong (negative) count on unread 
2164                 messages)
2165
2166 2006-09-10 [colin]      2.4.0cvs169
2167
2168         * src/gtk/gtksctree.c
2169                 Fix recursive expansion via mouse
2170         * src/plugins/bogofilter/bogofilter.c
2171                 Use normal filtering way of moving
2172                 messages (batching), possibly fixing
2173                 bug #1015 (Bogofilter plugin doubles 
2174                 new messages)
2175
2176 2006-09-09 [wwp]        2.4.0cvs168
2177
2178         * src/prefs_filtering.c
2179                 better place for this fix.
2180
2181 2006-09-09 [wwp]        2.4.0cvs167
2182
2183         * src/prefs_filtering.c
2184                 fix a minor bug when the enabled status of a filtering/processing
2185                 rule always got set to TRUE when replacing this rule. That still
2186                 make sense when adding a new rule, but now when replacing, we
2187                 don't override the value of 'enabled'.
2188                 Also renamed the func prefs_filtering_list_view_get_rule_name()
2189                 to prefs_filtering_list_view_get_info() as this function not only
2190                 returns the name, but also the account_id and the enabled status.
2191
2192 2006-09-09 [mones]      2.4.0cvs166
2193
2194         * manual/glossary.xml
2195         * manual/plugins.xml
2196                 Minor format corrections
2197         * manual/gpl.xml
2198                 Fix misplaced NO WARRANTY section
2199         * manual/es/advanced.xml
2200         * manual/es/faq.xml
2201         * manual/es/glossary.xml
2202         * manual/es/gpl.xml
2203         * manual/es/handling.xml
2204         * manual/es/plugins.xml
2205         * manual/es/starting.xml
2206                 Incorporate changes from English version
2207         * manual/fr/ack.xml
2208         * manual/pl/ack.xml
2209         * manual/es/ack.xml
2210                 Fix address, (add translation credits in es version)
2211         * po/es.po
2212                 Updated translation
2213
2214 2006-09-09 [wwp]        2.4.0cvs165
2215
2216         * src/prefs_filtering.c
2217                 fix a crash when opening filtering prefs, if matcherrc file contains
2218                 broken data (non-existing account id, which is theoretically not
2219                 possible).
2220
2221 2006-09-08 [colin]      2.4.0cvs164
2222
2223         * src/folder.c
2224                 Wrong assert, make it an if()
2225         * src/gtk/gtksctree.c
2226                 Fix bug #1013 (expand selected thread 
2227                 tree) - expanding is now recursive
2228
2229 2006-09-07 [wwp]        2.4.0cvs163
2230
2231         * src/prefs_matcher.c
2232                 make better sentences about addressbook matching in the
2233                 matcher prefs. This should make translators' work easier
2234                 too.
2235
2236 2006-09-07 [wwp]        2.4.0cvs162
2237
2238         * src/prefs_filtering.c
2239                 code simplification (get rid of dup var. assignment).
2240
2241 2006-09-07 [wwp]        2.4.0cvs161
2242
2243         * src/summaryview.c
2244                 use GTK_STOCK icons when possible, patch by Fabien Vantard
2245                 <fzzzzz@gmail.com>.
2246
2247 2006-09-07 [paul]       2.4.0cvs160
2248
2249         * src/mimeview.c
2250                 fix compilation warnings
2251                 Thanks to Colin
2252
2253 2006-09-07 [paul]       2.4.0cvs159
2254
2255         * src/mimeview.c
2256                 select the mimepart icon when
2257                 displaying as text
2258                 Thanks to Colin
2259
2260 2006-09-06 [paul]       2.4.0cvs158
2261
2262         * src/prefs_filtering.c
2263                 fix labels and table element spacing
2264                 Patch by Fabien Vantard
2265
2266 2006-09-06 [paul]
2267
2268         2.5.0-rc3 released
2269
2270 2006-09-06 [paul]       2.4.0cvs157
2271
2272         * manual/es/advanced.xml
2273                 fix typo
2274
2275 2006-09-06 [wwp]        2.4.0cvs156
2276
2277         * src/mainwindow.c
2278                 fix an dup launch issue when iconified, thanks to Colin.
2279
2280 2006-09-06 [wwp]        2.4.0cvs155
2281
2282         * src/gtk//gtksctree.h
2283                 oops, forgot that one!
2284
2285 2006-09-06 [wwp]        2.4.0cvs154
2286
2287         * manual/pl/advanced.xml
2288         * manual/advanced.xml
2289         * manual/es/advanced.xml
2290         * manual/fr/advanced.xml
2291         * src/prefs_customheader.c
2292         * src/prefs_filtering_action.c
2293         * src/foldersel.c
2294         * src/prefs_summaries.c
2295         * src/prefs_filtering.c
2296         * src/account.c
2297         * src/compose.c
2298         * src/prefs_summary_column.c
2299         * src/addr_compl.c
2300         * src/prefs_actions.c
2301         * src/prefs_folder_column.c
2302         * src/ssl_manager.c
2303         * src/prefs_template.c
2304         * src/prefs_display_header.c
2305         * src/prefs_common.h
2306         * src/prefs_matcher.c
2307         * src/prefs_common.c
2308         * src/prefs_toolbar.c
2309         * src/summaryview.c
2310         * src/folderview.c
2311         * src/gtk/gtksctree.c
2312         * src/gtk/pluginwindow.c
2313         * src/gtk/progressdialog.c
2314         * src/gtk/prefswindow.c
2315                 renamed hidden option enable_rules_hint to use_stripes_everywhere
2316                 to make its meaning more obvious (all versions of the manual reflect
2317                 the change).
2318                 added an extra hidden option use_stripes_in_summary to allow
2319                 discarding these stripes in mainwindow's folder and message lists;
2320                 en and fr manuals only are OK towards this.
2321
2322 2006-09-06 [colin]      2.4.0cvs153
2323
2324         * src/textview.c
2325                 Hide Sylpheed-Claws' internal queue headers
2326                 when showing all headers. They'll be present
2327                 only in Source window.
2328
2329 2006-09-05 [colin]      2.4.0cvs152
2330
2331         * src/plugins/trayicon/trayicon.c
2332                 Fix crash at exit - we have to disconnect
2333                 our handlers
2334         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
2335                 Update eggtrayicon - patch adapted from a
2336                 patch by Fryderyk Dziarmagowski <freetz@gmx.net>
2337                 on Sylpheed's ML
2338
2339 2006-09-05 [colin]      2.4.0cvs151
2340
2341         * src/mainwindow.c
2342         * src/gtk/logwindow.c
2343                 Fix race condition when something writes
2344                 to the log too soon during init. Thanks
2345                 to Fabien Vantard
2346
2347 2006-09-05 [colin]      2.4.0cvs150
2348
2349         * src/mimeview.c
2350                 Don't select part on right-click either
2351
2352 2006-09-05 [paul]       2.4.0cvs149
2353
2354         * src/mimeview.c
2355                 completion of previous commit
2356                 Thanks to Colin
2357
2358 2006-09-05 [colin]      2.4.0cvs148
2359
2360         * src/mimeview.c
2361                 Don't force selection on middle-click, just open
2362
2363 2006-09-04 [colin]      2.4.0cvs147
2364
2365         * src/mimeview.c
2366                 Looks like gtk_notebook_set_current_page()
2367                 sometimes steals focus, and this annoys us
2368                 in MimeViewers as it renders navigation
2369                 keys useless. Take back focus after switching
2370                 pages.
2371
2372 2006-09-04 [colin]      2.4.0cvs146
2373
2374         * src/messageview.c
2375                 Set stop_loading when clicking on Next
2376                 during load. Don't add a callback to 
2377                 avoid over-complicating things.
2378
2379 2006-09-04 [colin]      2.4.0cvs145
2380
2381         * src/mimeview.c
2382         * src/messageview.c
2383                 Fix multiple loads in separate messageview
2384
2385 2006-09-04 [colin]      2.4.0cvs144
2386
2387         * src/summaryview.c
2388                 Let navigation keys be handled during 
2389                 load
2390
2391 2006-09-04 [colin]      2.4.0cvs143
2392
2393         * src/messageview.c
2394         * src/summaryview.c
2395         * src/textview.c
2396         * src/textview.h
2397                 Make loading of huge mails (lots of text and/or
2398                 images) cancellable, so the GUI doesn't block 
2399
2400 2006-09-04 [colin]      2.4.0cvs142
2401
2402         * src/plugins/trayicon/trayicon.c
2403                 Fix annoyance when removing a folder with 
2404                 unread mails: trayicon didn't update
2405
2406 2006-09-04 [paul]       2.4.0cvs141
2407
2408         * src/gtk/icon_legend.c
2409                 straighten up columns
2410                 Patch by Fabien Vantard
2411
2412 2006-09-04 [wwp]        2.4.0cvs140
2413
2414         * src/prefs_filtering.c
2415                 fix new line's account name in filtering prefs:
2416                 was "All", is now "(New)".
2417
2418 2006-09-04 [paul]       2.4.0cvs139
2419
2420         * tools/make.themes.project
2421                 use "AUTOMAKE_OPTIONS = dist-bzip2"
2422                 instead of homebrewed "make release"
2423
2424 2006-09-03 [colin]      2.4.0cvs138
2425
2426         * src/folderview.c
2427                 Fix bug #1007 (Wrong folder highlighted)
2428
2429 2006-09-03 [colin]      2.4.0cvs137
2430
2431         * src/compose.c
2432                 Don't set Newsgroup: header to a mail folder
2433                 path
2434
2435 2006-09-03 [paul]       2.4.0cvs136
2436
2437         * src/prefs_other.c
2438         * src/prefs_spelling.c
2439                 unify the gui
2440
2441 2006-09-03 [paul]       2.4.0cvs135
2442
2443         * src/prefs_summaries.c
2444                 correct menu item text in prefs_keybind_apply_clicked()
2445
2446 2006-09-03 [paul]       2.4.0cvs134
2447
2448         * manual/advanced.xml
2449                 some improvements to the descriptions
2450         * src/mainwindow.c
2451         * src/messageview.c
2452         * src/summaryview.c
2453         * src/gtk/menu.c
2454                 fix menu sensitivity issues
2455         * src/prefs_message.c
2456                 drop the useless word 'short'
2457         * src/prefs_other.c
2458                 add the word 'lines' indicating log length
2459                 is a measure of lines
2460         * src/textview.c
2461                 fix compilation warnings
2462
2463 2006-09-02 [colin]      2.4.0cvs133
2464
2465         * src/messageview.c
2466                 Display a special return-receipt message
2467                 if the message is from the user
2468         * src/summaryview.c
2469                 Fix missing freeze of the list when marking
2470                 all read and unthreading for exec. Thanks
2471                 to Stephan Sachse.
2472
2473 2006-09-02 [paul]       2.4.0cvs132
2474
2475         * src/mainwindow.c
2476         * src/prefs_message.c
2477         * src/summaryview.c
2478                 fix some english
2479
2480 2006-09-02 [wwp]        2.4.0cvs131
2481
2482         * src/prefs_filtering.c
2483                 added an account name column to the filtering rules
2484                 dialog.
2485
2486 2006-09-02 [colin]      2.4.0cvs130
2487
2488         * src/gtk/logwindow.c
2489         * src/gtk/logwindow.h
2490                 Block scrolling if we're not at the end
2491                 of the log
2492
2493 2006-09-02 [colin]      2.4.0cvs129
2494
2495         * src/folder.c
2496                 Make sure account-specific rules can't
2497                 be used in {pre-,post-,}processing
2498         * src/mainwindow.c
2499         * src/gtk/logwindow.c
2500         * src/gtk/logwindow.h
2501                 Jump to last error when clicking on the
2502                 warning icon
2503
2504 2006-09-02 [colin]      2.4.0cvs128
2505
2506         * src/imap.c
2507         * src/import.c
2508         * src/mainwindow.c
2509         * src/mainwindow.h
2510                 Fix warning icon
2511         * src/inc.c
2512         * src/mbox.c
2513         * src/mbox.h
2514                 Let proc_mbox know its account, for
2515                 account-specific rules
2516
2517 2006-09-01 [colin]      2.4.0cvs127
2518
2519         * src/codeconv.c
2520                 Don't uselessly use iconv to convert from
2521                 us-ascii
2522         * src/alertpanel.c
2523         * src/mainwindow.c
2524         * src/mainwindow.h
2525         * src/inc.c
2526                 Fix certain log cases, disable warning icon
2527                 for now, the correct way to display it when
2528                 necessary and only when necessary is probably
2529                 to do it manually rather than use error logs
2530         * src/etpan/imap-thread.c
2531                 Clean up UID logging a bit
2532         * src/gtk/logwindow.c
2533         * src/gtk/logwindow.h
2534                 Make logging faster when the window's closed
2535
2536 2006-09-01 [wwp]        2.4.0cvs126
2537
2538         * manual/fr/account.xml
2539                 reflect changes to the ref. manual (parts of cvs72):
2540                 fix tabnames and quotes.
2541
2542 2006-09-01 [wwp]        2.4.0cvs125
2543
2544         * manual/fr/plugins.xml
2545                 reflect changes to the reference manual (cvs42):
2546                 update IRC channel info.
2547
2548 2006-09-01 [wwp]        2.4.0cvs124
2549
2550         * commitHelper
2551                 use CVSEDITOR env. var. if set, according to `man cvs`.
2552
2553 2006-09-01 [wwp]        2.4.0cvs123
2554
2555         * manual/advanced.xml
2556                 better sentence again (thanks to Paul).
2557
2558 2006-09-01 [wwp]        2.4.0cvs122
2559
2560         * manual/advanced.xml
2561         fix definition of toolbar_detachable and rework a bit the one of
2562         enable_dotted_lines.
2563
2564 2006-09-01 [mones]      2.4.0cvs121
2565
2566         * manual/advanced.xml
2567                 Document enable_dotted_lines
2568
2569 2006-09-01 [paul]       2.4.0cvs120
2570
2571         * src/folderview.c
2572         * src/folderview.h
2573         * src/imap.c
2574         * src/mainwindow.c
2575         * src/summaryview.c
2576                 obey the 'When entering folder...' option
2577                 when using the /View/Go to/... menu items
2578                 Thanks to Colin
2579
2580 2006-08-31 [colin]      2.4.0cvs119
2581
2582         * src/folderview.c
2583                 Revert 2.4.0cvs116, wrong fix.
2584
2585 2006-08-31 [colin]      2.4.0cvs118
2586
2587         * src/gtk/gtksctree.c
2588                 Better state the various copyrights
2589
2590 2006-08-31 [colin]      2.4.0cvs117
2591
2592         * src/prefs_common.c
2593                 fix enable_dotted_lines
2594
2595 2006-08-31 [colin]      2.4.0cvs116
2596
2597         * src/folderview.c
2598                 Use pref "Always open on select" when going
2599                 to next unread folder
2600         * src/gtk/gtksctree.c
2601                 Fix link failure to _gtk_clist_create_cell_layout
2602                 on certain computers. (Why not mine, I wonder)
2603
2604 2006-08-31 [colin]      2.4.0cvs115
2605
2606         * src/procmsg.c
2607         * src/textview.c
2608         * src/plugins/bogofilter/bogofilter.c
2609         * src/plugins/spamassassin/spamassassin.c
2610                 Requalify some "errors" to warnings
2611         * src/mainwindow.c
2612         * src/mainwindow.h
2613         * src/statusbar.c
2614                 Add an icon in the statusbar to notify
2615                 of errors
2616         * src/gtk/gtksctree.c
2617         * src/folderview.c
2618         * src/summaryview.c
2619                 Make the GtkSCTree look more modern by
2620                 alternating background lines
2621         * src/prefs_common.c
2622         * src/prefs_common.h
2623                 Add a pref to let people have the old
2624                 way if they prefer
2625
2626
2627 2006-08-30 [colin]      2.4.0cvs114
2628
2629         * src/procmsg.c
2630         * src/procmsg.h
2631                 Provide a way to filter a list of
2632                 messages in an optimised manner, and
2633                 add a list-filtering hook
2634         * src/folder.c
2635         * src/inc.c
2636         * src/mbox.c
2637                 Use the list filtering
2638         * src/plugins/bogofilter/bogofilter.c
2639                 Use the list-filtering hook
2640                 Use -b (bulk) mode for more speed
2641                 when learning and filtering
2642         * src/etpan/imap-thread.c
2643                 Make log output shorter in UID SEARCH
2644
2645
2646 2006-08-30 [colin]      2.4.0cvs113
2647
2648         * src/plugins/bogofilter/bogofilter.c
2649                 Really fast mass learning - thanks to David
2650                 Relson for the options explanations :)
2651
2652 2006-08-30 [colin]      2.4.0cvs112
2653
2654         * src/msgcache.c
2655                 Fix compilation on FreeBSD. Thanks
2656                 to Michael Hugues
2657
2658 2006-08-29 [colin]      2.4.0cvs111
2659
2660         * src/folderview.c
2661                 Handle "popup_menu" signal (for popping the 
2662                 menu via the keyboard)
2663         * src/mimeview.c
2664         * src/mimeview.h
2665         * src/summaryview.c
2666         * src/textview.c
2667         * src/gtk/gtkutils.c
2668         * src/gtk/gtkutils.h
2669                 Factorize scrolling code, and add an API 
2670                 for MimeViewers to handle scroll orders
2671
2672 2006-08-29 [wwp]        2.4.0cvs110
2673
2674         * src/plugins//bogofilter/bogofilter.c
2675         * src/plugins//spamassassin/spamassassin.c
2676                 make the bogofilter/spamassassin filtering error dialogs at
2677         incorporation obey to the "don't popup error dialog on
2678         receive error" option. If disabled, feed the log window w/
2679         the error message.
2680
2681 2006-08-29 [paul]
2682
2683         2.5.0-rc2 released
2684
2685 2006-08-29 [paul]       2.4.0cvs109
2686
2687         * Makefile.am
2688                 remove 'make release', it's not needed
2689                 since we use 'AUTOMAKE_OPTIONS = dist-bzip2'
2690
2691 2006-08-29 [paul]       2.4.0cvs108
2692
2693         * src/foldersel.c
2694         * src/summary_search.c
2695         * src/gtk/progressdialog.c
2696         * src/plugins/pgpcore/passphrase.c
2697                 replace deprecated gtk_window_set_policy()
2698
2699 2006-08-29 [colin]      2.4.0cvs107
2700
2701         * src/folder.c
2702                 Fix data loss when copy fails during a move:
2703                 only use fast remove_msgs if everything was
2704                 copied OK; else use slow remove_msg on the
2705                 mails that got copied only.
2706
2707 2006-08-28 [paul]       2.4.0cvs106
2708
2709         * src/mh.c
2710                 revert change in 2.4.0cvs104, it breaks
2711                 stuff
2712
2713 2006-08-28 [paul]       2.4.0cvs105
2714
2715         * src/plugins/spamassassin/spamassassin.c
2716                 english fix
2717
2718 2006-08-28 [paul]       2.4.0cvs104
2719
2720         * src/mh.c
2721                 fix data loss when moving to another
2722                 mailbox fails
2723         * src/prefs_spelling.c
2724                 improve the english
2725         * src/gtk/pluginwindow.c
2726                 improve the layout of the dialog text
2727         All thanks to Colin
2728
2729 2006-08-28 [paul]       2.4.0cvs103
2730
2731         * src/plugins/bogofilter/bogofilter.c
2732         * src/plugins/bogofilter/bogofilter_gtk.c
2733                 fix english up a bit, innit
2734
2735 2006-08-28 [paul]       2.4.0cvs102
2736
2737         * configure.ac
2738         * po/Makefile.in.in
2739         * po/Makevars
2740                 require autoconf 2.60, enabling building
2741                 with gettext 0.15 (gettext 0.14.x build still
2742                 possible). Replace Makefiles with versions
2743                 from gettext 0.15.
2744                 Remove configure options --with-localedir and
2745                 --with-mandir. The options that are provided
2746                 directly by autoconf 2.60 can be used instead:
2747                 --mandir --localedir
2748
2749 2006-08-27 [colin]      2.4.0cvs101
2750
2751         * src/plugins/bogofilter/Makefile.am
2752                 Fix make dist (no README)
2753
2754 2006-08-27 [colin]      2.4.0cvs100
2755
2756         * src/folder.c
2757                 Don't use F_UNKNOWN folders for any default
2758                 outbox/trash/etc
2759         * src/plugins/bogofilter/bogofilter.c
2760         * src/plugins/bogofilter/bogofilter.h
2761         * src/plugins/bogofilter/bogofilter_gtk.c
2762                 Add an option to specify the path to bogofilter
2763                 Use single-quotes to be able to learn in folders
2764                 with spaces in their names
2765                 Verify learning status
2766
2767 2006-08-27 [colin]      2.4.0cvs99
2768
2769         * manual/faq.xml
2770         * manual/plugins.xml
2771                 Document Bogofilter plugin
2772
2773 2006-08-27 [colin]      2.4.0cvs98
2774
2775         * src/compose.c
2776         * src/messageview.c
2777         * src/procmsg.c
2778         * src/procmsg.h
2779                 When possible, copy the queued mail to sent folder
2780                 instead of re-adding. Much faster on IMAP.
2781
2782 2006-08-27 [colin]      2.4.0cvs97
2783
2784         * src/msgcache.c
2785                 Disable mmaped caches - huge metadata loss
2786                 here after a power failure.
2787         * src/summaryview.c
2788                 Add quicksearch timing
2789         * src/common/plugin.c
2790         * src/common/plugin.h
2791                 Implement an interface to tell what plugins
2792                 provide. Prevent loading of similar plugins.
2793         * src/plugins/clamav/clamav_plugin.c
2794         * src/plugins/demo/demo.c
2795         * src/plugins/dillo_viewer/dillo_viewer.c
2796         * src/plugins/pgpcore/plugin.c
2797         * src/plugins/pgpinline/pgpinline.c
2798         * src/plugins/pgpmime/pgpmime.c
2799         * src/plugins/spamassassin/spamassassin.c
2800         * src/plugins/trayicon/trayicon.c
2801                 Implement plugin_provides()
2802
2803 2006-08-27 [colin]      2.4.0cvs96
2804
2805         * configure.ac
2806         * src/plugins/Makefile.am
2807         * src/plugins/bogofilter/.cvsignore
2808         * src/plugins/bogofilter/Makefile.am
2809         * src/plugins/bogofilter/bogofilter.c
2810         * src/plugins/bogofilter/bogofilter.h
2811         * src/plugins/bogofilter/bogofilter_gtk.c
2812                 New Bogofilter plugin, provides filtering and
2813                 learning. Spamassassin will go to extra plugins.
2814
2815 2006-08-26 [mones]      2.4.0cvs95
2816
2817         * manual/handling.xml
2818                 Fix subfolder path in the example (thanks to Paul) 
2819
2820 2006-08-26 [mones]      2.4.0cvs94
2821
2822         * manual/glossary.xml
2823                 2.2. + add ISP to the glossary
2824                 7.5. + Add UIDL to glossary
2825                 7.7. + Add TCP to glossary
2826         * manual/handling.xml
2827                 7.1. + Mentions GNU/Linux distribution, what about the non...
2828                 7.2. = s/html/HTML/, quote --local option -> Dillo HTML Viewer
2829                 7.3. + Mentions .bashrc, what about the non-bash ones? 
2830                 7.4. = Use appropriate quotation for commands
2831                 7.6. = change "" to <quote></quote>
2832         * manual/plugins.xml
2833                 6.1. + Example #mh/Mailbox/Friends -> #mh/inbox/Friends         
2834         * manual/starting.xml
2835                 2.1. + local mbox file: some examples of mbox file locations...
2836                 Also reformatted files requiring it
2837
2838 2006-08-26 [wwp]        2.4.0cvs93
2839
2840         * src/summary_search.c
2841                 disable find buttons while summary search is running.
2842
2843 2006-08-25 [colin]      2.4.0cvs92
2844
2845         * src/folder.c
2846         * src/folderutils.c
2847         * src/mh.c
2848         * src/procmsg.h
2849         * src/summaryview.c
2850                 Speed up MH moving, and add progressbar
2851                 for MH deletion
2852         * src/msgcache.c
2853                 Write cache files using mmap() too
2854
2855 2006-08-25 [wwp]        2.4.0cvs91
2856
2857         * src/summaryview.c
2858                 switch spam<->ham button when a message has been marked as spam or ham
2859                 and is still selected. Thanks to Colin.
2860
2861 2006-08-25 [paul]       2.4.0cvs90
2862
2863         * src/Makefile.am
2864         * src/stock_pixmap.c
2865         * src/stock_pixmap.h
2866         * src/summaryview.c
2867         * src/gtk/icon_legend.c
2868         * src/pixmaps/copied.xpm
2869         * src/pixmaps/moved.xpm
2870                 add icons for delayed execution marked for
2871                 copying, marked for moving
2872
2873 2006-08-25 [mones]      2.4.0cvs89
2874
2875         * manual/glossary.xml
2876                 Fix the other glossary items:
2877                 5.1. = Inmmediate execution -> <quote>immediate execution...
2878                 5.2. = Fix MBOX capitalization -> Mbox
2879                 5.3. + Improve Plugins def. w/ tech. ref.
2880                 5.4. = Quotation -> replace '>' by <quote>></quote>
2881                 5.5. - SMTP Server. -> remove dot
2882         * po/es.po
2883                 Updated translation
2884
2885 2006-08-25 [mones]      2.4.0cvs88
2886
2887         * manual/ack.xml
2888                 Reformatted, changed email address
2889         * manual/glossary.xml
2890                 Reformatted, fixed MANUAL-TODO items:
2891                 8.2. + add ROT-13 to glossary
2892                 8.4. + add URL to glossary
2893         * manual/es/advanced.xml
2894                 Fixed <literal>s
2895
2896 2006-08-25 [paul]       2.4.0cvs87
2897
2898         * src/gtk/icon_legend.c
2899                 add 'marked for deletion' icon
2900                 arrange icons by containing column
2901                 wrap long label text
2902
2903 2006-08-25 [colin]      2.4.0cvs86
2904
2905         * src/common/utils.c
2906         * src/common/utils.h
2907                 Add the sc_g_*list_bigger functions in
2908                 a place everyone can use it
2909         * src/summaryview.c
2910                 Only freeze/thaw the list when working
2911                 on the selection, if it's bigger than 1
2912         * src/gtk/gtksctree.c
2913                 Only freeze/thaw the list when unselec-
2914                 ting 'all' if ('all' != 1)
2915                 This avoids some flickering
2916
2917 2006-08-24 [colin]      2.4.0cvs85
2918
2919         * src/addressbook.c
2920                 Fix strange list selection
2921                 Fix random seg (Invalid read of freed memory)
2922
2923 2006-08-24 [colin]      2.4.0cvs84
2924
2925         * src/alertpanel.c
2926         * src/gtk/inputdialog.c
2927         * src/plugins/pgpcore/passphrase.c
2928                 Revert minimal width patch of 2.4.0cvs67,
2929                 as it is also a maximal width. Use 
2930                 gtk_window_set_default_size instead.
2931
2932 2006-08-24 [colin]      2.4.0cvs83
2933
2934         * src/msgcache.c
2935                 Write cache/mark to temp files before
2936                 overwriting old ones (avoids metadata
2937                 loss if writing the new files fail).
2938                 Use mmap() to read cache/mark file, as
2939                 this makes cache reading faster. Dis-
2940                 abled for big-endian machines until it
2941                 can be tested. (Big-endian users: set
2942                 msgcache_use_mmap = TRUE in the relevant
2943                 #if).
2944         * src/procmsg.h
2945                 Move rarely used fields of MsgInfo in 
2946                 another structure, which will only be
2947                 allocated if needed. Face, X-Face,
2948                 Return receipt headers and List-*
2949                 headers are moved. Mails having none
2950                 of these occupy 52 bytes less with
2951                 this patch, which makes 2.5MB of RAM
2952                 saved on a 50k folder).
2953         * src/headerview.c
2954         * src/mainwindow.c
2955         * src/messageview.c
2956         * src/partial_download.c
2957         * src/procheader.c
2958         * src/procmsg.c
2959         * src/textview.c
2960                 Follow this structure change.
2961
2962 2006-08-24 [wwp]        2.4.0cvs82
2963
2964         * manual/es/.cvsignore
2965         * manual/es/dist/.cvsignore
2966         * manual/es/dist/html/.cvsignore
2967         * manual/es/dist/pdf/.cvsignore
2968         * manual/es/dist/ps/.cvsignore
2969         * manual/es/dist/txt/.cvsignore
2970                 more (generated) files to ignore.
2971
2972 2006-08-24 [colin]      2.4.0cvs81
2973
2974         * src/folder.c
2975         * src/mh.c
2976                 Fix possible problems with local delivery. Check the folder doesn't
2977                 need scan before setting its mtime when saving cache (which can be
2978                 done long after the folder's been modified by an external process);
2979                 Check that the stored item's mtime didn't change in mh functions.
2980
2981 2006-08-24 [mones]      2.4.0cvs80
2982
2983         * manual/advanced.xml
2984                 Rewrapping, some fixes and MANUAL-TODO items:
2985                 8.1. = change "" to <quote></quote>
2986                 8.3. = quote menu items
2987                 8.5. - deploying -> new user ... ideally a new user (redundant)
2988
2989 2006-08-23 [colin]      2.4.0cvs79
2990
2991         * src/gtk/gtksctree.c
2992                 When selecting or deselecting range, only
2993                 freeze/thaw when selection is bigger than 10
2994
2995 2006-08-23 [colin]      2.4.0cvs78
2996
2997         * src/messageview.c
2998         * src/mimeview.c
2999         * src/mimeview.h
3000         * src/plugins/dillo_viewer/dillo_viewer.c
3001                 Provide an API for MimeViewer plugins to
3002                 return a text selection for replying
3003
3004 2006-08-23 [colin]      2.4.0cvs77
3005
3006         * src/image_viewer.c
3007         * src/textview.c
3008                 Use gtk_pixbuf_new_from_file_at_scale(), which
3009                 is faster than getting the pixbuf then resizing
3010                 it.
3011
3012 2006-08-23 [colin]      2.4.0cvs76
3013
3014         * src/procmime.c
3015                 UTF-8 should be sent Quoted-printable
3016
3017 2006-08-22 [colin]      2.4.0cvs75
3018
3019         * src/mh.c
3020                 Check if scan is required before touching
3021                 the folder (or it'll be required every time)
3022
3023 2006-08-22 [colin]      2.4.0cvs74
3024
3025         * configure.ac
3026                 Require libetpan 0.46 (crasher fix when built
3027                 against gnutls)
3028
3029 2006-08-22 [colin]      2.4.0cvs73
3030
3031         * src/folder.c
3032                 Set folder's mtime after writing its
3033                 cache
3034         * src/folderview.c
3035                 Add some timing
3036         * src/procmsg.c
3037                 Don't do useless stuff if we don't 
3038                 thread by subject
3039         * src/summaryview.c
3040                 Add some timing, don't deselect prior
3041                 to selecting (gtksctree does it itself),
3042                 remove crash avoidance hacks as it's been
3043                 properly fixed since a while
3044         * src/common/utils.c
3045                 Optimize to_human_readable(): _() is slow,
3046                 do it only once, and avoid %f format for KB
3047                 (the most common in a summaryview)
3048         * src/gtk/gtksctree.c
3049                 Don't uselessly freeze/thaw (fixes flicker
3050                 on next unread and friends), reduce number
3051                 of g_list_nth/g_list_position where possible
3052         * src/gtk/gtkutils.c
3053         * src/gtk/gtkutils.h
3054                 Reduce number of g_list_nth/g_list_position
3055                 where possible.
3056                 All of this makes loading as 70k folder 2.1
3057                 seconds instead of 3.2 (with hot FS caches).
3058                 (1.3 seconds without Date and Size columns...)
3059
3060 2006-08-22 [paul]       2.4.0cvs72
3061
3062         wrap documents and do some items from mones' MANUAL-TODO:
3063
3064         * manual/account.xml
3065                 4.1. = fix tabname references to <quote>tabname</quote>
3066                 4.2. = fix "xxx" and 'xxx' items to <quote>xxx</quote>
3067         * manual/faq.xml
3068                 1.1. = mentioned options don't match UI
3069                 Add information about the 'Never send Return Receipts'
3070                 option
3071         * manual/handling.xml
3072                 6.2. = Mentions Extended symbols button, but now is
3073                 named Information
3074                 6.3. = Mentions ... button, which is now Edit
3075
3076 2006-08-22 [colin]      2.4.0cvs71
3077
3078         * src/gtk/pluginwindow.c
3079                 Fix layout in verbose translations (such
3080                 as french)
3081
3082 2006-08-22 [paul]       2.4.0cvs70
3083
3084         * manual/Makefile.am
3085                 build manuals in alphabetical order
3086         * src/addressbook.c
3087         * src/prefs_themes.c
3088                 replace/remove deprecated symbols
3089         * src/gtk/gtkutils.c
3090                 fix a warning
3091         * src/gtk/pluginwindow.c
3092                 replace deprecated symbol
3093                 replace label text and move it
3094         * src/plugins/pgpcore/prefs_gpg.c
3095                 move the 'Generate...' button out of the
3096                 Sign Key frame, replace the English used
3097         * src/plugins/pgpcore/sgpgme.c
3098                 fixes to the English
3099
3100 2006-08-21 [colin]      2.4.0cvs69
3101
3102         * src/plugins/trayicon/trayicon.c
3103                 Add more strings for translation; patch
3104                 by Pawel
3105
3106 2006-08-21 [colin]      2.4.0cvs68
3107
3108         * src/compose.c
3109                 fix replied flag not set after drafting
3110         * src/matcher.c
3111                 fix body quicksearch in non-encoded bodies
3112                 containing '='
3113         * src/msgcache.c
3114                 Get rid of the g_malloc workaround for
3115                 corrupted caches, use g_try_malloc
3116
3117 2006-08-21 [colin]      2.4.0cvs67
3118
3119         * src/alertpanel.c
3120         * src/gtk/inputdialog.c
3121         * src/plugins/pgpcore/passphrase.c
3122                 Set minimal width to 375
3123         * src/mainwindow.c
3124                 Fix switching to offline, asking if it 
3125                 should be overriden for synchronising
3126         * src/mimeview.c
3127                 Don't offer to remember command on Open 
3128                 with for text parts, as the browser or 
3129                 text editor command isn't changed from 
3130                 there
3131
3132 2006-08-20 [paul]       2.4.0cvs66
3133
3134         * po/ko.po
3135         * po/zh_CN.po
3136                 fix plural form errors. revealed by stricter
3137                 checking of gettext 0.15
3138
3139 2006-08-18 [paul]       2.4.0cvs65
3140
3141         * src/stock_pixmap.c
3142                 fix the fix of 2.4.0cvs64
3143                 Thanks to Colin
3144
3145 2006-08-18 [paul]       2.4.0cvs64
3146
3147         * src/stock_pixmap.c
3148                 fix leaks
3149                 Thanks to Colin
3150
3151 2006-08-18 [paul]       2.4.0cvs63
3152
3153         * src/compose.c
3154         * src/procmsg.c
3155                 fix occasional IMAP bug where large msgs
3156                 were left in the queue folder after sending
3157                 Thanks to Colin
3158
3159 2006-08-18 [paul]       2.4.0cvs62
3160
3161         * src/folderview.c
3162                 freeze the summaryview while quicksearch results
3163                 are displayed
3164                 (fixes bug 456 'current message is hidden when the
3165                 view is refreshed and extended search is "unread 
3166                 messages"')
3167                 Thanks to Colin
3168         * src/textview.c
3169                 add missing #include "inputdialog.h"
3170         * src/common/utils.h
3171                 add missing mailcap_update_default() and improve
3172                 readability
3173
3174 2006-08-17 [colin]      2.4.0cvs61
3175
3176         * src/plugins/pgpcore/select-keys.c
3177                 Fix warnings :)
3178
3179 2006-08-17 [colin]      2.4.0cvs60
3180
3181         * src/compose.c
3182                 Don't continue queuing if Cancel is clicked
3183                 in select-keys
3184
3185 2006-08-17 [colin]      2.4.0cvs59
3186
3187         * src/plugins/pgpcore/select-keys.c
3188                 When encrypting, if only one key matches and it 
3189                 matches exactly, automatically use it.
3190
3191 2006-08-17 [colin]      2.4.0cvs58
3192
3193         * src/mimeview.c
3194         * src/prefs_common.c
3195         * src/prefs_common.h
3196         * src/prefs_ext_prog.c
3197         * src/textview.c
3198                 Fix issues with previous patch (text/html)
3199                 Remove outdated prefs
3200
3201 2006-08-17 [colin]      2.4.0cvs57
3202
3203         * src/imap.c
3204                 Add View Log button on auth error
3205         * src/procmsg.c
3206                 Fix encrypted mail marked as new when
3207                 saved in normal folders
3208         * src/plugins/pgpinline/pgpinline.c
3209                 Fix encrypt bug on IMAP
3210         * src/mimeview.c
3211         * src/common/utils.c
3212         * src/common/utils.h
3213         * src/gtk/inputdialog.c
3214         * src/gtk/inputdialog.h
3215                 Get rid of metamail stuff, simplify
3216                 opening, and allow remembering of user's
3217                 choices (by updating ~/.mailcap). There's
3218                 still to drop "Audio player" and "Image
3219                 viewer" preferences.
3220
3221 2006-08-17 [mones]      2.4.0cvs56
3222
3223         * manual/es/sylpheed-claws-manual.xml
3224                 fix DTD path
3225
3226 2006-08-17 [mones]      2.4.0cvs55
3227
3228         * configure.ac
3229         * manual/Makefile.am
3230         * manual/es/Makefile.am
3231         * manual/es/account.xml
3232         * manual/es/ack.xml
3233         * manual/es/addrbook.xml
3234         * manual/es/advanced.xml
3235         * manual/es/faq.xml
3236         * manual/es/glossary.xml
3237         * manual/es/gpl.xml
3238         * manual/es/handling.xml
3239         * manual/es/intro.xml
3240         * manual/es/keyboard.xml
3241         * manual/es/plugins.xml
3242         * manual/es/starting.xml
3243         * manual/es/sylpheed-claws-manual.xml
3244         * manual/es/dist/Makefile.am
3245         * manual/es/dist/html/Makefile.am
3246         * manual/es/dist/pdf/Makefile.am
3247         * manual/es/dist/ps/Makefile.am
3248         * manual/es/dist/txt/Makefile.am
3249                 Spanish translation for the manual
3250
3251 2006-08-16 [colin]      2.4.0cvs54
3252
3253         * src/compose.c
3254         * src/main.c
3255         * src/mainwindow.c
3256                 Fix send button sensitivity at startup
3257                 Set send menu sensitivity (patch by Fabien)
3258         * src/ssl_manager.c
3259                 Enable closing with esc (patch by Fabien)
3260         * src/gtk/foldersort.c
3261                 Enable closing with esc (patch by Fabien)
3262         * src/procmime.c
3263                 Optimisation (no need to copy to tempfile to
3264                 "decode" 7bit and 8bit)
3265         * src/summaryview.c
3266                 Fix cruft in swap_from case
3267         * src/textview.c
3268                 Fix missing last line in some mail cases 
3269                 (Fixes debian #381872)
3270         * src/plugins/pgpcore/prefs_gpg.c
3271         * src/plugins/pgpcore/sgpgme.c
3272         * src/plugins/pgpcore/sgpgme.h
3273                 Don't show "no key found" when user explicitely
3274                 wants to create a key
3275
3276 2006-08-16 [paul]       2.4.0cvs53
3277
3278         * configure.ac
3279         * src/account.c
3280         * src/addressbook.c
3281         * src/headerview.c
3282         * src/prefs_account.c
3283         * src/prefs_message.c
3284         * src/gtk/gtkutils.c
3285                 bump up minimum required versions of GTK+ and
3286                 GLIB to 2.6.0
3287
3288 2006-08-16 [paul]       2.4.0cvs52
3289
3290         * src/toolbar.c
3291                 workaround GTK+ Bug 351600 - 'Can't re-click
3292                 on button after sensitivity update'
3293                 http://bugzilla.gnome.org/show_bug.cgi?id=351600
3294                 Thanks to Colin
3295
3296 2006-08-15 [colin]      2.4.0cvs51
3297
3298         * src/plugins/pgpcore/prefs_gpg.c
3299                 Set options sensitivity according to
3300                 key existence
3301         * src/plugins/pgpcore/sgpgme.c
3302                 Allow to create key with no passphrase
3303
3304 2006-08-14 [cleroy]     2.4.0cvs50
3305
3306         * src/gtk/pluginwindow.c
3307                 New layout (maybe to be changed?)
3308         * src/gtk/gtkutils.c
3309                 Fix a bit label_window
3310         * src/plugins/pgpcore/passphrase.c
3311         * src/plugins/pgpcore/passphrase.h
3312         * src/plugins/pgpcore/plugin.c
3313         * src/plugins/pgpcore/prefs_gpg.c
3314         * src/plugins/pgpcore/prefs_gpg.h
3315         * src/plugins/pgpcore/sgpgme.c
3316         * src/plugins/pgpcore/sgpgme.h
3317                 Allow to create a PGP private key via the GUI
3318
3319 2006-08-14 [wwp]        2.4.0cvs49
3320
3321         * src/addressbook_foldersel.c
3322                 fix strict ISO C90 compliance.
3323
3324 2006-08-14 [paul]       2.4.0cvs48
3325
3326         * src/gtk/prefswindow.c
3327                 re-set scrolled window on opening
3328                 Patch by Ticho
3329
3330 2006-08-14 [paul]
3331
3332         2.5.0-rc1 released
3333
3334 2006-08-14 [paul]       2.4.0cvs47
3335
3336         * src/prefs_display_header.c
3337                 re-enable user-defined Displayed Headers
3338
3339 2006-08-14 [paul]       2.4.0cvs46
3340
3341         * src/prefs_account.c
3342                 use GTK_STOCK_EDIT
3343
3344 2006-08-13 [colin]      2.4.0cvs45
3345
3346         * src/common/utils.c
3347                 Fix "a" in quote when the original message is empty,
3348                 by using \0 instead of 'a' to test writability of
3349                 temp files.
3350
3351 2006-08-13 [wwp]        2.4.0cvs44
3352
3353         * src/plugins/spamassassin/spamassassin.c
3354                 fix capitalization of "SpamAssassin" in some debug, log and
3355                 dialog messages.
3356
3357 2006-08-13 [paul]       2.4.0cvs43
3358
3359         * src/editldap.c
3360                 fix overlapping widgets
3361         * src/prefs_account.c
3362                 fix translation of protocol_names[]
3363                 fix label disappearing off the edge of the
3364                 visible area
3365
3366 2006-08-12 [paul]       2.4.0cvs42
3367
3368         * manual/plugins.xml
3369                 update IRC channel info before it gets forgotten
3370                 about
3371
3372 2006-08-11 [colin]      2.4.0cvs41
3373
3374         * src/compose.c
3375         * src/mainwindow.c
3376         * src/mainwindow.h
3377         * src/procmsg.c
3378         * src/procmsg.h
3379         * src/summaryview.c
3380         * src/toolbar.c
3381                 Grey out the Send button if
3382                 - Queue folders are empty, or
3383                 - We're sending already
3384
3385 2006-08-11 [wwp]        2.4.0cvs40
3386
3387         * src/main.c
3388                 fix a logic issue when quitting while a compose window is
3389                 still open, thanks to Colin.
3390
3391 2006-08-10 [colin]      2.4.0cvs39
3392
3393         * src/main.c
3394                 Fix default font size setting after wizard run
3395         * src/imap.c
3396         * src/etpan/imap-thread.c
3397         * src/etpan/imap-thread.h
3398                 Fix bug #999 (Timing out on TSL cert validation 
3399                 dialog makes ugly things happen). Also, STARTTLS
3400                 unconditionnaly if initial capabilities contain
3401                 LOGINDISABLED and STARTTLS.
3402
3403 2006-08-09 [colin]      2.4.0cvs38
3404
3405         * src/mainwindow.c
3406         * src/mainwindow.h
3407                 Fix Tools/Actions sensitivity when there are
3408                 no actions
3409
3410 2006-08-09 [colin]      2.4.0cvs37
3411
3412         * src/prefs_filtering.c
3413                 Warning fix, patch by Paul
3414         * src/messageview.c
3415         * src/prefs_actions.c
3416         * src/prefs_filtering_action.c
3417         * src/prefs_matcher.c
3418                 Uniformisation of "Info ..." to "Info..." (for
3419                 old gtk), patch by Fabien
3420         * src/plugins/clamav/clamav_plugin_gtk.c
3421                 Sensitivity fix by Fabien
3422
3423 2006-08-09 [colin]      2.4.0cvs36
3424
3425         * src/main.c
3426         * src/main.h
3427                 Add a function to know whether we're exiting
3428         * src/plugins/trayicon/trayicon.c
3429                 If exiting, don't do anything. Faster, and
3430                 avoids gtk_main_iteration reentracy causing
3431                 segfaults at exit
3432
3433 2006-08-09 [colin]      2.4.0cvs35
3434
3435         * src/messageview.c
3436         * src/mimeview.c
3437         * src/mimeview.h
3438                 Fix lack of part selection when automatically 
3439                 jumping to a specific part
3440         * src/msgcache.c
3441                 Little optimisation in cache reading
3442
3443 2006-08-09 [colin]      2.4.0cvs34
3444
3445         * src/compose.c
3446                 Fix crash setting the priority on reedit
3447                 (Accessing compose before creating it!)
3448
3449 2006-08-08 [colin]      2.4.0cvs33
3450
3451         * src/procmime.c
3452                 Fix bug #998 (last attachment is not accessible)
3453                 Bad RFC interpretation on multipart close-delimiters
3454         * src/mimeview.c
3455         * src/mimeview.h
3456         * src/gtk/gtkvscrollbutton.c
3457         * src/gtk/gtkvscrollbutton.h
3458                 Make attachments list wheel-scrollable
3459
3460 2006-08-07 [colin]      2.4.0cvs32
3461
3462         * src/gtk/gtkaspell.c
3463                 Fix bug #973 (Unicode punctation characters 
3464                 are not recognized as separators by the
3465                 spell checker); fix unsigned stuff
3466
3467 2006-08-07 [colin]      2.4.0cvs31
3468
3469         * src/compose.c
3470                 Fix bug #956 (DnD text with accents in compose 
3471                 text entry); fix gccc's signed/unsigned fuss
3472
3473 2006-08-06 [colin]      2.4.0cvs30
3474
3475         * src/main.c
3476                 Fix bug #979 (Plugin crashes when exiting 
3477                 sylpheed-claws) : handle exit request only 
3478                 once
3479
3480 2006-08-05 [colin]      2.4.0cvs29
3481
3482         * src/news.c
3483                 Just make sure we have a msgid.
3484
3485 2006-08-05 [colin]      2.4.0cvs28
3486
3487         * src/news.c
3488         * src/summaryview.c
3489                 Fix bug #995 ("Mark cross-posted as read" doesn't work)
3490                 by reimplementing it
3491         * src/textview.c
3492                 Fix bug when hiding quotes with level > 3 and quote
3493                 colors are recycled
3494
3495 2006-08-04 [colin]      2.4.0cvs27
3496
3497         * src/compose.c
3498         * src/undo.c
3499         * src/undo.h
3500                 Fix a bit replace-by-pasting undo
3501         * src/mainwindow.c
3502         * src/messageview.c
3503                 Fix Fold quotes menu synchro in
3504                 mainwindow when it changes in 
3505                 messageview
3506         * src/textview.c
3507                 Fix right-click on quotes blocks
3508         * src/common/utils.c
3509                 Verify that the file created by
3510                 my_tmpfile() is writable. Fixes
3511                 bug #988 (very specific filesystem
3512                 issue)
3513         * src/plugins/pgpcore/sgpgme.c
3514                 Fix file descriptor leak
3515         * src/plugins/spamassassin/spamassassin.c
3516                 Warn once if spamd isn't reachable
3517
3518 2006-08-04 [colin]      2.4.0cvs26
3519
3520         * src/toolbar.c
3521                 i18n context patch by Fabien
3522
3523 2006-08-03 [colin]      2.4.0cvs25
3524
3525         * src/mainwindow.c
3526         * src/messageview.c
3527                 Rename "Hide quotes" to "Fold quotes"
3528         * src/textview.c
3529                 Don't use hand cursor on quotes. "all 
3530                 the bonuses of the feature and none of 
3531                 unwelcome side-effects"
3532
3533 2006-08-03 [colin]      2.4.0cvs24
3534
3535         * AUTHORS
3536         * sylpheed-claws.desktop
3537         * src/gtk/authors.h
3538                 Bring the desktop file to XDG compliance
3539                 Patch by Charles A. Edwards
3540
3541 2006-08-03 [colin]      2.4.0cvs23
3542
3543         * src/textview.c
3544                 Fix links offset when they are preceded
3545                 by accentued chars (g_utf8_strlen!)
3546         * src/mainwindow.c
3547                 Fix wrong status when starting offline
3548
3549
3550 2006-08-03 [wwp]        2.4.0cvs22
3551
3552         * src/prefs_common.h
3553                 ask what to do w/ filtering rules that belong to an account when
3554                 applying filtering rules manually from the main window (skip,
3555                 apply regardless of the account, use current account). This dialog
3556                 can be skipped and the last reply used.
3557                 (forgot that file)
3558
3559 2006-08-03 [wwp]        2.4.0cvs21
3560
3561         * src/filtering.c
3562         * src/filtering.h
3563         * src/prefs_common.c
3564         * src/summaryview.c
3565         * src/alertpanel.c
3566         * src/alertpanel.h
3567         * src/messageview.c
3568                 ask what to do w/ filtering rules that belong to an account when
3569                 applying filtering rules manually from the main window (skip,
3570                 apply regardless of the account, use current account). This dialog
3571                 can be skipped and the last reply used.
3572
3573
3574 2006-08-03 [colin]      2.4.0cvs20
3575
3576         * src/textview.c
3577                 Optimize previous patch
3578
3579 2006-08-03 [cleroy]     2.4.0cvs19
3580
3581         * src/textview.c
3582                 Fix quotes getting toggled back when the
3583                 mail has an even number of text parts
3584
3585 2006-08-02 [colin]      2.4.0cvs18
3586
3587         * src/messageview.c
3588                 Add Hide quotes menu
3589
3590 2006-08-02 [colin]      2.4.0cvs17
3591
3592         * src/mainwindow.c
3593         * src/prefs_common.c
3594         * src/textview.c
3595         * src/textview.h
3596         * src/gtk/about.c
3597                 Allow per-level quote hiding,
3598                 Allow toggling quotes by double-clicking them
3599                 Rename RemoteURI to ClickableText to reflect
3600                 the fact it's used for a variety of things
3601
3602 2006-08-02 [wwp]        2.4.0cvs16
3603
3604         * src/mainwindow.c
3605                 fix "View/Hide quotes" menu item status initialization.
3606
3607 2006-08-02 [wwp]        2.4.0cvs15
3608
3609         * src/matcher_parser_parse.y
3610                 remove a debug trace.
3611
3612 2006-08-02 [paul]       2.4.0cvs14
3613
3614         * src/plugins/pgpcore/passphrase.c
3615                 don't set initial dialog size
3616                 make it resizable
3617
3618 2006-08-02 [paul]       2.4.0cvs13
3619
3620         * src/noticeview.c
3621                 remove the rogue '/' character
3622
3623 2006-08-02 [paul]       2.4.0cvs12
3624
3625         * src/noticeview.c
3626                 allow buttons to resize as necessary
3627
3628 2006-08-01 [wwp]        2.4.0cvs11
3629
3630         * src/mbox.c
3631                 fix strict ISO C90 compliance.
3632
3633 2006-08-01 [wwp]        2.4.0cvs10
3634
3635         * tools/update-po
3636                 updated update-po tool to work w/ context-dependent translations.
3637                 Patch by Fabien Vantard <fzzzzz@gmail.com>.
3638
3639 2006-08-01 [wwp]        2.4.0cvs9
3640
3641         * src/matcher.c
3642         * src/prefs_filtering.c
3643         * src/prefs_matcher.c
3644                 allow context-dependent translations for "All",
3645                 patch by Fabien Vantard <fzzzzz@gmail.com>.
3646
3647 2006-07-31 [colin]      2.4.0cvs8
3648
3649         * AUTHORS
3650         * src/gtk/authors.h
3651                 Add Rafal to authors
3652
3653 2006-07-31 [colin]      2.4.0cvs7
3654
3655         * src/compose.c
3656         * src/mainwindow.c
3657         * src/messageview.h
3658         * src/prefs_common.c
3659         * src/prefs_common.h
3660         * src/textview.c
3661                 Add 'View/Hide quotes'. Patch based on a patch
3662                 by Rafal Weglarz
3663
3664 2006-07-31 [colin]      2.4.0cvs6
3665
3666         * src/action.c
3667                 Fix problem with "> stuff >" actions
3668
3669 2006-07-31 [paul]       2.4.0cvs5
3670
3671         * po/nb.po
3672                 updated by Geir Helland
3673
3674 2006-07-31 [wwp]        2.4.0cvs4
3675
3676         * src/mainwindow.c
3677         * src/summaryview.c
3678         * src/summaryview.h
3679                 add "View/Go to/Parent message" and "View/Go to/Last read message",
3680                 thanks to Colin.
3681
3682 2006-07-31 [wwp]        2.4.0cvs3
3683
3684         * src/Makefile.am
3685         * src/addr_compl.c
3686         * src/addr_compl.h
3687         * src/addressbook.c
3688         * src/addressbook.h
3689         * src/addressbook_foldersel.c
3690         * src/addressbook_foldersel.h
3691         * src/addrindex.c
3692         * src/addrindex.h
3693         * src/matcher.c
3694         * src/matcher.h
3695         * src/matcher_parser_lex.l
3696         * src/matcher_parser_parse.y
3697         * src/prefs_common.c
3698         * src/prefs_common.h
3699         * src/prefs_filtering.c
3700         * src/prefs_matcher.c
3701         * src/prefs_matcher.h
3702         * src/summaryview.c
3703                 introduce filtering against the address book. It's now possible to add
3704                 matched conditions to determine if any email address in a message matches
3705                 or doesn't match any or all books or folders in the address book.
3706
3707 2006-07-31 [wwp]        2.4.0cvs2
3708
3709         * src/account.c
3710         * src/filtering.c
3711         * src/filtering.h
3712         * src/folder.c
3713         * src/folderview.c
3714         * src/inc.c
3715         * src/mainwindow.c
3716         * src/matcher.c
3717         * src/matcher_parser_lex.l
3718         * src/matcher_parser_parse.y
3719         * src/mbox.c
3720         * src/prefs_filtering.c
3721         * src/prefs_filtering.h
3722         * src/procmsg.c
3723         * src/procmsg.h
3724         * src/summaryview.c
3725                 introduce per-account filtering rules. Each filtering rule can now be assigned
3726                 to a specific account (by default it's "All"), works w/ POP3/IMAP. Take care
3727                 when applying filtering rules manually, as all rules will apply - even the ones
3728                 assigned to an account. This issue will be addressed soon.
3729  
3730
3731
3732 2006-07-31 [wwp]        2.4.0cvs1
3733
3734         * src/quote_fmt.c
3735                 make more strings translatable.
3736
3737 2006-07-31 [paul]       2.4.0
3738
3739         2.4.0 released
3740
3741 2006-07-31 [paul]       2.3.1cvs91
3742
3743         * po/ca.po
3744                 updated by Miquel Oliete
3745
3746 2006-07-31 [paul]       2.3.1cvs90
3747
3748         * po/de.po
3749         * po/el.po
3750         * po/fr.po
3751         * po/it.po
3752         * po/pl.po
3753         * po/pt_BR.po
3754         * po/sr.po
3755         * po/zh_CN.po
3756                 updated by Stephan Sachse, Stavros Giannouris, Fabien Vantard,
3757                 Andrea Spadaccini, Emil Nowak, Frederico Goncalves Guimaraes,
3758                 Aleksandar Urosevic, and Ralgh Young
3759
3760 2006-07-31 [paul]       2.3.1cvs89
3761
3762         * src/account.c
3763         * src/main.c
3764         * src/mainwindow.c
3765         * src/mainwindow.h
3766                 Fix a race condition when, after an SC crash, rescanning
3767                 folders took more than 0.5 seconds
3768                 Thanks to Colin
3769
3770 2006-07-31 [paul]       2.3.1cvs88
3771
3772         * src/folderview.c
3773                 don't translate separator strings
3774
3775 2006-07-30 [mones]      2.3.1cvs87
3776
3777         * doc/man/sylpheed-claws.1
3778                 Fixed non-ASCII chars in Hoa's name
3779         * po/es.po
3780                 Updated for release
3781
3782 2006-07-27 [colin]      2.3.1cvs86
3783
3784         * src/textview.c
3785                 Don't include the leading \n in links
3786                 Patch by Fabien
3787
3788 2006-07-25 [colin]      2.3.1cvs85
3789
3790         * src/mainwindow.c
3791         * src/common/socket.h
3792         * src/etpan/imap-thread.c
3793                 Refresh resolvers before connecting
3794                 to IMAP servers, and after switching
3795                 to online. Thanks to Paul.
3796
3797 2006-07-18 [colin]
3798
3799         * 2.4.0-rc4 released
3800
3801 2006-07-17 [colin]      2.3.1cvs84
3802
3803         * src/inc.c
3804                 Show connection attempt in statusbar before
3805                 connecting (previously first message was
3806                 "Retrieving messages from ..." after the
3807                 connection succeeded.
3808
3809 2006-07-16 [wwp]        2.3.1cvs83
3810
3811         * sylpheed-claws.ico
3812                 Added .ico file (windows multi-size icon file, generated).
3813
3814 2006-07-12 [wwp]        2.3.1cvs82
3815
3816         * src/messageview.c
3817                 remove Message/Re-edit menu entry from messageview window,
3818                 as sent/draft/queued messages are opened in compose window when
3819                 re-edited and it's not possible to re-edit other msgs.
3820
3821 2006-07-12 [paul]       2.3.1cvs81
3822
3823         * AUTHORS
3824         * src/mainwindow.c
3825         * src/gtk/authors.h
3826                 check online state before resetting
3827                 mailcheck timer. Useful if some program
3828                 verifies connection state and updates
3829                 Claws.
3830                 Patch by  Leonid Evdokimov <darkk@users.sf.net>
3831
3832 2006-07-12 [paul]       2.3.1cvs80
3833
3834         * sylpheed-claws-128x128.png
3835         * sylpheed-claws-64x64.png
3836         * sylpheed-claws.png
3837         * src/Makefile.am
3838         * src/main.c
3839         * src/prefs_toolbar.c
3840         * src/stock_pixmap.c
3841         * src/stock_pixmap.h
3842         * src/wizard.c
3843         * src/gtk/about.c
3844         * src/gtk/gtkutils.c
3845         * src/pixmaps/sylpheed-claws.xpm        ** ADDED **
3846         * src/pixmaps/sylpheed-claws_icon.xpm   ** ADDED **
3847         * src/pixmaps/sylpheed-claws_logo.xpm   ** ADDED **
3848         * src/pixmaps/sylpheed.xpm              ** REMOVED **
3849         * src/pixmaps/sylpheed_icon.xpm         ** REMOVED **
3850         * src/pixmaps/sylpheed_logo.xpm         ** REMOVED **
3851                 updated and renamed logo/icon files and related
3852                 logo by Jesper Schultz
3853
3854 2006-07-11 [paul]       2.3.1cvs79
3855
3856         * src/main.c
3857                 fix the labels a smidgin
3858
3859 2006-07-09 [colin]      2.3.1cvs78
3860
3861         * src/textview.c
3862                 Show errors in textviewer's command
3863                 Patch by H. Merijn Brand
3864
3865 2006-07-09 [colin]      2.3.1cvs77
3866
3867         * src/compose.c
3868                 Save FMID in drafts too
3869
3870 2006-07-08 [colin]      2.3.1cvs76
3871
3872         * src/compose.c
3873                 Svae RMID in drafted mails too
3874                 Save quote_fmt vars for whole mails,
3875                 don't reset at each quote_fmt_init:
3876                 allows to use the same |i{var} in
3877                 various template fields
3878         * src/prefs_template.c
3879         * src/quote_fmt.h
3880         * src/quote_fmt_parse.y
3881                 Same
3882
3883 2006-07-08 [colin]      2.3.1cvs75
3884
3885         * src/textview.c
3886                 Fix highlighting of attached parts URIs
3887
3888 2006-07-08 [colin]      2.3.1cvs74
3889
3890         * src/main.c
3891                 Prevent bug #981 (sc 2.3.1 segfaults with 
3892                 gtk+ 2.10) from being reported again:
3893                 if Sylpheed-Claws has been compiled against
3894                 GTK+ < 2.9.0 and we're running with GTK+ >= 2.9.0, 
3895                 of if Sylpheed-Claws has been compiled against
3896                 GTK+ >= 2.9.0 and we're running with GTK+ < 2.9.0,
3897                 error out.
3898
3899 2006-07-07 [colin]      2.3.1cvs73
3900
3901         * src/prefs_actions.c
3902                 Fix label
3903
3904 2006-07-07 [colin]      2.3.1cvs72
3905
3906         * src/prefs_actions.c
3907                 Fix compile on gtk < 2.8. argh :)
3908
3909 2006-07-07 [paul]       2.3.1cvs71
3910
3911         * src/common/defs.h
3912                 update DONATE_URI
3913
3914 2006-07-07 [colin]      2.3.1cvs70
3915
3916         * po/POTFILES.in
3917         * src/quote_fmt.c
3918         * src/quote_fmt_lex.l
3919         * src/quote_fmt_parse.y
3920                 Add |i{var}, a way to insert user-entered
3921                 text in a template
3922
3923 2006-07-07 [colin]
3924
3925         * 2.4.0-rc3 released
3926
3927 2006-07-07 [colin]      2.3.1cvs69
3928
3929         * src/folder.c
3930                 Don't consider inboxes of UNKNOWN folder 
3931                 classes to be useable as default inboxes
3932
3933 2006-07-07 [paul]       2.3.1cvs68
3934
3935         * src/textview.c
3936                 add missing #include <errno.h>
3937                 Thanks to René J. Blokland
3938
3939 2006-07-07 [paul]       2.3.1cvs67
3940
3941         * src/action.c
3942                 Return now Closes dialog
3943         * src/mimeview.c
3944         * src/mimeview.h
3945         * src/textview.c
3946                 add contextual menu to mime parts listed
3947                 in the textview
3948                 Thanks to Colin
3949         * src/common/utils.c
3950                 reversal: ' is a valid character in URLs
3951
3952 2006-07-06 [colin]      2.3.1cvs66
3953
3954         * src/remotefolder.h
3955                 Forgotten in previous commit
3956
3957 2006-07-06 [colin]      2.3.1cvs65
3958
3959         * src/folder.c
3960                 Set summary update flag whenever
3961                 totals changed
3962         * src/imap.c
3963         * src/prefs_account.c
3964         * src/common/utils.h
3965         * src/etpan/imap-thread.c
3966                 Fix warnings, thanks to Fabien and
3967                 Ricardo
3968
3969 2006-07-06 [wwp]        2.3.1cvs64
3970
3971         * src/gtk/gtkutils.c
3972                 GTK_STOCK_HELP exists in GTK+ 2.4.x.
3973
3974 2006-07-06 [wwp]        2.3.1cvs63
3975
3976         * src/account.c
3977         * src/addressbook.c
3978         * src/addressitem.h
3979         * src/folderview.c
3980         * src/mainwindow.c
3981         * src/manual.c
3982         * src/manual.h
3983         * src/message_search.c
3984         * src/prefs_actions.c
3985         * src/prefs_filtering.c
3986         * src/prefs_filtering.h
3987         * src/prefs_template.c
3988         * src/summary_search.c
3989         * src/summaryview.c
3990         * src/gtk/gtkutils.c
3991         * src/gtk/gtkutils.h
3992         * src/gtk/pluginwindow.c
3993                 add help buttons to some dialogs. Clicking such buttons opens a
3994                 relevant manual page. Patch by Fabien Vantard <fzzzzz@gmail.com>.
3995
3996 2006-07-06 [paul]       2.3.1cvs62
3997
3998         * src/textview.c
3999                 fix attachments contextual menu
4000                 Thanks to Colin
4001
4002 2006-07-05 [colin]      2.3.1cvs61
4003
4004         * src/textview.c
4005         * src/compose.c
4006                 Handle sftp:// links
4007
4008 2006-07-05 [paul]       2.3.1cvs60
4009
4010         * src/gtk/filesel.c
4011                 grab save button by default
4012                 Thanks to Colin
4013
4014 2006-07-05 [wwp]        2.3.1cvs59
4015
4016         * manual/xml2pdf
4017                 use JAVA and SAXON (or SAXONJAR) env. vars is there's defined.
4018
4019 2006-07-04 [colin]      2.3.1cvs58
4020
4021         * src/mimeview.c
4022         * src/textview.c
4023                 Use left click to select, middle click to open
4024                 on mimeparts links
4025         * src/common/utils.c
4026                 Fix segfault
4027
4028 2006-07-04 [colin]      2.3.1cvs57
4029
4030         * src/mainwindow.c
4031         * src/news.c
4032                 Warning fixes, thanks to Fabien
4033
4034 2006-07-04 [colin]      2.3.1cvs56
4035
4036         * src/mimeview.c
4037         * src/mimeview.h
4038         * src/textview.c
4039                 Allow parts to be selected via their text label
4040                 in textview
4041
4042 2006-07-04 [colin]      2.3.1cvs55
4043
4044         * src/folderview.c
4045                 Feedback when closing (for big folders)
4046         * src/prefs_actions.c
4047         * src/prefs_filtering.c
4048         * src/prefs_matcher.c
4049         * src/prefs_template.c
4050                 Fix default button when closing without
4051                 having saved
4052
4053 2006-07-04 [colin]      2.3.1cvs54
4054
4055         * src/news.c
4056                 Delete local file on deletion
4057
4058 2006-07-03 [colin]      2.3.1cvs53
4059
4060         * src/folderview.c
4061         * src/main.c
4062                 Don't freeze when rescanning after crash
4063
4064 2006-07-03 [wwp]        2.3.1cvs52
4065
4066         * src/compose.c
4067         * src/privacy.c
4068         * src/privacy.h
4069         * src/plugins/pgpinline/pgpinline.c
4070         * src/plugins/pgpmime/pgpmime.c
4071                 don't report an error when the user cancels the passphrase dialog.
4072
4073 2006-07-02 [colin]      2.3.1cvs51
4074
4075         * src/folderview.c
4076                 Open message when crossing folders with Space,
4077                 goto next unread and friends
4078
4079 2006-07-01 [colin]      2.3.1cvs50
4080
4081         * src/prefs_account.c
4082                 Typographic rules varying from language
4083                 to language (in french "Protocole :"),
4084                 we have to do that :)
4085
4086 2006-07-01 [ticho]      2.3.1cvs49
4087
4088         * src/prefs_account.c
4089                 Only use one temporary gchar* variable in
4090                 prefs_account_protocol_set_optmenu().
4091
4092 2006-07-01 [ticho]      2.3.1cvs48
4093
4094         * src/prefs_account.c
4095         * src/prefs_account.h
4096                 Use GtkLabel for existing account protocol name.
4097                 Created an array for protocol names and populate the
4098                 combobox from it in a for() cycle.
4099
4100 2006-06-30 [colin]      2.3.1cvs47
4101
4102         * src/compose.c
4103                 Block undo when changing signature (by changing
4104                 account)
4105
4106 2006-06-30 [paul]       2.3.1cvs46
4107
4108         * src/send_message.c
4109                 when editing From in the Compose window, use that address
4110                 in the Return-Path: header
4111                 Thanks to Colin
4112
4113 2006-06-30 [colin]      2.3.1cvs45
4114
4115         * src/compose.c
4116                 Fix signature replacement:
4117                 - when no newline before separator
4118                 - when reediting
4119
4120 2006-06-29 [colin]      2.3.1cvs44
4121
4122         * src/folderview.c
4123         * src/folderview.h
4124         * src/mainwindow.c
4125         * src/summaryview.c
4126                 Let 'View/Go to/Next marked' work like
4127                 Next new & Next unread: across folders
4128                 Change the select_on_entry pref to do
4129                 what we want when changing folder
4130         * src/common/utils.c
4131                 Fix single-quoted links 
4132
4133 2006-06-29 [colin]      2.3.1cvs43
4134
4135         * src/gtk/gtkaspell.c
4136                 "Sylpheed" and "Sylpheed-Claws" do exist !
4137
4138 2006-06-29 [colin]      2.3.1cvs42
4139
4140         * src/imap.c
4141                 Forgot to remove debug
4142
4143 2006-06-29 [colin]      2.3.1cvs41
4144
4145         * src/imap.c
4146         * src/imap.h
4147         * src/mainwindow.c
4148                 Disconnect from IMAP servers when going
4149                 offline. Fixes bug #978 (going to offline-mode 
4150                 won't close connections)
4151
4152 2006-06-29 [colin]      2.3.1cvs40
4153
4154         * src/main.c
4155                 Fix transient setting on failing plugins
4156                 Patch by Fabien
4157         * src/plugins/pgpcore/sgpgme.c
4158                 Only warn for OpenPGP. Most people don't
4159                 have CMS available.
4160
4161 2006-06-29 [colin]      2.3.1cvs39
4162
4163         * src/compose.c
4164                 Fix Spelling menu (discrepancy between context menu
4165                 and top menu when folder's dictionary isn't the 
4166                 default one)
4167         * src/plugins/pgpcore/sgpgme.c
4168                 More error reporting about why gpgme can fail
4169
4170 2006-06-29 [wwp]        2.3.1cvs38
4171
4172         * src/mainwindow.c
4173                 honor the display-header-pane setting even when the message view
4174                 is a separate window.
4175
4176 2006-06-29 [wwp]        2.3.1cvs37
4177
4178         * src/prefs_actions.c
4179                 forgot to commit that one (use of GTK_STOCK_INFO).
4180
4181 2006-06-29 [colin]      2.3.1cvs36
4182
4183         * src/imap.c
4184                 Better handling of login errors (ask the password
4185                 again once), alert in case of error. Fix three
4186                 signedness warnings.
4187
4188 2006-06-28 [wwp]        2.3.1cvs35
4189
4190         * src/prefs_template.c
4191         * src/prefs_matcher.c
4192         * src/prefs_filtering_action.c
4193         * src/prefs_quote.c
4194                 unify info/help/symbols.. buttons to use GTK_STOCK_INFO,
4195                 patch by Fabien Vantard, slightly modified.
4196
4197 2006-06-28 [paul]
4198
4199         2.4.0-rc2 released
4200
4201 2006-06-28 [colin]      2.3.1cvs34
4202
4203         * src/prefs_account.c
4204                 Fix bug #977 (Can't add or edit imap accounts)
4205
4206 2006-06-28 [colin]      2.3.1cvs33
4207
4208         * src/mimeview.c
4209                 Fix previous
4210
4211 2006-06-28 [colin]      2.3.1cvs32
4212
4213         * src/mimeview.c
4214                 Save named inlined attachments with "Save all"
4215         * src/main.c
4216         * src/mbox.c
4217         * src/common/plugin.c
4218         * src/common/plugin.h
4219         * src/common/sylpheed.c
4220         * src/common/utils.c
4221         * src/plugins/pgpcore/sylpheed.def
4222         * src/plugins/pgpinline/sylpheed.def
4223         * src/plugins/pgpmime/sylpheed.def
4224                 Win32 compatibility patch, by
4225                 Werner Koch
4226
4227 2006-06-28 [wwp]        2.3.1cvs31
4228
4229         * src/imap.c
4230         * src/prefs_folder_item.c
4231                 less compilation warnings (thanks to Fabien Vantard), less typos.
4232
4233 2006-06-28 [paul]       2.3.1cvs30
4234
4235         * src/gtk/gtkutils.c
4236                 gtk_combo_box_set_focus_on_click() is only
4237                 available since gtk 2.6.0
4238
4239 2006-06-28 [paul]       2.3.1cvs29
4240
4241         * src/prefs_ext_prog.c
4242                 fix engrish and add a tooltip for the
4243                 'command for 'Display as text' option
4244
4245 2006-06-28 [paul]
4246
4247         2.4.0-rc1 released
4248
4249 2006-06-28 [paul]       2.3.1cvs28
4250
4251         * ChangeLog
4252         * tools/Makefile.am
4253                 include textviewer.pl in releases
4254
4255 2006-06-28 [paul]       2.3.1cvs27
4256
4257         * src/prefs_ext_prog.c
4258                 hide Print command option if libgnomeprint
4259                 support is present
4260
4261 2006-06-27 [colin]      2.3.1cvs26
4262
4263         * src/compose.c
4264                 Fix Esc handling in insert/attach dialog
4265                 Don't show this dialog if dragging something
4266                 else than text/uri-list
4267                 Thanks to Fabien Vantard
4268         * tools/textviewer.pl
4269                 Filter script to display stuff as text
4270                 by H. Merijn Brand
4271
4272 2006-06-27 [wwp]        2.3.1cvs25
4273
4274         * src/messageview.c
4275                 use the exact product name (message view title), patch
4276                 by Fabien Vantard.
4277
4278 2006-06-27 [ticho]      2.3.1cvs24
4279
4280         * src/prefs_account.c
4281         * src/prefs_common.c
4282         * src/prefs_common.h
4283         * src/prefs_ext_prog.c
4284         * src/textview.c
4285                 Add a preference (Preferences/External programs)
4286                 to allow "Display as text" to be done via a script
4287                 (patch by H.Merijn Brand).
4288                 Use GtkComboBox for protocol selection in account
4289                 preferences.
4290                 Only include current choice for existing accounts, and
4291                 insensitivize the combobox.
4292
4293 2006-06-27 [paul]       2.3.1cvs23
4294
4295         * src/mbox.c
4296                 fix crasher introduced in cvs21.
4297                 Thanks to Colin
4298
4299 2006-06-26 [colin]      2.3.1cvs22
4300
4301         * src/mbox.c
4302                 Fix double-frees when leaving folders
4303                 after exporting to mbox
4304
4305 2006-06-26 [colin]      2.3.1cvs21
4306
4307         * src/mbox.c
4308                 More feedback (and optimisation)
4309                 on import/export
4310         * src/common/utils.c
4311                 Fix case when looking for mail addresses
4312         * src/gtk/gtkutils.c
4313                 Extra check for (X-)Face
4314
4315 2006-06-25 [ticho]      2.3.1cvs20
4316
4317         * src/compose.c
4318         * src/exphtmldlg.c
4319         * src/gtk/gtkutils.c
4320         * src/gtk/gtkutils.h
4321                 Added second argument to gtkut_sc_combobox_create() to
4322                 control focus-on-click for the widget.
4323                 Migrated the only GtkOptionMenu in exphtmldlg.c to GtkComboBox.
4324
4325 2006-06-25 [ticho]      2.3.1cvs19
4326
4327         * src/compose.c
4328         * src/gtk/Makefile.am
4329         * src/gtk/combobox.c
4330         * src/gtk/combobox.h
4331         * src/gtk/gtkutils.c
4332         * src/gtk/gtkutils.h
4333                 Use GtkComboBox instead of deprecated GtkOptionMenu
4334                 for account selector in compose window and for encoding
4335                 selector in attachment properties.
4336                 Also factorise working with the new GtkComboBox somewhat.
4337
4338 2006-06-24 [paul]       2.3.1cvs18
4339
4340         * src/prefs_common.c
4341                 use the correct default value
4342
4343 2006-06-24 [paul]       2.3.1cvs17
4344
4345         * src/compose.c
4346         * src/prefs_common.c
4347         * src/prefs_common.h
4348         * src/prefs_compose_writing.c
4349                 enable setting of default action when
4350                 dnd'ing files in the compose window.
4351                 (Collaborative effort with wwp)
4352
4353 2006-06-23 [wwp]        2.3.1cvs16
4354
4355         * src/compose.c
4356                 i18n fix (thanks to Fabien Vantard)
4357
4358 2006-06-22 [colin]      2.3.1cvs15
4359
4360         * src/prefs_customheader.c
4361                 Don't use filters in custom headers' file 
4362                 selector. Remember, extensions mean nothing :)
4363
4364 2006-06-22 [paul]       2.3.1cvs14
4365
4366         * configure.ac
4367                 allow setting of man directory location
4368
4369 2006-06-22 [colin]      2.3.1cvs13
4370
4371         * src/mainwindow.c
4372                 Add 'View/Go to/Next unread folder'.
4373                 I missed that :)
4374
4375 2006-06-22 [colin]      2.3.1cvs12
4376
4377         * src/common/utils.c
4378                 Add some subject prefixes
4379                 Patch by Bjorn T Johansen <btj@havleik.no>
4380
4381 2006-06-22 [colin]      2.3.1cvs11
4382
4383         * manual/advanced.xml
4384                 Forgotten hidden pref
4385
4386 2006-06-21 [paul]       2.3.1cvs10
4387
4388         * src/prefs_account.c
4389                 complete the removal of 'Add date header' option
4390
4391 2006-06-21 [paul]       2.3.1cvs9
4392
4393         * src/account.c
4394         * src/compose.c
4395         * src/prefs_account.c
4396         * src/prefs_account.h
4397                 remove option to add date header - always
4398                 add date header
4399         * src/etpan/imap-thread.c
4400                 fix warnings (Thanks to Colin)
4401
4402 2006-06-21 [wwp]        2.3.1cvs8
4403
4404         * src/folder.c
4405                 set the attachment flag when inline text part are (file)named. This is more convenient
4406                 when receiving (for instance) inline source files or patches sent using thunderbird.
4407
4408 2006-06-21 [paul]       2.3.1cvs7
4409
4410         * src/inc.c
4411                 fix off-by-one count of current msg in
4412                 statusbar filtering progressbar
4413
4414 2006-06-21 [paul]       2.3.1cvs6
4415
4416         * src/folder.c
4417                 Show attachment icon even if the part is 'inline'
4418                 if the following conditions are met:
4419                 - content-type != 'text/plain'
4420                 - content-type != '*/pgp-signature'
4421                 - either 'name' or 'filename' parameter is not NULL
4422                 
4423                 Thanks to Colin
4424
4425 2006-06-21 [paul]       2.3.1cvs5
4426
4427         * src/messageview.c
4428         * src/prefs_common.c
4429         * src/prefs_common.h
4430         * src/prefs_other.c
4431                 add an option to 'Never send Return
4432                 Receipts'
4433                 Thanks to Colin
4434
4435 2006-06-20 [mones]      2.3.1cvs4
4436
4437         * po/es.po
4438                 updated
4439         * src/compose.c
4440                 typo fixed (space after comma)
4441         * tools/make.themes.project
4442                 remove exec mode from tarball files
4443
4444 2006-06-20 [colin]      2.3.1cvs3
4445
4446         * src/news.c
4447         * src/procheader.c
4448         * src/unmime.c
4449                 Better fix for \n's in headers (don't 
4450                 break Received: and others)
4451
4452 2006-06-20 [paul]       2.3.1cvs2
4453
4454         * src/alertpanel.c
4455         * src/textview.c
4456                 improve legibility of phishing attempt
4457                 dialog
4458
4459 2006-06-20 [paul]       2.3.1cvs1
4460
4461         * NEWS
4462         * README
4463         * configure.ac
4464                 Update version number following
4465                 stable release
4466
4467 2006-06-20 [colin]      2.3.0cvs26
4468
4469         * src/compose.c
4470                 When dragging a file to the text of the compose
4471                 window, ask whether we want to insert or attach
4472                 (I know lots of people who do that to attach)
4473
4474 2006-06-20 [colin]      2.3.0cvs25
4475
4476         * src/etpan/imap-thread.c
4477                 Fix threshold (the append command is often > 32 bytes)
4478
4479 2006-06-19 [colin]      2.3.0cvs24
4480
4481         * src/imap.c
4482         * src/etpan/imap-thread.c
4483                 Workaround Rockliffe IMAP server bug: replace
4484                 "x UID SEARCH (ANSWERED UID 1:*)" with
4485                 "x UID SEARCH ANSWERED"
4486                 (Rockliffe doesn't handle the parenthesis)
4487
4488 2006-06-19 [colin]      2.3.0cvs23
4489
4490         * src/compose.c
4491         * src/imap.c
4492         * src/etpan/imap-thread.c
4493                 Probably fix bug #972 (Freezes when adding 
4494                 an attachment to the message)
4495         * src/common/defs.h
4496                 Modernize Firefox cmd
4497
4498
4499 2006-06-18 [colin]      2.3.0cvs22
4500
4501         * src/prefs_customheader.c
4502                 Only allow correct filenames for various
4503                 custom headers
4504
4505 2006-06-18 [colin]      2.3.0cvs21
4506
4507         * src/prefs_customheader.c
4508                 Add a 'From File...' button in custom headers prefs, which
4509                 try to do the right thing: 
4510                 for normal headers, use file as plaintext,
4511                 for X-Face, calls compface,
4512                 for Face, encode to b64.
4513
4514 2006-06-17 [colin]      2.3.0cvs20
4515
4516         * src/mh.c
4517                 Warning fix
4518
4519 2006-06-16 [colin]      2.3.0cvs19
4520
4521         * src/summaryview.c
4522                 Recursive quicksearch: show message list
4523                 in current folder, *then* search children
4524                 in the background.
4525
4526 2006-06-16 [colin]      2.3.0cvs18
4527
4528         * src/main.c
4529                 Instead of ignoring SIGPIPE, save caches
4530                 when getting one. Will fix the fact that
4531                 hot caches are out-of-date when logging 
4532                 out of Xorg.
4533         * src/compose.c
4534         * src/prefs_compose_writing.c
4535                 Only save text (not attachments) when 
4536                 auto-saving to drafts
4537         * src/unmime.c
4538                 Always replace \n, \r and \t with spaces
4539                 in headers
4540         * manual/dist/html/Makefile.am
4541         * manual/dist/pdf/Makefile.am
4542         * manual/dist/ps/Makefile.am
4543         * manual/dist/txt/Makefile.am
4544         * manual/fr/dist/html/Makefile.am
4545         * manual/fr/dist/pdf/Makefile.am
4546         * manual/fr/dist/ps/Makefile.am
4547         * manual/fr/dist/txt/Makefile.am
4548         * manual/pl/dist/html/Makefile.am
4549         * manual/pl/dist/pdf/Makefile.am
4550         * manual/pl/dist/ps/Makefile.am
4551         * manual/pl/dist/txt/Makefile.am
4552                 Fix make clean removing pregenerated manuals
4553
4554
4555 2006-06-16 [colin]      2.3.0cvs17
4556
4557         * src/plugins/pgpcore/sgpgme.c
4558         * src/plugins/pgpmime/pgpmime.c
4559         * src/plugins/pgpinline/pgpinline.c
4560                 Better error reporting in setup_signers.
4561                 Don't fallback to default key if specified
4562                 key isn't found.
4563                 Don't allow signing if more than one secret
4564                 key matches the one specified in prefs.
4565
4566 2006-06-15 [colin]      2.3.0cvs16
4567
4568         * src/folderview.c
4569                 Add "Send queue" in the folder's contextual
4570                 menu
4571         * src/compose.c
4572         * src/messageview.c
4573         * src/privacy.c
4574         * src/privacy.h
4575         * src/procmime.c
4576         * src/procmsg.c
4577         * src/plugins/pgpcore/passphrase.c
4578         * src/plugins/pgpcore/sgpgme.c
4579         * src/plugins/pgpinline/pgpinline.c
4580         * src/plugins/pgpmime/pgpmime.c
4581                 Better error reporting
4582         * src/mbox.c
4583                 Probably fix bug #971 (2.2.3 cannot read mail 
4584                 from local mbox)
4585
4586
4587 2006-06-15 [mones]      2.3.0cvs15
4588
4589         * tools/make.themes.project
4590                 creates the themes project from the web page
4591
4592 2006-06-15 [colin]      2.3.0cvs14
4593
4594         * src/folder.c
4595                 Better fix (avoid losing the folder if scan_tree 
4596                 fails)
4597
4598 2006-06-15 [cleroy]     2.3.0cvs13
4599
4600         * src/folder.c
4601                 Probably fix Bug #969 (crash on rebuilding 
4602                 imap folder)
4603
4604 2006-06-14 [colin]      2.3.0cvs12
4605
4606         * manual/dtd/manual.xsl
4607         * manual/sylpheed-claws-manual.xml
4608         * manual/fr/sylpheed-claws-manual.xml
4609         * manual/pl/sylpheed-claws-manual.xml
4610                 Insert pagebreaks between sections
4611
4612 2006-06-14 [paul]       2.3.0cvs11
4613
4614         * configure.ac
4615                 better fix than 2.3.0cvs10
4616
4617 2006-06-14 [paul]       2.3.0cvs10
4618
4619         * configure.ac
4620                 fix setting of PACKAGE_DATA_DIR with newer autoconf
4621                 (backwards compatible)
4622
4623 2006-06-13 [colin]      2.3.0cvs9
4624
4625         * src/messageview.c
4626                 Fix sending of return receipt with the new queue folders
4627
4628 2006-06-13 [wwp]        2.3.0cvs8
4629
4630         * src/quote_fmt_lex.l
4631                 fix wrong tokens returned in quote_fmt lexer, query not().
4632
4633 2006-06-13 [wwp]        2.3.0cvs7
4634
4635         * src/folder.c
4636         * src/prefs_folder_item.c
4637                 allow changing folder type even when folder is not a top-level one,
4638                 thanks to Colin.
4639
4640 2006-06-12 [colin]      2.3.0cvs6
4641
4642         * src/folderview.c
4643                 Fix double-ask of "Do you want to mark all
4644                 as read"
4645
4646 2006-06-12 [colin]      2.3.0cvs5
4647
4648         * src/compose.c
4649         * src/compose.h
4650         * src/folder.c
4651         * src/folder.h
4652         * src/imap.c
4653         * src/inc.c
4654         * src/main.c
4655         * src/messageview.c
4656         * src/mh.c
4657         * src/prefs_folder_item.c
4658         * src/procheader.c
4659         * src/procmime.c
4660         * src/procmsg.c
4661         * src/procmsg.h
4662         * src/send_message.c
4663         * src/summaryview.c
4664         * src/toolbar.c
4665                 Apply bug #964's patch (Queue and drafts aren't normal)
4666                 The Drafts and Queue folder now contain RFC-822 files,
4667                 allowing to move and copy mails from and to these 
4668                 folders. Moving from Drafts to Queue will prepare the
4669                 mail for sending (PGP signature, encryption, etc).
4670                 This patch also rework sending errors handling to try
4671                 to be more helpful.
4672                 Also, allow redefining folder types via the GUI 
4673                 (Folder type in its Properties)
4674
4675 2006-06-12 [colin]      2.3.0cvs4
4676
4677         * src/summaryview.c
4678         * src/prefs_common.c
4679         * src/prefs_common.h
4680         * src/gedit-print.c
4681                 Allow to define a specific print font - patch
4682                 by Bernhard Walle <bernhard.walle@gmx.de>
4683         * src/prefs_fonts.c
4684         * manual/advanced.xml
4685         * manual/fr/advanced.xml
4686                 Add a hidden pref to allow deletion without
4687                 confirmation
4688
4689 2006-06-12 [wwp]        2.3.0cvs3
4690
4691         * .cvsignore
4692                 more files to ignore.
4693
4694 2006-06-12 [wwp]        2.3.0cvs2
4695
4696         * src/quote_fmt.c
4697         * src/quote_fmt_lex.l
4698         * src/quote_fmt_parse.y
4699                 extend the quote_fmt parser (templates and quotes):
4700                 - allow limited sub-expressions in |p{} and |f{} expressions,
4701                 - add !x{expr} (evaluate and insert 'expr' if 'x' is not set) and \! symbols,
4702                 - implemented/fixed missing implementation of query_references and show_references,
4703                 - completed, fixed contents and format of the symbols help dialog,
4704                 - fix some compilation warnings.
4705
4706 2006-06-12 [wwp]        2.3.0cvs1
4707
4708         * manual/advanced.xml
4709         * manual/fr/advanced.xml
4710                 updates in the "templates" section of the manual (eng/fr):
4711                  - be more precise (both versions)
4712                  - completed to match the english reference (fr version)
4713                  - touchups (both versions)
4714
4715 2006-06-12 [paul]       2.3.0
4716
4717         2.3.0 released
4718
4719 2006-06-12 [paul]       2.2.3cvs14
4720
4721         * po/ca.po
4722         * po/cs.po
4723         * po/de.po
4724         * po/el.po
4725         * po/fr.po
4726         * po/it.po
4727         * po/pt_BR.po
4728         * po/sr.po
4729         * po/zh_CN.po
4730                 updated by Miquel Oliete, Tim, Stephan Sachse,
4731                 Stavros Giannouris, Fabien Vantard, Andrea
4732                 Spadaccini, Frederico Goncalves Guimaraes,
4733                 Aleksandar Urosevic, and Ralgh Young
4734
4735 2006-06-12 [colin]      2.2.3cvs13
4736
4737         * src/mbox.c
4738                 Add missing header
4739
4740 2006-06-11 [colin]      2.2.3cvs12
4741
4742         * src/msgcache.c
4743                 Verify that g_malloc() succeeded
4744
4745 2006-06-11 [colin]      2.2.3cvs11
4746
4747         * src/wizard.c
4748                 Add Face header to welcome mail
4749
4750 2006-06-10 [colin]      2.2.3cvs10
4751
4752         * src/textview.c
4753                 Revert previous (Forgot it changes the
4754                 margin on the whole mail)
4755
4756 2006-06-10 [colin]      2.2.3cvs9
4757
4758         * src/textview.c
4759                 Don't overlap long headers under (X-)Face
4760
4761 2006-06-10 [mones]      2.2.3cvs8
4762
4763         * manual/xml2pdf
4764                 allow generation of manual on systems lacking saxon binary
4765                 but with java and the saxon library installed
4766
4767         * po/es.po
4768                 updated for release
4769
4770 2006-06-09 [colin]      2.2.3cvs7
4771
4772         * src/summaryview.c
4773                 Fix leak when using Display Sender using Addressbook
4774
4775 2006-06-09 [colin]      2.2.3cvs6
4776
4777         * src/compose.c
4778         * src/folder.c
4779         * src/folderview.c
4780         * src/mimeview.c
4781         * src/summaryview.c
4782                 More leaks fixes
4783
4784 2006-06-09 [paul]       2.2.3cvs5
4785
4786         * AUTHORS
4787         * src/gtk/authors.h
4788         * tools/claws.i18n.status.pl
4789                 updated with new info
4790
4791 2006-06-09 [paul]       2.2.3cvs4
4792
4793         * README
4794                 updated
4795         * manual/ack.xml
4796                 add wwp to authors list
4797         * src/gtk/authors.h
4798                 update mine and Colin's addresses
4799
4800 2006-06-08 [colin]      2.2.3cvs3
4801
4802         * src/etpan/imap-thread.c
4803                 Fix leak on SSL cert check
4804
4805 2006-06-08 [colin]      2.2.3cvs2
4806
4807         * src/common/utils.c
4808                 Fix leak
4809
4810 2006-06-08 [paul]       2.2.3cvs1
4811
4812         * configure.ac
4813                 Update version number following
4814                 stable release
4815
4816 2006-06-07 [colin]      2.2.2cvs3
4817
4818         * src/msgcache.c
4819                 Fix catching cache read errors (guint instead of gint)
4820                 Prevent malloc'ing more than 8MB (means cache corruption)
4821
4822 2006-06-07 [paul]       2.2.2cvs2
4823
4824         * src/exporthtml.c
4825         * src/exportldif.c
4826         * src/mh.c
4827         * src/mutt.c
4828         * src/pine.c
4829         * src/common/utils.c
4830                 fix Debian bug #370257, 'sylpheed-claws-gtk2 does not
4831                 obey $HOME'
4832                 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=370257
4833                 Thanks to Colin
4834
4835 2006-06-06 [paul]       2.2.2cvs1
4836
4837         * configure.ac
4838                 Update version number following
4839                 stable release
4840
4841 2006-06-06 [paul]       2.2.1cvs6
4842
4843         * src/matcher.c
4844                 fix  implicit declaration of
4845                 sylpheed_do_idle()
4846                 Patch by Fabien Vantard
4847
4848 2006-06-06 [paul]       2.2.1cvs5
4849
4850         * src/matcher.c
4851                 fix age_greater and age_lower so that they
4852                 mean what say and not '...or equal to'
4853                 Thanks to Colin
4854
4855 2006-06-06 [paul]       2.2.1cvs4
4856
4857         * src/textview.c
4858         * src/common/utils.c
4859                 fix URI check
4860                 Thanks to Colin
4861
4862 2006-06-05 [wwp]        2.2.1cvs3
4863
4864         * manual/fr/account.xml
4865                 minor language fixes (thanks to Fabien Vantard).
4866
4867 2006-06-05 [colin]      2.2.1cvs2
4868
4869         * src/prefs_folder_item.c
4870         * src/folderview.c
4871                 Allow recursive setting of properties 
4872                 for whole mailboxes
4873         * src/matcher.c
4874                 Don't freeze on 'test' filtering rule
4875
4876 2006-06-05 [colin]      2.2.1cvs1
4877
4878         * configure.ac
4879                 Update version number following
4880                 stable release
4881
4882 2006-06-04 [wwp]        2.2.0cvs82
4883
4884         * manual/glossary.xml
4885         * manual/account.xml
4886         * manual/fr/glossary.xml
4887         * manual/fr/account.xml
4888                 added glossary section and references/links related to the Face custom header.
4889
4890 2006-06-04 [colin]      2.2.0cvs81
4891
4892         * src/summaryview.c
4893                 Skip to next message on move with no
4894                 immediate execution
4895
4896 2006-06-04 [wwp]        2.2.0cvs80
4897
4898         * manual/xml2pdf
4899                 added sanity checks, exit when needed.
4900
4901 2006-06-03 [paul]       2.2.0cvs79
4902
4903         * src/prefs_receive.c
4904                 page name is now 'Receiving'
4905         * src/prefs_send.c
4906                 page name is now 'Sending'
4907
4908 2006-06-03 [colin]      2.2.0cvs78
4909
4910         * src/plugins/spamassassin/spamassassin_gtk.c
4911                 Autoswitch to Localhost if transport was previously
4912                 disabled. Else people had to check [] Enable, then
4913                 *reselect* transport.
4914
4915 2006-06-03 [colin]      2.2.0cvs77
4916
4917         * src/plugins/pgpinline/pgpinline.c
4918         * src/plugins/pgpmime/pgpmime.c
4919                 Check that gpg_data_release_and_get_mem 
4920                 didn't fail (now, why this happens...)
4921
4922 2006-06-03 [colin]      2.2.0cvs76
4923
4924         * src/mbox.c
4925                 Fix bug #962 (Manual and/or UI should 
4926                 warn about incompatible locking 
4927                 causing dataloss)
4928
4929 2006-06-02 [cleroy]     2.2.0cvs75
4930
4931         * src/filtering.c
4932         * src/folder.c
4933         * src/procmsg.c
4934         * src/summaryview.c
4935                 Fix a few leaks
4936
4937 2006-06-02 [colin]      2.2.0cvs74
4938
4939         * src/main.c
4940                 On exit, free caches after writing them
4941                 Shuts up some valgrind false positives
4942         * src/procmsg.c
4943         * src/send_message.c
4944                 Fix races when reusing existing SMTP connections
4945                 Fix inexistant session timeout
4946         * src/toolbar.c
4947                 Display alertpanel after all queues have
4948                 been processed, not after each
4949
4950 2006-06-02 [wwp]        2.2.0cvs73
4951
4952         * manual/fr/glossary.xml
4953         * manual/fr/ack.xml
4954         * manual/ack.xml
4955                 one fix (thanks to Fabien Vantard), one update (thanks to Norman Walsh).
4956
4957 2006-06-02 [wwp]        2.2.0cvs72
4958
4959         * manual/xml2pdf
4960         * manual/dist/pdf/Makefile.am
4961         * manual/dtd/manual.xsl
4962         * manual/fr/dist/pdf/Makefile.am
4963         * manual/pl/dist/pdf/Makefile.am
4964                 we changed the procedure to generate the .pdf version of the manual.
4965                 The procedure is more modern and the .pdf we get now has a valid index.
4966                 Here are the new pre-requisites:
4967
4968                 - JRE 1.x (1.4 here): there must be one from your distro
4969                 - Saxon 6.5.5: http://prdownloads.sourceforge.net/saxon/saxon6-5-5.zip
4970                 - FOP 0.92: http://apache.crihan.fr/dist/xmlgraphics/fop/fop-0.92beta-bin-jdk1.4.tar.gz
4971                 - DocBook XSL 1.70.x: http://prdownloads.sourceforge.net/docbook/docbook-xsl-1.70.1.tar.bz2?download
4972
4973                 See my posts for further info about the installation of this toolchain:
4974
4975                 Date: Fri, 19 May 2006 19:40:06 +0200
4976                 From: wwp <subscript@free.fr>
4977                 To: sylpheed-claws-devel@lists.sourceforge.net
4978                 Subject: [Sylpheed-claws-devel] Generating the manual .pdf
4979
4980                 and
4981
4982                 Date: Wed, 24 May 2006 12:58:49 +0200
4983                 From: wwp <subscript@free.fr>
4984                 To: sylpheed-claws-devel@lists.sourceforge.net
4985                 Subject: Re: [Sylpheed-claws-devel] Generating the manual .pdf
4986
4987 2006-06-01 [colin]      2.2.0cvs71
4988
4989         * src/compose.c
4990                 Better guards against IMAP races
4991         * src/main.c
4992         * src/prefs_common.c
4993         * src/prefs_common.h
4994         * src/common/ssl_certificate.c
4995         * src/etpan/imap-thread.c
4996         * src/etpan/imap-thread.h
4997         * src/gtk/sslcertwindow.c
4998                 New hidden option ssl_skip_cert_check to 
4999                 avoid dups of bug #959 (libetpan linked
5000                 against gnutls and gnutls buggy on 64bit)
5001                 Present expired warning only once per
5002                 session/server.
5003         * manual/advanced.xml
5004         * manual/fr/advanced.xml
5005                 Document new option
5006
5007 2006-06-01 [wwp]        2.2.0cvs70
5008
5009         * src/messageview.c
5010                 fix for bug #961 (return receipt dialog 
5011                 complains incorrectly about return-path 
5012                 email adress being different), thanks 
5013                 to Colin.
5014
5015 2006-05-31 [cleroy]     2.2.0cvs69
5016
5017         * src/common/ssl.c
5018                 Guard against NULLs, although this
5019                 should never be an issue
5020
5021 2006-05-31 [colin]      2.2.0cvs68
5022
5023         * src/filtering.c
5024                 Use g_slist_prepend
5025         * src/imap.c
5026                 Don't remove caches when destroying folder, it
5027                 could (should) be done at exit
5028         * src/inc.c
5029                 free processing cache after incorporation
5030         * src/etpan/imap-thread.c
5031                 Maybe fix bug #959 (Crash on moving to emails 
5032                 to a imap account per ssl with a expired 
5033                 certificate.)
5034
5035 2006-05-30 [colin]      2.2.0cvs67
5036
5037         * src/summaryview.c
5038                 Put back event flush when displaying message
5039                 It avoids reading a bunch of messages just
5040                 by hitting shift-n for too long ;)
5041
5042 2006-05-29 [colin]      2.2.0cvs66
5043
5044         * src/summaryview.c
5045                 Remove useless g_warnings
5046
5047 2006-05-29 [colin]      2.2.0cvs65
5048
5049         * src/imap.c
5050                 Fix g_slist_append()s for performance
5051
5052 2006-05-29 [colin]      2.2.0cvs64
5053
5054         * src/compose.c
5055         * src/common/utils.c
5056                 Fix extraneous tab at start of addresses
5057         * src/mainwindow.c
5058                 Fix warnings (thanks to Fabien)
5059                 Fix crash at exit when composing messages 
5060                 exist
5061         * src/pop.c
5062                 Fix progress bar when deleting expired mails
5063                 Thanks to Hiro
5064         * src/summaryview.c
5065         * src/gtk/gtksctree.c
5066                 Fix re-sorting slowness
5067
5068 2006-05-29 [paul]       2.2.0cvs63
5069
5070         * src/mh.c
5071                 fetch full message when moving mails
5072                 from another mailbox, (fixed data loss
5073                 when filtering from IMAP to MH, introduced
5074                 in 2.2.0cvs57).
5075                 Thanks to Colin
5076
5077 2006-05-29 [mones]      2.2.0cvs62
5078
5079         * src/gtk/gtksctree.c
5080                 Unselect faster (patch by Colin)        
5081
5082 2006-05-26 [colin]      2.2.0cvs61
5083
5084         * src/summaryview.c
5085                 Unplug MSGINFO_UPDATE callback on delete too.
5086
5087 2006-05-26 [colin]      2.2.0cvs60
5088
5089         * src/foldersel.c
5090                 Fix bold in folder selection window with glib2.10
5091                 thanks Hiro
5092
5093 2006-05-26 [colin]      2.2.0cvs59
5094
5095         * src/procheader.c
5096                 Convert date only if necessary (and don't
5097                 try to convert from utf8 to utf8, too)
5098         * src/summaryview.c
5099                 Only set column's text if the column's 
5100                 displayed
5101
5102 2006-05-26 [colin]      2.2.0cvs58
5103
5104         * src/summaryview.c
5105         * src/gtk/gtkutils.c
5106                 Fix useless warning
5107
5108 2006-05-26 [colin]      2.2.0cvs57
5109
5110         * src/mainwindow.c
5111                 Make summaryview selectable as long as 
5112                 no message has focus
5113         * src/mh.c
5114                 Faster deletion (by implementing mh_remove_msgs)
5115                 Faster copy (avoid using mh_fetch_msg just to get
5116                 the filename)
5117                 Faster move (using move_file instead of copy_file
5118                 if MSG_IS_MOVE)
5119                 No progressbar if total number of mails to cp/mv 
5120                 is less than 100
5121         * src/summaryview.c
5122                 Fix removal from subject_table when mail gets moved
5123                 Faster deletion (g_slist_prepend instead of append)
5124         * src/gtk/gtksctree.c
5125                 Remove useless code
5126
5127 2006-05-25 [colin]      2.2.0cvs56
5128
5129         * src/common/ssl_certificate.c
5130                 Fix leak in expired cert check
5131
5132 2006-05-25 [colin]      2.2.0cvs55
5133
5134         * src/mh.c
5135                 Disable flags syncing on .mh_sequences - it
5136                 is buggy and marks mails read under unknown
5137                 conditions.
5138
5139 2006-05-25 [paul]
5140
5141         * 2.3.0-rc4 released
5142
5143 2006-05-24 [colin]      2.2.0cvs54
5144
5145         attention cvs users: if you manage to crash
5146         Sylpheed-Claws while moving, copying or deleting
5147         mails, we *are* interested in stack traces and
5148         valgrind logs. It looks stable, but one never
5149         knows...
5150
5151         * src/folder.c
5152                 Add progressbar for cache updates
5153         * src/folderutils.c
5154                 Optimize Mark all read in the current
5155                 folder
5156         * src/mh.c
5157                 Add progressbar for copy/move
5158         * src/procmsg.c
5159                 Optimize O(n^2) in copy/move
5160         * src/summaryview.c
5161         * src/gtk/gtksctree.c
5162                 Optimize O(n^2) algos
5163         * src/common/timing.h
5164                 Display ms instead of us
5165
5166 2006-05-24 [wwp]        2.2.0cvs53
5167
5168         * manual/fr/advanced.xml
5169                 updates to the French manual.
5170
5171 2006-05-24 [wwp]        2.2.0cvs52
5172
5173         * src/common/utils.c
5174                 MB translates to a 4-char string in Russian (thanks to Maxim Britov <maxim.britov@gmail.com>).
5175
5176 2006-05-24 [wwp]        2.2.0cvs51
5177
5178         * src/folderutils.c
5179                 fixed "mark all read" in MH folders (thanks to Colin).
5180
5181 2006-05-24 [paul]       2.2.0cvs50
5182
5183         * doc/man/sylpheed-claws.1
5184                 updated the man page
5185
5186 2006-05-23 [colin]      2.2.0cvs49
5187
5188         * src/folderview.c
5189         * src/imap.c
5190         * src/inc.c
5191         * src/mbox.c
5192         * src/messageview.c
5193         * src/news.c
5194         * src/send_message.c
5195         * src/summaryview.c
5196         * src/gtk/sslcertwindow.c
5197                 alertpanel fixes, by Fabien
5198
5199 2006-05-23 [colin]      2.2.0cvs48
5200
5201         * src/folder.c
5202         * src/folderview.c
5203         * src/msgcache.c
5204         * src/summaryview.c
5205         * src/gtk/gtksctree.c
5206         * src/gtk/gtksctree.h
5207                 More timings
5208                 Fix slow loading problem, which was caused by the
5209                 use of some gtk_ctree funcs and their use of
5210                 g_list_position while gtk_ctree_(un)link'ing.
5211                 Reap more functions from gtkctree.c to be sure we
5212                 use our (fast) version instead of theirs.
5213         * src/mh.c
5214                 Fix copy of unread mails
5215
5216
5217 2006-05-22 [wwp]        2.2.0cvs47
5218
5219         * manual/fr/advanced.xml
5220                 updated.
5221
5222 2006-05-22 [colin]      2.2.0cvs46
5223
5224         * src/filtering.c
5225                 Fix possible infinite loop. 'copy' is not a 
5226                 final action, so when encountering a 'copy',
5227                 we have to check if a previous one was set
5228                 and do it. In the same way, if we encounter
5229                 a 'move' we have to perform a possibly 
5230                 pending 'copy'. This will slow down filtering
5231                 on IMAP if move+copy or multiple copy actions
5232                 are to be done, but handling it via the batch
5233                 would be really too convoluted.
5234
5235 2006-05-22 [wwp]        2.2.0cvs45
5236
5237         * manual/fr/advanced.xml
5238         * manual/fr/faq.xml
5239         * manual/fr/glossary.xml
5240         * manual/fr/handling.xml
5241         * manual/fr/intro.xml
5242         * manual/fr/plugins.xml
5243         * manual/fr/sylpheed-claws-manual.xml
5244                 sync w/ the english manual: updates URIs, documented mailing-list
5245                 support, better explanation about the enabled/disabled feature
5246                 in filtering/processing rules by Paul.
5247
5248 2006-05-21 [colin]      2.2.0cvs44
5249
5250         * src/summaryview.c
5251                 Don't expand after building threads, but during
5252
5253 2006-05-21 [colin]      2.2.0cvs43
5254
5255         * src/procmsg.c
5256         * src/summaryview.c
5257                 More timing possibilities... For next time I have 
5258                 to find out how the hell some 3GHz computer takes
5259                 one minute to open a 30k folder...
5260
5261 2006-05-21 [colin]      2.2.0cvs42
5262
5263         * manual/pl/advanced.xml
5264         * manual/pl/faq.xml
5265         * manual/pl/glossary.xml
5266         * manual/pl/handling.xml
5267         * manual/pl/intro.xml
5268         * manual/pl/plugins.xml
5269         * manual/pl/sylpheed-claws-manual.xml
5270                 Polish manual updated by Pawel
5271
5272 2006-05-20 [colin]
5273
5274         * 2.3.0-rc3 released
5275
5276 2006-05-20 [colin]      2.2.0cvs41
5277
5278         * src/imap.c
5279                 Fix -rc2 problems:
5280                 - remove cache of moved messages from original folder
5281                 - apply new flags to messages even if they aren't appliable
5282                   via IMAP.
5283
5284 2006-05-20 [colin]
5285
5286         * 2.3.0-rc2 released
5287
5288 2006-05-19 [colin]      2.2.0cvs40
5289
5290         * src/imap.c
5291                 Don't issue SELECT in imap_change_flags
5292                 before having checked that we indeed have
5293                 some flags to change. MSG_POSTFILTERED for
5294                 example can't be used on IMAP.
5295                 Fixes bug #955 (copying messages between 
5296                 imap folders is extremely slow), which was
5297                 a regression.
5298
5299 2006-05-19 [colin]      2.2.0cvs39
5300
5301         * src/folder.c
5302         * src/folder.h
5303         * src/folderview.c
5304                 Try to fix bug #830 (Some unread messages 
5305                 get marked read in IMAP inbox):
5306                 - Prevent scanning a folder if it's being 
5307                   opened via the GUI
5308                 - Postpone opening via the GUI of a folder
5309                   currently scanned.
5310
5311
5312 2006-05-19 [wwp]        2.2.0cvs38
5313
5314         * manual/advanced.xml
5315                 fix English+typo (thanks to Paul).
5316
5317 2006-05-19 [wwp]        2.2.0cvs37
5318
5319         * manual/advanced.xml
5320         * manual/fr/advanced.xml
5321         * src/gtk/logwindow.c
5322         * src/prefs_common.c
5323         * src/prefs_common.h
5324                 added hidden prefs to allow customization of colors used in
5325                 protocol log window (useful for dark gtk+ themes).
5326
5327 2006-05-19 [wwp]        2.2.0cvs36
5328
5329         * ChangeLog
5330                 fix an old erroneous changelog entry (thanks to Fabien Vantard).
5331
5332 2006-05-19 [paul]       2.2.0cvs35
5333
5334         * src/textview.c
5335                 make Reply-To fully clickable
5336         * src/gtk/logwindow.c
5337                 more colouring (SMTP ESMTP)
5338         Both patches by Pawel Pekala
5339
5340 2006-05-19 [cleroy]     2.2.0cvs34
5341
5342         * src/mh.c
5343                 Don't update flags from current folder
5344                 Probably fixes bug #935 (Read Messages 
5345                 Revert to Being Marked as Unread)
5346
5347 2006-05-18 [colin]      2.2.0cvs33
5348
5349         * src/imap.c
5350                 Warning fix
5351         * src/compose.c
5352         * src/mainwindow.c
5353         * src/summaryview.c
5354         * src/toolbar.c
5355                 Allow replying to multiple emails
5356                 in multiple windows
5357         * src/mimeview.c
5358         * src/etpan/imap-thread.c
5359                 Leak fixes
5360
5361 2006-05-18 [paul]       2.2.0cvs32
5362
5363         * src/summaryview.c
5364                 keep Mailing-List menu refreshed
5365                 Thanks to Colin
5366
5367 2006-05-18 [paul]       2.2.0cvs31
5368
5369         * manual/advanced.xml
5370         * manual/faq.xml
5371         * manual/glossary.xml
5372         * manual/handling.xml
5373         * manual/intro.xml
5374         * manual/plugins.xml
5375         * manual/sylpheed-claws-manual.xml
5376                 update URLs
5377                 add info about mailing-list support
5378                 edit filtering info
5379         * src/wizard.c
5380         * src/common/defs.h
5381         * src/gtk/about.c
5382         * src/plugins/dillo_viewer/README
5383                 update URLs
5384
5385 2006-05-17 [wwp]        2.2.0cvs30
5386
5387         * manual/handling.xml
5388         * manual/fr/handling.xml
5389                 documented the ability to enabled/disable filtering/processing rules.
5390
5391 2006-05-17 [colin]      2.2.0cvs29
5392
5393         * src/main.c
5394                 Don't initialize g_thread subsystem if it's 
5395                 already done (thanks to Hiro)
5396         * src/mimeview.c
5397                 Fix saving of parts when there name can't be
5398                 converted from UTF-8.
5399
5400 2006-05-17 [paul]       2.2.0cvs28
5401
5402         * po/Makefile.in.in
5403                 fix config.status warning with autoconf 2.60
5404
5405 2006-05-17 [paul]       2.2.0cvs27
5406
5407         * po/POTFILES.in
5408                 add src/mbox.c
5409
5410 2006-05-17 [wwp]        2.2.0cvs26
5411
5412         * src/mainwindow.c
5413                 fix useless and potentially dangerous buffer walking (thanks to Colin).
5414
5415 2006-05-17 [wwp]        2.2.0cvs25
5416
5417         * src/plugins/demo/demo.c
5418                 updated product name in plugin demo (many plugins need to be
5419                 sync'ed w/ that change).
5420
5421 2006-05-17 [colin]      2.2.0cvs24
5422
5423         * src/mh.c
5424                 Fix leak
5425
5426 2006-05-16 [colin]      2.2.0cvs23
5427
5428         * src/mainwindow.c
5429                 Stupid me hit again. Fix cvs22.
5430
5431 2006-05-16 [colin]      2.2.0cvs22
5432
5433         * src/mainwindow.c
5434                 Fix bug #922 (sylpheed-claws crashed after 
5435                 pushing on Inbox folder)
5436
5437 2006-05-16 [colin]      2.2.0cvs21
5438
5439         * src/compose.c
5440                 Make From header be copy/paste/select-able
5441
5442 2006-05-16 [wwp]        2.2.0cvs20
5443
5444         * src/export.c
5445         * src/matcher.c
5446         * src/summaryview.c
5447         * src/etpan/imap-thread.c
5448                 fix some compiler warnings (thanks to Colin).
5449
5450 2006-05-16 [wwp]        2.2.0cvs19
5451
5452         * src/action.c
5453         * src/gedit-print.c
5454         * src/inc.c
5455         * src/mainwindow.c
5456         * src/mh.c
5457         * src/statusbar.c
5458         * src/send_message.c
5459         * src/summaryview.c
5460                 get rid of some gtk warning/errors at runtime (and avoid divide-by-0).
5461
5462 2006-05-15 [colin]      2.2.0cvs18
5463
5464         * src/procmsg.c
5465                 Fix automatic rule creation with List-Post
5466
5467 2006-05-15 [paul]       2.2.0cvs17
5468
5469         * tools/filter_conv_new.pl
5470                 updated for rule enabling/disabling
5471                 claws version >= 2.3.x required
5472
5473 2006-05-15 [cleroy]     2.2.0cvs16
5474
5475         * src/main.c
5476                 Revert test
5477
5478 2006-05-15 [cleroy]     2.2.0cvs15
5479
5480         * src/main.c
5481                 test
5482
5483 2006-05-15 [wwp]        2.2.0cvs14
5484
5485         * manual/pl/.cvsignore
5486                 ignore generated files.
5487
5488 2006-05-14 [wwp]        2.3.0-rc1
5489
5490         * 2.3.0-rc1 released
5491
5492 2006-05-13 [wwp]        2.2.0cvs13
5493
5494         * src/filtering.c
5495         * src/filtering.h
5496         * src/matcher.c
5497         * src/matcher_parser_lex.l
5498         * src/matcher_parser_parse.y
5499         * src/prefs_filtering.c
5500                 new feature: provide the ability to disable filtering and processing
5501                 rules. Patch by Fabien Vantard <fzzzzz@gmail.com>, w/ some minor
5502                 adaptations.
5503
5504 2006-05-13 [colin]      2.2.0cvs12
5505
5506         * src/compose.c
5507                 Remove useless if (a) b; else b;
5508                 Thanks to wwp
5509
5510 2006-05-13 [wwp]        2.2.0cvs11
5511
5512         * src/export.c
5513         * src/import.c
5514         * src/mainwindow.c
5515         * src/mbox.c
5516         * src/summaryview.c
5517         * src/summaryview.h
5518                 no more silent failures (or at least less ones) when importing
5519                 or exporting from/to mbox. Also start importing/exporting if
5520                 the necessary info is set.
5521
5522 2006-05-13 [wwp]        2.2.0cvs10
5523
5524         * RELEASE_NOTES
5525                 restored up-to-date release notes.
5526
5527 2006-05-13 [paul]       2.2.0cvs9
5528
5529         * po/nl.po
5530         * po/ru.po
5531                 updated by Tim Dijkstra and Pavlo Bohmat
5532
5533 2006-05-12 [colin]      2.2.0cvs8
5534
5535         * src/gtk/quicksearch.c
5536                 Add "k" as shortcut for "colorlabel". Patch
5537                 by ath42@users.sf.net.
5538
5539 2006-05-12 [paul]       2.2.0cvs7
5540
5541         * src/prefs_common.h
5542         * src/prefs_summaries.c
5543         * src/summaryview.c
5544                 when entering a folder also allow
5545                 going directly to first Marked message
5546
5547 2006-05-12 [paul]       2.2.0cvs6
5548
5549         * src/summaryview.c
5550                 always obey 'confirm before marking all
5551                 mails read' option
5552
5553 2006-05-12 [paul]       2.2.0cvs5
5554
5555         * src/textview.c
5556                 make Sender fully clickable
5557
5558 2006-05-12 [colin]      2.2.0cvs4
5559
5560         * src/compose.c
5561         * src/compose.h
5562                 Let From be editable
5563         * src/main.c
5564         * src/mh.c
5565                 Full support of .mh_sequences' Unseen seq
5566
5567 2006-05-12 [colin]      2.2.0cvs3
5568
5569         * src/folder.c
5570         * src/mainwindow.c
5571         * src/mainwindow.h
5572         * src/messageview.c
5573         * src/prefs_spelling.c
5574         * src/procheader.c
5575         * src/procmsg.c
5576         * src/procmsg.h
5577         * src/summaryview.c
5578         * src/toolbar.c
5579         * src/toolbar.h
5580                 Add contextual menu on Compose toolbar
5581                 button. Fixes bug #944 (Automatic
5582                 addresses not applied when changing account
5583                 from compose window)
5584                 add Mailing List support
5585                 based on the old 0.6.5claws25 patch by
5586                 Melvin Hadasht, with finishing touches
5587                 by Colin
5588                 Fix "ignore thread" when mails are threaded by
5589                 subject (and weren't ignored although appearing
5590                 in the thread).
5591                 GUI rework.
5592                 Both patches by Pawel.
5593
5594 2006-05-08 [paul]       2.2.0cvs2
5595
5596         * src/mainwindow.c
5597         * src/mainwindow.h
5598         * src/messageview.c
5599         * src/procheader.c
5600         * src/procmsg.c
5601         * src/procmsg.h
5602         * src/summaryview.c
5603                 add Mailing List support
5604                 based on the old 0.6.5claws25 patch by 
5605                 Melvin Hadasht, with finishing touches
5606                 by Colin
5607
5608 2006-05-08 [colin]      2.2.0cvs1
5609
5610         * src/mainwindow.c
5611         * src/toolbar.c
5612         * src/toolbar.h
5613                 Add contextual menu on Compose toolbar 
5614                 button. Fixes bug #944 (Automatic 
5615                 addresses not applied when changing account 
5616                 from compose window)
5617
5618 2006-05-08 [paul]       2.2.0
5619
5620         2.2.0 released
5621
5622 2006-05-08 [paul]       2.1.1cvs51
5623
5624         * po/cs.po
5625         * po/de.po
5626         * po/en_GB.po
5627         * po/fi.po
5628         * po/fr.po
5629         * po/pt_BR.po
5630         * po/sr.po
5631         * po/zh_CN.po
5632                 updated by Tim, Stephan Sachse, me, Flammie Pirinen,
5633                 Fabien Vantard, Frederico Goncalves Guimaraes,
5634                 Aleksandar Urosevic, and Ralgh Young
5635
5636 2006-05-12 [colin]      2.1.1cvs50
5637
5638         * po/cs.po
5639         * po/de.po
5640         * po/en_GB.po
5641         * po/es.po
5642         * po/fi.po
5643         * po/fr.po
5644         * po/pt_BR.po
5645         * po/sr.po
5646         * po/zh_CN.po
5647                 updated by Tim, Stephan Sachse, me, Flammie Pirinen,
5648                 Fabien Vantard, Frederico Goncalves Guimaraes,
5649                 Aleksandar Urosevic, Ricardo Mones, and Ralgh Young
5650
5651 2006-05-05 [colin]      2.1.1cvs49
5652
5653         * manual/Makefile.am
5654         * manual/pl/Makefile.am
5655         * manual/pl/account.xml
5656         * manual/pl/ack.xml
5657         * manual/pl/addrbook.xml
5658         * manual/pl/advanced.xml
5659         * manual/pl/faq.xml
5660         * manual/pl/glossary.xml
5661         * manual/pl/gpl.xml
5662         * manual/pl/handling.xml
5663         * manual/pl/intro.xml
5664         * manual/pl/keyboard.xml
5665         * manual/pl/plugins.xml
5666         * manual/pl/starting.xml
5667         * manual/pl/sylpheed-claws-manual.xml
5668         * manual/pl/dist/.cvsignore
5669         * manual/pl/dist/Makefile.am
5670         * manual/pl/dist/html/.cvsignore
5671         * manual/pl/dist/html/Makefile.am
5672         * manual/pl/dist/pdf/.cvsignore
5673         * manual/pl/dist/pdf/Makefile.am
5674         * manual/pl/dist/ps/.cvsignore
5675         * manual/pl/dist/ps/Makefile.am
5676         * manual/pl/dist/txt/.cvsignore
5677         * manual/pl/dist/txt/Makefile.am
5678                 Add the polish translation of the manual,
5679                 Authored by Pawel Pekala.
5680
5681 2006-05-05 [cleroy]     2.1.1cvs48
5682
5683         * src/main.c
5684                 Re-read matcherrc after loading plugins 
5685                 if some of them add folders.
5686
5687 2006-05-03 [colin]      2.1.1cvs47
5688
5689         * src/imap.c
5690                 I'm idiot
5691
5692 2006-05-03 [colin]      2.1.1cvs46
5693
5694         * src/imap.c
5695                 Be sure to have a session when
5696                 getting separator
5697
5698 2006-05-03 [colin]      2.1.1cvs45
5699
5700         * src/imap.c
5701         * src/imap.h
5702         * src/imap_gtk.c
5703                 Fix preventing renaming with namespace 
5704                 separator.
5705
5706 2006-05-01 [colin]      2.1.1cvs44
5707
5708         * src/action.c
5709                 Don't reload messageview when result of
5710                 action is piped.
5711
5712 2006-04-29 [colin]      2.1.1cvs43
5713
5714         * src/prefs_receive.c
5715         * src/plugins/spamassassin/spamassassin_gtk.c
5716         * src/plugins/clamav/clamav_plugin_gtk.c
5717                 GUI fixes by Pawel
5718
5719 2006-04-29 [colin]      2.1.1cvs42
5720
5721         * src/prefs_compose_writing.c
5722         * src/prefs_quote.c
5723                 Cleanups. Patch by Pawel
5724
5725 2006-04-28 [paul]       2.1.1cvs41
5726
5727         * src/matcher.c
5728                 fix returned quick search results when search
5729                 term contains an underscore.
5730                 Thanks to Colin
5731
5732 2006-04-28 [paul]       2.1.1cvs40
5733
5734         * src/prefs_message.c
5735         * src/prefs_receive.c
5736                 GUI cleanups
5737                 Patches by Pawel Pekala
5738
5739 2006-04-27 [colin]      2.1.1cvs39
5740
5741         * src/wizard.c
5742                 Differentiate subject Welcome from
5743                 window's title Welcome
5744
5745 2006-04-27 [paul]
5746
5747         2.2.0-rc1 released
5748
5749 2006-04-27 [paul]       2.1.1cvs38
5750
5751         * manual/advanced.xml
5752         * manual/fr/advanced.xml
5753                 add info about compose_no_markup hidden pref
5754
5755 2006-04-27 [paul]       2.1.1cvs37
5756
5757         * src/prefs_account.c
5758                 improve privacy labels
5759         * src/prefs_msg_colors.c
5760                 change some strings for translators' convenience
5761         * src/gtk/gtkutils.c
5762                 don't underline the link button text
5763
5764 2006-04-25 [colin]      2.1.1cvs36
5765
5766         * src/folder.c
5767                 Complete 2.1.1cvs33 (once more ;)
5768
5769 2006-04-25 [colin]      2.1.1cvs35
5770
5771         * src/editldap.c
5772                 Fix tooltip
5773
5774 2006-04-25 [cleroy]     2.1.1cvs34
5775
5776         * src/compose.c
5777         * src/gtk/gtkaspell.c
5778                 Fix crash on redirect (related to the return 
5779                 of the aspell menu in compose's toolbar)
5780         * src/prefs_msg_colors.c
5781                 Fix sensitivity widgets
5782         * src/image_viewer.c
5783         * src/gtk/pluginwindow.c
5784         * src/gtk/prefswindow.c
5785                 Change released signals to clicked (Fabien)
5786         * po/POTFILES.in
5787         * src/common/socket.c
5788         * src/plugins/spamassassin/spamassassin.c
5789                 Translate strings (Fabien)
5790
5791 2006-04-25 [paul]       2.1.1cvs33
5792
5793         * src/folder.c
5794         * src/folder.h
5795         * src/folderview.c
5796                 complete the fix of bug #912
5797                 Thanks to Colin
5798
5799 2006-04-25 [colin]      2.1.1cvs32
5800
5801         * src/news.c
5802                 Better progress bar
5803         * src/mimeview.c
5804         * src/summaryview.c
5805         * src/summaryview.h
5806                 Fix focus chain
5807                 Patches by Pawel Pekala
5808
5809 2006-04-24 [colin]      2.1.1cvs31
5810
5811         * src/compose.c
5812                 Fix compilation warnings (Fabien)
5813
5814 2006-04-24 [colin]      2.1.1cvs30
5815
5816         * src/addrindex.c
5817         * src/editldap.c
5818         * src/editldap_basedn.c
5819         * src/editldap_basedn.h
5820         * src/ldapctrl.c
5821         * src/ldapctrl.h
5822         * src/ldapquery.c
5823         * src/ldaputil.c
5824         * src/ldaputil.h
5825                 Fix bug #901 (LDAPS support)
5826
5827 2006-04-24 [colin]      2.1.1cvs29
5828
5829         * src/compose.c
5830                 Fix logic on error with send dialog on
5831         * src/imap.c
5832                 Fix compilation without libetpan, thanks
5833                 to Fabien
5834         * src/summaryview.c
5835                 Fix 'context-menu' key
5836
5837 2006-04-23 [colin]      2.1.1cvs28
5838
5839         * src/folder.c
5840                 Never free current's cache to free up 
5841                 memory. Fixes bug #912 (new count 
5842                 randomly set to message count)
5843
5844 2006-04-23 [colin]      2.1.1cvs27
5845
5846         * src/gtk/quicksearch.c
5847                 And remove printf...
5848
5849 2006-04-23 [colin]      2.1.1cvs26
5850
5851         * src/gtk/quicksearch.c
5852                 Fix replacing in quicksearch, and fix inserting
5853                 in the middle of the string. (introduced at 2.1.0cvs22)
5854
5855 2006-04-23 [colin]      2.1.1cvs25
5856
5857         * src/imap.c
5858                 Make sure uidnext is initialized in get_num_list
5859                 (not for stable, related to 2.1.1cvs8 and friends)
5860
5861 2006-04-23 [colin]      2.1.1cvs24
5862
5863         * src/imap.c
5864                 Output something when login is successful
5865                 too
5866
5867 2006-04-23 [colin]      2.1.1cvs23
5868
5869         * src/etpan/imap-thread.c
5870                 Better logging (line-per-line, hide data in fetch)
5871                 Fix a const warning
5872         * src/gtk/logwindow.c
5873         * src/gtk/logwindow.h
5874                 Better logging (color for input/output)
5875
5876 2006-04-21 [colin]      2.1.1cvs22
5877
5878         * src/gtk/quicksearch.c
5879                 On gtk+-2.8, use stock buttons in quicksearch
5880                 Based on a patch by Fabien and a design by Paul
5881
5882 2006-04-21 [colin]      2.1.1cvs21
5883
5884         * src/folderview.c
5885         * src/mainwindow.c
5886                 Fix occasional flicker in folderview
5887         * src/common/utils.c
5888                 Fix bug #943 (Incorrectly parsed email address 
5889                 list in short headers on message view and in 
5890                 printouts)
5891
5892 2006-04-20 [colin]      2.1.1cvs20
5893
5894         * src/imap.c
5895         * src/imap.h
5896         * src/prefs_account.c
5897                 Add ANONYMOUS auth for IMAP
5898
5899 2006-04-20 [paul]       2.1.1cvs19
5900
5901         * src/main.c
5902                 proper fix for 2.1.1cvs18
5903                 Thanks to Colin
5904
5905 2006-04-20 [paul]       2.1.1cvs18
5906
5907         * src/main.c
5908                 fix build warnings
5909
5910 2006-04-20 [paul]       2.1.1cvs17
5911
5912         * src/gtk/quicksearch.c
5913                 fix standard, non-extended Quick search,
5914                 was broken in 2.1.1cvs15.
5915                 Thanks to Colin.
5916
5917 2006-04-20 [colin]      2.1.1cvs16
5918
5919         * src/prefs_matcher.c
5920                 Fix values when reselecting a ~test
5921                 rule
5922
5923 2006-04-19 [colin]      2.1.1cvs15
5924
5925         * src/compose.c
5926         * src/compose.h
5927         * src/gtk/gtkaspell.c
5928         * src/gtk/gtkaspell.h
5929                 Put back Options menu in Spelling/
5930         * src/gtk/quicksearch.c
5931                 Don't search, and show error, if the
5932                 advanced search has a syntax error
5933
5934 2006-04-18 [colin]      2.1.1cvs14
5935
5936         * src/textview.c
5937                 Fix gdk warnings on set_cursor when textview
5938                 isn't visible
5939
5940 2006-04-18 [colin]      2.1.1cvs13
5941
5942         * src/gtk/gtksctree.c
5943                 Remove seemingly useless refresh that causes
5944                 flicker - watch this commit in case of 
5945                 problems before planned backport to stable
5946
5947 2006-04-18 [colin]      2.1.1cvs12
5948
5949         * src/imap.c
5950                 Factorize get/set_xml code
5951         * src/compose.c
5952         * src/prefs_account.c
5953         * src/prefs_account.h
5954         * src/procmsg.c
5955                 Add Encrypt to self option
5956
5957 2006-04-17 [colin]      2.1.1cvs11
5958
5959         * configure.ac
5960                 Fix search on encrpyt function on dragonfly
5961                 Patch by Jonathan Buschmann <jonthn@agmact.com>
5962
5963 2006-04-17 [colin]      2.1.1cvs10
5964
5965         * src/prefs_account.c
5966                 Be safe by default: remove mails from POP3
5967                 after 7 days, not immediately
5968
5969 2006-04-17 [colin]      2.1.1cvs9
5970
5971         * src/etpan/imap-thread.c
5972                 Fix build on DragonFly - patch by 
5973                 Jonathan Buschmann <jonthn@agmact.com>
5974
5975 2006-04-17 [colin]      2.1.1cvs8
5976
5977         * src/imap.c
5978                 Save uidnext between sessions
5979
5980 2006-04-17 [colin]      2.1.1cvs7
5981
5982         * src/imap.c
5983                 scan is required when uid validity changes
5984
5985 2006-04-17 [colin]      2.1.1cvs6
5986
5987         * src/folderview.c
5988                 Don't scan if not necessary, apart in current
5989                 folder and INBOX to fetch flags.
5990         * src/imap.c
5991                 Scan is necessary if unread count changes
5992
5993 2006-04-17 [colin]      2.1.1cvs5
5994
5995         * src/imap.c
5996                 ...But always fetch ANSWERED and DELETED flags for
5997                 INBOX, as filtering can happen on these flags.
5998
5999 2006-04-17 [colin]      2.1.1cvs4
6000
6001         * src/imap.c
6002                 Don't fetch REPLIED and DELETED flags when synchronising
6003                 flags with a closed folder. We only need UNSEEN and FLAGGED
6004                 to update the folderview.
6005
6006 2006-04-17 [colin]      2.1.1cvs3
6007
6008         * src/imap.c
6009                 Faster flag search when there are new mails 
6010                 in a folder. We can do a full search if the 
6011                 folder contains less messages than the new
6012                 list.
6013
6014 2006-04-17 [colin]      2.1.1cvs2
6015
6016         * po/cs.po
6017         * po/de.po
6018         * po/fr.po
6019         * po/nl.po
6020         * po/pt_BR.po
6021                 Update translations from stable branch
6022
6023 2006-04-17 [colin]      2.1.1cvs1
6024
6025         * configure.ac
6026                 Bump version to follow stable release
6027
6028 2006-04-16 [mones]      2.1.0cvs50
6029
6030         * po/es.po
6031                 Updated for release
6032
6033 2006-04-16 [colin]      2.1.0cvs49
6034
6035         * src/textview.c
6036                 Fix bgcolor not unset on gtk 2.8, while preventing warnings 
6037                 with gtk < 2.8. Thanks to Fabien Vantard.
6038
6039 2006-04-15 [colin]      2.1.0cvs48
6040
6041         * src/etpan/imap-thread.c
6042                 Fix bug #919 (libetpan: SEGV when connecting 
6043                 using command)
6044
6045 2006-04-14 [colin]      2.1.0cvs47
6046
6047         * src/main.c
6048                 Fix race on --select (should be done better)
6049
6050 2006-04-14 [wwp]        2.1.0cvs46
6051
6052         * src/send_message.c
6053                 enforce a check for domain in account prefs (a sending
6054                 error could be faced if domain was checked but no value set),
6055                 thanks to Colin.
6056
6057 2006-04-14 [colin]      2.1.0cvs45
6058
6059         * src/codeconv.c
6060                 when converting from unknown to unknown, if the
6061                 string is UTF8, don't convert it to the locale
6062                 (which breaks it)
6063
6064 2006-04-14 [colin]      2.1.0cvs44
6065
6066         * src/compose.c
6067                 Don't try to use ASCII for converting headers
6068                 (as done in body)
6069
6070 2006-04-14 [paul]       2.1.0cvs43
6071
6072         * src/crash.c
6073                 add locale/charset info to crash report
6074         * src/gtk/about.c
6075                 add wwp to doc team
6076                 replace 'e-mail' with preferred 'email'
6077         * src/gtk/authors.h
6078                 ensure contributors list is in alphabetical
6079                 order
6080
6081 2006-04-13 [colin]      2.1.0cvs42
6082
6083         * src/textview.c
6084                 Prevent gdk warnings
6085
6086 2006-04-13 [colin]      2.1.0cvs41
6087
6088         * src/common/ssl_certificate.c
6089         * src/common/ssl_certificate.h
6090         * src/gtk/sslcertwindow.c
6091                 Warn on expired certs, and display the expiration date
6092
6093 2006-04-13 [colin]      2.1.0cvs40
6094
6095         * src/plugins/spamassassin/spamassassin_gtk.c
6096                 Fix missing set_text on unix socket
6097
6098 2006-04-13 [wwp]        2.1.0cvs39
6099
6100         * manual/fr/advanced.xml
6101         * manual/fr/glossary.xml
6102                 applied new spam/ham/email lexicon (pourriel, courriel)
6103
6104 2006-04-13 [paul]       2.1.0cvs38
6105
6106         * src/plugins/pgpmime/plugin.c
6107                 remove the mention of S/MIME from the
6108                 description. This is now handled by the
6109                 S/MIME plugin.
6110
6111 2006-04-13 [paul]       2.1.0cvs37
6112
6113         * src/prefs_msg_colors.c
6114                 rework dialog
6115         * src/prefs_folder_item.c
6116         * src/prefs_spelling.c
6117                 add a tooltip to the colour selector buttons
6118
6119 2006-04-13 [wwp]        2.1.0cvs36
6120
6121         * manual/advanced.xml
6122         * manual/glossary.xml
6123         * manual/handling.xml
6124         * manual/keyboard.xml
6125         * manual/plugins.xml
6126         * manual/starting.xml
6127         * manual/fr/account.xml
6128         * manual/fr/ack.xml
6129         * manual/fr/addrbook.xml
6130         * manual/fr/advanced.xml
6131         * manual/fr/faq.xml
6132         * manual/fr/glossary.xml
6133         * manual/fr/gpl.xml
6134         * manual/fr/handling.xml
6135         * manual/fr/intro.xml
6136         * manual/fr/keyboard.xml
6137         * manual/fr/plugins.xml
6138         * manual/fr/starting.xml
6139         * manual/fr/sylpheed-claws-manual.xml
6140                 fixes to the manuals:
6141                  - summaryview -> Message List (same in French)
6142                  - translate key names
6143                  - fix French punctuation, use non-breakable spaces when
6144                    necessary, don't use &thinsp; which is not portable
6145                  - tell what maildir and mbox formats we support
6146
6147 2006-04-12 [wwp]        2.1.0cvs35
6148
6149         * src/prefs_toolbar.c
6150                 unified a replace button more,
6151                 patch by Fabien Vantard <fzzzzz@gmail.com>.
6152
6153 2006-04-12 [wwp]        2.1.0cvs34
6154
6155         * src/prefs_common.c
6156         * src/prefs_msg_colors.c
6157                 make default color labels translatable,
6158                 patch from Fabien Vantard <fzzzzz@gmail.com>,
6159                 thanks to Tim <timbrain@post.cz> for reporting.
6160
6161 2006-04-12 [wwp]        2.1.0cvs33
6162
6163         * manual/glossary.xml
6164         * manual/intro.xml
6165         * manual/plugins.xml
6166         * manual/starting.xml
6167         * manual/sylpheed-claws-manual.xml
6168         * manual/fr/.cvsignore
6169         * manual/fr/account.xml
6170         * manual/fr/ack.xml
6171         * manual/fr/addrbook.xml
6172         * manual/fr/advanced.xml
6173         * manual/fr/faq.xml
6174         * manual/fr/glossary.xml
6175         * manual/fr/handling.xml
6176         * manual/fr/intro.xml
6177         * manual/fr/keyboard.xml
6178         * manual/fr/plugins.xml
6179         * manual/fr/starting.xml
6180         * manual/fr/sylpheed-claws-manual.xml
6181                 various fixes: typos, missing .fr translations, punctuation,
6182                 capitalization, links, accents and some bad French more.
6183
6184 2006-04-12 [wwp]        2.1.0cvs32
6185
6186         * src/prefs_gtk.c
6187                 fix for bug #935: always store prefs files in UTF-8 (thanks
6188                 to Colin).
6189
6190 2006-04-11 [colin]      2.1.0cvs31
6191
6192         * src/compose.c
6193                 Fix inserting files not in utf8 when locale is utf8
6194
6195 2006-04-11 [colin]      2.1.0cvs30
6196
6197         * src/inc.c
6198                 Don't show error dialog when cancelling connection
6199                 Patch by Pawel
6200
6201 2006-04-11 [cleroy]     2.1.0cvs29
6202
6203         * src/compose.c
6204                 Implement multiple quote levels
6205         * src/prefs_common.c
6206                 Change a little bit the quote bgcolor for 2nd level
6207
6208 2006-04-11 [colin]      2.1.0cvs28
6209
6210         * src/gtk/about.c
6211                 Add locale and charset in the label
6212
6213 2006-04-10 [colin]      2.1.0cvs27
6214
6215         * src/compose.c
6216         * src/prefs_common.c
6217         * src/prefs_common.h
6218         * src/prefs_msg_colors.c
6219         * src/textview.c
6220                 Allow optional background color in quotes
6221                 Patch by Rafal Weglarz <tokoloshe@users.sf.net>
6222                 GTK+-2.8.x feature
6223
6224 2006-04-10 [colin]      2.1.0cvs26
6225
6226         * src/main.c
6227         * src/mainwindow.c
6228         * src/mainwindow.h
6229                 Implement --select
6230
6231 2006-04-10 [colin]      2.1.0cvs25
6232
6233         * manual/plugins.xml
6234         * manual/fr/plugins.xml
6235                 Document libcurl's proxy variables
6236
6237 2006-04-09 [colin]      2.1.0cvs24
6238
6239         * src/prefs_common.c
6240                 gettext() returns statically allocated stuff. We have
6241                 to strdup it in order to be able to free it.
6242
6243 2006-04-09 [colin]      2.1.0cvs23
6244
6245         * AUTHORS
6246         * src/gtk/authors.h
6247                 Add Alexei
6248
6249 2006-04-09 [colin]      2.1.0cvs22
6250
6251         * src/mainwindow.c
6252         * src/gtk/quicksearch.c
6253                 Fix bug #859 (problems with cyrilic input in 
6254                 search panel) - Patch by Alexey Illarionov 
6255                 <littlesavage@rambler.ru>
6256
6257 2006-04-09 [colin]      2.1.0cvs21
6258
6259         * src/prefs_customheader.c
6260                 I prefer removing then freeing rather than the contrary
6261                 (even if it doesn't change anything ;-)
6262         * src/prefs_account.c
6263                 Fix bug #933 (Crash re-entering the custom headers list 
6264                 dialog in accounts prefs)
6265                 The problem happened when cancelling the Account 
6266                 Preferences' dialogs - in which case we didn't do 
6267                 anything to the PrefsAccount * struct. In case of applying,
6268                 the old ac_prefs was replaced with the tmp_ac_prefs we were
6269                 working with in this dialog. The problem is that 
6270                 prefs_customheader.c, working on this tmp_ac_prefs, always
6271                 changes the ->customhdr_list pointer, even when cancelled. 
6272                 So in case of cancelling the prefs_account dialog, we still
6273                 have to update ->customhdr_list in the real account.
6274
6275 2006-04-08 [colin]      2.1.0cvs20
6276
6277         * manual/fr/glossary.xml
6278         * manual/fr/keyboard.xml
6279                 Forgot some headers :)
6280
6281 2006-04-08 [colin]      2.1.0cvs19
6282
6283         * manual/Makefile.am
6284         * manual/fr/Makefile.am
6285         * manual/fr/account.xml
6286         * manual/fr/ack.xml
6287         * manual/fr/addrbook.xml
6288         * manual/fr/advanced.xml
6289         * manual/fr/faq.xml
6290         * manual/fr/glossary.xml
6291         * manual/fr/gpl.xml
6292         * manual/fr/handling.xml
6293         * manual/fr/intro.xml
6294         * manual/fr/keyboard.xml
6295         * manual/fr/plugins.xml
6296         * manual/fr/starting.xml
6297         * manual/fr/sylpheed-claws-manual.xml
6298         * manual/fr/dist/.cvsignore
6299         * manual/fr/dist/Makefile.am
6300         * manual/fr/dist/html/.cvsignore
6301         * manual/fr/dist/html/Makefile.am
6302         * manual/fr/dist/pdf/.cvsignore
6303         * manual/fr/dist/pdf/Makefile.am
6304         * manual/fr/dist/ps/.cvsignore
6305         * manual/fr/dist/ps/Makefile.am
6306         * manual/fr/dist/txt/.cvsignore
6307         * manual/fr/dist/txt/Makefile.am
6308                 Add the french translation of the manual. Thanks to
6309                 Olivier Delhomme <olivier.delhomme@free.fr> for 
6310                 account.xml, ack.xml, addrbook.xml and advanced.xml
6311
6312 2006-04-08 [colin]      2.1.0cvs18
6313
6314         * manual/plugins.xml
6315         * manual/starting.xml
6316                 More fixes
6317
6318 2006-04-07 [colin]      2.1.0cvs17
6319
6320         * manual/faq.xml
6321         * manual/intro.xml
6322         * manual/keyboard.xml
6323                 Little fixes
6324
6325 2006-04-07 [colin]      2.1.0cvs16
6326
6327         * README
6328         * src/compose.c
6329         * src/prefs_common.c
6330         * src/prefs_common.h
6331                 Add hidden compose_no_markup pref
6332
6333 2006-04-07 [wwp]        2.1.0cvs15
6334
6335         * src/summary_search.c
6336         * .cvsignore
6337                 Bugfix: stop button was sticky when searching in an empty folder.
6338                 Applied curly brackets code style to the whole file (summary_search.c).
6339                 More files to ignore.
6340
6341 2006-04-07 [wwp]        2.1.0cvs14
6342
6343         * src/message_search.c
6344         * src/summary_search.c
6345                 changed default button when search bumps at file/folder
6346                 beginning or end, for convenience (thanks to Colin).
6347
6348 2006-04-07 [paul]       2.1.0cvs13
6349
6350         * src/plugins/dillo_viewer/dillo_prefs.c
6351                 avoid future potential for namespace collision
6352                 Patch by Colin
6353
6354 2006-04-06 [wwp]        2.1.0cvs12
6355
6356         * src/summary_search.c
6357                 Unify extended/advanced searches names (and thus factorize labels),
6358                 patch by Fabien Vantard <fzzzzz@gmail.com>.
6359
6360 2006-04-06 [wwp]        2.1.0cvs11
6361
6362         * src/folderview.c
6363         * src/prefs_themes.c
6364         * src/summaryview.c
6365                 Fixed some compilation warnings.
6366
6367 2006-04-06 [colin]      2.1.0cvs10
6368
6369         * manual/advanced.xml
6370                 Document the wizard template and how to deploy
6371                 Sylpheed-Claws effectively
6372
6373 2006-04-06 [colin]      2.1.0cvs9
6374
6375         * src/folderview.c
6376                 gettext patch to tell translators about _("#"),
6377                 by Maxim Britov
6378
6379 2006-04-06 [colin]      2.1.0cvs8
6380
6381         * src/textview.c
6382                 Fix invalid GtkTextBIter after clicking "Display as text"
6383
6384 2006-04-06 [mones]      2.1.0cvs7
6385
6386         * src/addr_compl.c
6387         * src/addrindex.c
6388         * src/addritem.c
6389         * src/codeconv.c
6390         * src/compose.c
6391         * src/filtering.c
6392         * src/folder.c
6393         * src/folder_item_prefs.c
6394         * src/folderview.c
6395         * src/localfolder.c
6396         * src/matcher.c
6397         * src/mimeview.c
6398         * src/prefs_msg_colors.c
6399         * src/prefs_spelling.c
6400         * src/prefs_themes.c
6401         * src/procmime.c
6402         * src/procmsg.c
6403         * src/stock_pixmap.c
6404         * src/summaryview.c
6405         * src/textview.c
6406         * src/toolbar.c
6407         * src/common/mgutils.c
6408         * src/common/prefs.c
6409         * src/common/ssl_certificate.c
6410         * src/gtk/colorlabel.c
6411         * src/gtk/quicksearch.c
6412         * src/plugins/pgpmime/pgpmime.c
6413         * src/plugins/spamassassin/spamassassin.c
6414                 Removed redundant NULL checks for g_free() calls.
6415                 Patch by Pawel Pekala.
6416
6417 2006-04-06 [mones]      2.1.0cvs6
6418
6419         * src/prefs_actions.c
6420         * src/prefs_filtering.c
6421         * src/prefs_filtering_action.c
6422         * src/prefs_matcher.c
6423         * src/prefs_template.c
6424         * src/gtk/gtkutils.c
6425         * src/gtk/gtkutils.h
6426                 Have a nice replace button. Patch by Pawel Pekala
6427
6428 2006-04-06 [colin]      2.1.0cvs5
6429
6430         * src/addressbook.c
6431                 Fix crash with empty columns
6432
6433 2006-04-05 [colin]      2.1.0cvs4
6434
6435         * src/wizard.c
6436         * src/prefs_gtk.c
6437                 Allow wizard customization with pre-filled values
6438
6439 2006-04-05 [colin]      2.1.0cvs3
6440
6441         * src/textview.c
6442         * src/mimeview.c
6443         * src/mimeview.h
6444                 Nicer messages in mimeview
6445
6446 2006-04-05 [colin]      2.1.0cvs2
6447
6448         * src/addressbook.c
6449         * src/prefs_summaries.c
6450                 i18n fix
6451
6452 2006-04-05 [colin]      2.1.0cvs1
6453
6454         * src/plugins/pgpcore/plugin.c
6455         * src/plugins/pgpcore/select-keys.c
6456         * src/plugins/pgpcore/select-keys.h
6457         * src/plugins/pgpcore/sgpgme.c
6458         * src/plugins/pgpcore/sgpgme.h
6459         * src/plugins/pgpinline/pgpinline.c
6460         * src/plugins/pgpinline/plugin.c
6461         * src/plugins/pgpmime/pgpmime.c
6462         * src/plugins/pgpmime/plugin.c
6463                 Factorize and generalize a bit 
6464                 Drop S/MIME signature verification from PGP/MIME
6465                 (adding it as another, more complete plugin)
6466
6467 2006-04-05 [paul]       2.1.0
6468
6469         2.1.0 released
6470
6471 2006-04-05 [paul]       2.0.0cvs186
6472
6473         * manual/advanced.xml
6474                 add info on colour labels
6475
6476 2006-04-05 [paul]       2.0.0cvs185
6477
6478         * po/bg.po
6479         * po/cs.po
6480         * po/de.po
6481         * po/el.po
6482         * po/en_GB.po
6483         * po/fi.po
6484         * po/fr.po
6485         * po/it.po
6486         * po/nl.po
6487         * po/pl.po
6488         * po/pt_BR.po
6489         * po/sr.po
6490         * po/zh_CN.po
6491                 updated by Yasen Pramatarov, Tim, Stephan Sachse, Stavros 
6492                 Giannouris, me, Tommi Pirinen, Fabien Vantard, Andrea 
6493                 Spadaccini, Tim Dijkstra, Quar, Frederico Goncalves 
6494                 Guimaraes, Aleksandar Urosevic, Ralgh Young
6495         * src/gtk/authors.h
6496         * tools/claws.i18n.status.pl
6497                 added new Bulgarian translator, Yasen Pramatarov <yasen@lindeas.com>
6498                 and new Czech translator, Tim <timbrain@post.cz>
6499
6500 2006-04-05 [mones]      2.0.0cvs184
6501
6502         * po/es.po
6503                 Updated translation
6504
6505 2006-04-05 [colin]      2.0.0cvs183
6506
6507         * src/gtk/quicksearch.c
6508                 Fix bug #929 (unnecessary reload in quick search bar)
6509
6510 2006-04-05 [colin]      2.0.0cvs182
6511
6512         * src/compose.c
6513                 Fix crash on Reply with no From:
6514                 Show signature and conversion error on queuing 
6515                 (but not sending)
6516         * src/mainwindow.c
6517         * src/summaryview.c
6518         * src/summaryview.h
6519                 Factorize threading code and make sure msginfo 
6520                 is not null when it comes from a GtkCTreeRow's 
6521                 data
6522         * src/gtk/gtkaspell.c
6523                 Check for necessary things
6524         * src/gtk/gtksctree.c
6525         * src/gtk/gtksctree.h
6526                 Reset anchor if necessary when removing node
6527
6528 2006-03-29 [colin]      2.0.0cvs181
6529
6530         * src/folderview.c
6531                 Warn for disabled IMAP accounts (due to lack of
6532                 libetpan). Breaks string-freeze - sorry - but it
6533                 is kind of important ;)
6534
6535 2006-03-28 [colin]      2.0.0cvs180
6536
6537         * src/gtk/gtkutils.c
6538         * src/gtk/gtkutils.h
6539                 Add a gtkut_get_link_btn() function that
6540                 creates a button which acts like an URI
6541         * src/prefs_themes.c
6542         * src/gtk/about.c
6543                 Use this function (factorizes codes)
6544         * src/common/defs.h
6545         * src/gtk/pluginwindow.c
6546                 Add a "Get more..." in the plugins window
6547
6548 2006-03-28 [colin]      2.0.0cvs179
6549
6550         * src/common/smtp.c
6551         * src/common/passcrypt.c
6552         * src/undo.c
6553                 Warning fixes. Patch by Pawel Pekala
6554
6555 2006-03-27 [colin]      2.0.0cvs178
6556
6557         * src/undo.c
6558                 Fix undoing by blocks with spaces
6559
6560 2006-03-27 [colin]      2.0.0cvs177
6561
6562         * src/textview.c
6563                 Set margin to 3px for headers
6564
6565 2006-03-27 [paul]
6566
6567         2.1.0-rc2 released
6568
6569 2006-03-27 [wwp]        2.0.0cvs176
6570
6571         * src/summaryview.c
6572                 don't reset quicksearch when updating the message list.
6573                 Thanks to Colin.
6574
6575 2006-03-26 [wwp]        2.0.0cvs175
6576
6577         * src/compose.c
6578                 use a unified border width ('other' tab in the compose window,
6579                 patch by Pawel Pekala).
6580
6581
6582 2006-03-26 [wwp]        2.0.0cvs174
6583
6584         * src/common/quoted-printable.c
6585         * src/addressbook.c
6586                 fixed some compilation warnings (incl. one reported by Pawel Pekala).
6587
6588 2006-03-26 [colin]      2.0.0cvs173
6589
6590         * src/quote_fmt_parse.y
6591                 Fix non-UTF8 date formats messing up the whole quote a 
6592                 little bit
6593
6594 2006-03-26 [colin]      2.0.0cvs172
6595
6596         * src/procheader.c
6597                 Make sure the date is UTF8 valid, or try to make it
6598                 so. IncrediMail is really IncrediStupid.
6599         * src/compose.c
6600                 Fix possible conversions. 
6601                 
6602
6603 2006-03-26 [colin]      2.0.0cvs171
6604
6605         * src/matcher.c
6606                 Fix corner cases in body search. This is still a
6607                 hack... It seems impossible to make it good and 
6608                 reasonably fast at the same time.
6609
6610 2006-03-26 [colin]      2.0.0cvs170
6611
6612         * src/summaryview.c
6613                 I think I killed the twilight zone bug!
6614                 summary_select_node() flushes GTK events in order
6615                 to be able to center the view. But this also 
6616                 flushes keypresses like Ctrl-Alt-U, so this can
6617                 call summary_show from summary_select_node (itself
6618                 called from summary_show, etc.). And the summaryview
6619                 has to be unlocked in this function. So just locking
6620                 while processing GTK events, and bailing if locked, 
6621                 should fix it.
6622                 Fixes bug #927 (SIGSEGV during Update Summary)
6623
6624 2006-03-25 [colin]      2.0.0cvs169
6625
6626         * src/matcher.c
6627                 Fix search in QP-encoded bodies
6628                 Fix utf-8 searches in bodies encoded in the
6629                 locale's encoding
6630         * src/common/quoted-printable.c
6631         * src/common/quoted-printable.h
6632                 Add a decode function that doesn't overwrite
6633                 the original pointer
6634                 
6635
6636 2006-03-24 [colin]      2.0.0cvs168
6637
6638         * src/action.c
6639         * src/summaryview.c
6640         * src/summaryview.h
6641                 Update message cache after action
6642                 Patch by H. Merijn Brand
6643         * src/prefs_msg_colors.c
6644                 Factorize label 
6645                 Patch by Fabien Vantard
6646         * src/plugins/spamassassin/spamassassin_gtk.c
6647                 Remove useless translation
6648                 Patch by Fabien Vantard
6649
6650 2006-03-23 [colin]      2.0.0cvs167
6651
6652         * src/common/ssl.c
6653                 Let 30 seconds to SSL_connect
6654
6655 2006-03-23 [wwp]        2.0.0cvs166
6656
6657         * src/summaryview.c
6658         * src/gtk/description_window.c
6659                 fix display of From/To column title when in appropriate folders (queue/sent/drafts)
6660                 and headers are translated; adjust description windows' width to fit their
6661                 contents. Patches by Pawel Pekala <c0rn@o2.pl>.
6662
6663 2006-03-23 [paul]       2.0.0cvs165
6664
6665         * src/common/utils.c
6666                 fix highlighting of URIs containing "()"
6667                 (2.0.0cvs164's reversal fixed)
6668                 Thanks to Colin.
6669
6670 2006-03-23 [paul]       2.0.0cvs164
6671
6672         * src/common/utils.c
6673                 revert patch, (postponing a fix), at 2.0.0cvs120
6674                 as it breaks more URIs than it fixes.
6675                 Allow '-' to be a terminating character in a URI
6676
6677 2006-03-22 [colin]      2.0.0cvs163
6678
6679         * configure.ac
6680                 Require libetpan 0.45
6681                 http://prdownloads.sourceforge.net/libetpan/libetpan-0.45.tar.gz?download
6682
6683 2006-03-22 [paul]       2.0.0cvs162
6684
6685         * src/editgroup.c
6686                 replace '<-' and '->' buttons with GTK_STOCK graphical
6687                 buttons
6688         * src/summary_search.c
6689                 don't offer '...' for translation
6690                 add a tooltip to advanced search '...' button
6691         * src/gtk/quicksearch.c
6692                 don't offer '...' for translation
6693
6694 2006-03-21 [colin]      2.0.0cvs161
6695
6696         * src/compose.c
6697                 Fix middle-click pasting (insert at click
6698                 position instead of cursor position, don't
6699                 remove existing selection and allow pasting
6700                 our own selection)
6701         * src/addressbook.c
6702                 "LDAP Server" -> "LDAP servers"
6703
6704 2006-03-21 [wwp]        2.0.0cvs160
6705
6706         * src/etpan/imap-thread.c
6707                 fix for bug #925 (IMAP+SSL crash), thanks to Colin.
6708
6709 2006-03-20 [colin]      2.0.0cvs159
6710
6711         * src/summaryview.c
6712                 Don't reload summaryview after an execute with no
6713                 move action
6714
6715 2006-03-19 [colin]      2.0.0cvs158
6716
6717         * src/addressbook.c
6718                 and put groups at the top, always
6719
6720 2006-03-19 [colin]      2.0.0cvs157
6721
6722         * src/addressbook.c
6723                 Order groups before names, as previously
6724
6725 2006-03-19 [colin]      2.0.0cvs156
6726
6727         * src/addressbook.c
6728                 - Sort case-unsensitive
6729                 - Put the sort arrow at opening too
6730
6731 2006-03-19 [wwp]        2.0.0cvs155
6732
6733         * src/addressbook.c
6734                 allow sorting by name/email/remarks, ensure that right-pane's contents
6735                 matches the left-pane selection (cleared when appropriate).
6736                 Patch by Pawel Pekala <c0rn@o2.pl>.
6737
6738 2006-03-18 [colin]      2.0.0cvs154
6739
6740         * src/textview.c
6741                 Fix text cursor ;)
6742
6743 2006-03-18 [colin]      2.0.0cvs153
6744
6745         * src/gtk/filesel.c
6746                 Make sure we hide the preview if we didn't get
6747                 a filename
6748
6749 2006-03-18 [colin]      2.0.0cvs152
6750
6751         * src/summaryview.c
6752                 Set cursor to watch for execution (fixes lack
6753                 of watch-cursor when dnd'ing hundreds of mails)
6754         * src/gtk/filesel.c
6755                 Check that mime type is 'image/*' before updating
6756                 the preview (maybe fix crashes on Solaris+gtk2.8.4 ?)
6757
6758 2006-03-18 [colin]      2.0.0cvs151
6759
6760         * src/mainwindow.c
6761         * src/textview.c
6762         * src/textview.h
6763                 Put a watch cursor in textview too when the mainwindow's
6764                 cursor in a watch
6765
6766 2006-03-18 [colin]      2.0.0cvs150
6767
6768         * src/folder.c
6769                 Change wrong asserts to simple tests
6770
6771 2006-03-17 [colin]      2.0.0cvs149
6772
6773         * src/mainwindow.c
6774         * src/mainwindow.h
6775         * src/prefs_msg_colors.c
6776         * src/summaryview.c
6777         * src/summaryview.h
6778         * src/gtk/colorlabel.c
6779         * src/gtk/colorlabel.h
6780                 Add a color label menu in the main menubar
6781                 Add (fixed) accels Ctrl-{0-7} to change the color
6782                 They have to be fixed because the menu's dynamic,
6783                 the items are complex widgets, hence we can't use
6784                 a GtkItemFactory.
6785
6786
6787 2006-03-17 [wwp]        2.0.0cvs148
6788
6789         * src/compose.c
6790                 rollback few lines from my previous commit (those lines come from
6791                 a pending patch, accidentally commited, even if neutral as they are
6792                 commented out).
6793
6794 2006-03-17 [wwp]        2.0.0cvs147
6795
6796         * src/compose.c
6797                 fix a compilation warning (wrong return type, introduced w/ cvs143), and
6798                 applied code style/indentation to the modified function.
6799
6800 2006-03-17 [wwp]        2.0.0cvs146
6801
6802         * src/procmsg.c
6803         * src/compose.c
6804                 fix for bug #908: some IMAP servers dislike \x7f char in the RMID (thanks to Colin).
6805
6806 2006-03-17 [paul]
6807
6808         2.1.0-rc1 released
6809
6810 2006-03-17 [paul]       2.0.0cvs145
6811
6812         * src/main.c
6813                 addressbook_read_file() was called twice
6814         * src/textview.c
6815                 X-Mailer highlighting
6816
6817 2006-03-16 [colin]      2.0.0cvs144
6818
6819         * src/sourcewindow.c
6820         * src/sourcewindow.h
6821                 And the last one, in source window.
6822
6823 2006-03-16 [colin]      2.0.0cvs143
6824
6825         * src/compose.c
6826         * src/compose.h
6827                 Fix the same stuff in compose
6828
6829 2006-03-16 [colin]      2.0.0cvs142
6830
6831         * src/messageview.c
6832                 Complete the previous messageview crash fix
6833
6834 2006-03-16 [colin]      2.0.0cvs141
6835
6836         * src/procmsg.h
6837         * src/procmsg.c
6838         * src/folder.c
6839                 Fix POSTPROCESSING hook
6840                 Patch by H. Merijn Brand
6841
6842         * src/procmime.c
6843         * src/procmime.h
6844                 Parse Content-Location
6845
6846         * src/toolbar.c
6847         * src/messageview.c
6848         * src/messageview.h
6849                 Don't crash when a top-level MessageView has
6850                 been closed on us. Same problematic than
6851                 yesterday's quicksearch issue.
6852
6853 2006-03-15 [colin]      2.0.0cvs140
6854
6855         * src/gtk/quicksearch.c
6856                 Fix a bitchy race we didn't think about when we
6857                 added quicksearch cancellation:
6858                 If the search is not on cached fields, for example
6859                 body_part matchcase "stuff"
6860                 the matcher code has to get the whole message. If
6861                 we're on IMAP, that can be slow, and in order to
6862                 be non-blocking, the IMAP code idle loop processes
6863                 gtk events too. So it is possible to cancel a
6864                 quicksearch while the matcher is getting the mail's
6865                 body. After matcher got its body, it will start to
6866                 iterate over the matcher list that the Quicksearch's
6867                 clear_search_cb() just freed via prepare_matcher().
6868                 SIGSEGV ensues.
6869                 The fix consists of guarding the matcherlist_match()
6870                 call with a boolean 'matching'. If we reset the
6871                 quicksearch while matching is TRUE, we don't free
6872                 the matcherlist anymore like we did, but we set
6873                 another new flag, deferred_free, to TRUE. Then,
6874                 in quicksearch_match(), just after returning from
6875                 matcherlist_match() and unsetting the matching flag,
6876                 we check the deferred_free flag and do the
6877                 prepare_matcher() (which does the matcherlist_free)
6878                 for real, so we free the matcherlist once it's not
6879                 used anymore.
6880                 As all of this runs via the glib main loop, we
6881                 luckily don't need a mutex.
6882         * src/summaryview.c
6883                 Also, show progress while searching.
6884
6885
6886 2006-03-14 [colin]      2.0.0cvs139
6887
6888         * src/alertpanel.c
6889                 Make alertpanel_is_open non-static
6890
6891 2006-03-14 [colin]      2.0.0cvs138
6892
6893         * src/prefs_spelling.c
6894                 Cleanups - Fabien Vantard
6895
6896 2006-03-14 [wwp]        2.0.0cvs137
6897
6898         * src/main.c
6899                 code style normalization (curly braces, indentation).
6900
6901 2006-03-14 [wwp]        2.0.0cvs137
6902
6903         * src/main.c
6904                 code style (braces, indentation)
6905
6906 2006-03-12 [paul]       2.0.0cvs136
6907
6908         * src/prefs_common.c
6909                 trans_hdr defaults to FALSE to be RFC-savvy
6910         * src/prefs_summaries.c
6911                 add a tooltip to the trans_hdr option
6912                 
6913
6914 2006-03-12 [paul]       2.0.0cvs135
6915
6916         * src/prefs_matcher.c
6917                 give a little more width to the combos
6918         * src/prefs_display_header.c
6919         * src/textview.c
6920                 translate headers if prefs_common.trans_hdr
6921                 is TRUE
6922
6923         Patches by Pawel Pekala
6924
6925 2006-03-12 [paul]       2.0.0cvs134
6926
6927         * src/plugins/clamav/clamav_plugin.c
6928         * src/plugins/dillo_viewer/dillo_viewer.c
6929         * src/plugins/pgpcore/plugin.c
6930         * src/plugins/pgpinline/plugin.c
6931         * src/plugins/pgpmime/plugin.c
6932         * src/plugins/spamassassin/spamassassin.c
6933                 update/add to descriptions
6934         * src/plugins/spamassassin/spamassassin_gtk.c
6935                 fixes to the english, remove superfluous
6936                 tooltips, clean up a little
6937
6938 2006-03-12 [paul]       2.0.0cvs133
6939
6940         * src/compose.c
6941                 fix Bug 924, 'Account combo box shows up wrong 
6942                 if & is in account name'
6943
6944 2006-03-11 [colin]      2.0.0cvs132
6945
6946         * src/summaryview.c
6947                 Revert 2.0.0cvs84 which reverted 1.9.6cvs23 which
6948                 messed up shift-selection because is slows down
6949                 moving around summaryview. thanks -users
6950
6951 2006-03-10 [colin]      2.0.0cvs131
6952
6953         * src/plugins/spamassassin/spamassassin_gtk.c
6954                 Put back Paul's engrish fixes
6955
6956 2006-03-10 [colin]      2.0.0cvs130
6957
6958         * src/plugins/spamassassin/spamassassin.c
6959         * src/plugins/spamassassin/spamassassin.h
6960         * src/plugins/spamassassin/spamassassin_gtk.c
6961                 Cleanup SA prefs page (more)
6962                 Patch by Fabien Vantard
6963
6964 2006-03-10 [paul]       2.0.0cvs129
6965
6966         * src/prefs_msg_colors.c
6967         * src/prefs_spelling.c
6968                 widget sensitivity
6969
6970 2006-03-09 [mones]      2.0.0cvs128
6971
6972         * po/es.po
6973                 Update for next RC
6974
6975 2006-03-09 [wwp]        2.0.0cvs127
6976
6977         * configure.ac
6978                 revert accidental commit (requirement for libetpan 0.43), this time
6979                 not in HEAD.
6980
6981 2006-03-09 [wwp]        2.0.0cvs125
6982
6983         * configure.ac
6984                 revert accidental commit (requirement for libetpan 0.43)
6985
6986 2006-03-09 [paul]       2.0.0cvs126
6987
6988         * src/prefs_receive.c
6989                 remove useless frame
6990                 replace 'incorporation' with 'receiving'
6991         * src/plugins/clamav/clamav_plugin_gtk.c
6992         * src/plugins/spamassassin/spamassassin_gtk.c
6993                 improve widget sensitivity
6994                 fix a bit his engrish
6995
6996 2006-03-09 [wwp]        2.0.0cvs125
6997
6998         * src/addressadd.c
6999         * src/foldersel.c
7000         * src/prefs_common.c
7001         * src/prefs_common.h
7002                 remember some more windows' sizes (add to addressbook and
7003                 select folder).
7004
7005 2006-03-09 [paul]       2.0.0cvs124
7006
7007         * src/plugins/pgpcore/prefs_gpg.c
7008                 normalise construction of dialogue
7009
7010 2006-03-09 [paul]       2.0.0cvs123
7011
7012         * src/plugins/trayicon/Makefile.am
7013                 add missing slash
7014
7015 2006-03-08 [colin]      2.0.0cvs122
7016
7017         * src/plugins/trayicon/Makefile.am
7018                 Fix build in separate dir 
7019                 Patch by Bamanzi <bamanzi@gmail.com>
7020
7021 2006-03-08 [colin]      2.0.0cvs121
7022
7023         * src/procmsg.c
7024                 Batch move and copies from summaryview with delayed execution
7025                 too
7026
7027 2006-03-07 [paul]       2.0.0cvs120
7028
7029         * src/common/utils.c
7030                 fix highlighting of URIs containing "()"
7031                 Patch by Pawel Pekala
7032
7033 2006-03-07 [paul]       2.0.0cvs119
7034
7035         * src/folder.c
7036         * src/folder.h
7037         * src/folderview.c
7038                 immediately do alphabetical resort when
7039                 changing a folder's name
7040                 Patch by Pawel Pekala
7041
7042 2006-03-07 [paul]       2.0.0cvs118
7043
7044         * src/news.c
7045         * src/news_gtk.c
7046                 when unsubscribing a newsgroup, remove the
7047                 folder and msgs in .sylpheed-claws/newscache
7048                 Patch by Pawel Pekala <c0rn@gazeta.pl>
7049
7050 2006-03-07 [paul]       2.0.0cvs117
7051
7052         * src/textview.c
7053                 fix wrong Fake URL Warning
7054                 Thanks to Hiro
7055
7056 2006-03-07 [colin]      2.0.0cvs116
7057
7058         * src/imap.c
7059                 Return immediately when password dialog was
7060                 cancelled
7061         * src/gtk/inputdialog.c
7062                 Allow empty strings for passwords
7063
7064
7065 2006-03-06 [colin]      2.0.0cvs115
7066
7067         * src/imap.c
7068                 Prevent double-timeouts when connection fails
7069
7070 2006-03-06 [colin]
7071
7072         2.0.1-rc1 released
7073
7074 2006-03-06 [colin]      2.0.0cvs114
7075
7076         * src/imap.c
7077                 Refresh session during potentially long
7078                 operations
7079
7080 2006-03-06 [wwp]        2.0.0cvs113
7081
7082         * src/prefs_msg_colors.h
7083                 forgot that one (custom color labels).
7084
7085 2006-03-06 [wwp]        2.0.0cvs112
7086
7087         * src/prefs_common.c
7088         * src/prefs_common.h
7089         * src/prefs_msg_colors.c
7090         * src/summaryview.c
7091         * src/summaryview.h
7092         * src/gtk/colorlabel.c
7093         * src/gtk/colorlabel.h
7094                 colors in messages list are now customizable. Color values and names can
7095                 be changed in "Configuration/Preferences/Display/Colors/Color labels".
7096                 Thanks to Paul and Colin for their help with this longstanding patch!
7097
7098 2006-03-06 [wwp]        2.0.0cvs111
7099
7100         * src/textview.c
7101                 don't crash if (x)face is bad.
7102
7103 2006-03-05 [paul]       2.0.0cvs110
7104
7105         * AUTHORS
7106         * configure.ac
7107         * src/Makefile.am
7108         * src/common/Makefile.am
7109         * src/common/utils.h
7110         * src/etpan/imap-thread.c
7111         * src/gtk/authors.h
7112         * src/plugins/clamav/Makefile.am
7113         * src/plugins/demo/Makefile.am
7114         * src/plugins/dillo_viewer/Makefile.am
7115         * src/plugins/pgpcore/Makefile.am
7116         * src/plugins/pgpcore/passphrase.c
7117         * src/plugins/pgpinline/Makefile.am
7118         * src/plugins/pgpmime/Makefile.am
7119         * src/plugins/spamassassin/Makefile.am
7120         * src/plugins/trayicon/Makefile.am
7121                 fix builiding on cygwin
7122                 Patch by Ralgh Young <bamanzi@gmail.com>
7123
7124 2006-03-04 [wwp]        2.0.0cvs109
7125
7126         * manual/keyboard.xml
7127                 fix mixed up/down keys.
7128
7129 2006-03-04 [wwp]        2.0.0cvs108
7130
7131         * README
7132         * INSTALL
7133                 updated links to SpamAssassin.
7134
7135 2006-03-04 [wwp]        2.0.0cvs107
7136
7137         * manual/plugins.xml
7138         * src/plugins/spamassassin/README
7139                 updated SpamAssassin plugin docs to reflect new functional additions
7140                 (also fix/update/documents few technical stuff more, see the README).
7141
7142 2006-03-04 [wwp]        2.0.0cvs106
7143
7144         * src/prefs_message.c
7145                 normalized capitalization of message-prefs paths.
7146
7147 2006-03-04 [wwp]        2.0.0cvs105
7148
7149         * manual/advanced.xml
7150                 typo.
7151
7152 2006-03-03 [colin]      2.0.0cvs104
7153
7154         * src/plugins/clamav/clamav_plugin_gtk.c
7155                 Rework prefs page, patch by Fabien 
7156
7157 2006-03-03 [colin]      2.0.0cvs103
7158
7159         * src/plugins/clamav/clamav_plugin.c
7160                 Set error on all errors
7161
7162 2006-03-03 [colin]      2.0.0cvs102
7163
7164         * src/common/plugin.c
7165                 Initialize error to avoid crashing when a plugin fails
7166                 without setting error
7167
7168 2006-03-02 [wwp]        2.0.0cvs101
7169
7170         * configure.ac
7171                 fixed linker flags for libetpan support on Cygwin
7172                 (thanks to H.Merijn Brand).
7173
7174 2006-03-02 [wwp]        2.0.0cvs100
7175
7176         * src/addressbook.c
7177                 fix some AB error messages: one for punctuation and
7178                 one wrongly duplicate (thanks, maxbritov).
7179
7180 2006-03-02 [wwp]        2.0.0cvs99
7181
7182         * src/plugins/spamassassin/spamassassin.c
7183                 make sync calls to sa-learn/spamc to prevent
7184                 system (whatever local or client/server) overload.
7185
7186 2006-03-02 [colin]      2.0.0cvs98
7187
7188         * src/summaryview.c
7189                 Put the spam icon in the status column instead of the
7190                 mark one
7191
7192 2006-03-01 [colin]      2.0.0cvs97
7193
7194         * src/plugins/spamassassin/spamassassin.c
7195                 Fix segfault (g_file_set_contents fails for some 
7196                 reason and err==0x2f. Can't find out why with
7197                 valgrind, using working function :-)
7198
7199 2006-03-01 [colin]      2.0.0cvs96
7200
7201         * src/inc.c
7202                 Offline overriding: let 'No' be cached only 3 seconds
7203
7204 2006-03-01 [colin]      2.0.0cvs95
7205
7206         * src/addr_compl.c
7207         * src/addrbook.c
7208         * src/addressbook.c
7209         * src/addrindex.c
7210         * src/folder_item_prefs.c
7211         * src/headerview.c
7212         * src/imap.c
7213         * src/inc.c
7214         * src/ldif.c
7215         * src/mainwindow.c
7216         * src/mh.c
7217         * src/msgcache.c
7218         * src/prefs_common.h
7219         * src/prefs_msg_colors.c
7220         * src/procheader.c
7221         * src/procheader.h
7222         * src/procmime.c
7223         * src/procmsg.c
7224         * src/procmsg.h
7225         * src/send_message.h
7226         * src/simple-gettext.c
7227         * src/summaryview.c
7228         * src/summaryview.h
7229         * src/syldap.c
7230         * src/textview.c
7231         * src/undo.c
7232         * src/common/ssl_certificate.c
7233         * src/common/utils.c
7234         * src/gtk/colorsel.c
7235         * src/gtk/gtksctree.c
7236         * src/gtk/gtkshruler.c
7237         * src/plugins/trayicon/trayicon.c
7238                 #if 0 goes to /dev/null
7239
7240 2006-03-01 [colin]      2.0.0cvs94
7241
7242         * src/compose.c
7243         * src/imap.c
7244         * src/inc.c
7245         * src/inc.h
7246         * src/messageview.c
7247         * src/news.c
7248         * src/plugins/spamassassin/spamassassin.c
7249                 Allow to add information in the "working offline"
7250                 window
7251
7252 2006-03-01 [wwp]        2.0.0cvs93
7253
7254         * src/plugins/spamassassin/spamassassin.c
7255                 fixed spamc invocation: use a tricky temporary mini shell wrapper
7256                 'cause it seems that calling `spamc ... < inputfile` with
7257                 g_spawn_(a)sync simply.. erm doesn't work :-).
7258
7259 2006-03-01 [wwp]        2.0.0cvs92
7260
7261         * src/toolbar.c
7262         * src/toolbar.h
7263                 simplify the adding of spam/ham button to the messageview toolbar
7264                 (it gets more clear now that the same button will be "Mark as spam"
7265                 or "Mark as ham" according to the current message status,
7266                 thanks to Colin).
7267
7268 2006-03-01 [wwp]        2.0.0cvs91
7269
7270         * src/messageview.c
7271         * src/procmsg.c
7272         * src/procmsg.h
7273         * src/summaryview.c
7274         * src/plugins/spamassassin/spamassassin.c
7275         * src/plugins/spamassassin/spamassassin.h
7276                 make learner callbacks return a status (0 for ok),
7277                 handle it in main code to avoid setting flags when learning failed,
7278                 don't learn on TCP if offline in spamassassin,
7279                 thanks to Colin.
7280
7281                 
7282
7283 2006-03-01 [wwp]        2.0.0cvs90
7284
7285         * src/compose.c
7286                 some work around the compose window's account menu,
7287                 patch by Fabien Vantard.
7288
7289 2006-03-01 [wwp]        2.0.0cvs89
7290
7291         * src/plugins/spamassassin/spamassassin.c
7292                 fixed bad logics, was using spamc in local mode and sa-learn
7293                 in remote mode (thanks, Colin).
7294
7295 2006-03-01 [wwp]        2.0.0cvs88
7296
7297         * src/plugins/spamassassin/spamassassin.c
7298         * src/plugins/spamassassin/spamassassin.h
7299         * src/plugins/spamassassin/spamassassin_gtk.c
7300                 made processing of emails w/ sa-plugin an option (default is TRUE),
7301                 fixed Engrish some tooltips, capitalization of some debug messages
7302                 and warnings. The spamassassin plugin now provides two separate
7303                 services: process emails upon incorporation and spamd training.
7304                 Both services (un)register independently but use some common
7305                 plugin settings (transport settings, spam storage location).
7306
7307 2006-02-28 [wwp]        2.0.0cvs87
7308
7309         * src/plugins/spamassassin/spamassassin.c
7310                 fix async flag to spamc cmdline execution (batch exec should
7311                 be asynchronous).
7312
7313 2006-02-27 [wwp]        2.0.0cvs86
7314
7315         * src/plugins/spamassassin/spamassassin.c
7316         * src/plugins/spamassassin/spamassassin.h
7317         * src/plugins/spamassassin/spamassassin_gtk.c
7318                 - added the ability to learn a remote spamassassin server (spamd),
7319                 using spamc.
7320                 - added the spamassassin option 'username', that applies to all
7321                 spamassassin operations (filtering, learning, local or remote).
7322                 The default username is the current unix user (if left blank
7323                 from gtk prefs or config file).
7324                 - commented out some unused code (notebook widget), removed unused
7325                 layout (hbox1).
7326                 - make more widgets sensitive to the transport type.
7327
7328 2006-02-27 [colin]      2.0.0cvs85
7329
7330         * src/plugins/spamassassin/spamassassin.c
7331                 Fix sa-learn call when offline
7332
7333 2006-02-27 [colin]      2.0.0cvs84
7334
7335         * configure.ac
7336         * src/Makefile.am
7337         * src/mainwindow.c
7338         * src/mainwindow.h
7339         * src/messageview.c
7340         * src/messageview.h
7341         * src/prefs_toolbar.c
7342         * src/procmsg.c
7343         * src/stock_pixmap.c
7344         * src/stock_pixmap.h
7345         * src/summaryview.c
7346         * src/toolbar.c
7347         * src/toolbar.h
7348         * src/pixmaps/ham_btn.xpm
7349         * src/pixmaps/spam.xpm
7350         * src/pixmaps/spam_btn.xpm
7351         * src/plugins/spamassassin/spamassassin.c
7352                 Add button in toolbar for spam learning
7353                 Fix a few bugs from the last related commit
7354                 Revert 1.9.6cvs23 which messed up shift-selection
7355
7356 2006-02-24 [colin]      2.0.0cvs83
7357
7358         * src/procmsg.c
7359         * src/summaryview.c
7360         * src/summaryview.h
7361         * src/plugins/spamassassin/spamassassin.c
7362         * src/plugins/spamassassin/spamassassin.h
7363         * src/plugins/spamassassin/spamassassin_gtk.c
7364                 Unregister learner when spamassassin is either
7365                 disabled or over tcp
7366
7367 2006-02-24 [colin]      2.0.0cvs82
7368
7369         * src/Makefile.am
7370         * src/mainwindow.c
7371         * src/mainwindow.h
7372         * src/procmsg.c
7373         * src/procmsg.h
7374         * src/stock_pixmap.c
7375         * src/stock_pixmap.h
7376         * src/summaryview.c
7377         * src/summaryview.h
7378         * src/gtk/icon_legend.c
7379         * src/pixmaps/spam.xpm  ** NEW FILE **
7380         * src/plugins/spamassassin/spamassassin.c
7381         * src/plugins/spamassassin/spamassassin_gtk.c
7382                 Add spam learning interface (Mark/Mark as 
7383                 (spam|ham) menus)
7384
7385 2006-02-24 [wwp]        2.0.0cvs81
7386
7387         * src/compose.c
7388         * src/compose.h
7389         * src/filtering.c
7390                 hide compose window when sending message in batch mode
7391                 (filtering: forward and redirect). Also fixed a wrong
7392                 value returned when sending failed, neutral anyway.
7393                 (Colin, me) 
7394
7395 2006-02-24 [wwp]        2.0.0cvs80
7396
7397         * src/mainwindow.c
7398                 use GTK+'s stock quit button. Patch by Fabien Vantard.
7399
7400 2006-02-24 [paul]       2.0.0cvs79
7401
7402         * src/news.c
7403         * src/news.h
7404         * src/news_gtk.c
7405                 fix bug 916, 'newsgroup unsubscribe segmentation fault'
7406                 Thanks to Colin
7407
7408 2006-02-23 [colin]      2.0.0cvs78
7409
7410         * src/alertpanel.c
7411                 Change OK to Close in alertpanel with View log
7412                 button; add accel to View log. Patch by Fabien
7413                 Vantard
7414
7415 2006-02-23 [wwp]        2.0.0cvs77
7416
7417         * src/compose.c
7418                 silly me, there were much more tests to perform, since toolbars can
7419                 really have down to 1 element only.
7420
7421 2006-02-23 [wwp]        2.0.0cvs76
7422
7423         * commitHelper
7424                 fixed indentation from my previous commit. Fallback to VISUAL if
7425                 EDITOR is not set (and to vi, at last resort).
7426
7427 2006-02-23 [wwp]        2.0.0cvs75
7428
7429         * commitHelper
7430                 improved error detection (Colin, me).
7431
7432 2006-02-23 [wwp]        2.0.0cvs74
7433
7434         * src/prefs_toolbar.c
7435                 simplify and fix prefs/toolbars layouting. Combos' contents can
7436                 now be really displayed.
7437
7438 2006-02-23 [wwp]        2.0.0cvs73
7439         simplifies and fix prefs/toolbars layouting. Combos' contents can now
7440         be really displayed.
7441
7442 2006-02-22 [wwp]        2.0.0cvs72
7443
7444         * src/compose.c
7445                 fix a typo in my previous commit (sorry!).
7446
7447 2006-02-22 [wwp]        2.0.0cvs71
7448
7449         * src/prefs_toolbar.c
7450                 fix a crash when adding separators to toolbars,
7451                 also fix some separator item information.
7452
7453 2006-02-22 [wwp]        2.0.0cvs70
7454
7455         * src/compose.c
7456                 fix a crash when redirecting (for instance) when compose window's
7457                 toolbar contents has been customized (when some buttons have been
7458                 removed in fact).
7459
7460 2006-02-21 [wwp]        2.0.0cvs69
7461
7462         * src/summaryview.c
7463         * src/gtk/pluginwindow.c
7464         * src/plugins/pgpcore/prefs_gpg.c
7465                 fix some compilation warnings (feat. remains of removed code).
7466
7467 2006-02-21 [wwp]        2.0.0cvs68
7468
7469         * src/gtk/gtkutils.c
7470                 fix two compilation issues, thanks to Stephan Sachse.
7471
7472 2006-02-20 [colin]      2.0.0cvs67
7473
7474         * src/mainwindow.c
7475                 Don't reselect displayed mail on refocus
7476                 This fixes actions misbehaving 
7477
7478 2006-02-20 [wwp]        2.0.0cvs66
7479
7480         * src/summaryview.c
7481         * src/gtk/gtksctree.c
7482         * src/gtk/gtkshruler.c
7483                 changed more runtime typecast checks.
7484
7485 2006-02-20 [wwp]        2.0.0cvs65
7486
7487         * src/summary_search.c
7488                 find all - summaryview refresh issue fixed, thanks to Colin.
7489
7490 2006-02-20 [wwp]        2.0.0cvs64
7491
7492         * src/gtk/gtkutils.c
7493                 better runtime typecast checks.
7494
7495 2006-02-20 [wwp]        2.0.0cvs63
7496
7497         * src/summary_search.c
7498                 enhancements to the summary search:
7499                         - add the ability to stop the running search
7500                           (upon ESC-key press, new Stop button or when Clear button is pressed)
7501                         - don't search if no criteria (From/To/Subject/Body) is set
7502                         - ensure that a busy mouse pointer is always shown when searching,
7503                           show it even a bit earlier
7504
7505 2006-02-19 [colin]      2.0.0cvs62
7506
7507         * src/compose.c
7508         * src/imap.c
7509         * src/etpan/imap-thread.c
7510         * src/etpan/imap-thread.h
7511                 (Future) IMAP speed improvement on sending
7512                 Will require a libetpan update
7513         * src/summaryview.c
7514         * src/gtk/quicksearch.c
7515                 Make quicksearch clearable while running.
7516
7517 2006-02-17 [colin]      2.0.0cvs61
7518
7519         * src/imap.c
7520         * src/etpan/imap-thread.c
7521         * src/etpan/imap-thread.h
7522                 Check for IMAP certificates
7523                 ** Requires libetpan-0.42-cvs4 
7524                 ** http://claws.sylpheed.org/snapshots/libetpan-0.42cvs4.tar.gz
7525
7526 2006-02-17 [colin]      2.0.0cvs60
7527
7528         * src/messageview.c
7529         * src/prefs_common.c
7530         * src/prefs_common.h
7531         * src/prefs_message.c
7532                 Add pref to display HTML-only mails with plugin, 
7533                 if possible (defaulting to FALSE of course).
7534
7535 2006-02-16 [colin]      2.0.0cvs59
7536
7537         * src/main.c
7538         * src/common/plugin.c
7539         * src/common/plugin.h
7540         * src/gtk/pluginwindow.c
7541                 Keep track of requested (but unloaded) plugins
7542                 in some error cases.
7543
7544 2006-02-16 [wwp]        2.0.0cvs58
7545
7546         * src/gtk/gtkaspell.c
7547         * src/gtk/gtkaspell.h
7548         * src/prefs_spelling.c
7549         * src/compose.c
7550         * src/prefs_common.c
7551         * src/prefs_common.h
7552                 implemented new optional spellchecker behaviour: re-check message when
7553                 dictionary got changed (from compose-window/context-menu/Change dictionary).
7554
7555 2006-02-16 [wwp]        2.0.0cvs57
7556
7557         * src/quote_fmt_parse.y
7558                 pclose popen'ed pipe.
7559
7560 2006-02-15 [colin]      2.0.0cvs56
7561
7562         * src/mimeview.c
7563         * src/mimeview.h
7564                 Let MimeViewers know which MimeView they
7565                 depend of.
7566         * src/summaryview.c
7567                 Swap From/To columns in Sent/Queue/Drafts
7568                 folders
7569         * src/etpan/imap-thread.c
7570                 Use mailstream_low_tls_open() for STARTTLS
7571                 instead of mailstream_low_ssl_open()
7572                 ** REQUIRES libetpan 0.42cvs3 **
7573
7574 2006-02-15 [wwp]        2.0.0cvs55
7575
7576         * src/compose.c
7577         * src/compose.h
7578         * src/message_search.c
7579         * src/message_search.h
7580         * src/textview.c
7581         * src/gtk/gtkutils.c
7582         * src/gtk/gtkutils.h
7583                 added the ability to Find text in the compose window (and a bit
7584                 of code factorization).
7585
7586 2006-02-15 [wwp]        2.0.0cvs54
7587
7588         * src/prefs_gtk.c
7589                 yet another one file was missing (fix for some widgets' sensitivity).
7590                 Thanks Colin!
7591
7592 2006-02-15 [wwp]        2.0.0cvs53
7593
7594         * src/prefs_gtk.h
7595                 oops forgot that file (fix for some widgets' sensitivity).
7596
7597 2006-02-15 [wwp]        2.0.0cvs52
7598
7599         * src/summary_search.c
7600                 implemented advanced summary search options (added the ability
7601                 to use matcher conditions in an advanced search mode).
7602
7603 2006-02-15 [wwp]        2.0.0cvs51
7604
7605         * src/plugins/pgpcore/prefs_gpg.c
7606         * src/prefs_account.c
7607                 fix some widget sensitivity, mostly around some labels in
7608                 account prefs.
7609
7610 2006-02-15 [paul]       2.0.0cvs50
7611
7612         * manual/advanced.xml
7613                 improve Templates info
7614                 written by wwp
7615
7616 2006-02-14 [colin]      2.0.0cvs49
7617
7618         * src/pixmaps/address_book.xpm
7619         * src/pixmaps/preferences.xpm
7620         * src/pixmaps/properties.xpm
7621                 Fix pixmap size - patch by Fabien Vantard
7622
7623 2006-02-13 [colin]      2.0.0cvs48
7624
7625         * src/procmime.c
7626                 Add missing fclose()s on error
7627         * src/textview.c
7628                 Remove unused code
7629         * src/common/utils.c
7630                 Fix temp files not being deleted on windows
7631         Patches by Thomas Gilgin
7632
7633 2006-02-13 [colin]      2.0.0cvs47
7634
7635         * src/mainwindow.c
7636                 Fix exit crash
7637
7638 2006-02-13 [wwp]        2.0.0cvs46
7639
7640         * src/plugins/pgpcore/prefs_gpg.c
7641                 fixed sensitivity of radio widgets in account / GPG-plugin prefs.
7642
7643 2006-02-12 [colin]      2.0.0cvs45
7644
7645         * src/folderview.c
7646         * src/main.c
7647         * src/mainwindow.c
7648                 Fix "stuff" when quitting
7649
7650 2006-02-12 [wwp]        2.0.0cvs44
7651
7652         * src/prefs_themes.c
7653                 fix typos in debug messages.
7654
7655 2006-02-11 [colin]      2.0.0cvs43
7656
7657         * src/summaryview.c
7658                 don't allow drag/drop from ourself
7659
7660 2006-02-10 [wwp]        2.0.0cvs42
7661
7662         * src/exporthtml.c
7663         * src/html.c
7664         * src/html.h
7665         * src/procmime.c
7666         * src/textview.c
7667                 renamed html_ prefixed functions and data structures to avoid
7668                 namespace clashes w/ other software (gtkhtml2 for instance).
7669                 Closes bug #907.
7670
7671
7672 2006-02-09 [colin]      2.0.0cvs41
7673
7674         * src/summaryview.c
7675                 Fix shitty logic messed up. Thanks Ticho for the hint!
7676
7677 2006-02-09 [wwp]        2.0.0cvs40
7678
7679         * src/gtk/about.c
7680         * src/compose.c
7681         * src/prefs_account.c
7682         * src/prefs_gtk.h
7683         * src/editaddress.c
7684                 added mnemonics to notebook widgets (compose, account prefs, about and editaddress),
7685                 patch by Fabien Vantard (fzzzzz!). Solved some mnemonic conflicts around the
7686                 Browse buttons in accounts prefs.
7687
7688 2006-02-09 [colin]      2.0.0cvs39
7689
7690         * src/matcher.c
7691                 Check for pointer before using its members
7692         * src/gtk/gtksourceprintjob.c
7693                 Fix a wrong warning
7694
7695 2006-02-09 [wwp]        2.0.0cvs38
7696
7697         * src/gtk/filesel.c
7698                 fix few compiler warnings (type mismatch).
7699
7700 2006-02-09 [paul]       2.0.0cvs37
7701
7702         * po/fr.po
7703                 updated by Fabien Vantard
7704
7705 2006-02-08 [colin]      2.0.0cvs36
7706
7707         * src/prefs_common.c
7708         * src/common/defs.h
7709         * src/common/plugin.c
7710                 allow windows and linux configurations to coexist
7711                 patch by Thomas Gilgin
7712
7713 2006-02-08 [colin]      2.0.0cvs35
7714
7715         * src/filtering.c
7716         * src/matcher.c
7717         * src/matcher.h
7718         * src/matcher_parser_parse.y
7719         * src/prefs_filtering_action.c
7720         * src/prefs_matcher.c
7721                 Add the "Ignore thread" filtering
7722                 action
7723
7724 2006-02-08 [colin]      2.0.0cvs34
7725
7726         * src/compose.c
7727         * src/procmime.c
7728         * src/procmime.h
7729                 Fix bug #905 (damaged attachment)
7730                 text files with raw \0's aren't really text files
7731         FOR_STABLE
7732
7733 2006-02-08 [colin]      2.0.0cvs33
7734
7735         * src/summaryview.c
7736                 Fix crasher introduced yesterday
7737
7738 2006-02-08 [wwp]        2.0.0cvs32
7739
7740         * src/compose.c
7741         * src/compose.h
7742                 templates enhancement: allow symbols substitutions in To/Cc/Bcc/Subject fields
7743
7744 2006-02-08 [wwp]        2.0.0cvs31
7745
7746         * src/prefs_template.c
7747                 templates enhancement: allow address completion for Cc and Bcc fields
7748                 (it was currently possible for the To field only)
7749
7750 2006-02-08 [colin]      2.0.0cvs30
7751
7752         * src/compose.c
7753                 Don't unblock if not blocked
7754         FOR_STABLE
7755
7756 2006-02-07 [colin]      2.0.0cvs29
7757
7758         * src/action.c
7759                 Forgot to refresh summaryview
7760
7761 2006-02-07 [colin]      2.0.0cvs28
7762
7763         * src/action.c
7764                 Freeze/thaw message list and folder list while
7765                 processing %as{} actions 
7766         * src/compose.c
7767                 Fix auto-wrap disabling after a middle-click
7768                 paste - FOR_STABLE
7769
7770 2006-02-07 [paul]       2.0.0cvs27
7771
7772         * src/folder.c
7773                 fix freeing of uninitialised pointers
7774                 Thanks to Colin
7775
7776 2006-02-06 [colin]      2.0.0cvs26
7777
7778         * src/folder.c
7779                 Use g_slist_prepend in potentially big list
7780
7781 2006-02-06 [colin]      2.0.0cvs25
7782
7783         * src/folder.c
7784                 Completely skip processing if it doesn't 
7785                 exist (faster!)
7786
7787 2006-02-06 [colin]      2.0.0cvs24
7788
7789         * src/folder.c
7790         * src/summaryview.c
7791                 Batch filtering in summaryview (from Tools menu)
7792                 and pre/post//-processing too
7793
7794 2006-02-06 [colin]      2.0.0cvs23
7795
7796         * src/procmsg.h
7797         * src/filtering.c
7798                 Use a special field for batch filtering instead
7799                 of stepping on deferred execution's toes
7800
7801 2006-02-06 [colin]      2.0.0cvs22
7802
7803         * src/action.c
7804         * src/filtering.c
7805         * src/filtering.h
7806         * src/folder.c
7807         * src/summaryview.c
7808                 Fix filtering via menus and actions
7809
7810 2006-02-06 [colin]      2.0.0cvs21
7811
7812         * src/imap.c
7813                 Put the added file directly to cache if possible (will work
7814                 with next libetpan)
7815         * src/filtering.c
7816         * src/filtering.h
7817         * src/inc.c
7818         * src/folder.c
7819         * src/mbox.c
7820         * src/procmsg.h
7821                 Move and copy filtered messages by batches instead of one
7822                 by one - faster on IMAP
7823         * src/procmsg.c
7824                 Add a function that'll possibly be useful later
7825
7826 2006-02-06 [colin]      2.0.0cvs20
7827
7828         * src/addressbook.c
7829                 Use internal mime-type instead of text/plain for d'n'd
7830         * src/compose.c
7831                 Allow attaching files from mimeview's icon list via d'n'd
7832         * src/folderview.c
7833         * src/folderview.h
7834                 Use internal mime-type instead of text/plain for d'n'd
7835                 Don't try to selected opened folder if none is
7836                 Factorize d'n'd from other apps code
7837         * src/headerview.c
7838         * src/textview.c
7839         * src/gtk/gtkutils.c
7840         * src/gtk/gtkutils.h
7841                 Factorize Face/X-Face stuff
7842         * src/mimeview.c
7843                 Fix d'n'd to other apps
7844         * src/prefs_message.c
7845                 Let the XFace pref be usable without libcompface as it also
7846                 applies to Face
7847         * src/summaryview.c
7848                 Fix d'n'd to other apps
7849                 Factorize d'n'd from other apps code
7850
7851 2006-02-06 [wwp]        2.0.0cvs19
7852
7853         * po/it.po
7854                 Italian translation fixes by Andrea Spadaccini (no more confusion
7855                 between filtering and processing, and few changes in the About
7856                 dialog).
7857
7858
7859 2006-02-06 [mones]      2.0.0cvs18
7860
7861         * src/gtk/icon_legend.c
7862                 Improved descriptions allowing better translations
7863
7864 2006-02-05 [colin]      2.0.0cvs17
7865
7866         * src/imap.c
7867                 Add the f*cking missing expunge that caused imap_fetch_env
7868                 to fail after an add_msgs ! :-///
7869         * src/etpan/imap-thread.c
7870                 Add a bit of debug
7871         FOR_STABLE
7872
7873 2006-02-05 [colin]      2.0.0cvs16
7874
7875         * src/common/utils.c
7876                 Don't check for return-path (or we can't put
7877                 back non-sent mails)
7878
7879 2006-02-05 [colin]      2.0.0cvs15
7880
7881         * src/textview.c
7882                 Don't try to display Face header in textview
7883                 when teh headerview's active
7884
7885 2006-02-05 [colin]      2.0.0cvs14
7886
7887         * tools/tbird2syl.py
7888         * tools/Makefile.am
7889                 Add script to import Thunderbird mails
7890
7891 2006-02-05 [colin]      2.0.0cvs13
7892
7893         * src/headerview.c
7894         * src/procheader.c
7895         * src/procmsg.c
7896         * src/procmsg.h
7897         * src/textview.c
7898                 Show Face headers - patch partially by Klaus Flittner
7899
7900 2006-02-05 [colin]      2.0.0cvs12
7901
7902         * src/folderview.c
7903         * src/summaryview.c
7904         * src/common/utils.c
7905         * src/common/utils.h
7906                 Let dnd work from mime icons to summaryview
7907                 and to folderview too
7908                 Add a crude test to avoid trying to add files
7909                 drag'n'dropped when they're not mails
7910
7911 2006-02-04 [colin]      2.0.0cvs11
7912
7913         * src/summaryview.c
7914         * src/mimeview.c
7915                 Fix utf8 conversion
7916
7917 2006-02-04 [colin]      2.0.0cvs10
7918
7919         * src/compose.c
7920         * src/folderview.c
7921         * src/mimeview.c
7922         * src/summaryview.c
7923         * src/summaryview.h
7924                 Added various drag and drop capas:
7925                 From                    To
7926                 summaryview             other apps
7927                 mimeview icons          other apps
7928                 other apps              summaryview
7929                 other apps              folderview
7930
7931                 This shouldn't have broken the existing:
7932                 From                    To
7933                 summaryview             folderview
7934                 folderview              folderview
7935                 summaryview             compose's attachments
7936
7937         Tests welcomed.
7938
7939 2006-02-02 [paul]       2.0.0cvs9
7940
7941         * src/mainwindow.c
7942                 move global option 'Set displayed columns...' out
7943                 of folder option grouping.
7944                 fix sensitivity of 'harvest addresses'
7945         FOR_STABLE
7946
7947 2006-02-01 [colin]      2.0.0cvs8
7948
7949         * src/mimeview.c
7950                 Revert the alertpanel patch, it sucks (intrusive
7951                 and gets in the way of "open")
7952
7953 2006-02-01 [colin]      2.0.0cvs7
7954
7955         * src/compose.c
7956         * src/prefs_account.c
7957         * src/prefs_common.c
7958         * src/common/defs.h
7959         * src/common/utils.c
7960         * src/common/utils.h
7961                 Add ability to edit the signature file
7962                 from the account preferences, and use
7963                 a default for the text editor.
7964                 Patch by Fabien Vantard
7965
7966 2006-02-01 [colin]      2.0.0cvs6
7967
7968         * src/mimeview.c
7969                 Try to get mime type by extension if it is
7970                 application/octet-stream
7971                 Display a window with possible choices when
7972                 encountering unknown mime types
7973         * src/gtk/filesel.c
7974         * src/gtk/filesel.h
7975                 Add preview
7976                 Allow multiple selection in filtered filesel
7977                 (patch by Fabien Vantard)
7978         * src/gtk/pluginwindow.c
7979                 Use it (patch by Fabien Vantard)
7980
7981 2006-02-01 [paul]       2.0.0cvs5
7982
7983         * src/jpilot.c
7984                 fix crash on creating jpilot address book
7985                 Thanks to Colin - FOR_STABLE
7986         * src/prefs_summaries.c
7987         * src/prefs_wrapping.c
7988         * src/gtk/icon_legend.c
7989         * src/gtk/quicksearch.c
7990                 string fixes and additions
7991
7992 2006-02-01 [paul]       2.0.0cvs4
7993
7994         * src/compose.c
7995         * src/mainwindow.c
7996         * src/messageview.c
7997         * src/prefs_send.c
7998                 add Arabic encoding option
7999                 Patch submitted by  Mohammed Sameer <msameer@users.sf.net>
8000
8001 2006-01-31 [colin]      2.0.0cvs3
8002
8003         * src/plugins/pgpcore/passphrase.c
8004                 Convert passphrase to locale encoding
8005         * src/compose.c
8006                 Fix drafting on IMAP. Crappy bug sneaked in
8007                 the release :-/
8008         FOR_STABLE
8009
8010 2006-01-30 [paul]       2.0.0cvs2
8011
8012         * src/gtk/icon_legend.c
8013                 show the new entries
8014
8015 2006-01-30 [colin]      2.0.0cvs1
8016
8017         * src/manual.c
8018                 Check for the file to be present before 
8019                 enabling the menu - FOR_STABLE
8020         * src/gtk/icon_legend.c
8021                 Add folders icons (not all of them, there
8022                 are too much, but the most intriguing ones)
8023
8024 2006-01-30 [paul]       2.0.0
8025
8026         version 2.0.0 released
8027
8028 2006-01-30 [paul]       1.9.100cvs200
8029
8030         * manual/faq.xml
8031         * manual/gpl.xml
8032         * manual/intro.xml
8033         * manual/starting.xml
8034         * manual/sylpheed-claws-manual.xml
8035                 fixes, additions
8036
8037 2006-01-29 [mones]      1.9.100cvs199
8038
8039         * manual/account.xml
8040         * manual/advanced.xml
8041         * manual/glossary.xml
8042                 Some typos fixed, added LDIF term to glossary
8043         * po/es.po
8044                 Fixed leading plus symbol
8045
8046 2006-01-29 [paul]       1.9.100cvs198
8047
8048         * po/fi.po
8049         * po/sk.po
8050                 updated by Tommi Pirinen and Andrej Kacian
8051
8052 2006-01-29 [paul]       1.9.100cvs197
8053
8054         * src/gtk/authors.h
8055                 remove duplicates
8056
8057 2006-01-29 [paul]       1.9.100cvs196
8058
8059         * AUTHORS
8060         * po/nl.po
8061         * src/gtk/authors.h
8062         * tools/claws.i18n.status.pl
8063                 nl translation updated by Tim Dijkstra
8064
8065 2006-01-29 [paul]       1.9.100cvs195
8066
8067         * po/sr.po
8068         * po/sv.po
8069                 updated by Aleksandar Urosevic and Anders Troback
8070
8071 2006-01-28 [colin]      1.9.100cvs194
8072
8073         * src/gtk/gtksourceprintjob.c
8074                 Don't fiddle with PangoLayout when we
8075                 have an image
8076
8077 2006-01-28 [paul]       1.9.100cvs193
8078
8079         * AUTHORS
8080         * po/el.po
8081         * po/zh_CN.po
8082         * src/gtk/authors.h
8083         * tools/claws.i18n.status.pl
8084                 updated translations submitted by Stavros Giannouris
8085                 and Ralgh Young
8086
8087 2006-01-27 [colin]      1.9.100cvs192
8088
8089         * src/summaryview.c
8090         * src/gtk/gtksourceprintjob.c
8091                 Add image printing 
8092                 (libgnomeprint only, of course)
8093
8094 2006-01-27 [paul]       1.9.100cvs191
8095
8096         * po/fr.po
8097         * po/it.po
8098                 updated by Fabien Vantard and Andrea Spadaccini
8099
8100 2006-01-26 [colin]      1.9.100cvs190
8101
8102         * manual/Makefile.am
8103         * configure.ac
8104                 Make building the manual optional 
8105                 (--disable-manual)
8106
8107 2006-01-26 [paul]       1.9.100cvs189
8108
8109         * manual/glossary.xml
8110         * manual/plugins.xml
8111                 edited
8112         * po/en_GB.po
8113                 updated
8114
8115 2006-01-26 [paul]       1.9.100cvs188
8116
8117         * src/prefs_display_header.c
8118         * src/prefs_folder_column.c
8119         * src/prefs_msg_colors.c
8120         * src/prefs_summaries.c
8121         * src/prefs_summary_column.c
8122                 HIGify
8123
8124 2006-01-25 [colin]      1.9.100cvs187
8125
8126         * src/imap.c
8127                 Don't allow moving/copying mails between
8128                 queue/drafts and non-queue/drafts folders
8129                 Fixes bug #897 (message header is resetted 
8130                 if one is copied to Drafts)
8131
8132 2006-01-25 [colin]      1.9.100cvs186
8133
8134         * src/folder.c
8135         * src/mainwindow.c
8136                 Fix subscribed folders not found
8137         * src/compose.c
8138                 Don't try to encode as original mail's charset
8139                 if it's ascii 
8140
8141 2006-01-25 [paul]       1.9.100cvs185
8142
8143         * AUTHORS
8144         * po/Makevars
8145                 updated
8146         * po/de.po
8147         * po/pl.po
8148         * po/pt_BR.po
8149         * po/sr.po
8150                 updates submitted by Stephan Sachse, Emilian Nowak
8151                 and Quar, Frederico Goncalves Guimaraes, and
8152                 Aleksandar Urosevic
8153                 Fix Bug 896, 'PT_BR locale broken'.
8154         * src/gtk/authors.h
8155                 updated
8156
8157 2006-01-24 [mones]      1.9.100cvs184
8158
8159         * manual/glossary.xml
8160                 All current terms finished. Reviewers welcome ;-)
8161         * manual/keyboard.xml
8162                 Fixed column width for pdf output.
8163         * po/es.po
8164                 Updated
8165
8166 2006-01-24 [paul]       1.9.100cvs183
8167
8168         * manual/glossary.xml
8169                 fix id name
8170         * manual/dist/html/Makefile.am
8171         * manual/dist/pdf/Makefile.am
8172         * manual/dist/ps/Makefile.am
8173         * manual/dist/txt/Makefile.am
8174                 fix make deps
8175                 Thanks to Colin
8176
8177 2006-01-24 [mones]      1.9.100cvs182
8178
8179         * manual/glossary.xml
8180                 Nearly finished, some terms missing.
8181
8182 2006-01-23 [paul]       1.9.100cvs181
8183
8184         * manual/dist/html/Makefile.am
8185         * manual/dist/pdf/Makefile.am
8186         * manual/dist/ps/Makefile.am
8187         * manual/dist/txt/Makefile.am
8188         * src/mainwindow.c
8189                 re-enable manual
8190                 Thanks to Colin
8191
8192 2006-01-22 [colin]      1.9.100cvs180
8193
8194         * src/compose.c
8195         * src/gtk/gtkaspell.c
8196                 Don't deselect stuff before right-clicking, with aspell.
8197                 (This prevented right-click Copy, for example).
8198                 Thanks to Clo!
8199
8200 2006-01-22 [paul]       1.9.100cvs179
8201
8202         * src/summary_search.c
8203                 don't fix the widget size as it causes problems
8204                 under localisation.
8205                 Thanks to Emilian Nowak
8206
8207 2006-01-21 [paul]       1.9.100cvs178
8208
8209         * src/prefs_themes.c
8210                 fix broken underlining of label text
8211                 with some translations
8212
8213 2006-01-21 [colin]      1.9.100cvs177
8214
8215         * po/fr.po
8216                 In French "Composition" puts the Compose toolbar's prefs in the wrong place
8217
8218 2006-01-20 [colin]      1.9.100cvs176
8219
8220         * configure.ac
8221         * Makefile.am
8222         * manual/Makefile
8223         * manual/dist/html/.cvsignore
8224         * manual/dist/html/Makefile.am
8225         * manual/dist/pdf/.cvsignore
8226         * manual/dist/pdf/Makefile.am
8227         * manual/dist/ps/.cvsignore
8228         * manual/dist/ps/Makefile.am
8229         * manual/dist/txt/.cvsignore
8230         * manual/dist/txt/Makefile.am
8231                 Autotool-ize manual
8232
8233 2006-01-20 [paul]       1.9.100cvs175
8234
8235         * manual/handling.xml
8236                 make Filtering and Searching entries easier to find
8237         * manual/keyboard.xml
8238                 add the remaining default keybinds
8239         * src/prefs_summaries.c
8240                 update the default keybinds
8241
8242 2006-01-20 [paul]       1.9.100cvs174
8243
8244         * src/addressbook.c
8245         * src/addrgather.c
8246         * src/addrharvest.c
8247         * src/editaddress.c
8248         * src/editgroup.c
8249         * src/exphtmldlg.c
8250         * src/expldifdlg.c
8251         * src/exporthtml.c
8252         * src/exportldif.c
8253         * src/ldif.c
8254                 replace 'e-mail' with 'email'
8255         * src/summary_search.c
8256                 add mnemonic to "Find all" button
8257
8258 2006-01-20 [wwp]        1.9.100cvs173
8259
8260         * src/export.c
8261         * src/import.c
8262                 touched mbox import/export buttons for HIG-compliance
8263
8264 2006-01-19 [paul]       1.9.100cvs172
8265
8266         * manual/account.xml
8267         * manual/addrbook.xml
8268         * manual/advanced.xml
8269         * manual/faq.xml
8270         * manual/handling.xml
8271         * manual/intro.xml
8272         * manual/plugins.xml
8273         * manual/starting.xml
8274                 more editing
8275
8276 2006-01-19 [paul]       1.9.100cvs171
8277
8278         * src/toolbar.c
8279                 allow use of trash button while receiving
8280                 Thanks to Colin
8281
8282 2006-01-19 [wwp]        1.9.100cvs170
8283
8284         * src/gtk/quicksearch.c
8285         * src/compose.c
8286                 force text color to black when yellow background is set
8287
8288 2006-01-19 [colin]      1.9.100cvs169
8289
8290         * src/plugins/trayicon/trayicon.c
8291                 Gray out Get Mail when already getting mail
8292
8293 2006-01-18 [paul]       1.9.100cvs168
8294
8295         * src/compose.c
8296                 give widget yellow background was To is
8297                 set via folder prefs
8298         * src/gtk/quicksearch.c
8299                 give widget yellow background when quick
8300                 search is active.
8301                 Thanks to Colin
8302
8303 2006-01-18 [paul]       1.9.100cvs167
8304
8305         * doc/man/sylpheed-claws.1
8306                 add --subscribe option
8307
8308 2006-01-18 [paul]       1.9.100cvs166
8309
8310         * tools/kdeservicemenu/template_sylpheed-attach-files.desktop
8311         * tools/kdeservicemenu/template_sylpheed-compress-attach.desktop
8312                 use %U instead of %F (%F is broken for user installed
8313                 files in kde 3.5)
8314
8315 2006-01-18 [colin]      1.9.100cvs165
8316
8317         * src/summaryview.c
8318                 Default to Yes in "No more * messages" dialogs
8319
8320 2006-01-17 [colin]      1.9.100cvs164
8321
8322         * src/compose.c
8323                 Possibly fix an invalid iterator causing
8324                 crash
8325
8326 2006-01-17 [colin]      1.9.100cvs163
8327
8328         * src/mimeview.c
8329                 Fix crash when the image disappears under the
8330                 image viewer
8331
8332 2006-01-16 [colin]      1.9.100cvs162
8333
8334         * src/compose.c
8335                 Fix reenabling autowrap
8336
8337 2006-01-16 [colin]      1.9.100cvs161
8338
8339         * src/compose.c
8340                 reset quote_len before getting quote_str
8341
8342 2006-01-16 [colin]      1.9.100cvs160
8343
8344         * src/account.c
8345         * src/account.h
8346         * src/folder.c
8347         * src/imap_gtk.c
8348         * src/mh_gtk.c
8349                 Fix bug #883 (default inbox does not track folder move)
8350
8351 2006-01-16 [colin]      1.9.100cvs159
8352
8353         * src/compose.c
8354         * src/plugins/pgpcore/passphrase.c
8355                 More buttons fixes
8356
8357 2006-01-16 [paul]       1.9.100cvs158
8358
8359         * src/prefs_actions.c
8360         * src/prefs_filtering_action.c
8361         * src/prefs_matcher.c
8362         * src/quote_fmt.c
8363         * src/gtk/description_window.c
8364         * src/gtk/description_window.h
8365         * src/gtk/quicksearch.c
8366                 description window cleanups
8367
8368 2006-01-15 [colin]      1.9.100cvs157
8369
8370         * src/addressbook.c
8371         * src/prefs_filtering.c
8372                 Same here
8373
8374 2006-01-15 [colin]      1.9.100cvs156
8375
8376         * src/folderview.c
8377         * src/mainwindow.c
8378                 Same for "Empty trash"
8379
8380 2006-01-15 [colin]      1.9.100cvs155
8381
8382         * src/inc.c
8383                 Override offline dialog had Yes by default
8384
8385 2006-01-15 [colin]      1.9.100cvs154
8386
8387         * src/summaryview.c
8388                 Delete selected messages? previously had Yes the default
8389
8390 2006-01-15 [colin]      1.9.100cvs153
8391
8392         * src/folder.c
8393         * src/folder.h
8394         * src/main.c
8395                 Check if a mailbox is loaded after all
8396                 plugins are loaded.
8397
8398 2006-01-15 [colin]      1.9.100cvs152
8399
8400         * src/folder.c
8401                 Don't start wizard when there are unloaded folders (will help
8402                 people with only mbox or maildir mailboxes)
8403
8404 2006-01-14 [colin]      1.9.100cvs151
8405
8406         * src/addressbook.c
8407         * src/expldifdlg.c
8408         * src/importldif.c
8409         * src/importmutt.c
8410         * src/importpine.c
8411         * src/mh_gtk.c
8412                 More HIG compliance and fixes
8413
8414 2006-01-14 [colin]      1.9.100cvs150
8415
8416         * src/prefs_filtering_action.c
8417         * src/foldersel.c
8418                 Two forgotten button order changes
8419
8420 2006-01-14 [colin]      1.9.100cvs149
8421
8422         * src/account.c
8423         * src/addressbook.c
8424         * src/compose.c
8425         * src/folderview.c
8426         * src/imap_gtk.c
8427         * src/mainwindow.c
8428         * src/mh_gtk.c
8429         * src/news_gtk.c
8430         * src/prefs_actions.c
8431         * src/prefs_customheader.c
8432         * src/prefs_filtering.c
8433         * src/prefs_matcher.c
8434         * src/prefs_template.c
8435         * src/ssl_manager.c
8436         * src/summaryview.c
8437         * src/textview.c
8438         * src/toolbar.c
8439                 All deletion confirmations are now "Cancel, Delete" 
8440                 instead of "No, Yes"
8441                 Clarified most of the other "No, Yes" to 
8442                 "Cancel, Descriptive_action"
8443                 Rechanged the "Entry not saved" alerts to have 
8444                 "Close, Continue editing"
8445
8446
8447 2006-01-14 [paul]
8448
8449         * 2.0.0-rc4 released
8450
8451 2006-01-14 [paul]       1.9.100cvs148
8452
8453         * src/account.c
8454         * src/addressadd.c
8455         * src/addressbook.c
8456         * src/compose.c
8457         * src/editaddress.c
8458         * src/editbook.c
8459         * src/editgroup.c
8460         * src/editjpilot.c
8461         * src/editldap.c
8462         * src/editvcard.c
8463         * src/exphtmldlg.c
8464         * src/expldifdlg.c
8465         * src/folderview.c
8466         * src/grouplistdialog.c
8467         * src/imap_gtk.c
8468         * src/importmutt.c
8469         * src/importpine.c
8470         * src/inc.c
8471         * src/main.c
8472         * src/mainwindow.c
8473         * src/message_search.c
8474         * src/messageview.c
8475         * src/mh_gtk.c
8476         * src/mimeview.c
8477         * src/news_gtk.c
8478         * src/prefs_actions.c
8479         * src/prefs_customheader.c
8480         * src/prefs_filtering.c
8481         * src/prefs_matcher.c
8482         * src/prefs_template.c
8483         * src/prefs_themes.c
8484         * src/ssl_manager.c
8485         * src/summary_search.c
8486         * src/summaryview.c
8487         * src/textview.c
8488         * src/toolbar.c
8489         * src/gtk/foldersort.c
8490         * src/gtk/gtkaspell.c
8491         * src/gtk/inputdialog.c
8492         * src/gtk/prefswindow.c
8493         * src/plugins/pgpcore/select-keys.c
8494         * src/plugins/trayicon/trayicon.c
8495                 HIG compliant button order
8496
8497 2006-01-14 [mones]      1.9.100cvs147
8498
8499         * po/es.po
8500                 Updated translation
8501
8502 2006-01-13 [paul]       1.9.100cvs146
8503
8504         * AUTHORS
8505         * ChangeLog
8506         * src/gtk/authors.h
8507                 add Joshua M. Kwan to contributors list
8508
8509 2006-01-13 [colin]      1.9.100cvs145
8510
8511         * src/gtk/quicksearch.c
8512                 Don't refocus quick search after executing (Esc or Enter)
8513                 Allows to '/'search something then move up/down in 
8514                 summaryview, and to Esc a search and be back in the 
8515                 summaryview
8516
8517 2006-01-13 [paul]       1.9.100cvs144
8518
8519         * src/plugins/pgpinline/pgpinline.c
8520                 support Content-Type 'application/pgp'
8521                 patch by Joshua M. Kwan <joshuak@users.sf.net>
8522
8523 2006-01-13 [paul]       1.9.100cvs143
8524
8525         * manual/account.xml
8526                 make mention of partial retrieval
8527                 thanks to Colin
8528
8529 2006-01-13 [paul]       1.9.100cvs142
8530
8531         * src/account.c
8532         * src/account.h
8533         * src/action.c
8534         * src/action.h
8535         * src/adbookbase.h
8536         * src/addr_compl.c
8537         * src/addr_compl.h
8538         * src/addrbook.c
8539         * src/addrcache.c
8540         * src/addrcache.h
8541         * src/addrcindex.c
8542         * src/addrcindex.h
8543         * src/addrclip.c
8544         * src/addrclip.h
8545         * src/addrdefs.h
8546         * src/addressadd.c
8547         * src/addressadd.h
8548         * src/addressbook.c
8549         * src/addressbook.h
8550         * src/addrgather.c
8551         * src/addrgather.h
8552         * src/addrharvest.c
8553         * src/addrharvest.h
8554         * src/addrindex.c
8555         * src/addrindex.h
8556         * src/addritem.c
8557         * src/addritem.h
8558         * src/addrquery.c
8559         * src/addrquery.h
8560         * src/addrselect.c
8561         * src/addrselect.h
8562         * src/alertpanel.c
8563         * src/alertpanel.h
8564         * src/browseldap.c
8565         * src/browseldap.h
8566         * src/codeconv.c
8567         * src/codeconv.h
8568         * src/compose.c
8569         * src/compose.h
8570         * src/customheader.c
8571         * src/customheader.h
8572         * src/displayheader.c
8573         * src/displayheader.h
8574         * src/editaddress.c
8575         * src/editaddress.h
8576         * src/editbook.c
8577         * src/editbook.h
8578         * src/editgroup.c
8579         * src/editgroup.h
8580         * src/editjpilot.c
8581         * src/editjpilot.h
8582         * src/editldap.c
8583         * src/editldap.h
8584         * src/editldap_basedn.c
8585         * src/editldap_basedn.h
8586         * src/editvcard.c
8587         * src/editvcard.h
8588         * src/exphtmldlg.c
8589         * src/exphtmldlg.h
8590         * src/expldifdlg.c
8591         * src/expldifdlg.h
8592         * src/export.h
8593         * src/exporthtml.c
8594         * src/exporthtml.h
8595         * src/exportldif.c
8596         * src/exportldif.h
8597         * src/filtering.c
8598         * src/filtering.h
8599         * src/folder.c
8600         * src/folder.h
8601         * src/folder_item_prefs.c
8602         * src/folder_item_prefs.h
8603         * src/foldersel.c
8604         * src/foldersel.h
8605         * src/folderutils.c
8606         * src/folderutils.h
8607         * src/folderview.c
8608         * src/folderview.h
8609         * src/grouplistdialog.c
8610         * src/grouplistdialog.h
8611         * src/headerview.c
8612         * src/html.c
8613         * src/html.h
8614         * src/image_viewer.c
8615         * src/image_viewer.h
8616         * src/imap.c
8617         * src/imap.h
8618         * src/imap_gtk.c
8619         * src/imap_gtk.h
8620         * src/import.h
8621         * src/importldif.c
8622         * src/importldif.h
8623         * src/importmutt.c
8624         * src/importmutt.h
8625         * src/importpine.c
8626         * src/importpine.h
8627         * src/inc.c
8628         * src/inc.h
8629         * src/jpilot.c
8630         * src/jpilot.h
8631         * src/ldapctrl.c
8632         * src/ldapctrl.h
8633         * src/ldaplocate.c
8634         * src/ldaplocate.h
8635         * src/ldapquery.c
8636         * src/ldapquery.h
8637         * src/ldapserver.c
8638         * src/ldapserver.h
8639         * src/ldaputil.c
8640         * src/ldaputil.h
8641         * src/ldif.c
8642         * src/ldif.h
8643         * src/main.c
8644         * src/main.h
8645         * src/mainwindow.c
8646         * src/mainwindow.h
8647         * src/manual.c
8648         * src/manual.h
8649         * src/mbox.c
8650         * src/mbox.h
8651         * src/message_search.c
8652         * src/message_search.h
8653         * src/messageview.c
8654         * src/messageview.h
8655         * src/mh.c
8656         * src/mh.h
8657         * src/mh_gtk.c
8658         * src/mh_gtk.h
8659         * src/mimeview.c
8660         * src/mimeview.h
8661         * src/msgcache.c
8662         * src/msgcache.h
8663         * src/mutt.c
8664         * src/mutt.h
8665         * src/news.c
8666         * src/news.h
8667         * src/news_gtk.c
8668         * src/news_gtk.h
8669         * src/partial_download.c
8670         * src/partial_download.h
8671         * src/pine.c
8672         * src/pine.h
8673         * src/pop.c
8674         * src/pop.h
8675         * src/prefs_account.c
8676         * src/prefs_account.h
8677         * src/prefs_actions.c
8678         * src/prefs_actions.h
8679         * src/prefs_common.c
8680         * src/prefs_common.h
8681         * src/prefs_compose_writing.c
8682         * src/prefs_compose_writing.h
8683         * src/prefs_customheader.c
8684         * src/prefs_customheader.h
8685         * src/prefs_display_header.c
8686         * src/prefs_display_header.h
8687         * src/prefs_filtering.c
8688         * src/prefs_filtering.h
8689         * src/prefs_filtering_action.c
8690         * src/prefs_filtering_action.h
8691         * src/prefs_folder_column.c
8692         * src/prefs_folder_column.h
8693         * src/prefs_folder_item.c
8694         * src/prefs_folder_item.h
8695         * src/prefs_fonts.c
8696         * src/prefs_fonts.h
8697         * src/prefs_gtk.c
8698         * src/prefs_gtk.h
8699         * src/prefs_image_viewer.c
8700         * src/prefs_image_viewer.h
8701         * src/prefs_matcher.c
8702         * src/prefs_matcher.h
8703         * src/prefs_message.c
8704         * src/prefs_msg_colors.c
8705         * src/prefs_msg_colors.h
8706         * src/prefs_other.c
8707         * src/prefs_quote.c
8708         * src/prefs_receive.c
8709         * src/prefs_send.c
8710         * src/prefs_spelling.c
8711         * src/prefs_spelling.h
8712         * src/prefs_summaries.c
8713         * src/prefs_summaries.h
8714         * src/prefs_summary_column.c
8715         * src/prefs_summary_column.h
8716         * src/prefs_template.c
8717         * src/prefs_template.h
8718         * src/prefs_themes.c
8719         * src/prefs_themes.h
8720         * src/prefs_toolbar.c
8721         * src/prefs_toolbar.h
8722         * src/prefs_wrapping.c
8723         * src/prefs_wrapping.h
8724         * src/privacy.c
8725         * src/privacy.h
8726         * src/procheader.c
8727         * src/procheader.h
8728         * src/procmime.c
8729         * src/procmime.h
8730         * src/procmsg.c
8731         * src/procmsg.h
8732         * src/quote_fmt.c
8733         * src/quote_fmt_parse.y
8734         * src/recv.c
8735         * src/recv.h
8736         * src/remotefolder.c
8737         * src/remotefolder.h
8738         * src/send_message.c
8739         * src/send_message.h
8740         * src/setup.c
8741         * src/setup.h
8742         * src/sourcewindow.c
8743         * src/sourcewindow.h
8744         * src/ssl_manager.c
8745         * src/ssl_manager.h
8746         * src/statusbar.c
8747         * src/statusbar.h
8748         * src/stock_pixmap.c
8749         * src/stock_pixmap.h
8750         * src/summary_search.c
8751         * src/summary_search.h
8752         * src/summaryview.c
8753         * src/summaryview.h
8754         * src/syldap.c
8755         * src/syldap.h
8756         * src/textview.c
8757         * src/textview.h
8758         * src/toolbar.c
8759         * src/toolbar.h
8760         * src/undo.c
8761         * src/undo.h
8762         * src/unmime.c
8763         * src/unmime.h
8764         * src/vcard.c
8765         * src/vcard.h
8766         * src/wizard.c
8767         * src/wizard.h
8768         * src/common/base64.c
8769         * src/common/base64.h
8770         * src/common/defs.h
8771         * src/common/hooks.c
8772         * src/common/hooks.h
8773         * src/common/log.c
8774         * src/common/log.h
8775         * src/common/mgutils.c
8776         * src/common/mgutils.h
8777         * src/common/nntp.c
8778         * src/common/nntp.h
8779         * src/common/passcrypt.c
8780         * src/common/passcrypt.h.in
8781         * src/common/plugin.c
8782         * src/common/plugin.h
8783         * src/common/prefs.c
8784         * src/common/prefs.h
8785         * src/common/progressindicator.c
8786         * src/common/progressindicator.h
8787         * src/common/quoted-printable.c
8788         * src/common/quoted-printable.h
8789         * src/common/session.c
8790         * src/common/session.h
8791         * src/common/smtp.c
8792         * src/common/smtp.h
8793         * src/common/socket.c
8794         * src/common/socket.h
8795         * src/common/ssl.c
8796         * src/common/ssl.h
8797         * src/common/ssl_certificate.c
8798         * src/common/ssl_certificate.h
8799         * src/common/stringtable.c
8800         * src/common/stringtable.h
8801         * src/common/sylpheed.c
8802         * src/common/sylpheed.h
8803         * src/common/template.c
8804         * src/common/template.h
8805         * src/common/timing.h
8806         * src/common/utils.c
8807         * src/common/utils.h
8808         * src/common/version.h.in
8809         * src/common/xml.c
8810         * src/common/xml.h
8811         * src/common/xmlprops.c
8812         * src/common/xmlprops.h
8813         * src/gtk/colorlabel.c
8814         * src/gtk/colorsel.c
8815         * src/gtk/colorsel.h
8816         * src/gtk/description_window.c
8817         * src/gtk/description_window.h
8818         * src/gtk/filesel.c
8819         * src/gtk/filesel.h
8820         * src/gtk/foldersort.c
8821         * src/gtk/foldersort.h
8822         * src/gtk/gtkutils.c
8823         * src/gtk/gtkutils.h
8824         * src/gtk/inputdialog.c
8825         * src/gtk/inputdialog.h
8826         * src/gtk/logwindow.c
8827         * src/gtk/logwindow.h
8828         * src/gtk/manage_window.c
8829         * src/gtk/manage_window.h
8830         * src/gtk/menu.c
8831         * src/gtk/menu.h
8832         * src/gtk/pluginwindow.c
8833         * src/gtk/pluginwindow.h
8834         * src/gtk/prefswindow.c
8835         * src/gtk/prefswindow.h
8836         * src/gtk/progressdialog.c
8837         * src/gtk/progressdialog.h
8838         * src/gtk/sslcertwindow.c
8839         * src/gtk/sslcertwindow.h
8840         * src/plugins/clamav/clamav_plugin.c
8841         * src/plugins/clamav/clamav_plugin.h
8842         * src/plugins/clamav/clamav_plugin_gtk.c
8843         * src/plugins/demo/demo.c
8844         * src/plugins/dillo_viewer/dillo_prefs.c
8845         * src/plugins/dillo_viewer/dillo_prefs.h
8846         * src/plugins/dillo_viewer/dillo_viewer.c
8847         * src/plugins/pgpcore/passphrase.c
8848         * src/plugins/pgpcore/passphrase.h
8849         * src/plugins/pgpcore/plugin.c
8850         * src/plugins/pgpcore/select-keys.c
8851         * src/plugins/pgpcore/select-keys.h
8852         * src/plugins/pgpcore/sgpgme.c
8853         * src/plugins/pgpcore/sgpgme.h
8854         * src/plugins/pgpinline/pgpinline.c
8855         * src/plugins/pgpinline/pgpinline.h
8856         * src/plugins/pgpinline/plugin.c
8857         * src/plugins/pgpmime/pgpmime.c
8858         * src/plugins/pgpmime/pgpmime.h
8859         * src/plugins/pgpmime/plugin.c
8860         * src/plugins/spamassassin/spamassassin.c
8861         * src/plugins/spamassassin/spamassassin.h
8862         * src/plugins/spamassassin/spamassassin_gtk.c
8863         * src/plugins/trayicon/trayicon.c
8864                 update copyright header
8865
8866 2006-01-13 [paul]       1.9.100cvs141
8867
8868         * src/account.c
8869         * src/export.c
8870         * src/import.c
8871         * src/mainwindow.c
8872         * src/prefs_account.c
8873         * src/prefs_display_header.c
8874         * src/prefs_receive.c
8875         * src/prefs_send.c
8876         * src/prefs_summaries.c
8877         * src/prefs_themes.c
8878         * src/prefs_toolbar.c
8879         * src/gtk/about.c
8880                 various cleanups
8881
8882 2006-01-12 [colin]      1.9.100cvs140
8883
8884         * src/folder.c
8885         * src/folder.h
8886         * src/main.c
8887                 Add --subscribe option
8888                 Let sylpheed-claws email@domain.com equivalent to --compose
8889                 Let sylpheed-claws proto://blah.com equivalent to --subscribe
8890
8891 2006-01-12 [paul]       1.9.100cvs139
8892
8893         * src/mainwindow.c
8894                 append 'Change folder order' label with '...'
8895         * src/prefs_actions.c
8896                 allow reordering of actions list by dnd
8897         * src/gtk/foldersort.c
8898                 make the dialog nicer
8899
8900 2006-01-11 [colin]      1.9.100cvs138
8901
8902         * src/compose.c
8903                 Allow templates without text
8904
8905 2006-01-11 [paul]       1.9.100cvs137
8906
8907         * tools/README
8908         * tools/filter_conv_new.pl
8909                 add info to README
8910                 also check .sylpheed for filter.xml
8911                 be a bit informative to the user
8912
8913 2006-01-11 [colin]      1.9.100cvs136
8914
8915         * src/textview.c
8916                 Fix bug #888 (2.0.0rc3 not displaying image in message view)
8917
8918 2006-01-10 [paul]       1.9.100cvs135
8919
8920         * tools/Makefile.am
8921         * tools/filter_conv_new.pl
8922                 add script to convert new style Sylpheed
8923                 filter rules (Sylpheed >= 0.9.99) to
8924                 Claws filtering rules
8925
8926 2006-01-10 [colin]      1.9.100cvs134
8927
8928         * src/compose.c
8929                 Fix broken line joins in certain conditions
8930                 (between two quoted lines: <enter><enter><up>
8931                  <type a wrapped sentence><go in the first line>
8932                  <insert more text><watch as line joining failed>)
8933
8934 2006-01-10 [paul]       1.9.100cvs133
8935
8936         * src/compose.c
8937                 don't report success in error dialog
8938                 thanks to Colin
8939         * src/common/utils.c
8940                 include some trailing punctuations as URI
8941                 thanks to Hiro
8942
8943 2006-01-10 [paul]       1.9.100cvs132
8944
8945         * src/mimeview.c
8946                 fix incompatible pointer type
8947                 warning
8948
8949 2006-01-10 [paul]       1.9.100cvs131
8950
8951         * src/compose.c
8952                 change Subject in window title
8953                 instantaneously
8954
8955 2006-01-09 [colin]      1.9.100cvs130
8956
8957         * src/addressbook.c
8958         * src/headerview.c
8959         * src/mainwindow.c
8960         * src/messageview.c
8961         * src/mimeview.c
8962         * src/noticeview.c
8963         * src/summaryview.c
8964                 Fix possible crashes on exit and in addressbook
8965
8966 2006-01-09 [paul]       1.9.100cvs129
8967
8968         * src/prefs_msg_colors.c
8969                 some cleanups that I forgot last time
8970
8971 2006-01-09 [paul]       1.9.100cvs128
8972
8973         * README
8974         * src/folderview.c
8975         * src/prefs_msg_colors.c
8976                 add previously hidden option, color_new, to
8977                 the gui
8978                 move the page to Display/
8979                 rework the gui
8980
8981 2006-01-09 [wwp]        1.9.100cvs127
8982
8983         * src/prefs_themes.c
8984                 made the prefs/display/themes layouts spacing less condensed
8985                 (and so they match other prefs/pages' look).
8986
8987 2006-01-09 [paul]       1.9.100cvs126
8988
8989         * src/compose.c
8990         * src/prefs_common.c
8991         * src/prefs_common.h
8992         * src/prefs_wrapping.c
8993                 remove 'wrap at send' option
8994
8995 2006-01-06 [colin]      1.9.100cvs125
8996
8997         * src/compose.c
8998                 Just make completely sure we don't insert "manual line breaks" 
8999                 when wrapping... 
9000
9001 2006-01-04 [paul]
9002
9003         * 2.0.0-rc3 released
9004
9005 2006-01-04 [paul]       1.9.100cvs124
9006
9007         * src/folderview.c
9008                 fix bug 882, 'quick scroll in folder list
9009                 displays wrong folder contents'
9010
9011 2006-01-04 [paul]       1.9.100cvs123
9012
9013         * src/plugins/pgpmime/pgpmime.c
9014                 better debug information when signing
9015                 Patch by Ivan F. Martinez <ivanfm@users.sourceforge.net>
9016
9017 2006-01-03 [colin]      1.9.100cvs122
9018
9019         * configure.ac
9020                 We need to recheck for gpgme 1.0.0 after checking
9021                 for 1.1.1, because if 1.1.1 isn't available, 
9022                 GPGME_LIBS and friends are blanked out by the 
9023                 second check.
9024
9025 2006-01-03 [colin]      1.9.100cvs121
9026
9027         * src/common/prefs.c
9028                 Windows unlink-before rename fix
9029         * src/plugins/pgpcore/sgpgme.c
9030                 Add support for PKA info if available
9031                 Both patches by Werner Koch
9032
9033 2006-01-03 [paul]       1.9.100cvs120
9034
9035         * src/messageview.c
9036                 fix bug 884, 'Send receipt' button visible in queue
9037                 Thanks to Colin
9038
9039 2006-01-02 [colin]      1.9.100cvs119
9040
9041         * src/compose.c
9042         * src/imap.c
9043                 Fix autosave on IMAP and more generally try to
9044                 return the correct ID on a newly added IMAP message
9045
9046 2006-01-02 [paul]       1.9.100cvs118
9047
9048         * manual/keyboard.xml
9049                 edited
9050
9051 2006-01-01 [paul]       1.9.100cvs117
9052
9053         * src/gtk/authors.h
9054                 alphabetical order
9055
9056 2005-12-30 [colin]      1.9.100cvs116
9057
9058         * manual/advanced.xml
9059                 Explain Pre/Post-processing differences.
9060
9061 2005-12-30 [colin]      1.9.100cvs115
9062
9063         * src/mh.c
9064                 Implement copy_msgs for a little optimization
9065         * src/imap.c
9066                 Finish yesterday's fix
9067
9068 2005-12-29 [colin]      1.9.100cvs114
9069
9070         * src/imap.c
9071                 Fix occasional failure in fetching a mail over
9072                 IMAP
9073
9074 2005-12-29 [colin]      1.9.100cvs113
9075
9076         * src/compose.c
9077                 Don't remove a draft when sending it, if it is 
9078                 locked.
9079
9080 2005-12-28 [colin]      1.9.100cvs112
9081
9082         * src/summaryview.c
9083                 Fix leak for real
9084
9085 2005-12-28 [wwp]        1.9.100cvs111
9086
9087         * doc/faq/.cvsignore
9088         * doc/faq/de/.cvsignore
9089         * doc/faq/en/.cvsignore
9090         * doc/faq/es/.cvsignore
9091         * doc/faq/fr/.cvsignore
9092         * doc/faq/it/.cvsignore
9093         * doc/manual/.cvsignore
9094         * doc/manual/de/.cvsignore
9095         * doc/manual/en/.cvsignore
9096         * doc/manual/es/.cvsignore
9097         * doc/manual/fr/.cvsignore
9098         * doc/manual/ja/.cvsignore
9099         * src/plugins/mathml_viewer/.cvsignore
9100                 rollback revival of those files (my bad, sorry for the noise).
9101
9102 2005-12-28 [wwp]        1.9.100cvs110
9103
9104         * src/compose.c
9105                 fix a minor wrapping issue w/ autowrap disabled (patch by Colin).
9106
9107 2005-12-28 [wwp]        1.9.100cvs109
9108
9109         * doc/faq/.cvsignore
9110         * doc/faq/de/.cvsignore
9111         * doc/faq/en/.cvsignore
9112         * doc/faq/es/.cvsignore
9113         * doc/faq/fr/.cvsignore
9114         * doc/faq/it/.cvsignore
9115         * doc/manual/.cvsignore
9116         * doc/manual/de/.cvsignore
9117         * doc/manual/en/.cvsignore
9118         * doc/manual/es/.cvsignore
9119         * doc/manual/fr/.cvsignore
9120         * doc/manual/ja/.cvsignore
9121         * src/plugins/mathml_viewer/.cvsignore
9122         * po/.cvsignore
9123                 more files to ignore.
9124
9125 2005-12-24 [colin]      1.9.100cvs108
9126
9127         * AUTHORS
9128         * src/gtk/authors.h
9129                 Update for Werner
9130
9131 2005-12-24 [colin]      1.9.100cvs107
9132
9133         * src/procmsg.c
9134                 Allow NULL src_msginfo in 
9135                 procmsg_msginfo_new_from_mimeinfo
9136
9137 2005-12-23 [paul]       1.9.100cvs106
9138
9139         * src/plugins/pgpinline/mypgpcore.def
9140                 add this forgotten file
9141
9142 2005-12-23 [colin]      1.9.100cvs105
9143
9144         * src/mainwindow.c
9145                 Fix missing break
9146
9147 2005-12-23 [colin]      1.9.100cvs104
9148
9149         * autogen.sh
9150         * src/folder.c
9151         * src/mh.c
9152         * src/common/plugin.c
9153         * src/common/socket.c
9154         * src/common/socket.h
9155         * src/common/utils.c
9156         * src/common/utils.h
9157         * src/gtk/pluginwindow.c
9158         * src/plugins/pgpcore/plugin.def
9159         * src/plugins/pgpcore/sylpheed.def
9160         * src/plugins/pgpinline/Makefile.am
9161         * src/plugins/pgpinline/plugin.def
9162         * src/plugins/pgpinline/sylpheed.def
9163         * src/plugins/pgpmime/plugin.def
9164         * src/plugins/pgpmime/sylpheed.def
9165                 Various w32 fixes by Werner Koch
9166
9167 2005-12-22 [paul]       1.9.100cvs103
9168
9169         * src/wizard.c
9170                 don't offer IMAP as 'server type' if
9171                 libetpan isn't built in
9172
9173 2005-12-22 [paul]       1.9.100cvs102
9174
9175         * AUTHORS
9176         * src/mainwindow.c
9177         * src/mainwindow.h
9178         * src/toolbar.c
9179         * src/gtk/authors.h
9180                 support GTK_TOOLBAR_BOTH_HORIZ (text
9181                 next to icon) Patch by Marien Zwart
9182                 marienz@users.sf.net
9183                 Also reword the text
9184
9185 2005-12-21 [colin]      1.9.100cvs101
9186
9187         * configure.ac
9188                 Fix DATADIRNAME
9189         * COPYING
9190                 Fix missing section and explicit the exception better
9191         * src/compose.c
9192                 Prevent mail from being lost without notice when an
9193                 SMTP error happens on trying to send an unmodified
9194                 drafted mail.
9195         * src/send_message.c
9196         * src/common/smtp.c
9197                 Fix password remembering when wrong, and add return
9198                 value checks where they should have been
9199         * src/plugins/pgpcore/sylpheed.def
9200         * src/plugins/pgpinline/sylpheed.def
9201         * src/plugins/pgpmime/sylpheed.def
9202                 Add a few symbols needed
9203
9204 2005-12-21 [paul]       1.9.100cvs100
9205
9206         * m4/codeset.m4
9207         * m4/glibc21.m4
9208         * m4/intdiv0.m4
9209         * m4/inttypes-pri.m4
9210         * m4/inttypes.m4
9211         * m4/inttypes_h.m4
9212         * m4/isc-posix.m4
9213         * m4/lcmessage.m4
9214         * m4/stdint_h.m4
9215         * m4/uintmax_t.m4
9216                 gettextization
9217                 thanks to Colin
9218
9219 2005-12-21 [paul]       1.9.100cvs99
9220
9221         * po/sv.po
9222                 fixed by Colin
9223
9224 2005-12-20 [paul]       1.9.100cvs98
9225
9226         * po/sv.po
9227                 updated by Anders Trobäck
9228
9229 2005-12-20 [colin]      1.9.100cvs97
9230
9231         * ABOUT-NLS
9232         * Makefile.am
9233         * autogen.sh
9234         * configure.ac
9235         * config/config.rpath
9236         * config/mkinstalldirs
9237         * m4/Makefile.am
9238         * m4/glibc2.m4
9239         * m4/gnupg.m4
9240         * m4/gpgme.m4
9241         * m4/intmax.m4
9242         * m4/longdouble.m4
9243         * m4/longlong.m4
9244         * m4/printf-posix.m4
9245         * m4/signed.m4
9246         * m4/size_max.m4
9247         * m4/ulonglong.m4
9248         * m4/wchar_t.m4
9249         * m4/wint_t.m4
9250         * m4/xsize.m4
9251         * po/Makefile.in.in
9252         * po/Makevars
9253         * po/bg.po
9254         * po/ca.po
9255         * po/cs.po
9256         * po/de.po
9257         * po/el.po
9258         * po/en_GB.po
9259         * po/es.po
9260         * po/fi.po
9261         * po/fr.po
9262         * po/hr.po
9263         * po/hu.po
9264         * po/it.po
9265         * po/ja.po
9266         * po/ko.po
9267         * po/nb.po
9268         * po/nl.po
9269         * po/pl.po
9270         * po/pt_BR.po
9271         * po/ru.po
9272         * po/sk.po
9273         * po/sr.po
9274         * po/stamp-po
9275         * po/sv.po
9276         * po/zh_CN.po
9277         * po/zh_TW.po
9278         * src/Makefile.am
9279         * src/codeconv.c
9280         * src/compose.c
9281         * src/exporthtml.c
9282         * src/exportldif.c
9283         * src/folder.c
9284         * src/main.c
9285         * src/manual.c
9286         * src/mh.c
9287         * src/mimeview.c
9288         * src/send_message.c
9289         * src/common/Makefile.am
9290         * src/common/fnmatch.c
9291         * src/common/fnmatch.h
9292         * src/common/fnmatch_loop.c
9293         * src/common/nntp.c
9294         * src/common/plugin.c
9295         * src/common/smtp.c
9296         * src/common/socket.c
9297         * src/common/string_match.c
9298         * src/common/sylpheed.c
9299         * src/common/utils.c
9300         * src/common/utils.h
9301         * src/common/w32_dirent.c
9302         * src/common/w32_reg.c
9303         * src/common/w32_signal.c
9304         * src/common/w32_stat.c
9305         * src/common/w32_stdio.c
9306         * src/common/w32_stdlib.c
9307         * src/common/w32_string.c
9308         * src/common/w32_time.c
9309         * src/common/w32_unistd.c
9310         * src/common/w32_wait.c
9311         * src/common/w32lib.h
9312         * src/etpan/Makefile.am
9313         * src/gtk/Makefile.am
9314         * src/plugins/clamav/Makefile.am
9315         * src/plugins/demo/Makefile.am
9316         * src/plugins/dillo_viewer/Makefile.am
9317         * src/plugins/pgpcore/Makefile.am
9318         * src/plugins/pgpcore/passphrase.c
9319         * src/plugins/pgpcore/plugin.def
9320         * src/plugins/pgpcore/sgpgme.c
9321         * src/plugins/pgpcore/sylpheed.def
9322         * src/plugins/pgpcore/version.rc
9323         * src/plugins/pgpinline/Makefile.am
9324         * src/plugins/pgpinline/plugin.def
9325         * src/plugins/pgpinline/sylpheed.def
9326         * src/plugins/pgpinline/version.rc
9327         * src/plugins/pgpmime/Makefile.am
9328         * src/plugins/pgpmime/mypgpcore.def
9329         * src/plugins/pgpmime/plugin.def
9330         * src/plugins/pgpmime/sylpheed.def
9331         * src/plugins/pgpmime/version.rc
9332         * src/plugins/spamassassin/Makefile.am
9333                 Very little ;-) patch from Werner Koch, providing
9334                 infrastructure for cross-compiling to Win32
9335
9336 2005-12-20 [paul]       1.9.100cvs96
9337
9338         * src/account.c
9339         * src/account.h
9340         * src/mainwindow.c
9341         * src/mainwindow.h
9342         * src/toolbar.c
9343         * src/toolbar.h
9344                 add a combo to the Get All button, allowing
9345                 quick retrieval from any account
9346                 Patch by Fabien Vantard, slightly modified
9347                 by Colin
9348         * src/gtk/about.c
9349                 i18n fix. Patch by Fabien Vantard
9350
9351 2005-12-19 [colin]      1.9.100cvs95
9352
9353         * src/compose.c
9354         * src/compose.h
9355                 Don't automatically join lines when they've 
9356                 been separated by the user and not automatically
9357
9358 2005-12-19 [paul]       1.9.100cvs94
9359
9360         * src/gtk/pluginwindow.c
9361                 i18n fix.
9362                 Patch by Fabien Vantard
9363
9364 2005-12-15 [paul]       1.9.100cvs93
9365
9366         * src/common/plugin.c
9367         * src/common/plugin.h
9368         * src/gtk/pluginwindow.c
9369         * src/plugins/clamav/clamav_plugin.c
9370         * src/plugins/demo/demo.c
9371         * src/plugins/dillo_viewer/dillo_viewer.c
9372         * src/plugins/pgpcore/plugin.c
9373         * src/plugins/pgpinline/plugin.c
9374         * src/plugins/pgpmime/plugin.c
9375         * src/plugins/spamassassin/spamassassin.c
9376         * src/plugins/trayicon/trayicon.c
9377                 add plugin_version()
9378
9379 2005-12-15 [colin]      1.9.100cvs92
9380
9381         * src/compose.c
9382                 Further fix bug #875
9383
9384 2005-12-15 [paul]       1.9.100cvs91
9385
9386         * src/gtk/filesel.c
9387                 fix attach_load_dir getting set to
9388                 PLUGINDIR on plugin load
9389
9390 2005-12-14 [mones]      1.9.100cvs90
9391
9392         * manual/ack.xml
9393         * manual/keyboard.xml
9394                 Initial draft and some shortcuts added
9395                 
9396         * po/es.po
9397                 Updated translation
9398
9399 2005-12-14 [colin]      1.9.100cvs89
9400
9401         * src/compose.c
9402         * src/imap.c
9403         * src/summaryview.c
9404         * src/gtk/gtkaspell.c
9405                 More leaks fixed
9406         * src/prefs_folder_item.c
9407                 Fix recursive prefs apply
9408
9409
9410 2005-12-14 [colin]      1.9.100cvs88
9411
9412         * src/compose.c
9413                 Fix bug #875 (Freeze On Inline Forward of 
9414                 Large Message)
9415
9416 2005-12-13 [colin]      1.9.100cvs87
9417
9418         * src/compose.c
9419                 Uniq-ify and sort the mimetypes list
9420                 Patch by Fabien Vantard
9421
9422 2005-12-13 [colin]      1.9.100cvs86
9423
9424         * src/imap.c
9425         * src/etpan/imap-thread.c
9426                 Fix leaks (patch by Hoa)
9427         * src/news.c
9428         * src/common/plugin.c
9429                 Fix leaks
9430
9431 2005-12-12 [colin]
9432
9433         * 2.0.0-rc2 released
9434
9435 2005-12-12 [colin]      1.9.100cvs85
9436
9437         * src/matcher.c
9438                 Fix a leak
9439
9440 2005-12-12 [wwp]        1.9.100cvs84
9441
9442         * src/gtk/icon_legend.c
9443                 fix misbehaviour and crash when closing the legend window
9444         using the Esc key (patch by Fabien Vantard).
9445
9446 2005-12-12 [paul]       1.9.100cvs83
9447
9448         * src/browseldap.c
9449         * src/foldersel.c
9450         * src/prefs_actions.c
9451         * src/prefs_filtering.c
9452         * src/prefs_matcher.c
9453         * src/prefs_spelling.glade      ** REMOVED **
9454         * src/prefs_template.c
9455         * src/gtk/foldersort.glade      ** REMOVED **
9456         * src/gtk/pluginwindow.c
9457         * src/gtk/pluginwindow.glade    ** REMOVED **
9458         * src/plugins/spamassassin/spamassassin_gtk.glade       ** REMOVED **
9459                 cleanups
9460
9461 2005-12-11 [paul]       1.9.100cvs82
9462
9463         * src/gtk/filesel.c
9464                 fix attach_load_dir crasher (double free)
9465
9466 2005-12-09 [paul]       1.9.100cvs81
9467
9468         * po/POTFILES.in
9469         * src/mainwindow.c
9470         * src/gtk/Makefile.am
9471         * src/gtk/icon_legend.c
9472         * src/gtk/icon_legend.h
9473                 add icon legend
9474         * src/manual.c
9475                 cleanup
9476
9477 2005-12-09 [paul]       1.9.100cvs80
9478
9479         * src/plugins/pgpcore/passphrase.c
9480                 wrap the label in the dialog
9481
9482 2005-12-09 [colin]      1.9.100cvs79
9483
9484         * src/plugins/pgpcore/sgpgme.c
9485                 Display (untrusted) on not trusted signatures
9486                 Patch by Michal Èihaø <michal@cihar.com>
9487                 Closes bug #867 (Report also key trust)
9488
9489 2005-12-09 [colin]      1.9.100cvs78
9490
9491         * src/common/plugin.c
9492                 Update licence check, following Eben Moglen's advice
9493
9494 2005-12-08 [colin]      1.9.100cvs77
9495
9496         * src/folder.c
9497                 Fix the occasionnal item->cache != NULL 
9498                 assertion failure. 
9499
9500 2005-12-08 [colin]      1.9.100cvs76
9501
9502         * src/mimeview.c
9503         * src/plugins/pgpcore/sgpgme.c
9504                 Print key id when unable to check it
9505                 Closes bug #866 (Show key id when missing)
9506
9507 2005-12-08 [paul]       1.9.100cvs75
9508
9509         * src/prefs_common.c
9510         * src/prefs_common.h
9511         * src/gtk/filesel.c
9512                 remember load attachment dir
9513
9514 2005-12-07 [colin]      1.9.100cvs74
9515
9516         * src/prefs_toolbar.c
9517                 Gtk fixes, patch by Fabien Vantard
9518
9519 2005-12-07 [colin]      1.9.100cvs73
9520
9521         * src/action.c
9522         * src/compose.c
9523         * src/compose.h
9524                 Fix bug #839 (Quoted text isn't colored after 
9525                 executing an action)
9526         * src/common/plugin.c
9527                 Require plugins to declare their licence in plugin_licence()
9528                 Refuse to load non-GPL plugins as they'd be illegal (as 
9529                 derived works of Sylpheed-Claws, they must be GPL).
9530         * src/plugins/clamav/clamav_plugin.c
9531         * src/plugins/demo/demo.c
9532         * src/plugins/dillo_viewer/dillo_viewer.c
9533         * src/plugins/pgpcore/plugin.c
9534         * src/plugins/pgpinline/plugin.c
9535         * src/plugins/pgpmime/plugin.c
9536         * src/plugins/spamassassin/spamassassin.c
9537         * src/plugins/trayicon/trayicon.c
9538                 Add plugin_licence()
9539
9540 2005-12-07 [paul]       1.9.100cvs72
9541
9542         * configure.ac
9543         * src/mainwindow.c
9544         * src/manual.c
9545         * src/manual.h
9546         * src/common/defs.h
9547                 clean up after local FAQ removal and
9548                 temporary manual removal
9549
9550 2005-12-06 [colin]      1.9.100cvs71
9551
9552         * configure.ac
9553         * doc/Makefile.am
9554         * doc/faq/.cvsignore
9555         * doc/faq/Makefile.am
9556         * doc/faq/de/.cvsignore
9557         * doc/faq/de/Makefile.am
9558         * doc/faq/de/sylpheed-faq-1.html
9559         * doc/faq/de/sylpheed-faq-2.html
9560         * doc/faq/de/sylpheed-faq-3.html
9561         * doc/faq/de/sylpheed-faq.html
9562         * doc/faq/en/.cvsignore
9563         * doc/faq/en/Makefile.am
9564         * doc/faq/en/sylpheed-faq-1.html
9565         * doc/faq/en/sylpheed-faq-2.html
9566         * doc/faq/en/sylpheed-faq-3.html
9567         * doc/faq/en/sylpheed-faq-4.html
9568         * doc/faq/en/sylpheed-faq.html
9569         * doc/faq/es/.cvsignore
9570         * doc/faq/es/Makefile.am
9571         * doc/faq/es/sylpheed-faq-1.html
9572         * doc/faq/es/sylpheed-faq-2.html
9573         * doc/faq/es/sylpheed-faq-3.html
9574         * doc/faq/es/sylpheed-faq-4.html
9575         * doc/faq/es/sylpheed-faq.html
9576         * doc/faq/fr/.cvsignore
9577         * doc/faq/fr/Makefile.am
9578         * doc/faq/fr/sylpheed-faq-1.html
9579         * doc/faq/fr/sylpheed-faq-2.html
9580         * doc/faq/fr/sylpheed-faq-3.html
9581         * doc/faq/fr/sylpheed-faq.html
9582         * doc/faq/it/.cvsignore
9583         * doc/faq/it/Makefile.am
9584         * doc/faq/it/sylpheed-faq-1.html
9585         * doc/faq/it/sylpheed-faq-2.html
9586         * doc/faq/it/sylpheed-faq-3.html
9587         * doc/faq/it/sylpheed-faq.html
9588         * doc/manual/.cvsignore
9589         * doc/manual/Makefile.am
9590         * doc/manual/de/.cvsignore
9591         * doc/manual/de/Makefile.am
9592         * doc/manual/de/sylpheed-1.html
9593         * doc/manual/de/sylpheed-10.html
9594         * doc/manual/de/sylpheed-11.html
9595         * doc/manual/de/sylpheed-12.html
9596         * doc/manual/de/sylpheed-13.html
9597         * doc/manual/de/sylpheed-14.html
9598         * doc/manual/de/sylpheed-15.html
9599         * doc/manual/de/sylpheed-16.html
9600         * doc/manual/de/sylpheed-17.html
9601         * doc/manual/de/sylpheed-18.html
9602         * doc/manual/de/sylpheed-19.html
9603         * doc/manual/de/sylpheed-2.html
9604         * doc/manual/de/sylpheed-20.html
9605         * doc/manual/de/sylpheed-3.html
9606         * doc/manual/de/sylpheed-4.html
9607         * doc/manual/de/sylpheed-5.html
9608         * doc/manual/de/sylpheed-6.html
9609         * doc/manual/de/sylpheed-7.html
9610         * doc/manual/de/sylpheed-8.html
9611         * doc/manual/de/sylpheed-9.html
9612         * doc/manual/de/sylpheed.html
9613         * doc/manual/en/.cvsignore
9614         * doc/manual/en/Makefile.am
9615         * doc/manual/en/sylpheed-1.html
9616         * doc/manual/en/sylpheed-10.html
9617         * doc/manual/en/sylpheed-11.html
9618         * doc/manual/en/sylpheed-12.html
9619         * doc/manual/en/sylpheed-13.html
9620         * doc/manual/en/sylpheed-14.html
9621         * doc/manual/en/sylpheed-15.html
9622         * doc/manual/en/sylpheed-16.html
9623         * doc/manual/en/sylpheed-17.html
9624         * doc/manual/en/sylpheed-18.html
9625         * doc/manual/en/sylpheed-19.html
9626         * doc/manual/en/sylpheed-2.html
9627         * doc/manual/en/sylpheed-20.html
9628         * doc/manual/en/sylpheed-21.html
9629         * doc/manual/en/sylpheed-22.html
9630         * doc/manual/en/sylpheed-3.html
9631         * doc/manual/en/sylpheed-4.html
9632         * doc/manual/en/sylpheed-5.html
9633         * doc/manual/en/sylpheed-6.html
9634         * doc/manual/en/sylpheed-7.html
9635         * doc/manual/en/sylpheed-8.html
9636         * doc/manual/en/sylpheed-9.html
9637         * doc/manual/en/sylpheed.html
9638         * doc/manual/es/.cvsignore
9639         * doc/manual/es/Makefile.am
9640         * doc/manual/es/sylpheed-1.html
9641         * doc/manual/es/sylpheed-10.html
9642         * doc/manual/es/sylpheed-11.html
9643         * doc/manual/es/sylpheed-12.html
9644         * doc/manual/es/sylpheed-13.html
9645         * doc/manual/es/sylpheed-14.html
9646         * doc/manual/es/sylpheed-15.html
9647         * doc/manual/es/sylpheed-16.html
9648         * doc/manual/es/sylpheed-17.html
9649         * doc/manual/es/sylpheed-18.html
9650         * doc/manual/es/sylpheed-19.html
9651         * doc/manual/es/sylpheed-2.html
9652         * doc/manual/es/sylpheed-20.html
9653         * doc/manual/es/sylpheed-3.html
9654         * doc/manual/es/sylpheed-4.html
9655         * doc/manual/es/sylpheed-5.html
9656         * doc/manual/es/sylpheed-6.html
9657         * doc/manual/es/sylpheed-7.html
9658         * doc/manual/es/sylpheed-8.html
9659         * doc/manual/es/sylpheed-9.html
9660         * doc/manual/es/sylpheed.html
9661         * doc/manual/fr/.cvsignore
9662         * doc/manual/fr/Makefile.am
9663         * doc/manual/fr/sylpheed-1.html
9664         * doc/manual/fr/sylpheed-10.html
9665         * doc/manual/fr/sylpheed-11.html
9666         * doc/manual/fr/sylpheed-12.html
9667         * doc/manual/fr/sylpheed-13.html
9668         * doc/manual/fr/sylpheed-14.html
9669         * doc/manual/fr/sylpheed-15.html
9670         * doc/manual/fr/sylpheed-16.html
9671         * doc/manual/fr/sylpheed-17.html
9672         * doc/manual/fr/sylpheed-18.html
9673         * doc/manual/fr/sylpheed-19.html
9674         * doc/manual/fr/sylpheed-2.html
9675         * doc/manual/fr/sylpheed-20.html
9676         * doc/manual/fr/sylpheed-3.html
9677         * doc/manual/fr/sylpheed-4.html
9678         * doc/manual/fr/sylpheed-5.html
9679         * doc/manual/fr/sylpheed-6.html
9680         * doc/manual/fr/sylpheed-7.html
9681         * doc/manual/fr/sylpheed-8.html
9682         * doc/manual/fr/sylpheed-9.html
9683         * doc/manual/fr/sylpheed.html
9684         * doc/manual/ja/.cvsignore
9685         * doc/manual/ja/Makefile.am
9686         * doc/manual/ja/sylpheed-1.html
9687         * doc/manual/ja/sylpheed-10.html
9688         * doc/manual/ja/sylpheed-11.html
9689         * doc/manual/ja/sylpheed-12.html
9690         * doc/manual/ja/sylpheed-13.html
9691         * doc/manual/ja/sylpheed-14.html
9692         * doc/manual/ja/sylpheed-15.html
9693         * doc/manual/ja/sylpheed-16.html
9694         * doc/manual/ja/sylpheed-17.html
9695         * doc/manual/ja/sylpheed-18.html
9696         * doc/manual/ja/sylpheed-19.html
9697         * doc/manual/ja/sylpheed-2.html
9698         * doc/manual/ja/sylpheed-20.html
9699         * doc/manual/ja/sylpheed-3.html
9700         * doc/manual/ja/sylpheed-4.html
9701         * doc/manual/ja/sylpheed-5.html
9702         * doc/manual/ja/sylpheed-6.html
9703         * doc/manual/ja/sylpheed-7.html
9704         * doc/manual/ja/sylpheed-8.html
9705         * doc/manual/ja/sylpheed-9.html
9706         * doc/manual/ja/sylpheed.html
9707         * doc/manual/ja/sylpheed.sgml
9708         * src/mainwindow.c
9709                 Remove outdated manual and faq. Noisy, eh?
9710
9711 2005-12-06 [colin]      1.9.100cvs70
9712
9713         * src/compose.c
9714         * src/quote_fmt_parse.y
9715         * src/undo.c
9716         * src/undo.h
9717                 Allow %X to position cursor at 0 
9718                 (no %X = before signature)
9719                 Fix paste as quotation putting the cursor at 0
9720                 Fix undo offsets when pasting
9721                 Insert the quote_fmt at once instead of line 
9722                 by line
9723                 Fix [Edited] when starting to reply/forward
9724
9725 2005-12-06 [paul]       1.9.100cvs69
9726
9727         * src/plugins/clamav/clamav_plugin_gtk.c
9728                 add another tooltip
9729         * src/plugins/spamassassin/spamassassin_gtk.c
9730                 rework spamassassin_create_widget_func()
9731
9732 2005-12-05 [colin]      1.9.100cvs68
9733
9734         * po/POTFILES.in
9735                 Fix make release ;-)
9736
9737 2005-12-05 [colin]      1.9.100cvs67
9738
9739         * src/compose.c
9740         * src/compose.h
9741                 Fix cursor positioning (not obeying %X)
9742
9743 2005-12-05 [paul]       1.9.100cvs66
9744
9745         * src/plugins/dillo_viewer/dillo_prefs.c
9746                 fix compilation warning
9747
9748 2005-12-05 [paul]       1.9.100cvs65
9749
9750         * src/prefs_spelling.c
9751         * src/plugins/trayicon/trayicon.c
9752                 cleanups - remove unused stuff
9753
9754 2005-12-05 [paul]       1.9.100cvs64
9755
9756         * README
9757         * manual/plugins.xml
9758                 remove info about removed mathml_viewer plugin
9759
9760 2005-12-05 [paul]       1.9.100cvs63
9761
9762         * configure.ac
9763         * src/plugins/Makefile.am
9764         * src/plugins/mathml_viewer/.cvsignore
9765         * src/plugins/mathml_viewer/Makefile.am
9766         * src/plugins/mathml_viewer/mathml_viewer.c
9767                 remove unmaintained mathml_viewer plugin
9768
9769 2005-12-05 [paul]       1.9.100cvs62
9770
9771         * src/summaryview.c
9772                 obey prefs_common.always_show_msg when
9773                 moving a msg
9774                 Thanks to Colin
9775
9776 2005-12-05 [paul]       1.9.100cvs61
9777
9778         * src/compose.c
9779         * src/prefs_account.c
9780         * src/prefs_filtering.c
9781         * src/prefs_quote.c
9782         * src/prefs_spelling.c
9783         * src/prefs_toolbar.c
9784         * src/summaryview.c
9785         * src/gtk/gtkutils.c
9786         * src/gtk/quicksearch.c
9787         * src/plugins/dillo_viewer/dillo_prefs.c
9788                 dialog cleanups
9789
9790 2005-12-04 [paul]       1.9.100cvs60
9791
9792         * src/inc.c
9793         * src/prefs_account.c
9794         * src/prefs_account.h
9795                 allow a Local account to specify a
9796                 default inbox
9797                 (closes bug 843 'Inbox cannot be changed for local
9798                  mailboxes')
9799
9800 2005-12-04 [colin]      1.9.100cvs59
9801
9802         * src/plugins/trayicon/trayicon.c
9803                 Remove Get, rename Get All to Get Mail in order to
9804                 be consistent with the default main toolbar
9805
9806 2005-12-03 [colin]      1.9.100cvs58
9807
9808         * manual/gpl.xml
9809         * manual/sylpheed-claws-manual.xml
9810                 Add GPL appendix
9811
9812 2005-12-03 [paul]       1.9.100cvs57
9813
9814         * AUTHORS
9815         * po/sv.po
9816         * src/gtk/authors.h
9817                 new (partially complete) Swedish translation
9818                 by Anders Troback <sylpheed@troback.com>
9819
9820 2005-12-02 [paul]       1.9.100cvs56
9821
9822         * configure.ac
9823                 libetpan 0.41 required
9824
9825 2005-12-02 [paul]       1.9.100cvs55
9826
9827         * src/plugins/clamav/clamav_plugin.c
9828         * src/plugins/clamav/clamav_plugin.h
9829         * src/plugins/clamav/clamav_plugin_gtk.c
9830         * src/plugins/spamassassin/spamassassin.c
9831         * src/plugins/spamassassin/spamassassin.h
9832         * src/plugins/spamassassin/spamassassin_gtk.c
9833                 unregister prefs pages on unloading, thus
9834                 preventing a crash
9835                 (thanks to Colin for the hint)
9836
9837 2005-12-02 [wwp]        1.9.100cvs54
9838
9839         * src/quote_fmt.h
9840         * src/quote_fmt_parse.y
9841                 fix misuse of gboolean*, use gboolean instead
9842                 (thanks to Paul, Colin, for pointing out that scaring one)
9843
9844 2005-12-02 [paul]       1.9.100cvs53
9845
9846         * src/plugins/clamav/clamav_plugin.c
9847                 int no --> unsigned int no
9848         * src/plugins/clamav/clamav_plugin_gtk.c
9849                 rework config page
9850
9851 2005-12-02 [wwp]        1.9.100cvs52
9852
9853         * src/compose.c
9854         * src/prefs_template.c
9855         * src/quote_fmt.h
9856         * src/quote_fmt_parse.y
9857                 prevent from executing |f and |p templates commands when
9858                 adding or replacing templates in prefs (avoids annoying and
9859                 potentially dangerous behaviours)
9860
9861 2005-12-02 [paul]       1.9.100cvs51
9862
9863         * src/prefs_common.c
9864                 allow translation of some default values
9865                 Patch by Fabien Vantard
9866
9867 2005-12-02 [paul]       1.9.100cvs50
9868
9869         * src/codeconv.c
9870         * src/codeconv.h
9871         * src/prefs_common.c
9872         * src/prefs_common.h
9873         * src/prefs_message.c
9874         * src/textview.c
9875                 remove obsolete 'convert_mb_alnum' option
9876                 and related stuff
9877         * src/gtk/about.c
9878                 remove unused 'about_textview_visibility_notify'
9879
9880 2005-12-02 [paul]       1.9.100cvs49
9881
9882         * src/prefs_account.c
9883         * src/prefs_compose_writing.c
9884         * src/prefs_fonts.c
9885         * src/prefs_gtk.h
9886         * src/prefs_image_viewer.c
9887         * src/prefs_message.c
9888         * src/prefs_other.c
9889         * src/prefs_receive.c
9890         * src/prefs_send.c
9891         * src/prefs_spelling.c
9892         * src/prefs_summaries.c
9893         * src/prefs_wrapping.c
9894         * src/plugins/dillo_viewer/dillo_prefs.c
9895         * src/plugins/pgpcore/prefs_gpg.c
9896                 several cleanups to the prefs dialogs
9897                 (slightly modified) patch by Fabien Vantard
9898
9899 2005-12-02 [paul]       1.9.100cvs48
9900
9901         * src/main.c
9902                 --exit means exit
9903         * src/send_message.c
9904                 fix crash on send when connection fails
9905
9906         Thanks to Colin
9907
9908 2005-12-01 [colin]      1.9.100cvs47
9909
9910         * src/html.c
9911                 Translate &hellip; to "..."
9912
9913 2005-11-30 [colin]      1.9.100cvs46
9914
9915         * src/matcher.c
9916         * src/matcher.h
9917                 Optimize back yesterday's fix.
9918
9919 2005-11-30 [paul]       1.9.100cvs45
9920
9921         * manual/faq.xml
9922                 standardised
9923         * manual/intro.xml
9924                 written by Colin, edited by me
9925
9926 2005-11-29 [colin]      1.9.100cvs44
9927
9928         * src/matcher.c
9929                 Skip headers unconditionnaly in match_body if the
9930                 rule is not message or ~message
9931
9932 2005-11-29 [colin]      1.9.100cvs43
9933
9934         * src/matcher.c
9935                 Fix body_part and such, not skipping headers 
9936                 if the matchcriteria wasn't the first in the rule
9937
9938 2005-11-29 [colin]      1.9.100cvs42
9939
9940         * src/compose.c
9941                 Add Windows-1252 (Closes bug #863, windows-1252 encoding 
9942                 option missing from message view window)
9943                 Fix double text D'n'D with gtk-2.8
9944         * src/matcher.c
9945                 Fix ~message, ~headers_part, ~body_part rules
9946         * src/messageview.c
9947                 Add Windows-1252 (Closes bug #863)
9948                 Fix accels
9949         * src/gtk/gtkaspell.c
9950                 Properly destroy accels in all menus
9951
9952 2005-11-29 [mones]      1.9.100cvs41
9953
9954         * po/es.po
9955                 Updated.
9956
9957 2005-11-27 [colin]      1.9.100cvs40
9958
9959         * src/mh_gtk.c
9960                 "/Remove mailbox" -> "/Remove mailbox..."
9961
9962 2005-11-27 [paul]       1.9.100cvs39
9963
9964         * AUTHORS
9965         * po/de.po
9966         * src/gtk/authors.h
9967                 updated by new maintainer, Stephan Sachse
9968
9969 2005-11-27 [paul]       1.9.100cvs38
9970
9971         * manual/faq.xml
9972                 written by Colin, edited by me
9973
9974 2005-11-27 [paul]       1.9.100cvs37
9975
9976         * src/prefs_common.c
9977         * src/prefs_common.h
9978         * src/prefs_receive.c
9979         * src/prefs_summaries.c
9980                 move 'go to inbox after receiving new mail'
9981                 option from display/sumamaries to mail
9982                 handling/receive, and rework prefs_summaries
9983                 dialog a little
9984
9985 2005-11-25 [martin]     1.9.100cvs36
9986
9987         * po/de.po
9988             fixed windows-1252 translation;
9989             translated some new and fuzzy strings
9990
9991 2005-11-25 [paul]       1.9.100cvs35
9992
9993         * src/plugins/clamav/clamav_plugin.c
9994                 complete the update done in cvs34
9995
9996 2005-11-25 [paul]       1.9.100cvs34
9997
9998         * src/plugins/clamav/clamav_plugin.c
9999                 reflect upstream changes
10000
10001 2005-11-25 [paul]       1.9.100cvs33
10002
10003         * manual/ack.xml
10004         * manual/plugins.xml
10005         * manual/sylpheed-claws-manual.xml
10006                 written/updated by Colin, edited by me
10007         * tools/acroread2sylpheed.pl
10008                 update binary name
10009
10010 2005-11-24 [colin]      1.9.100cvs32
10011
10012         * src/compose.c
10013                 Fix bug #856 (reediting messages forgets Request
10014                 Return Receipt)
10015
10016 2005-11-24 [paul]       1.9.100cvs31
10017
10018         * manual/addrbook.xml
10019         * manual/starting.xml
10020                 written by Colin, proofread, edited, adapted by me
10021         * manual/advanced.xml
10022                 add some Actions examples
10023         * src/importldif.c
10024                 use a Save button instead of a Close button
10025         * src/wizard.c
10026                 indicate mandatory fields
10027                 fix page display
10028                 Thanks to Colin
10029
10030 2005-11-23 [colin]      1.9.100cvs30
10031
10032         * src/addressbook.c
10033                 Rename menu item, fix possible crash after
10034                 deletion of books
10035         * src/addrindex.c
10036                 Allow searching for '*' in ldap
10037         * src/browseldap.c
10038                 Fix "Browse Entry" (did anyone use it?)
10039         * src/wizard.c
10040                 Add guards for mandatory information
10041
10042 2005-11-23 [paul]       1.9.100cvs29
10043
10044         * manual/advanced.xml
10045                 corrections to the English
10046
10047 2005-11-23 [colin]      1.9.100cvs28
10048
10049         * src/mimeview.c
10050                 Fix possible crash at exit. After the call to
10051                 gtk_container_remove(), the Viewer's widget has no
10052                 more parent so gtk+ automatically frees it and its
10053                 sons. If destroy_viewer() then try to access it,
10054                 problems ensue.
10055
10056 2005-11-22 [colin]      1.9.100cvs27
10057
10058         * src/compose.c
10059         * src/gtk/gtkaspell.c
10060                 Fix right-clicking on a misspelled word
10061                 Fix More... in suggestions menu
10062
10063 2005-11-22 [wwp]        1.9.100cvs26
10064
10065         * src/prefs_template.c
10066                 templates works: re-sort templates list when adding or replacing,
10067                 prevent from adding or replacing when the template name is empty
10068
10069 2005-11-21 [colin]      1.9.100cvs25
10070
10071         * src/addressbook.c
10072                 Fix some addressbook suckage (dnd, select all)
10073         * src/compose.c
10074         * src/gtk/gtkaspell.c
10075         * src/gtk/gtkaspell.h
10076                 Make the spellchecker menu work with the 
10077                 GtkTextView one instead of overriding it
10078
10079 2005-11-20 [paul]       1.9.100cvs24
10080
10081         * manual/handling.xml
10082                 proofread and corrected
10083
10084 2005-11-20 [paul]       1.9.100cvs23
10085
10086         * manual/Makefile
10087                 generate html as one file
10088         * manual/advanced.xml
10089                 fix output generation
10090                 reformat hidden options list
10091         * manual/manual.xml     ** REMOVED **
10092         * manual/sylpheed-claws-manual.xml      ** ADDED **
10093                 renamed
10094
10095 2005-11-18 [colin]      1.9.100cvs22
10096
10097         * src/prefs_account.c
10098                 Fix layout in news and mbox accounts
10099         * manual/account.xml
10100         * manual/advanced.xml
10101                 New contents for Paul to check :)
10102
10103 2005-11-18 [wwp]        1.9.100cvs21
10104
10105         * src/gtk/quicksearch.c
10106                 don't update extended quicksearch buttons twice
10107
10108 2005-11-18 [paul]       1.9.100cvs20
10109
10110         * src/textview.c
10111                 complete 1.9.100cvs19
10112
10113 2005-11-18 [paul]       1.9.100cvs19
10114
10115         * src/compose.c
10116                 cosmetic improvements
10117         * src/textview.c
10118                 also list text/* attachments
10119
10120 2005-11-18 [colin]      1.9.100cvs18
10121
10122         * src/summaryview.c
10123                 Use column 0 instead of -1 in 
10124                 gtk_ctree_node_moveto, in a naive
10125                 hope it'll fix the gtk-related crashes
10126
10127 2005-11-18 [colin]      1.9.100cvs17
10128
10129         * src/gtk/inputdialog.c
10130                 Fix icon staying the first one
10131
10132 2005-11-17 [wwp]        1.9.100cvs16
10133                 fix possible problem showing some quicksearch buttons, and a bad
10134                 call to g_return_if_fail in a function that returns a value (both
10135                 fixes by Fabien Vantard)
10136
10137 2005-11-15 [wwp]        1.9.100cvs15
10138
10139         * src/gtk/quicksearch.c
10140                 added a tooltip to that obscure ... quicksearch button
10141
10142 2005-11-15 [wwp]        1.9.100cvs14
10143
10144         * src/gtk/quicksearch.c
10145                 add a quicksearch helper to filtering expression users: the ... button
10146                 raises the condition expr window. condition expressions set up w/ this
10147                 window are used by the quicksearch if the user closes it pressing OK.
10148
10149 2005-11-14 [paul]       1.9.100cvs13
10150
10151         * src/plugins/clamav/clamav_plugin.c
10152         * src/plugins/spamassassin/spamassassin.c
10153                 change plugin type following recent merging
10154
10155 2005-11-14 [wwp]        1.9.100cvs12
10156
10157         * src/folder.c
10158                 prevent from crashing when copying/moving message(s) from and
10159                 to the same folder
10160
10161 2005-11-14 [paul]       1.9.100cvs11
10162
10163         * src/plugins/clamav/Makefile.am
10164         * src/plugins/clamav/clamav_plugin.c
10165         * src/plugins/clamav/clamav_plugin.h
10166         * src/plugins/clamav/clamav_plugin_gtk.c
10167                 also merge clamav and clamav_gtk plugins
10168
10169 2005-11-13 [colin]      1.9.100cvs10
10170
10171         * configure.ac
10172         * src/plugins/spamassassin/Makefile.am
10173         * src/plugins/spamassassin/spamassassin.c
10174         * src/plugins/spamassassin/spamassassin.h
10175         * src/plugins/spamassassin/spamassassin_gtk.c
10176                 Merge spamassassin and spamassassin_gtk plugins,
10177                 and build it by default.
10178
10179 2005-11-12 [colin]      1.9.100cvs9
10180
10181         * src/etpan/imap-thread.c
10182                 Fix gcc warning
10183
10184 2005-11-12 [colin]      1.9.100cvs8
10185
10186         * src/procmime.c
10187                 Revert 1.9.100cvs3 - it breaks PGP sign+encrypt
10188
10189 2005-11-10 [colin]      1.9.100cvs7
10190
10191         * src/main.c
10192                 Fix bug #845 (sylpheed-claws 1.9.99+ start in 
10193                 minimised state)
10194
10195 2005-11-10 [wwp]        1.9.100cvs6
10196
10197         * src/gtk/description_window.c
10198                 fix a crash when closing description windows using the WM's [X] button
10199
10200 2005-11-09 [colin]      1.9.100cvs5
10201
10202         * src/common/ssl.c
10203                 Update libetpan call to follow upstream
10204                 (yes, this requires libetpan-0.40cvs3)
10205
10206 2005-11-08 [colin]      1.9.100cvs4
10207
10208         * src/compose.c
10209         * src/textview.c
10210         * src/common/utils.c
10211         * src/common/utils.h
10212                 Enhance the email parser
10213
10214 2005-11-08 [colin]      1.9.100cvs3
10215
10216         * src/procmime.c
10217                 Fix what looks like an off-by-one (fixes 
10218                 attachments from the Bat)
10219
10220 2005-11-08 [wwp]        1.9.100cvs2
10221
10222         * src/main.c
10223                 renamed some occurrences of "Sylpheed" to "Sylpheed-Claws"
10224
10225 2005-11-08 [wwp]        1.9.100cvs1
10226
10227         * src/main.c
10228                 allow exiting Sylpheed-Claws from command-line
10229
10230 2005-11-08 [paul]       1.9.100
10231
10232         1.9.100 released
10233
10234 2005-11-07 [colin]      1.9.99cvs17
10235
10236         * src/addritem.c
10237         * src/ldif.c
10238                 Fix import of base-64 encoded items
10239
10240 2005-11-07 [colin]      1.9.99cvs16
10241
10242         * src/send_message.c
10243                 Fix bug #314 (Queue does not empty under certain 
10244                 circumstances)
10245
10246 2005-11-07 [paul]       1.9.99cvs15
10247
10248         * src/mutt.c
10249         * src/pine.c
10250                 fix buffer overflows
10251                 Thanks to Colin
10252
10253 2005-11-07 [paul]       1.9.99cvs14
10254
10255         * doc/man/Makefile.am
10256         * doc/man/sylpheed-claws.1      ** ADDED **
10257         * doc/man/sylpheed.1            ** DELETED **
10258                 rename and update the man file
10259
10260 2005-11-06 [colin]      1.9.99cvs13
10261
10262         * src/ldif.c
10263                 Fix ldif_get_line() that returned empty strings
10264                 (Didn't understand why). Also fix a possible
10265                 buffer overflow.
10266
10267 2005-11-06 [wwp]        1.9.99cvs12
10268
10269         * src/textview.c
10270         * src/gtk/about.c
10271         * src/gtk/gtkutils.c
10272         * src/gtk/gtkutils.h
10273                 fix a compilation warning,
10274                 make links sensitive in the about dialog
10275
10276 2005-11-04 [wwp]        1.9.99cvs11
10277
10278         * src/gtk/about.c
10279                 don't wrap or translate URIs, and a bit text format cleanup
10280
10281 2005-11-04 [wwp]        1.9.99cvs10
10282
10283         * src/gtk/about.c
10284                 better textview tagging implementation (no more use of marks for
10285                 postponed tagging)
10286
10287 2005-11-02 [colin]      1.9.99cvs9
10288
10289         * src/common/ssl.c
10290                 Forgot an ifdef
10291
10292 2005-11-02 [colin]      1.9.99cvs8
10293
10294         * configure.ac
10295                 Require libetpan-0.40 due to upstream fix
10296         * src/common/ssl.c
10297                 Tell libetpan not to call SSL_Library_Init,
10298                 as we do it ourselves.
10299
10300 2005-11-02 [colin]      1.9.99cvs7
10301
10302         * po/POTFILES.in
10303                 Add missing files (thanks to Fabien Vantard)
10304
10305 2005-11-02 [colin]      1.9.99cvs6
10306
10307         * src/summaryview.c
10308                 Fix totals when read messages are hidden or quicksearch
10309                 is on
10310         * src/ssl_manager.c
10311         * src/ssl_manager.h
10312         * src/common/ssl_certificate.c
10313         * src/common/ssl_certificate.h
10314         * src/gtk/sslcertwindow.c
10315         * src/gtk/sslcertwindow.h
10316                 Fix copyright on my stuff
10317
10318 2005-11-02 [wwp]        1.9.99cvs5
10319
10320         * src/prefs_themes.c
10321                 fix directory name checking (theme installation/removal),
10322                 made related error a bit more verbose
10323
10324 2005-11-02 [colin]      1.9.99cvs4
10325
10326         * src/summaryview.c
10327                 Fix typo (probably fixes bug #841 (Sort by the From 
10328                 field doesn't work)
10329
10330 2005-11-02 [paul]       1.9.99cvs3
10331
10332         * po/ko.po
10333         * po/nb.po
10334                 updated by SungHyun Nam, Geir Helland
10335         * src/wizard.c
10336                 fix typo in welcome message. spotted by
10337                 Andrea Spadaccini
10338
10339 2005-11-01 [colin]      1.9.99cvs2
10340
10341         * src/compose.c
10342                 Fix replying to ml wen confirming subscription
10343         * src/messageview.c
10344         * src/mimeview.c
10345         * src/mimeview.h
10346         * src/privacy.h
10347         * src/summaryview.c
10348                 Make key check non blocking
10349
10350 2005-10-31 [paul]       1.9.99cvs1
10351
10352         * tools/claws.i18n.status.pl
10353                 updated for ChangeLog
10354
10355 2005-10-31 [paul]       1.9.99
10356
10357         1.9.99 released
10358
10359 2005-10-31 [paul]       1.9.15cvs131
10360
10361         * .cvsignore
10362         * ChangeLog
10363         * ChangeLog.claws       ** REMOVED **
10364         * ChangeLog-gtk2.claws  ** REMOVED **
10365         * ChangeLog.gtk1        ** ADDED **
10366         * INSTALL
10367         * Makefile.am
10368         * NEWS
10369         * README
10370         * README.claws          ** REMOVED **
10371         * README.jp             ** REMOVED **
10372         * RELEASE_NOTES         ** ADDED **
10373         * RELEASE_NOTES.claws   ** REMOVED **
10374         * commitHelper
10375         * configure.ac
10376         * sylpheed.spec.in      ** REMOVED **
10377                 tidy up and update the default docs:
10378                 ChangeLog.claws is renamed ChangeLog.gtk1
10379                 ChangeLog-gtk2.claws is renamed ChangeLog
10380                 README.claws is renamed README
10381                 RELEASE_NOTES.claws is renamed RELEASE_NOTES
10382
10383 2005-10-31 [paul]       1.9.15cvs130
10384
10385         * po/it.po
10386                 fix errors
10387
10388 2005-10-31 [paul]       1.9.15cvs129
10389
10390         * po/ca.po
10391         * po/de.po
10392         * po/en_GB.po
10393         * po/fr.po
10394         * po/it.po
10395         * po/pt_BR.po
10396         * po/sk.po
10397         * po/sr.po
10398         * po/zh_CN.po
10399                 updated by Miquel Oliete, Stephan Sachse and
10400                 Thomas Gilgin, me, Fabien Vantard, Andrea
10401                 Spadaccini, Frederico Goncalves Guimaraes,
10402                 Andrej Kacian, Aleksandar Urosevic, and
10403                 Ralgh Young.
10404
10405 2005-10-31 [mones]      1.9.15cvs128
10406
10407         * manual/faq.xml
10408                 More questions.
10409         
10410         * po/es.po
10411                 Updated for release.
10412
10413 2005-10-30 [colin]      1.9.15cvs127
10414
10415         * src/compose.c
10416                 Place cursor before rewrapping (fixes cursor
10417                 pos if quotation gets rewrapped)
10418
10419 2005-10-29 [paul]       1.9.15cvs126
10420
10421         * src/crash.c
10422         * src/foldersel.c
10423         * src/main.c
10424         * src/messageview.c
10425         * src/toolbar.c
10426         * src/gtk/authors.h
10427                 corrections to text items
10428
10429 2005-10-28 [colin]      1.9.15cvs125
10430
10431         * src/messageview.c
10432                 Make "hit 'C' to check sig" work from extern 
10433                 messageviews
10434
10435 2005-10-27 [colin]      1.9.15cvs124
10436
10437         * src/summaryview.c
10438                 Add a hack to avoid segfaulting when hammering 
10439                 on gtk's events
10440
10441 2005-10-27 [wwp]        1.9.15cvs123
10442
10443         * src/prefs_themes.c
10444                 sort list of themes names in themes prefs
10445
10446 2005-10-27 [paul]       1.9.15cvs122
10447
10448         * src/folder.c
10449         * src/prefs_account.c
10450                 fix building on Solaris
10451                 Patch by Alex Moore
10452
10453 2005-10-27 [wwp]        1.9.15cvs121
10454
10455         * src/summaryview.c
10456         * src/gtk/gtksctree.c
10457                 speed up unselecting messages in summary view (thanks to Colin)
10458
10459 2005-10-27 [paul]       1.9.15cvs120
10460
10461         * src/mainwindow.c
10462                 fix a compilation warning
10463         * src/summaryview.c
10464                 fix updating of 'n items selected' count
10465                 when deselecting
10466
10467 2005-10-27 [martin]     1.9.15cvs119
10468
10469         * src/action.c
10470                 ignore actions with a leading '/' in the action menu name
10471                 fixes a crash on menu creation
10472         * src/prefs_actions.c
10473                 do not allow a leading '/' in the action menu name
10474
10475 2005-10-27 [paul]       1.9.15cvs118
10476
10477         * src/main.c
10478                 fix compilation warning
10479
10480 2005-10-27 [paul]       1.9.15cvs117
10481
10482         * src/procmime.c
10483                 add #if HAVE_LOCALE_H
10484
10485 2005-10-27 [paul]       1.9.15cvs116
10486
10487         * src/plugins/clamav/clamav_plugin.c
10488         * src/plugins/dillo_viewer/dillo_viewer.c
10489         * src/plugins/mathml_viewer/mathml_viewer.c
10490         * src/plugins/pgpcore/plugin.c
10491         * src/plugins/pgpinline/plugin.c
10492         * src/plugins/pgpmime/plugin.c
10493         * src/plugins/spamassassin/spamassassin.c
10494         * src/plugins/trayicon/trayicon.c
10495                 plugin_init() : make error messages more
10496                 informative
10497
10498 2005-10-26 [wwp]        1.9.15cvs115
10499
10500         * src/prefs_matcher.c
10501                 enlarge boolean op widget width a bit (wasn't always showing text contents)
10502
10503 2005-10-26 [wwp]        1.9.15cvs114
10504
10505         * src/procmime.c
10506         * src/gtk/gtksctree.c
10507         * src/plugins/spamassassin/libspamc.c
10508         * src/plugins/spamassassin/spamassassin.c
10509                 fix some compilation warnings more
10510
10511 2005-10-26 [mones]      1.9.15cvs113
10512
10513         * po/es.po
10514                 Updated translation
10515
10516 2005-10-26 [paul]       1.9.15cvs112
10517
10518         * src/prefs_message.c
10519                 give all display_xface stuff the
10520                 #if HAVE_LIBCOMPFACE treatment, thus
10521                 preventing a crash
10522                 (Thanks to Wolfgang Enderlein)
10523
10524 2005-10-26 [colin]      1.9.15cvs111
10525
10526         * src/gedit-print.c
10527                 Fix date format
10528         * src/imap_gtk.c
10529         * src/news_gtk.c
10530                 Remove context menu items that should not be there
10531         * src/jpilot.c
10532                 Fix encoding
10533         * src/main.c
10534         * src/mainwindow.c
10535                 Don't show the mainwindow too soon
10536
10537 2005-10-26 [wwp]        1.9.15cvs110
10538
10539         * src/folder.c
10540         * src/manual.c
10541         * src/summaryview.c
10542                 fix uninitialized pointers in the folder updating hook
10543                 (thanks to Colin)
10544
10545 2005-10-25 [mones]      1.9.15cvs109
10546
10547         * manual/faq.xml
10548                 General information subsection completed. 
10549                 Removed archaic references.
10550                 
10551         * manual/Makefile
10552         * manual/dtd/manual.dsl
10553                 Added customization stylesheet for getting paragraphs
10554                 fully justified in PDF output (as suggested by Colin).
10555
10556 2005-10-25 [colin]      1.9.15cvs108
10557
10558         * src/compose.c
10559                 Fix a second leak
10560
10561 2005-10-25 [colin]      1.9.15cvs107
10562
10563         * src/addrbook.c
10564         * src/addrindex.c
10565                 Fix leak (xml_get_element() allocates memory)
10566         * src/compose.c
10567                 Fix leak + dead code (shame!)
10568         * src/procmime.c
10569                 Fix leak
10570
10571 2005-10-25 [colin]      1.9.15cvs106
10572
10573         * src/mimeview.c
10574                 Fix encoding issue in Save all and in 
10575                 overwrite-confirmation alertpanel
10576
10577 2005-10-25 [colin]      1.9.15cvs105
10578
10579         * src/common/socket.c
10580                 Fix a leak - Thanks to Christopher Aillon
10581                 (http://christopher.aillon.org/blog/dev/gnome/20051025-gsource.html)
10582
10583 2005-10-25 [paul]       1.9.15cvs104
10584
10585         * src/wizard.c
10586                 Always guess servers from the right-hand
10587                 email part and guess username from the
10588                 left-hand part. (Thanks to Colin)
10589                 add an X-Face to the welcome message
10590
10591 2005-10-25 [paul]       1.9.15cvs103
10592
10593         * manual/handling.xml
10594                 written by Colin, edited by me
10595
10596 2005-10-25 [wwp]        1.9.15cvs102
10597
10598         * src/folderview.c
10599         * src/grouplistdialog.c
10600         * src/imap.c
10601         * src/noticeview.c
10602                 fix some compilation warnings
10603
10604 2005-10-24 [paul]
10605
10606         1.9.99-rc3 released
10607
10608 2005-10-24 [paul]       1.9.15cvs101
10609
10610         * src/gtk/about.c
10611                 fix window sizing
10612
10613 2005-10-24 [paul]       1.9.15cvs100
10614
10615         * src/pixmaps/offline.xpm
10616         * src/pixmaps/online.xpm
10617                 replace with last default versions
10618
10619 2005-10-24 [colin]      1.9.15cvs99
10620
10621         * src/imap.c
10622                 Fix bug when moving a folder
10623         * src/imap_gtk.c
10624         * src/mh_gtk.c
10625                 "Delete folder" pops up a window, so it 
10626                 should be suffixed with "..."
10627         * src/plugins/pgpcore/sgpgme.c
10628                 Include locale.h
10629
10630 2005-10-24 [mones]      1.9.15cvs98
10631
10632         * manual/Makefile
10633         * manual/account.xml
10634         * manual/ack.xml
10635         * manual/addrbook.xml
10636         * manual/advanced.xml
10637         * manual/faq.xml
10638         * manual/glossary.xml
10639         * manual/gpl.xml
10640         * manual/handling.xml
10641         * manual/intro.xml
10642         * manual/keyboard.xml
10643         * manual/manual.xml
10644         * manual/plugins.xml
10645         * manual/starting.xml
10646         * manual/dtd/sdocbook.dtd
10647                 Initial manual structure and some content.
10648
10649 2005-10-23 [wwp]        1.9.15cvs97
10650
10651         * src/gtk/about.c
10652                 fix a typo
10653
10654 2005-10-23 [wwp]        1.9.15cvs96
10655
10656         * src/gtk/about.c
10657         * src/gtk/authors.h
10658                 rework of the about window (main work by Paul), also featuring a few
10659                 fixes for typos and duplicate names
10660
10661 2005-10-23 [wwp]        1.9.15cvs95
10662
10663         * src/.cvsignore
10664                 Ignore the right binary name (sylpheed-claws now)
10665
10666 2005-10-23 [paul]       1.9.15cvs94
10667
10668         * src/compose.c
10669                 when using Folder Pref 'Default To for
10670                 replies' make the entry in the Compose
10671                 window bold
10672                 Patch by Fabien Vantard
10673
10674 2005-10-22 [colin]      1.9.15cvs93
10675
10676         * src/codeconv.c
10677                 Fix leak
10678
10679 2005-10-22 [colin]      1.9.15cvs92
10680
10681         * src/codeconv.c
10682                 try to convert using locale (apart utf8) if necessary
10683
10684 2005-10-22 [colin]      1.9.15cvs91
10685
10686         * src/pixmaps/new.xpm
10687         * src/pixmaps/unread.xpm
10688                 Make the unread envelope blue again and
10689                 saturate the new one a bit more.
10690
10691 2005-10-22 [colin]      1.9.15cvs90
10692
10693         * src/compose.c
10694                 When replying to a mail sent by one of our accounts,
10695                 use the original list of recipients. Let 'Reply All'
10696                 and 'Reply to sender' work like previously.
10697
10698 2005-10-21 [colin]      1.9.15cvs89
10699
10700         * src/prefs_filtering.c
10701                 Clear fields after add and replace
10702         * src/textview.c
10703                 Display xface differently (better)
10704         * src/plugins/pgpinline/pgpinline.c
10705                 Fix crappy encodings/recodings
10706
10707 2005-10-21 [paul]       1.9.15cvs88
10708
10709         * src/compose.c
10710         * src/prefs_folder_item.c
10711         * src/toolbar.c
10712                 fix news folder Folder Properties
10713                 (thanks to Colin)
10714         * src/folderview.c
10715                 update folderview after Themes change
10716                 keep selected folder selected
10717                 (thanks to Colin)
10718
10719 2005-10-21 [paul]       1.9.15cvs87
10720
10721         * tools/Makefile.am
10722         * tools/OOo2sylpheed.pl
10723         * tools/README
10724         * tools/README.sylprint
10725         * tools/asus_mailled.sh         ** REMOVED **
10726         * tools/filter_conv.pl
10727         * tools/freshmeat_search.pl
10728         * tools/google_search.pl
10729         * tools/gpg-sign-syl            ** REMOVED **
10730         * tools/kmail2sylpheed.pl
10731         * tools/kmail2sylpheed_v2.pl
10732         * tools/multiwebsearch.pl
10733         * tools/nautilus2sylpheed.sh
10734         * tools/newscache_clean.pl
10735         * tools/outlook2sylpheed.pl
10736         * tools/sylpheed-switcher       ** REMOVED **
10737         * tools/sylprint.pl
10738         * tools/sylprint.rc
10739         * tools/tb2sylpheed
10740         * tools/vcard2xml.py
10741         * tools/kdeservicemenu/sylpheed-kdeservicemenu.pl
10742                 update default config dir
10743                 update binary name (thanks to Fabien Vantard)
10744                 remove obsolete scripts
10745
10746 2005-10-21 [colin]      1.9.15cvs86
10747
10748         * src/inc.c
10749                 Fix possible leak and units. Based on a patch by
10750                 Fabien Vantard.
10751
10752 2005-10-20 [colin]      1.9.15cvs85
10753
10754         * src/textview.c
10755                 Clear xface when clearing textview
10756
10757 2005-10-20 [colin]      1.9.15cvs84
10758
10759         * configure.ac
10760         * src/folderview.c
10761         * src/headerview.c
10762         * src/main.c
10763         * src/prefs_common.c
10764         * src/prefs_common.h
10765         * src/prefs_message.c
10766         * src/textview.c
10767         * src/textview.h
10768         * src/common/defs.h
10769         * src/common/utils.c
10770         * src/common/utils.h
10771         * src/gtk/gtkutils.c
10772         * src/gtk/gtkutils.h
10773                 Migrate config to .sylpheed-claws (Automatically)
10774                 Add a way to get the Xface in the TextView
10775
10776 2005-10-20 [colin]      1.9.15cvs83
10777
10778         * src/gtk/Makefile.am
10779         * src/gtk/about.c
10780         * src/gtk/authors.h
10781                 Make the about dialog *grooovy*
10782
10783 2005-10-20 [colin]      1.9.15cvs82
10784
10785         * src/mimeview.c
10786                 Use "Open with" on double click if no command
10787                 was found
10788
10789 2005-10-20 [colin]      1.9.15cvs81
10790
10791         * src/imap.c
10792         * src/etpan/imap-thread.c
10793                 Fix possible crash.
10794
10795 2005-10-20 [paul]       1.9.15cvs80
10796
10797         * src/folder.c
10798                 don't show clipkey icon if the only
10799                 attachment is the signature
10800                 Patch by Colin
10801
10802 2005-10-20 [paul]       1.9.15cvs79
10803
10804         * AUTHORS
10805         * src/plugins/pgpmime/pgpmime.c
10806                 name the PGP/MIME signature 'signature.asc'
10807                 Patch by Andrew Nelson <freeandy@gmail.com>
10808
10809 2005-10-19 [colin]      1.9.15cvs78
10810
10811         * src/plugins/pgpmime/pgpmime.c
10812                 Oops, no need to double-check though
10813
10814 2005-10-19 [colin]      1.9.15cvs77
10815
10816         * src/plugins/pgpinline/pgpinline.c
10817         * src/plugins/pgpmime/pgpmime.c
10818                 Check that my_tmpfile() doesn't 
10819                 return NULL
10820
10821 2005-10-19 [colin]      1.9.15cvs76
10822
10823         * src/common/utils.c
10824                 Use shorter mime boundaries to avoid having
10825                 MTAs rewrapping our headers, breaking the
10826                 PGP signature in the process 
10827         * src/compose.c
10828         * src/plugins/pgpmime/pgpmime.c
10829                 Check for boundary uniqueness to be sure
10830                 it won't happen, instead of hoping for the
10831                 best
10832
10833 2005-10-19 [colin]      1.9.15cvs75
10834
10835         * sylpheed-claws.desktop
10836         * src/Makefile.am
10837         * src/main.c
10838                 Ship a sylpheed-claws binary instead
10839                 of a sylpheed one. Change the socket
10840                 name, too
10841         * src/folderview.c
10842                 Update folder only if it changed
10843         * src/wizard.c
10844                 Fix i18n in welcome mail, patch by
10845                 Fabien Vantard
10846
10847 2005-10-19 [paul]
10848
10849         1.9.99-rc2 released
10850
10851 2005-10-19 [paul]       1.9.15cvs74
10852
10853         * src/folder.c
10854         * src/folderview.c
10855                 fix summaryview update
10856                 Patch by Colin
10857
10858 2005-10-18 [colin]      1.9.15cvs73
10859
10860         * src/plugins/pgpcore/passphrase.c
10861                 Don't XGrabServer, and try a bit more to 
10862                 sync everything before grabbing mouse/keyboard
10863
10864 2005-10-18 [colin]      1.9.15cvs72
10865
10866         * src/Makefile.am
10867         * src/addressadd.c
10868         * src/addressbook.c
10869         * src/folderview.c
10870         * src/grouplistdialog.c
10871         * src/mimeview.c
10872         * src/stock_pixmap.c
10873         * src/stock_pixmap.h
10874         * src/summaryview.c
10875         * src/gtk/gtksctree.c
10876         * src/gtk/gtksctree.h
10877         * src/pixmaps/empty.xpm
10878                 Implement a wrapper call for gtk_ctree_set_node_info
10879                 and gtk_ctree_insert_node, that uses a 1x1 transparent
10880                 pixmap instead of a NULL one. This works around some
10881                 memory problems deep inside gtk, revealed by valgrind,
10882                 and fixes bug #834 (Pressing CTRl-D on a message marked 
10883                 as locked crashes sylpheed.), as well as, probably, 
10884                 wwp's 4th dimension problems that happen in gtk_ctree_*.
10885
10886 2005-10-17 [colin]      1.9.15cvs71
10887
10888         * src/mimeview.c
10889                 Provide visual feedback when checking
10890                 signature
10891
10892 2005-10-17 [colin]      1.9.15cvs70
10893
10894         * src/main.c
10895                 Keep the folder list frozen while checking caches...
10896
10897 2005-10-17 [colin]      1.9.15cvs69
10898
10899         * src/addr_compl.c
10900                 Fi bug #833 (Autocompleting from addressbook 
10901                 fails with extended chars)
10902         * src/imap.c
10903                 Fix 'adding messages' staying in statusbar
10904                 after an error
10905
10906 2005-10-17 [wwp]        1.9.15cvs68
10907
10908         * src/ssl_manager.c
10909                 Fix buttons' layout resizing when window size changes
10910
10911 2005-10-17 [wwp]        1.9.15cvs67
10912
10913         * src/account.c
10914         * src/prefs_account.c
10915         * src/prefs_common.c
10916         * src/prefs_common.h
10917         * src/prefs_folder_item.c
10918         * src/prefs_gtk.c
10919         * src/gtk/logwindow.c
10920         * src/gtk/pluginwindow.c
10921         * src/gtk/prefswindow.c
10922         * src/gtk/prefswindow.h
10923                 Remember yet more window sizes (log, prefs, folder prefs, accounts)
10924
10925 2005-10-17 [paul]       1.9.15cvs66
10926
10927         * configure.ac
10928                 fix missing libetpan message
10929         * po/en_GB.po
10930                 updated
10931         * src/crash.c
10932         * src/manual.c
10933         * src/prefs_themes.c
10934         * src/common/defs.h
10935                 add some new URI defines, change some
10936                 others
10937         * src/wizard.c
10938                 make welcome message translatable
10939                 small improvements to english
10940                 other tweaks
10941         * src/gtk/menu.c
10942                 fix warnings
10943
10944 2005-10-17 [paul]       1.9.15cvs65
10945
10946         * src/summaryview.c
10947                 fix column titles
10948
10949 2005-10-16 [mones]      1.9.15cvs64
10950
10951         * po/es.po
10952                 Updated translation
10953
10954 2005-10-16 [colin]
10955
10956         1.9.99-rc1 released
10957
10958 2005-10-16 [colin]      1.9.15cvs63
10959
10960         * src/wizard.c
10961                 Fix whitespace
10962
10963 2005-10-16 [colin]      1.9.15cvs62
10964
10965         * src/toolbar.c
10966                 s/Get All/Get Mail/
10967         * src/wizard.c
10968                 Real welcome mail text, thanks Paul
10969
10970 2005-10-16 [colin]      1.9.15cvs61
10971
10972         * src/editldap.c
10973         * src/exporthtml.c
10974         * src/main.c
10975         * src/mainwindow.c
10976         * src/prefs_themes.c
10977         * src/prefs_toolbar.c
10978         * src/plugins/demo/demo.c
10979         * src/plugins/trayicon/trayicon.c
10980                 s/Sylpheed/Sylpheed-Claws/
10981
10982 2005-10-16 [colin]      1.9.15cvs60
10983
10984         * src/wizard.c
10985                 Add a welcome email in the first empty mailbox
10986         * src/prefs_common.c
10987                 Change one more default
10988
10989 2005-10-16 [colin]      1.9.15cvs59
10990
10991         * src/wizard.c
10992                 Remove printf
10993
10994 2005-10-16 [colin]      1.9.15cvs58
10995
10996         * src/toolbar.c
10997         * src/prefs_common.c
10998                 Change some defaults
10999
11000 2005-10-16 [colin]      1.9.15cvs57
11001
11002         * src/toolbar.c
11003         * src/prefs_common.c
11004                 Change some defaults
11005
11006 2005-10-16 [colin]      1.9.15cvs56
11007
11008         * src/wizard.c
11009                 By default, initialize fonts to have
11010                 the same size as normal GtkWidgets
11011
11012 2005-10-16 [colin]      1.9.15cvs55
11013
11014         * src/mimeview.c
11015                 Fix message a bit more
11016
11017 2005-10-16 [colin]      1.9.15cvs54
11018
11019         * src/addressbook.c
11020                 Second attempt at flicker fixing
11021
11022 2005-10-16 [colin]      1.9.15cvs53
11023
11024         * src/addressbook.c
11025                 Fix flicker
11026
11027 2005-10-16 [wwp]        1.9.15cvs52
11028
11029         * src/addressbook.c
11030         * src/editaddress.c
11031         * src/prefs_common.c
11032         * src/prefs_common.h
11033                 Remember window sizes (address book)
11034
11035 2005-10-16 [wwp]        1.9.15cvs51
11036
11037         * src/plugins/clamav/clamav_plugin_gtk.c
11038         * src/plugins/spamassassin/spamassassin_gtk.c
11039                 Fix compilation warnings (missing #include).
11040
11041 2005-10-16 [colin]      1.9.15cvs50
11042
11043         * src/mimeview.c
11044         * src/summaryview.c
11045         * src/textview.c
11046                 Make 'c' check signature, and forward
11047                 c, l, y, t from summaryview to mimeview
11048
11049 2005-10-16 [colin]      1.9.15cvs49
11050
11051         * src/addressbook.c
11052                 Put border around buttons
11053         * src/mainwindow.c
11054         * src/summaryview.c
11055                 Rework menus (Patch based on a patch
11056                 by Paul)
11057
11058 2005-10-15 [wwp]        1.9.15cvs48
11059
11060         * src/editjpilot.c
11061         * src/editldap.c
11062         * src/editvcard.c
11063         * src/exphtmldlg.c
11064         * src/expldifdlg.c
11065         * src/export.c
11066         * src/import.c
11067         * src/importldif.c
11068         * src/importmutt.c
11069         * src/importpine.c
11070         * src/prefs_account.c
11071         * src/prefs_spelling.c
11072         * src/gtk/gtkutils.c
11073         * src/gtk/gtkutils.h
11074         * src/plugins/clamav/clamav_plugin_gtk.c
11075         * src/plugins/spamassassin/spamassassin_gtk.c
11076                 use nicer browse-for-file/dir buttons than the "..." ones,
11077                 code factorizing more.
11078
11079 2005-10-14 [colin]      1.9.15cvs47
11080
11081         * src/mainwindow.c
11082                 set relief on the account switcher so that people see it
11083                 grey out Create processing rules when no message is selected
11084         * src/prefs_filtering.c
11085                 ask before closing if the rule has not been modified, even if
11086                 it's not valid
11087         * src/prefs_matcher.c
11088                 fix sensitivity when entering the dialog
11089         * src/gtk/inputdialog.c
11090                 display a better icon on password ask
11091         * src/plugins/pgpcore/passphrase.c
11092                 make the dialog look better
11093
11094 2005-10-14 [paul]       1.9.15cvs46
11095
11096         * src/folderview.c
11097                 indicate presense of marked msgs in
11098                 unexpanded subfolders
11099
11100 2005-10-14 [paul]       1.9.15cvs45
11101
11102         * src/prefs_actions.c
11103         * src/prefs_common.c
11104         * src/prefs_common.h
11105         * src/prefs_filtering_action.c
11106         * src/prefs_matcher.c
11107         * src/prefs_template.c
11108                 remember window sizes
11109                 fix Info button size
11110
11111         Patches by wwp
11112
11113 2005-10-13 [colin]      1.9.15cvs44
11114
11115         * src/mimeview.c
11116         * src/noticeview.c
11117         * src/noticeview.h
11118                 Add a tooltip on the icon (optional) 
11119                 Get rid of the signature buttons and only
11120                 use the icon+tooltip
11121
11122 2005-10-13 [colin]      1.9.15cvs43
11123
11124         * src/noticeview.c
11125         * src/noticeview.h
11126                 Add hand cursor for hovering over icon
11127
11128 2005-10-13 [colin]      1.9.15cvs42
11129
11130         * src/summaryview.c
11131                 Fix crash when quicksearch's hidden 
11132                 at startup
11133
11134 2005-10-13 [colin]      1.9.15cvs41
11135
11136         * src/compose.c
11137                 Set subject when forwarding multiple mails
11138                 Check that other recipient than the default Cc or Bcc
11139                 have been set before sending.
11140
11141 2005-10-13 [colin]      1.9.15cvs40
11142
11143         * src/imap.c
11144                 Batch per-folder
11145                 Introduce locking, but don't use it yet
11146
11147 2005-10-13 [colin]      1.9.15cvs39
11148
11149         * src/gtk/quicksearch.c
11150                 Reset quicksearch when hiding it
11151                 Make sticky a real pref
11152
11153 2005-10-13 [colin]      1.9.15cvs38
11154
11155         * src/summaryview.c
11156                 Faster prefs apply
11157
11158 2005-10-13 [colin]      1.9.15cvs37
11159
11160         * src/mimeview.c
11161         * src/noticeview.c
11162         * src/noticeview.h
11163         * src/plugins/pgpcore/sgpgme.c
11164                 Make privacy icon clickable
11165                 Move Trust field in Full info
11166                 When trust is less than full, don't display
11167                 a warning icon
11168
11169 2005-10-13 [colin]      1.9.15cvs36
11170
11171         * src/folder.c
11172                 Batch on flags sync
11173         * src/folderview.c
11174                 Revert speed hack which is dangerous in fact
11175                 Apply prefs faster
11176
11177 2005-10-13 [colin]      1.9.15cvs35
11178
11179         * src/folder_item_prefs.c
11180                 Fix pref corruption on folder move. Patch
11181                 by wwp
11182
11183 2005-10-13 [paul]       1.9.15cvs34
11184
11185         * src/export.c
11186         * src/import.c
11187                 fix typos in g_warnings
11188         * src/prefs_account.c
11189                 add a file selector for Signature file
11190
11191         Patches by wwp
11192
11193 2005-10-12 [colin]      1.9.15cvs33
11194
11195         * src/mimeview.c
11196                 Provide a quick way to go back from a
11197                 signature's full info to the email part
11198
11199 2005-10-12 [colin]      1.9.15cvs32
11200
11201         * src/compose.c
11202                 Remove old hack of encoding signed mails with base64.
11203                 QP works equally well.
11204
11205 2005-10-12 [colin]      1.9.15cvs31
11206
11207         * src/crash.c
11208                 Replace deprecated GtkText with GtkTextView
11209         * src/imap.c
11210                 Fix a logic bug about counts in imap_select
11211                 (previously un-triggered)
11212         * src/mainwindow.c
11213         * src/summaryview.c
11214         * src/news.c
11215                 Allow local deletion of news posts
11216         * src/mimeview.c
11217                 Show GPG noticeview on the message/rfc822 part
11218                 in addition to the text/plain one
11219         * src/prefs_image_viewer.c
11220           src/plugins/pgpcore/prefs_gpg.c
11221                 Polish (set the label as part of the checkbox)
11222         * src/wizard.c
11223                 Don't sit there doing nothing after destroying
11224                 the window - return err
11225
11226 2005-10-11 [colin]      1.9.15cvs30
11227
11228         * src/folderview.c
11229                 Apply processing rules before showing folders.
11230                 Early folder show (before flags sync) will only
11231                 be done when there are no processing rules (nor
11232                 pre- or post- ones)
11233         * src/imap.c
11234                 Fix stuff related to mail subdir, creation and 
11235                 deletion of folders 
11236         * src/imap_gtk.c
11237                 Don't allow creation of folders in NoInferior
11238                 folders, as it won't work
11239
11240 2005-10-10 [colin]      1.9.15cvs29
11241
11242         * src/compose.c
11243                 Reselect "None" Privacy system when selecting an
11244                 account with no privacy system defined
11245
11246 2005-10-10 [colin]      1.9.15cvs28
11247
11248         * src/mainwindow.c
11249                 Add Windows-1252 encoding
11250         * src/prefs_common.c
11251                 Rework some defaults:
11252                 - autosave to draft by default
11253                 - don't show header pane (it's already in the textview)
11254                 - Select first new or unread mail on entry
11255                 - Assume 'Yes' to change folder when there's no more
11256                   unread message
11257         * src/prefs_matcher.c
11258                 Fix a gtk assertion failure
11259         * src/gtk/colorlabel.c
11260                 Workaround bad repainting on selection
11261         * src/main.c
11262                 Freeze/thaw (a bit faster on ssh -X)
11263         * src/msgcache.c
11264                 Get rid of StrdupConverter that just adds an
11265                 extra strdup/free 
11266         * src/etpan/imap_thread.c
11267                 memset buf to 0
11268
11269 2005-10-10 [colin]      1.9.15cvs27
11270
11271         * src/export.c
11272         * src/import.c
11273                 Fix compile on gtk 2.4. Patch by wwp
11274
11275 2005-10-09 [colin]      1.9.15cvs26
11276
11277         * src/mainwindow.c
11278         * src/messageview.c
11279         * src/summaryview.c
11280                 Clarify forward menus. Patch by wwp
11281
11282 2005-10-09 [colin]      1.9.15cvs25
11283
11284         * src/compose.c
11285         * src/compose.h
11286                 Fix bug #829 (Non-working "Encrypt message by 
11287                 default when replying to an encrypted message")
11288
11289 2005-10-08 [colin]      1.9.15cvs24
11290
11291         * src/wizard.c
11292                 Fix bug #827 ("Welcome" setup wizard after a 
11293                 permission error gives up & forgets itself.)
11294
11295 2005-10-08 [colin]      1.9.15cvs23
11296
11297         * src/procmime.c
11298                 Fix bug #828 (Ignoring headers with spaces around = sign)
11299
11300 2005-10-08 [colin]      1.9.15cvs22
11301
11302         * src/export.c
11303                 Warning fix by wwp
11304
11305 2005-10-08 [colin]      1.9.15cvs21
11306
11307         * src/folder.c
11308         * src/folder.h
11309                 Add a processing_pending indicator, set on 
11310                 folder_item_open and cleared after 
11311                 folder_item_process_open
11312         * src/folderview.c
11313         * src/summaryview.c
11314                 wrap procmsg_msginfo_*_flags, and in the
11315                 wrapper check that there's no folder processing 
11316                 pending. If there is, defer the flags change until 
11317                 processing is done to avoid stepping over each
11318                 other's toes.
11319                 Freeze during processing, but not during scanning.
11320
11321 2005-10-07 [colin]      1.9.15cvs20
11322
11323         * src/plugins/pgpcore/passphrase.c
11324                 Fix bug #826 (X-Server hangs when 
11325                 right-clicking a PGP encrypted message)
11326
11327 2005-10-07 [paul]       1.9.15cvs19
11328
11329         * src/compose.c
11330                 fix compose_entries[]
11331                 patch by Fabien Vantard
11332
11333 2005-10-06 [colin]      1.9.15cvs18
11334
11335         * src/pixmaps/address.xpm
11336         * src/pixmaps/address_book.xpm
11337         * src/pixmaps/book.xpm
11338         * src/pixmaps/check_spelling.xpm
11339         * src/pixmaps/checkbox_off.xpm
11340         * src/pixmaps/checkbox_on.xpm
11341         * src/pixmaps/close.xpm
11342         * src/pixmaps/complete.xpm
11343         * src/pixmaps/continue.xpm
11344         * src/pixmaps/deleted.xpm
11345         * src/pixmaps/down_arrow.xpm
11346         * src/pixmaps/exec.xpm
11347         * src/pixmaps/forwarded.xpm
11348         * src/pixmaps/group.xpm
11349         * src/pixmaps/ignorethread.xpm
11350         * src/pixmaps/interface.xpm
11351         * src/pixmaps/jpilot.xpm
11352         * src/pixmaps/ldap.xpm
11353         * src/pixmaps/linewrap.xpm
11354         * src/pixmaps/linewrapcurrent.xpm
11355         * src/pixmaps/mail.xpm
11356         * src/pixmaps/mail_attach.xpm
11357         * src/pixmaps/mail_compose.xpm
11358         * src/pixmaps/mail_forward.xpm
11359         * src/pixmaps/mail_receive.xpm
11360         * src/pixmaps/mail_receive_all.xpm
11361         * src/pixmaps/mail_reply.xpm
11362         * src/pixmaps/mail_reply_to_all.xpm
11363         * src/pixmaps/mail_reply_to_author.xpm
11364         * src/pixmaps/mail_send.xpm
11365         * src/pixmaps/mail_send_queue.xpm
11366         * src/pixmaps/mime_application.xpm
11367         * src/pixmaps/mime_audio.xpm
11368         * src/pixmaps/mime_image.xpm
11369         * src/pixmaps/mime_message.xpm
11370         * src/pixmaps/mime_text_enriched.xpm
11371         * src/pixmaps/mime_text_html.xpm
11372         * src/pixmaps/mime_text_plain.xpm
11373         * src/pixmaps/mime_unknown.xpm
11374         * src/pixmaps/new.xpm
11375         * src/pixmaps/news_compose.xpm
11376         * src/pixmaps/offline.xpm
11377         * src/pixmaps/online.xpm
11378         * src/pixmaps/paste.xpm
11379         * src/pixmaps/preferences.xpm
11380         * src/pixmaps/privacy_emblem_encrypted.xpm
11381         * src/pixmaps/privacy_expired.xpm
11382         * src/pixmaps/privacy_failed.xpm
11383         * src/pixmaps/privacy_passed.xpm
11384         * src/pixmaps/privacy_signed.xpm
11385         * src/pixmaps/privacy_unknown.xpm
11386         * src/pixmaps/privacy_warn.xpm
11387         * src/pixmaps/properties.xpm
11388         * src/pixmaps/replied.xpm
11389         * src/pixmaps/search.xpm
11390         * src/pixmaps/unread.xpm
11391         * src/pixmaps/up_arrow.xpm
11392         * src/pixmaps/vcard.xpm
11393                 Modernize internal theme, with icons from the 
11394                 Gnomaws theme. Keep some of the old ones where
11395                 they were better.
11396
11397 2005-10-06 [colin]      1.9.15cvs17
11398
11399         * src/summaryview.c
11400                 Little optimisations + bugfix
11401         * src/toolbar.c
11402                 Remove default useless items - useless being defined
11403                 by the default relevant prefs
11404         * src/wizard.c
11405                 include config.h to make gettext work
11406         * src/prefs_themes.c
11407                 Fix selection of current theme in prefs
11408
11409 2005-10-06 [colin]      1.9.15cvs16
11410
11411         * src/prefs_common.c
11412         * src/prefs_common.h
11413         * src/prefs_summaries.c
11414         * src/folderview.c
11415                 Add a warning dialog on Mark all read 
11416                 (with pref to get rid of it)
11417
11418 2005-10-06 [paul]       1.9.15cvs15
11419
11420         * po/nb.po
11421         * po/pt_BR.po
11422                 updated by Geir Helland and Frederico
11423                 Goncalves Guimaraes
11424
11425 2005-10-05 [colin]      1.9.15cvs14
11426
11427         * src/folder.c
11428         * src/folder.h
11429         * src/folderview.c
11430         * src/folderview.h
11431         * src/imap_gtk.c
11432         * src/mh_gtk.c
11433         * src/mainwindow.c
11434         * src/setup.c
11435                 add a way to rescan without rebuilding
11436                 make moving a bit faster (less folders changes)
11437                 don't lock the tree on Get 
11438         * src/imap.c
11439                 Don't re-delete deleted messages before expunging
11440         * src/summaryview.c
11441                 Set batch mode when deleting mails
11442
11443 2005-10-05 [paul]       1.9.15cvs13
11444
11445         * src/mainwindow.c
11446         * src/mainwindow.h
11447                 fix disabled Execute menu item
11448         * src/toolbar.c
11449                 match the change in 1.9.15cvs10: use Compose
11450                 instead of News by default
11451
11452 2005-10-04 [colin]      1.9.15cvs12
11453
11454         * src/compose.c
11455                 When replying to an ML post with Reply-To set
11456                 to the poster's email, honor it (as before),
11457                 but also honor our user's request to reply to
11458                 the mailing list: set the ML address in the To
11459                 field and the Reply-To address in the Cc: 
11460                 field.
11461
11462 2005-10-04 [colin]      1.9.15cvs11
11463
11464         * src/plugins/trayicon/trayicon.c
11465                 Finish cosmetic change - thanks to wwp
11466
11467 2005-10-04 [colin]      1.9.15cvs10
11468
11469         * src/toolbar.c
11470                 Use Compose instead of Email by default.
11471                 Spotted by wwp.
11472
11473 2005-10-04 [colin]      1.9.15cvs9
11474
11475         * src/folder.c
11476         * src/folder.h
11477         * src/folderview.c
11478         * src/imap.c
11479         * src/etpan/imap-thread.c
11480         * src/etpan/imap-thread.h
11481                 Try to make IMAP faster, by simplifying SEARCH
11482                 commands, avoiding sending two STATUS in a row,
11483                 and deferring flags sync and processing just
11484                 after displaying the folder. 
11485                 This will update the SummaryView in certain
11486                 cases (new mails not already fetched, flags
11487                 changed from another client) but in a non-
11488                 blocking manner.
11489
11490 2005-10-04 [colin]      1.9.15cvs8
11491
11492         * src/plugins/trayicon/trayicon.c
11493                 Relabel "Offline" to "Work offline"
11494
11495 2005-10-04 [colin]      1.9.15cvs7
11496
11497         * src/export.c
11498         * src/import.c
11499         * src/mbox.c
11500                 Fix mbox import/export buglets
11501                 Patch by wwp
11502         * src/plugins/trayicon/trayicon.c
11503                 Add offline swithc
11504                 Patch by wwp
11505
11506 2005-10-04 [colin]      1.9.15cvs6
11507
11508         * src/folder.c
11509         * src/folderview.c
11510         * src/summaryview.c
11511                 Better fix (don't break mark all read) for cvs2
11512
11513 2005-10-03 [colin]      1.9.15cvs5
11514
11515         * src/folder.c
11516                 Use a sane sort by default
11517
11518 2005-10-03 [colin]      1.9.15cvs4
11519
11520         * src/inc.c
11521                 Add a 'Only once' button for overriding offline mode
11522         * src/prefs_account.c
11523         * src/wizard.c
11524                 Add Local mbox to the wizard
11525                 Add IMAP subdir to the wizard (or the wizard is useless
11526                 for such accounts, or even worse than useless)
11527                 Move IMAP subdir from Advanced to Receive tab, as it's
11528                 not that uncommon
11529
11530 2005-10-03 [colin]      1.9.15cvs3
11531
11532         * src/send_message.c
11533                 Forgot this one in cvs1
11534
11535 2005-10-03 [colin]      1.9.15cvs2
11536
11537         * src/folder.c
11538                 Faster close when leaving a folder with lots
11539                 of new mails. Idea by David Relson.
11540
11541 2005-10-03 [colin]      1.9.15cvs1
11542
11543         * src/compose.c
11544         * src/imap.c
11545         * src/inc.c
11546         * src/main.c
11547         * src/messageview.c
11548         * src/news.c
11549         * src/summaryview.c
11550         * src/gtk/sslcertwindow.c
11551         * src/plugins/trayicon/trayicon.c
11552                 Add accels to every AlertPanel. Patch by Fabien 
11553                 Vantard
11554
11555 2005-10-03 [paul]       1.9.15
11556
11557         1.9.15 released
11558
11559 2005-10-03 [paul]       1.9.14cvs68
11560
11561         * po/ca.po
11562         * po/de.po
11563         * po/es.po
11564         * po/fi.po
11565         * po/fr.po
11566         * po/sk.po
11567         * po/sr.po
11568         * po/zh_CN.po
11569                 updated by Miquel Oliete, Thomas Gilgin, Ricardo
11570                 Mones Lastra, Tommi Pirinen, Fabien vantard,
11571                 Andrej Kacian, Aleksander Urosevic, Yang Guilong
11572
11573 2005-10-03 [paul]       1.9.14cvs67
11574
11575         * src/send_message.c
11576                 prevent hang on Cancel
11577                 patch by Colin
11578
11579 2005-10-03 [paul]       1.9.14cvs66
11580
11581         * src/main.c
11582                 fix crash in IMAP caused by discrepancy
11583                 between check_at_startup and offline mode
11584                 Patch by Colin
11585
11586 2005-10-01 [paul]       1.9.14cvs65
11587
11588         * src/inc.c
11589                 fix engrish
11590
11591 2005-10-01 [paul]       1.9.14cvs64
11592         * src/export.c
11593         * src/import.c
11594                 synchronise import_mbox() and export_mbox()
11595         * src/mbox.c
11596                 proc_mbox(): add alert if file cannot be opened
11597                 export_list_to_mbox(): test if dest file exists,
11598                 prompt user to overwrite if it does. add alert
11599                 if file cannot be created
11600                                                                 
11601         Patch by wwp
11602                                                                                                                 
11603
11604 2005-09-30 [paul]       1.9.14cvs63
11605
11606         * src/addressbook.c
11607                 Fix sensitivity of a menu
11608         * src/codeconv.c
11609                 Respect hidden pref for mails with no encoding
11610         * src/common/xml.c
11611                 Fix memory corruption
11612         * src/plugins/pgpcore/sgpgme.c
11613                 Fix segfault on incomplete sigs, and display
11614                 of S/Mime UIDs
11615
11616         Patches by Colin
11617
11618 2005-09-30 [colin]      1.9.14cvs62
11619
11620         * src/partial_download.c
11621                 Little logic fix in almost-dead code
11622         * src/pop.c
11623                 Fix partial download when there's no new mail
11624
11625 2005-09-29 [paul]       1.9.14cvs61
11626
11627         * src/plugins/pgpinline/pgpinline.c
11628                 fix bug 819, 'crash accessing sign message'
11629                 Patch by Colin
11630
11631 2005-09-28 [martin]     1.9.14cvs60
11632
11633         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
11634                 fix bug #790 (Crash when restarting window manager (fluxbox))
11635
11636 2005-09-28 [paul]       1.9.14cvs59
11637
11638         * src/gtk/gtkaspell.c
11639                 fix off-by-one typo
11640
11641 2005-09-27 [colin]      1.9.14cvs58
11642
11643         * src/plugins/pgpcore/sgpgme.c
11644                 Report error when there's one, instead of
11645                 "Signature unchecked" 
11646
11647 2005-09-27 [colin]      1.9.14cvs57
11648
11649         * src/prefs_quote.c
11650                 Fix bug #816 (Weird quotation with spaces)
11651
11652 2005-09-27 [colin]      1.9.14cvs56
11653
11654         * src/codeconv.c
11655         * src/compose.c
11656         * src/compose.h
11657                 Put subject in compose's title
11658                 Fix Automatic encoding so that it's really automatic:
11659                 first try default locale's charset, then charset of the replied mail, 
11660                 then utf-8
11661                 Fix encoding of headers (must be in strict mode too)
11662
11663 2005-09-26 [colin]      1.9.14cvs55
11664
11665         * src/gtk/gtkaspell.c
11666                 Fix previous patch - don't color the space,
11667                 just uncolor it :)
11668
11669 2005-09-26 [colin]      1.9.14cvs54
11670
11671         * src/gtk/gtkaspell.c
11672                 Unmark space if possible
11673
11674 2005-09-26 [colin]      1.9.14cvs53
11675
11676         * src/imap.c
11677                 log_error instead of alertpanel according to the pref
11678         * src/etpan/imap-thread.c
11679                 Print connect status, copy only necessary size to 
11680                 logger
11681         * src/plugins/pgpmime/pgpmime.c
11682                 Handle S/Mime signatures (verification only). Patch based
11683                 on a patch for Sylpheed Main by Thomas White <taw27@cam.ac.uk>
11684
11685 2005-09-26 [paul]       1.9.14cvs52
11686
11687         * src/common/passcrypt.c
11688                 this 'workaround' not necessary on NetBSD.
11689                 Thanks to Daniel Gustafson
11690
11691 2005-09-26 [paul]
11692
11693         1.9.15-rc4 released
11694
11695 2005-09-26 [paul]       1.9.14cvs51
11696
11697         * src/summaryview.c
11698                 Skip currently selected message when
11699                 looking for next new or unread message
11700                 in current folder. Patch by Colin
11701         * src/common/passcrypt.c
11702                 eliminate warnings on *BSD. Patch by
11703                 Daniel Gustafson
11704
11705 2005-09-26 [colin]      1.9.14cvs50
11706
11707         * src/procmsg.c
11708                 Call postfiltering hook anyway
11709
11710 2005-09-22 [colin]      1.9.14cvs49
11711
11712         * src/codeconv.c
11713         * src/codeconv.h
11714                 Add a strict mode that doesn't replace with _
11715         * src/compose.c
11716         * src/compose.h
11717                 Use strict conversion while sending
11718                 Fix race when drafting while sending (happens
11719                 on IMAP)
11720                 Fix d'n'd of messages from summaryview
11721         * src/prefs_common.c
11722         * src/prefs_common.h
11723                 add hidden utf8_instead_of_locale_for_broken_mail 
11724                 pref for people that preferred the default charset 
11725                 to be utf8 for broken mails
11726         * src/quote_fmt_parse.y
11727                 fix bug #815 (No quote insert if "From:" fied 
11728                 contained Russian letters)
11729         * src/summaryview.c
11730                 Fix d'n'd of messages to compose
11731
11732 2005-09-22 [paul]       1.9.14cvs48
11733
11734         * src/compose.c
11735                 fix bug where attachments Name entry
11736                 would display Path instead
11737
11738 2005-09-21 [paul]       1.9.14cvs47
11739
11740         * README
11741         * README.jp
11742         * configure.ac
11743         * config/config.rpath
11744         * doc/manual/en/sylpheed-20.html
11745         * doc/manual/es/sylpheed-20.html
11746         * po/bg.po
11747         * po/ca.po
11748         * po/de.po
11749         * po/es.po
11750         * po/fr.po
11751         * po/it.po
11752         * po/pt_BR.po
11753         * po/sk.po
11754         * po/zh_TW.po
11755         * src/account.c
11756         * src/account.h
11757         * src/action.c
11758         * src/action.h
11759         * src/adbookbase.h
11760         * src/addr_compl.c
11761         * src/addr_compl.h
11762         * src/addrbook.c
11763         * src/addrbook.h
11764         * src/addrcache.c
11765         * src/addrcache.h
11766         * src/addrcindex.c
11767         * src/addrcindex.h
11768         * src/addrclip.c
11769         * src/addrclip.h
11770         * src/addrdefs.h
11771         * src/addressadd.c
11772         * src/addressadd.h
11773         * src/addressbook.c
11774         * src/addressbook.h
11775         * src/addressitem.h
11776         * src/addrgather.c
11777         * src/addrgather.h
11778         * src/addrharvest.c
11779         * src/addrharvest.h
11780         * src/addrindex.c
11781         * src/addrindex.h
11782         * src/addritem.c
11783         * src/addritem.h
11784         * src/addrquery.c
11785         * src/addrquery.h
11786         * src/addrselect.c
11787         * src/addrselect.h
11788         * src/alertpanel.c
11789         * src/alertpanel.h
11790         * src/browseldap.c
11791         * src/browseldap.h
11792         * src/codeconv.c
11793         * src/codeconv.h
11794         * src/compose.c
11795         * src/compose.h
11796         * src/crash.c
11797         * src/crash.h
11798         * src/customheader.c
11799         * src/customheader.h
11800         * src/displayheader.c
11801         * src/displayheader.h
11802         * src/editaddress.c
11803         * src/editaddress.h
11804         * src/editbook.c
11805         * src/editbook.h
11806         * src/editgroup.c
11807         * src/editgroup.h
11808         * src/editjpilot.c
11809         * src/editjpilot.h
11810         * src/editldap.c
11811         * src/editldap.h
11812         * src/editldap_basedn.c
11813         * src/editldap_basedn.h
11814         * src/editvcard.c
11815         * src/editvcard.h
11816         * src/enriched.c
11817         * src/enriched.h
11818         * src/exphtmldlg.c
11819         * src/exphtmldlg.h
11820         * src/expldifdlg.c
11821         * src/expldifdlg.h
11822         * src/export.c
11823         * src/export.h
11824         * src/exporthtml.c
11825         * src/exporthtml.h
11826         * src/exportldif.c
11827         * src/exportldif.h
11828         * src/filtering.c
11829         * src/filtering.h
11830         * src/folder.c
11831         * src/folder.h
11832         * src/folder_item_prefs.c
11833         * src/folder_item_prefs.h
11834         * src/foldersel.c
11835         * src/foldersel.h
11836         * src/folderutils.c
11837         * src/folderutils.h
11838         * src/folderview.c
11839         * src/folderview.h
11840         * src/grouplistdialog.c
11841         * src/grouplistdialog.h
11842         * src/headerview.c
11843         * src/headerview.h
11844         * src/html.c
11845         * src/html.h
11846         * src/image_viewer.c
11847         * src/image_viewer.h
11848         * src/imap.c
11849         * src/imap.h
11850         * src/imap_gtk.c
11851         * src/imap_gtk.h
11852         * src/import.c
11853         * src/import.h
11854         * src/importldif.c
11855         * src/importldif.h
11856         * src/importmutt.c
11857         * src/importmutt.h
11858         * src/importpine.c
11859         * src/importpine.h
11860         * src/inc.c
11861         * src/inc.h
11862         * src/jpilot.c
11863         * src/jpilot.h
11864         * src/ldapctrl.c
11865         * src/ldapctrl.h
11866         * src/ldaplocate.c
11867         * src/ldaplocate.h
11868         * src/ldapquery.c
11869         * src/ldapquery.h
11870         * src/ldapserver.c
11871         * src/ldapserver.h
11872         * src/ldaputil.c
11873         * src/ldaputil.h
11874         * src/ldif.c
11875         * src/ldif.h
11876         * src/localfolder.c
11877         * src/localfolder.h
11878         * src/main.c
11879         * src/main.h
11880         * src/mainwindow.c
11881         * src/mainwindow.h
11882         * src/manual.c
11883         * src/manual.h
11884         * src/matcher.c
11885         * src/matcher.h
11886         * src/matcher_parser.h
11887         * src/matcher_parser_lex.l
11888         * src/matcher_parser_parse.y
11889         * src/mbox.c
11890         * src/mbox.h
11891         * src/message_search.c
11892         * src/message_search.h
11893         * src/messageview.c
11894         * src/messageview.h
11895         * src/mh.c
11896         * src/mh.h
11897         * src/mh_gtk.c
11898         * src/mh_gtk.h
11899         * src/mimeview.c
11900         * src/mimeview.h
11901         * src/msgcache.c
11902         * src/msgcache.h
11903         * src/mutt.c
11904         * src/mutt.h
11905         * src/news.c
11906         * src/news.h
11907         * src/news_gtk.c
11908         * src/news_gtk.h
11909         * src/noticeview.c
11910         * src/noticeview.h
11911         * src/partial_download.c
11912         * src/partial_download.h
11913         * src/pine.c
11914         * src/pine.h
11915         * src/pop.c
11916         * src/pop.h
11917         * src/prefs_account.c
11918         * src/prefs_account.h
11919         * src/prefs_actions.c
11920         * src/prefs_actions.h
11921         * src/prefs_common.c
11922         * src/prefs_common.h
11923         * src/prefs_compose_writing.c
11924         * src/prefs_compose_writing.h
11925         * src/prefs_customheader.c
11926         * src/prefs_customheader.h
11927         * src/prefs_display_header.c
11928         * src/prefs_display_header.h
11929         * src/prefs_ext_prog.c
11930         * src/prefs_ext_prog.h
11931         * src/prefs_filtering.c
11932         * src/prefs_filtering.h
11933         * src/prefs_filtering_action.c
11934         * src/prefs_filtering_action.h
11935         * src/prefs_folder_column.c
11936         * src/prefs_folder_column.h
11937         * src/prefs_folder_item.c
11938         * src/prefs_folder_item.h
11939         * src/prefs_fonts.c
11940         * src/prefs_fonts.h
11941         * src/prefs_gtk.c
11942         * src/prefs_gtk.h
11943         * src/prefs_image_viewer.c
11944         * src/prefs_image_viewer.h
11945         * src/prefs_matcher.c
11946         * src/prefs_matcher.h
11947         * src/prefs_message.c
11948         * src/prefs_message.h
11949         * src/prefs_msg_colors.c
11950         * src/prefs_msg_colors.h
11951         * src/prefs_other.c
11952         * src/prefs_other.h
11953         * src/prefs_quote.c
11954         * src/prefs_quote.h
11955         * src/prefs_receive.c
11956         * src/prefs_receive.h
11957         * src/prefs_send.c
11958         * src/prefs_send.h
11959         * src/prefs_spelling.c
11960         * src/prefs_spelling.h
11961         * src/prefs_summaries.c
11962         * src/prefs_summaries.h
11963         * src/prefs_summary_column.c
11964         * src/prefs_summary_column.h
11965         * src/prefs_template.c
11966         * src/prefs_template.h
11967         * src/prefs_themes.c
11968         * src/prefs_themes.h
11969         * src/prefs_toolbar.c
11970         * src/prefs_toolbar.h
11971         * src/prefs_wrapping.c
11972         * src/prefs_wrapping.h
11973         * src/privacy.c
11974         * src/privacy.h
11975         * src/procheader.c
11976         * src/procheader.h
11977         * src/procmime.c
11978         * src/procmime.h
11979         * src/procmsg.c
11980         * src/procmsg.h
11981         * src/quote_fmt.c
11982         * src/quote_fmt_parse.y
11983         * src/recv.c
11984         * src/recv.h
11985         * src/remotefolder.c
11986         * src/remotefolder.h
11987         * src/send_message.c
11988         * src/send_message.h
11989         * src/setup.c
11990         * src/setup.h
11991         * src/simple-gettext.c
11992         * src/sourcewindow.c
11993         * src/sourcewindow.h
11994         * src/ssl_manager.c
11995         * src/ssl_manager.h
11996         * src/statusbar.c
11997         * src/statusbar.h
11998         * src/stock_pixmap.c
11999         * src/stock_pixmap.h
12000         * src/summary_search.c
12001         * src/summary_search.h
12002         * src/summaryview.c
12003         * src/summaryview.h
12004         * src/syldap.c
12005         * src/syldap.h
12006         * src/textview.c
12007         * src/textview.h
12008         * src/toolbar.c
12009         * src/toolbar.h
12010         * src/undo.c
12011         * src/undo.h
12012         * src/unmime.c
12013         * src/unmime.h
12014         * src/vcard.c
12015         * src/vcard.h
12016         * src/wizard.c
12017         * src/wizard.h
12018         * src/common/base64.c
12019         * src/common/base64.h
12020         * src/common/defs.h
12021         * src/common/hooks.c
12022         * src/common/hooks.h
12023         * src/common/log.c
12024         * src/common/log.h
12025         * src/common/md5.c
12026         * src/common/md5.h
12027         * src/common/mgutils.c
12028         * src/common/mgutils.h
12029         * src/common/nntp.c
12030         * src/common/nntp.h
12031         * src/common/passcrypt.c
12032         * src/common/passcrypt.h.in
12033         * src/common/plugin.c
12034         * src/common/plugin.h
12035         * src/common/prefs.c
12036         * src/common/prefs.h
12037         * src/common/progressindicator.c
12038         * src/common/progressindicator.h
12039         * src/common/quoted-printable.c
12040         * src/common/quoted-printable.h
12041         * src/common/session.c
12042         * src/common/session.h
12043         * src/common/smtp.c
12044         * src/common/smtp.h
12045         * src/common/socket.c
12046         * src/common/socket.h
12047         * src/common/ssl.c
12048         * src/common/ssl.h
12049         * src/common/ssl_certificate.c
12050         * src/common/ssl_certificate.h
12051         * src/common/string_match.c
12052         * src/common/string_match.h
12053         * src/common/stringtable.c
12054         * src/common/sylpheed.c
12055         * src/common/sylpheed.h
12056         * src/common/template.c
12057         * src/common/template.h
12058         * src/common/timing.h
12059         * src/common/utils.c
12060         * src/common/utils.h
12061         * src/common/uuencode.c
12062         * src/common/uuencode.h
12063         * src/common/version.h.in
12064         * src/common/xml.c
12065         * src/common/xml.h
12066         * src/common/xmlprops.c
12067         * src/common/xmlprops.h
12068         * src/gtk/about.c
12069         * src/gtk/about.h
12070         * src/gtk/colorlabel.c
12071         * src/gtk/colorlabel.h
12072         * src/gtk/colorsel.c
12073         * src/gtk/colorsel.h
12074         * src/gtk/description_window.c
12075         * src/gtk/description_window.h
12076         * src/gtk/filesel.c
12077         * src/gtk/filesel.h
12078         * src/gtk/foldersort.c
12079         * src/gtk/foldersort.h
12080         * src/gtk/gtkutils.c
12081         * src/gtk/gtkutils.h
12082         * src/gtk/inputdialog.c
12083         * src/gtk/inputdialog.h
12084         * src/gtk/logwindow.c
12085         * src/gtk/logwindow.h
12086         * src/gtk/manage_window.c
12087         * src/gtk/manage_window.h
12088         * src/gtk/menu.c
12089         * src/gtk/menu.h
12090         * src/gtk/pluginwindow.c
12091         * src/gtk/pluginwindow.h
12092         * src/gtk/prefswindow.c
12093         * src/gtk/prefswindow.h
12094         * src/gtk/progressdialog.c
12095         * src/gtk/progressdialog.h
12096         * src/gtk/quicksearch.c
12097         * src/gtk/quicksearch.h
12098         * src/gtk/sslcertwindow.c
12099         * src/gtk/sslcertwindow.h
12100         * src/plugins/clamav/clamav_plugin.c
12101         * src/plugins/clamav/clamav_plugin.h
12102         * src/plugins/clamav/clamav_plugin_gtk.c
12103         * src/plugins/demo/demo.c
12104         * src/plugins/dillo_viewer/dillo_prefs.c
12105         * src/plugins/dillo_viewer/dillo_prefs.h
12106         * src/plugins/dillo_viewer/dillo_viewer.c
12107         * src/plugins/mathml_viewer/mathml_viewer.c
12108         * src/plugins/pgpcore/passphrase.c
12109         * src/plugins/pgpcore/passphrase.h
12110         * src/plugins/pgpcore/plugin.c
12111         * src/plugins/pgpcore/prefs_gpg.c
12112         * src/plugins/pgpcore/prefs_gpg.h
12113         * src/plugins/pgpcore/select-keys.c
12114         * src/plugins/pgpcore/select-keys.h
12115         * src/plugins/pgpcore/sgpgme.c
12116         * src/plugins/pgpcore/sgpgme.h
12117         * src/plugins/pgpinline/pgpinline.c
12118         * src/plugins/pgpinline/pgpinline.h
12119         * src/plugins/pgpinline/plugin.c
12120         * src/plugins/pgpmime/pgpmime.c
12121         * src/plugins/pgpmime/pgpmime.h
12122         * src/plugins/pgpmime/plugin.c
12123         * src/plugins/spamassassin/spamassassin.c
12124         * src/plugins/spamassassin/spamassassin.h
12125         * src/plugins/spamassassin/spamassassin_gtk.c
12126         * src/plugins/trayicon/trayicon.c
12127         * tools/OOo2sylpheed.pl
12128         * tools/acroread2sylpheed.pl
12129         * tools/asus_mailled.sh
12130         * tools/filter_conv.pl
12131         * tools/freshmeat_search.pl
12132         * tools/google_search.pl
12133         * tools/kmail2sylpheed.pl
12134         * tools/kmail2sylpheed_v2.pl
12135         * tools/maildir2sylpheed.pl
12136         * tools/multiwebsearch.pl
12137         * tools/newscache_clean.pl
12138         * tools/outlook2sylpheed.pl
12139         * tools/sylpheed-switcher
12140         * tools/update-po
12141         * tools/vcard2xml.py
12142         * tools/kdeservicemenu/sylpheed-kdeservicemenu.pl
12143                 update FSF address
12144
12145 2005-09-21 [colin]      1.9.14cvs46
12146
12147         * src/gedit-print.c
12148         * src/procmsg.c
12149         * src/procmsg.h
12150         * src/textview.c
12151         * src/summaryview.c
12152                 Remove some printing hacks (deselection/reselection),
12153                 which by the way fix printing the currently 
12154                 displayed mime part (still only text)
12155                 Plus a little optimisation of summary_show
12156
12157
12158 2005-09-20 [colin]      1.9.14cvs45
12159
12160         * src/mainwindow.c
12161         * src/messageview.c
12162                 GUI fixups: add accels, set message
12163                 view title to displayed mail's subject
12164         * src/prefs_spelling.c
12165         * src/gtk/gtkaspell.c
12166                 GUI fixups: allow underlining misspelled
12167                 words instead of coloring them (a11y!)
12168
12169 2005-09-19 [colin]
12170
12171         1.9.15rc3 released
12172
12173 2005-09-19 [colin]      1.9.14cvs44
12174
12175         * src/compose.c
12176                 Fix draft message
12177         * src/gtk/gtkaspell.c
12178                 Fix wrong test ;-)
12179
12180 2005-09-19 [colin]      1.9.14cvs43
12181
12182         * src/addressbook.c
12183                 Fix sensitivity of Delete button
12184         * src/compose.c
12185                 Warn if the requested Privacy system
12186                 is not available
12187         * src/exphtmldlg.c
12188         * src/expldifdlg.c
12189         * src/importldif.c
12190         * src/importmutt.c
12191         * src/importpine.c
12192                 Fix crappy UI
12193         * src/
12194         * src/ssl.h
12195         * src/prefs_account.h
12196         * src/prefs_account.c
12197                 Save SSL prefs even in builds that have
12198                 SSL support disable
12199         * src/imap.c
12200         * src/inc.c
12201         * src/news.c
12202         * src/send_message.c
12203                 Warn if connection should be secure, but
12204                 SSL support isn't compiled in
12205         * src/gtkaspell.c
12206                 Fix word separation on UTF-8 systems
12207                 Fixes bug #812 (Strange inline spellchecking)
12208         * src/compose.c
12209                 Warn if the requested Privacy system
12210                 is not available
12211                 Factorize offline warning
12212         * src/imap.c
12213         * src/imap_gtk.c
12214         * src/imap_gtk.h
12215         * src/inc.h
12216         * src/news_gtk.c
12217         * src/news_gtk.h
12218         * src/messageview.c
12219                 Factorize offline warning
12220
12221 2005-09-19 [paul]
12222
12223         1.9.15-rc2 released
12224
12225 2005-09-18 [colin]      1.9.14cvs42
12226
12227         * src/codeconv.c
12228         * src/codeconv.h
12229         * src/procmime.c
12230                 Add a way to get locale's charset ignoring utf-8,
12231                 and use that as default encoding for broken mails
12232
12233 2005-09-18 [colin]      1.9.14cvs41
12234
12235         * src/gtk/logwindow.c
12236                 Translate string. Patch by Fabien Vantard
12237
12238 2005-09-18 [colin]      1.9.14cvs40
12239
12240         * configure.ac
12241                 Fix bug #803 (IMAP/SSL support breaks with 
12242                 GnuTLS libetpan 0.38)
12243
12244 2005-09-18 [colin]      1.9.14cvs39
12245
12246         * src/codeconv.c
12247         * src/compose.c
12248         * src/procmime.c
12249                 More charsets fixes. Fixes bug #806 (non
12250                 ascii characters in subject line)
12251
12252 2005-09-17 [paul]       1.9.14cvs38
12253
12254         * src/folderview.c
12255         * src/mainwindow.c
12256                 fix gcc-2.95 issues
12257                 Patch by Pawel Pekala
12258
12259 2005-09-17 [colin]      1.9.14cvs37
12260
12261         * src/addrindex.c
12262                 bugfix for NO-USE LDAP compilation, patch 
12263                 by Fabien Vantard
12264
12265 2005-09-17 [colin]      1.9.14cvs36
12266
12267         * src/prefs_actions.c
12268         * src/prefs_customheader.c
12269         * src/prefs_display_header.c
12270         * src/prefs_filtering_action.c
12271         * src/prefs_matcher.c
12272         * src/prefs_toolbar.c
12273                 Fix strange casts (less elegant but
12274                 works better)
12275
12276 2005-09-16 [colin]      1.9.14cvs35
12277
12278         * src/jpilot.c
12279                 Missed that one
12280
12281 2005-09-16 [colin]      1.9.14cvs34
12282
12283         * configure.ac
12284         * src/Makefile.am
12285         * src/addr_compl.c
12286         * src/addrindex.c
12287         * src/browseldap.c
12288         * src/editldap.c
12289         * src/ldaplocate.c
12290         * src/ldapquery.c
12291         * src/ldapquery.h
12292         * src/ldapserver.c
12293         * src/ldapserver.h
12294         * src/main.c
12295         * src/matcher_parser_parse.y
12296         * src/prefs_themes.c
12297         * src/etpan/Makefile.am
12298         * src/gtk/description_window.c
12299         * src/plugins/clamav/Makefile.am
12300         * src/plugins/clamav/clamav_plugin.c
12301         * src/plugins/dillo_viewer/Makefile.am
12302         * src/plugins/pgpcore/Makefile.am
12303         * src/plugins/pgpinline/Makefile.am
12304         * src/plugins/pgpmime/Makefile.am
12305         * src/plugins/trayicon/Makefile.am
12306                 Fix 100% cpu usage in address completion list
12307                 Fix little bugs (return with no values etc)
12308                 Fix all warnings (with common CFLAGS)
12309
12310 2005-09-15 [colin]      1.9.14cvs33
12311
12312         * src/addressbook.c
12313                 Fix bug where sometimes a group's email list is empty,
12314                 force its refresh (probably fixes "Re: how to create a 
12315                 distribution list")
12316         * src/ldapquery.c
12317                 Don't return to the callback in the main thread from the
12318                 fetch thread (or face segs!)
12319
12320 2005-09-15 [paul]       1.9.14cvs32
12321
12322         * src/prefs_matcher.c
12323                 forgotten in last commit
12324
12325 2005-09-15 [paul]       1.9.14cvs31
12326
12327         * src/prefs_actions.c
12328         * src/prefs_filtering_action.c
12329         * src/prefs_quote.c
12330         * src/quote_fmt.c
12331         * src/summaryview.c
12332         * src/gtk/description_window.c
12333         * src/gtk/description_window.h
12334         * src/gtk/quicksearch.c
12335                 allow interaction with the called
12336                 description window
12337                 Patch by Anders Hammar
12338
12339 2005-09-14 [paul]       1.9.14cvs30
12340
12341         * src/compose.c
12342                 fix a little annoyance when pasting with 3rd button 
12343                 with wrap_pastes=0 and wrap_input=1
12344                 Patch by Colin
12345
12346 2005-09-14 [paul]       1.9.14cvs29
12347
12348         * src/prefs_account.c
12349                 disable 'Filter messages on receiving' for
12350                 SMTP-only accounts
12351                 Patch  by Anders Hammar
12352
12353 2005-09-14 [paul]       1.9.14cvs28
12354
12355         * po/sk.po
12356                 fix crash
12357                 updated by Andrej Kacian
12358
12359 2005-09-14 [paul]
12360
12361         1.9.15-rc1 released
12362
12363 2005-09-14 [paul]       1.9.14cvs27
12364
12365         * po/es.po
12366                 updated by Ricardo Mones Lastra
12367         * src/compose.c
12368         * src/compose.h
12369                 associate no_wrap_tags to Compose windows
12370                 instead of using a static one
12371                 Patch by Colin
12372         * src/mbox.c
12373                 fix proc_mbox()
12374                 Patch by wwp
12375         * src/textview.c
12376                 remove unneeded printf()
12377
12378 2005-09-14 [paul]       1.9.14cvs26
12379
12380         * src/addrcache.c
12381         * src/codeconv.h
12382         * src/folder.h
12383         * src/mainwindow.h
12384         * src/mh.c
12385         * src/mimeview.h
12386         * src/partial_download.c
12387         * src/pop.c
12388         * src/prefs_account.c
12389         * src/prefs_account.h
12390         * src/prefs_actions.c
12391         * src/prefs_customheader.c
12392         * src/prefs_display_header.c
12393         * src/prefs_filtering_action.c
12394         * src/prefs_matcher.c
12395         * src/prefs_toolbar.c
12396         * src/privacy.h
12397         * src/procmime.c
12398         * src/procmime.h
12399         * src/procmsg.h
12400         * src/textview.c
12401         * src/undo.h
12402         * src/common/plugin.c
12403         * src/common/session.h
12404         * src/common/socket.c
12405         * src/common/socket.h
12406         * src/common/template.c
12407         * src/gtk/gtkaspell.c
12408         * src/gtk/quicksearch.h
12409         * src/plugins/pgpcore/passphrase.c
12410         * src/plugins/pgpcore/prefs_gpg.h
12411         * src/plugins/pgpcore/select-keys.c
12412         * src/plugins/pgpcore/select-keys.h
12413         * src/plugins/pgpcore/sgpgme.c
12414         * src/plugins/pgpinline/pgpinline.c
12415         * src/plugins/pgpmime/pgpmime.c
12416         * src/plugins/trayicon/trayicon.c
12417                 fix compilation warnings
12418                 Patch by Daniel Gustafson
12419
12420 2005-09-14 [paul]       1.9.14cvs25
12421
12422         * src/addressbook.c
12423                 add missing column header, and other small
12424                 bug fixes
12425                 Patch by Anders Hammar
12426
12427 2005-09-13 [colin]      1.9.14cvs24
12428
12429         * src/gtk/gtkaspell.c
12430                 Fix non-utf8 in menu
12431                 Fix little leaks
12432                 Nullify struct members after free()s
12433
12434 2005-09-13 [colin]      1.9.14cvs23
12435
12436         * src/compose.c
12437                 Test utf8 compliance before inserting to 
12438                 buffer, and try to convert if necessary
12439         * src/procmime.c
12440                 If no charset is present, use the locale 
12441                 one instead of us-ascii
12442         * src/procmsg.c
12443                 Add Sender, List-Post and To in the checked 
12444                 headers for automatic rules creation 
12445                 (thanks to wwp)
12446         * src/prefs_themes.c
12447         * src/gtk/gtkaspell.c
12448                 Remove deprecated functions. 
12449                 patch by Daniel Gustafson
12450
12451 2005-09-12 [colin]      1.9.14cvs22
12452
12453         * src/compose.c
12454                 Fix bug #448 (Scrolling/Redraw issue with 
12455                 address-fields in Header)
12456         * src/mainwindow.c
12457         * src/summaryview.c
12458         * src/summaryview.h
12459                 Fix loss of MSG_MARKED on move/copy
12460                 Fix bug #804 (Quicksearch togglebutton doesn't 
12461                 get depressed after '/' key is pressed)
12462
12463 2005-09-12 [paul]       1.9.14cvs21
12464
12465         * AUTHORS
12466         * src/gtk/logwindow.c
12467                 add 'Clear Log' to popup menu
12468                 Patch by Anders Hammar <anders.hammar@telia.com>
12469
12470 2005-09-12 [paul]       1.9.14cvs20
12471
12472         * src/compose.c
12473                 set correct sensitivity on attachments
12474                 popup menu
12475         * src/folder.c
12476                 fix typo
12477         * src/prefs_spelling.c
12478                 fix crash when no LANG env is set
12479         * src/common/xml.c
12480                 fix crash in wizard
12481                 don't use memeory after free
12482
12483         All patches by Daniel Gustafson
12484
12485 2005-09-12 [paul]       1.9.14cvs19
12486
12487         * src/prefs_themes.c
12488                 make theme info selectable
12489         * src/gtk/description_window.c
12490                 make window non-modal
12491         * tools/README
12492                 add details of asus_mailed.sh
12493         * tools/claws.i18n.status.pl
12494                 update for new zh_TW translator
12495                 widen the output
12496                 create alternate coloured lines
12497                 improve readability
12498
12499 2005-09-10 [colin]      1.9.14cvs18
12500
12501         * src/plugins/pgpcore/select-keys.c
12502                 Better order for the buttons
12503
12504 2005-09-10 [colin]      1.9.14cvs17
12505
12506         * src/compose.c
12507         * src/plugins/pgpcore/select-keys.c
12508         * src/plugins/pgpcore/select-keys.h
12509         * src/plugins/pgpcore/sgpgme.c
12510                 Add a "Don't encrypt" button to the key
12511                 selection dialog. Fixes bug #177 (There should be a 
12512                 'Don't encrypt button in the Select Keys dialog)
12513
12514 2005-09-10 [colin]      1.9.14cvs16
12515
12516         * src/compose.c
12517                 Fix bug #572 (%X option does not work with templates)
12518
12519 2005-09-10 [colin]      1.9.14cvs15
12520
12521         * src/toolbar.c 
12522                 Remove g_print
12523
12524 2005-09-10 [colin]      1.9.14cvs14
12525
12526         * src/imap.c
12527                 Fix a possible crash
12528
12529 2005-09-09 [colin]      1.9.14cvs13
12530
12531         * src/imap.c
12532         * src/etpan/imap-thread.c
12533         * src/etpan/imap-thread.h
12534                 Fix moving from queue or drafts to normal folders
12535                 Fix bug #794 (No way to delete without expunging)
12536                 Take flags unset by other mailers into account
12537                 Take deleted flag set by other mailers into account
12538                 Fix unsetting REPLIED flag
12539                 Fix crash when capabilities can't be retrieved
12540         * src/mainwindow.c
12541         * src/mainwindow.h
12542                 Add M_DELAYED_FLAGS condition, and let the user use
12543                 Execute in order to be able to expunge deleted mails,
12544                 even if he's not in delayed execute mode
12545         * src/prefs_spelling.c
12546                 Use 'en' dictionary by default if LANG is POSIX or C
12547         * src/gtk/prefswindow.c
12548                 Fix bug #767 (Preferences windows expanding) by making
12549                 the window a bit larger when the resolution is greater
12550                 than 640x480, and by putting the prefs in a
12551                 GtkScrolledWindow.
12552
12553 2005-09-09 [paul]       1.9.14cvs12
12554
12555         * AUTHORS
12556         * configure.ac
12557         * po/zh_TW.Big5.po      ** REMOVED **
12558         * po/zh_TW.po           ** ADDED **
12559                 updated by Wei-Lun Chao
12560
12561 2005-09-09 [paul]       1.9.14cvs11
12562
12563         * src/mainwindow.c
12564                 fix asserts
12565         * src/common/xml.c
12566                 delay memory allocation until file is
12567                 opened successfully
12568                 Patch by Daniel Gustafson
12569
12570 2005-09-09 [colin]      1.9.14cvs10
12571
12572         * src/imap.c
12573                 Add guards
12574
12575 2005-09-08 [colin]      1.9.14cvs9
12576
12577         * src/compose.c
12578                 Alert when we can't save draft
12579                 Fix various wrap/color issues
12580                 Add mid-click pasting respecting wrap_paste option
12581         * src/folder.c
12582         * src/folder.h
12583         * src/folder_item_prefs.c
12584         * src/folder_item_prefs.h
12585         * src/imap.c
12586         * src/imap_gtk.c
12587         * src/imap_gtk.h
12588         * src/main.c
12589         * src/mainwindow.c
12590         * src/mainwindow.h
12591         * src/news.c
12592         * src/news_gtk.c
12593         * src/news_gtk.h
12594         * src/prefs_folder_item.c
12595                 Fix the impossibility to synchronise folders for
12596                 offline use (IMAP and NNTP are concerned)
12597
12598 2005-09-08 [colin]      1.9.14cvs8
12599
12600         * configure.ac
12601                 Build LDAP and JPilot by default if available
12602         * src/textview.c
12603                 Fix use after free
12604
12605 2005-09-08 [paul]       1.9.14cvs7
12606
12607         * doc/manual/en/sylpheed-1.html
12608         * doc/manual/en/sylpheed-18.html
12609         * doc/manual/en/sylpheed-19.html
12610         * doc/manual/en/sylpheed-4.html
12611         * doc/manual/en/sylpheed-6.html
12612         * doc/manual/en/sylpheed.html
12613                 a few minor updates, plus include some
12614                 details about plugins and their requirements
12615         * src/mainwindow.c
12616                 minor changes to English in /View/Sort
12617
12618 2005-09-07 [colin]      1.9.14cvs6
12619
12620         * doc/manual/en/sylpheed-1.html
12621         * doc/manual/en/sylpheed-10.html
12622         * doc/manual/en/sylpheed-11.html
12623         * doc/manual/en/sylpheed-12.html
12624         * doc/manual/en/sylpheed-13.html
12625         * doc/manual/en/sylpheed-14.html
12626         * doc/manual/en/sylpheed-15.html
12627         * doc/manual/en/sylpheed-16.html
12628         * doc/manual/en/sylpheed-17.html
12629         * doc/manual/en/sylpheed-18.html
12630         * doc/manual/en/sylpheed-19.html
12631         * doc/manual/en/sylpheed-2.html
12632         * doc/manual/en/sylpheed-20.html
12633         * doc/manual/en/sylpheed-21.html
12634         * doc/manual/en/sylpheed-22.html
12635         * doc/manual/en/sylpheed-3.html
12636         * doc/manual/en/sylpheed-4.html
12637         * doc/manual/en/sylpheed-5.html
12638         * doc/manual/en/sylpheed-6.html
12639         * doc/manual/en/sylpheed-7.html
12640         * doc/manual/en/sylpheed-8.html
12641         * doc/manual/en/sylpheed-9.html
12642         * doc/manual/en/sylpheed.html
12643                 More substitutions (missed Sylpheed -> Sylpheed-Claws)
12644
12645 2005-09-07 [colin]      1.9.14cvs5
12646
12647         * src/mainwindow.c
12648                 Make labels more to-the-point
12649
12650 2005-09-07 [colin]      1.9.14cvs4
12651
12652         * doc/manual/en/sylpheed-1.html
12653         * doc/manual/en/sylpheed-12.html
12654         * doc/manual/en/sylpheed-13.html
12655         * doc/manual/en/sylpheed-14.html
12656         * doc/manual/en/sylpheed-15.html
12657         * doc/manual/en/sylpheed-16.html
12658         * doc/manual/en/sylpheed-17.html
12659         * doc/manual/en/sylpheed-18.html
12660         * doc/manual/en/sylpheed-19.html
12661         * doc/manual/en/sylpheed-2.html
12662         * doc/manual/en/sylpheed-20.html
12663         * doc/manual/en/sylpheed-21.html
12664         * doc/manual/en/sylpheed-22.html
12665         * doc/manual/en/sylpheed-4.html
12666         * doc/manual/en/sylpheed-5.html
12667         * doc/manual/en/sylpheed-6.html
12668         * doc/manual/en/sylpheed-7.html
12669         * doc/manual/en/sylpheed-8.html
12670         * doc/manual/en/sylpheed-9.html
12671         * doc/manual/en/sylpheed.html
12672                 Update manual
12673
12674 2005-09-07 [colin]      1.9.14cvs3
12675
12676         * doc/faq/en/sylpheed-faq-1.html
12677         * doc/faq/en/sylpheed-faq-2.html
12678         * doc/faq/en/sylpheed-faq-3.html
12679         * doc/faq/en/sylpheed-faq.html
12680                 Update FAQ
12681
12682 2005-09-07 [colin]      1.9.14cvs2
12683
12684         * src/folderview.c
12685         * src/procmsg.c
12686         * src/summaryview.c
12687         * src/toolbar.c
12688                 Fix special subfolders:
12689                 - Inherit parent's icon
12690                 - sent contents of queues subfolders
12691                 - empty subfolders of trashes
12692         * src/mainwindow.c
12693                 Remove outdated manual and faq entries
12694         * src/common/utils.c
12695                 Add quotes around %s coming from mailcap
12696
12697 2005-09-07 [colin]      1.9.14cvs1
12698
12699         * src/compose.c
12700                 After saving draft, set modified to FALSE
12701         * src/mimeview.c
12702         * src/common/utils.c
12703         * src/common/utils.h
12704                 Try to open mime parts using what is 
12705                 indicated in ~/.mailcap or /etc/mailcap,
12706                 if possible.
12707
12708 2005-09-05 [paul]       1.9.14
12709
12710         1.9.14 released
12711
12712         * po/sk.po
12713                 updated by Andrej Kacian
12714
12715 2005-09-05 [paul]       1.9.13cvs83
12716
12717         * po/de.po
12718         * po/es.po
12719         * po/fi.po
12720         * po/fr.po
12721         * po/nb.po
12722         * po/pt_BR.po
12723         * po/sr.po
12724                 updated translations by Thomas Gilgin, Ricardo Mones
12725                 Lastra, Tommi Pirinen, Fabien Vantard, Geir Helland,
12726                 Frederico Goncalves Guimaraes, Aleksandar Urosevic
12727
12728 2005-09-04 [paul]       1.9.13cvs82
12729
12730         * src/compose.c
12731                 only warn about exceeded line length limit
12732                 on send
12733
12734 2005-09-04 [paul]       1.9.13cvs81
12735
12736         * src/compose.c
12737                 fix crash in 'line length exceeded' dialogue
12738
12739 2005-09-02 [paul]       1.9.13cvs80
12740
12741         * src/imap.c
12742                 fix bug 795, 'Connection lost IMAP'
12743                 and add statusbar prints
12744                 Patch by Colin
12745
12746 2005-09-02 [paul]       1.9.13cvs79
12747
12748         * src/compose.c
12749                 compose_wrap_paragraph() becomes
12750                 compose_beautify_paragraph()
12751                 Patch by Colin
12752
12753 2005-09-02 [colin]      1.9.13cvs78
12754
12755         * src/folderview.c
12756                 Micro-fix
12757
12758 2005-09-01 [colin]      1.9.13cvs77
12759
12760         * src/imap.c
12761                 Maybe fix bug #795 (Connection lost IMAP)
12762                 Don't try to send logout when we're disconnected.
12763         * src/summaryview.c
12764                 Include locked and marked emails in HRM
12765                 view. Fixes bug #800 (Locked messages no longer 
12766                 show up when hide read messages is used)
12767
12768 2005-09-01 [paul]       1.9.13cvs76
12769
12770         * src/prefs_common.c
12771                 fix bad cutting
12772
12773 2005-08-31 [colin]      1.9.13cvs75
12774
12775         * src/folderview.c
12776         * src/folderview.h
12777         * src/prefs_summaries.c
12778         * src/summaryview.c
12779                 Fix "go to next new", fix preference
12780                 (Open unread/next swapped)
12781
12782 2005-08-31 [paul]       1.9.13cvs74
12783
12784         * src/compose.c
12785         * src/folderview.c
12786         * src/headerview.c
12787         * src/headerview.h
12788         * src/mainwindow.c
12789         * src/prefs_common.c
12790         * src/prefs_common.h
12791         * src/prefs_fonts.c
12792         * src/summaryview.c
12793         * src/textview.c
12794         * src/common/defs.h
12795                 remove obsolete BOLD_FONT setting
12796                 fix font update in headerview and textview
12797                 headers after prefs change
12798                 Patch By Colin
12799
12800 2005-08-31 [paul]
12801
12802         1.9.14-rc4 released
12803
12804 2005-08-30 [colin]      1.9.13cvs73
12805
12806         * src/summaryview.c
12807                 When Hide read messages is selected and we
12808                 refresh the summaryview, don't remove the 
12809                 currently displayed message. Fixes bug #797
12810                 (Summary view reloads when new mail is 
12811                 downloaded in 1.9.14 rc)
12812
12813 2005-08-30 [colin]      1.9.13cvs72
12814
12815         * src/folderview.c
12816                 Fix flickering
12817         * src/mainwindow.c
12818                 Remove useless callback
12819         * src/mimeview.c
12820         * src/gtk/filesel.c
12821         * src/gtk/filesel.h
12822                 Add a filesel_select_file_save_folder() - used by Save All
12823
12824 2005-08-29 [paul]       1.9.13cvs71
12825
12826         * AUTHORS
12827         * src/matcher_parser_parse.y
12828         * src/etpan/imap-thread.c
12829                 fix building on FreeBSD
12830                 Patch by Daniel Gustafson <daniel@hobbit.se>
12831
12832 2005-08-29 [paul]       1.9.13cvs70
12833
12834         * src/plugins/pgpinline/pgpinline.c
12835                 only initialise sig result if it's been handled
12836                 Patch by Colin
12837
12838 2005-08-29 [paul]       1.9.13cvs69
12839         
12840         Patches by Colin:
12841
12842         * src/imap.c
12843         * src/common.utils.c
12844         * src/common/utils.h
12845                 optimisation
12846         * src/stock_pixmap.h
12847                 fix wrong icon reference
12848         * src/pixmaps/trash_btn.xpm
12849                 replace with nicer image
12850
12851 2005-08-28 [colin]      1.9.13cvs68
12852
12853         * src/Makefile.am
12854         * src/stock_pixmap.c
12855         * src/stock_pixmap.h
12856         * src/toolbar.c
12857         * src/pixmaps/trash_btn.xpm
12858                 Add a specific trash xpm for the button
12859
12860 2005-08-28 [colin]      1.9.13cvs67
12861
12862         * src/imap.c
12863                 Fix leak
12864
12865 2005-08-27 [colin]      1.9.13cvs66
12866
12867         * src/imap.c
12868         * src/procmime.c
12869                 Correctly fix "Problem with replies", fixes
12870                 pgpmime encryption too. 
12871
12872 2005-08-27 [colin]      1.9.13cvs65
12873
12874         * src/folder.c
12875         * src/procmsg.c
12876         * src/procmsg.h
12877         * src/summaryview.c
12878                 Fix bug #517 (messages removed from summaryview 
12879                 when moving fails)
12880
12881 2005-08-27 [colin]      1.9.13cvs64
12882
12883         * tools/Makefile.am
12884         * tools/asus_mailled.sh
12885                 Add a script to blink ASUS laptops' mail LED where there
12886                 is unread mail.
12887
12888 2005-08-27 [colin]      1.9.13cvs63
12889
12890         * src/imap.c
12891         * src/etpan/imap-thread.c
12892         * src/etpan/imap-thread.h
12893                 Implement automatic choosing of login method
12894                 Fixes bug #791
12895         * src/gtk/.cvsignore
12896                 Add sylpheed-marshal.[ch]
12897
12898 2005-08-27 [colin]      1.9.13cvs62
12899
12900         * src/common/utils.c
12901                 Fix confusing perror
12902
12903 2005-08-27 [colin]      1.9.13cvs61
12904
12905         * src/toolbar.c
12906         * src/toolbar.h
12907                 Remove A_DELETE, replace it with 
12908                 A_TRASH and A_DELETE_REAL. Automatically
12909                 rewrite config files to replace A_DELETE
12910                 with A_TRASH (no functionality change).
12911                 Fixes half of #794
12912
12913 2005-08-26 [colin]      1.9.13cvs60
12914
12915         * src/procmime.c
12916                 Previous "Problem with replies" fix brought other
12917                 problems, fixing them
12918
12919 2005-08-26 [colin]      1.9.13cvs59
12920
12921         * src/procmime.c
12922                 Fix "Problem with replies". This happened only
12923                 on IMAP...
12924         * src/procmsg.c
12925                 Factorize code a bit
12926         * src/compose.c
12927                 Speed improvement on very long messages (wrapping)
12928                 Fix signature color on Reedit and Redirect
12929                 On Reedit, don't attach pgp-signatures parts, but
12930                 set signing to On.
12931
12932 2005-08-24 [paul]       1.9.13cvs58
12933
12934         * src/compose.c
12935                 don't claim success when clicking
12936                 Cancel on the passphrase box.
12937                 Patch by Colin
12938
12939 2005-08-24 [paul]       1.9.13cvs57
12940
12941         * src/main.c
12942                 fix misplaced sylpheed.log
12943         * src/common/defs.h
12944                 define UIDL_DIR
12945
12946 2005-08-24 [paul]       1.9.13cvs56
12947
12948         * src/imap.c
12949         * src/etpan/imap-thread.c
12950         * src/etpan/imap-thread.h
12951                 fix bug 789 'IMAP CRAM-MD5 and ssl broken in 1.9.13'
12952                 Patch by Colin
12953         * src/gtk/sylpheed-marshal.c    ** REMOVED **
12954         * src/gtk/sylpheed-marshal.h    ** REMOVED **
12955                 remove autogenerated files
12956         * tools/kdeservicemenu/README
12957         * tools/kdeservicemenu/install.sh
12958         * tools/kdeservicemenu/template_sylpheed-attach-files.desktop
12959         * tools/kdeservicemenu/template_sylpheed-compress-attach.desktop
12960                 use Claws icon, use 'Sylpheed-Claws' in menu,
12961                 use kdialog, and other cleanups
12962
12963 2005-08-23 [paul]       1.9.13cvs55
12964
12965         * src/compose.c
12966                 fix paste/wrap crash
12967                 Patch by Colin
12968
12969 2005-08-23 [paul]       1.9.13cvs54
12970
12971         * src/main.c
12972                 fix crash recovery
12973                 Patch by Colin
12974
12975 2005-08-23 [paul]       1.9.13cvs53
12976
12977         * src/addressbook.c
12978         * src/editaddress.c
12979                 view all data of LDAP contacts
12980                 Patch by Colin
12981
12982 2005-08-23 [paul]       1.9.13cvs52
12983
12984         * src/addressbook.c
12985                 fix issues with the Search field
12986                 Patch by Colin
12987
12988 2005-08-22 [paul]       1.9.13cvs51
12989
12990         * src/folderview.c
12991                 put name of folder in processing dialog
12992                 title
12993         * src/prefs_folder_item.c
12994                 improve english usage
12995
12996 2005-08-22 [paul]       1.9.13cvs50
12997
12998         * src/filtering.c
12999         * src/filtering.h
13000         * src/matcher.c
13001         * src/matcher_parser_lex.l
13002         * src/matcher_parser_parse.y
13003         * src/prefs_filtering.c
13004                 add Filtering/Processing rule names feature.
13005                 (the incompatible old matcherrc is saved as
13006                 matcherrc.pre_names).
13007                 Patch by Colin
13008
13009 2005-08-22 [paul]       1.9.13cvs49
13010
13011         * src/procmsg.c
13012                 fix colour labelling
13013                 Patch by Colin
13014
13015 2005-08-22 [paul]       1.9.13cvs48
13016
13017         * src/textview.c
13018                 fix open_image_cb()
13019
13020 2005-08-22 [paul]       1.9.13cvs47
13021
13022         * src/imap.c
13023                 fix bug 789, 'SC crashes with imap (CVS ver)'
13024                 Patch by Colin
13025
13026 2005-08-22 [paul]       1.9.13cvs46
13027
13028         * src/mimeview.c
13029         * src/prefs_common.c
13030         * src/common/defs.h
13031                 define reused defaults in defs.h
13032         * src/textview.c
13033                 add 'Open image' to image popup menu
13034
13035 2005-08-21 [colin]      1.9.13cvs45
13036
13037         * src/summaryview.c
13038                 Fix bug #788 (Bogus "From" address displayed)
13039
13040 2005-08-20 [colin]      1.9.13cvs44
13041
13042         * src/folder.c
13043                 Fix buf #787 (multilevel delete causes SIGSEGV)
13044
13045 2005-08-19 [colin]      1.9.13cvs43
13046
13047         * src/inc.c
13048         * src/prefs_common.c
13049         * src/prefs_common.h
13050                 Add an hidden pref to allow modifying the
13051                 update stepping in incorporation.
13052                 Patch by wwp.
13053
13054 2005-08-19 [colin]      1.9.13cvs42
13055
13056         * src/compose.c
13057         * src/procmime.c
13058                 Workaround for broken MUAs: encode 
13059                 Content-type: name: as ASCII and 
13060                 Content-Disposition: filename: as
13061                 per rfc2231
13062         * src/prefs_account.c
13063                 Fix invisible-ness of SMTP SSL prefs
13064                 in NNTP accounts
13065
13066 2005-08-19 [paul]       1.9.13cvs41
13067
13068         * src/compose.c
13069         * src/prefs_common.c
13070         * src/prefs_common.h
13071         * src/prefs_wrapping.c
13072                 paste with or without wrapping.
13073                 patch by Colin
13074
13075 2005-08-19 [paul]       1.9.13cvs40
13076
13077         * src/prefs_common.c
13078         * src/prefs_common.h
13079         * src/summaryview.c
13080                 reintroduce enable_swap_from as a
13081                 hidden pref. patch by Colin
13082         * src/quote_fmt_parse.y
13083         * src/plugins/clamav/clamav_plugin.c
13084         * src/plugins/dillo_viewer/dillo_viewer.c
13085         * src/plugins/mathml_viewer/mathml_viewer.c
13086         * src/plugins/pgpcore/sgpgme.c
13087         * src/plugins/pgpinline/pgpinline.c
13088         * src/plugins/pgpmime/pgpmime.c
13089                 tidy up. patch by Colin
13090
13091 2005-08-19 [paul]       1.9.13cvs39
13092
13093         * configure.ac
13094                 complete cvs38's sync
13095         * src/editaddress.c
13096         * src/gedit-print.c
13097         * src/mutt.c
13098         * src/etpan/etpan-log.c
13099         * src/etpan/imap-thread.c
13100         * src/gtk/gtksourceprintjob.c
13101                 fix compilation warnings
13102                 (patch by Colin)
13103
13104 2005-08-19 [paul]       1.9.13cvs38
13105
13106         sync with main:
13107
13108         * src/account.c
13109         * src/action.c
13110         * src/addrbook.c
13111         * src/addrcache.c
13112         * src/addrharvest.c
13113         * src/addrindex.c
13114         * src/codeconv.c
13115         * src/compose.c
13116         * src/crash.c
13117         * src/exporthtml.c
13118         * src/exportldif.c
13119         * src/folder.c
13120         * src/image_viewer.c
13121         * src/inc.c
13122         * src/inc.h
13123         * src/jpilot.c
13124         * src/ldif.c
13125         * src/main.c
13126         * src/matcher.c
13127         * src/mbox.c
13128         * src/messageview.c
13129         * src/mh.c
13130         * src/mimeview.c
13131         * src/msgcache.c
13132         * src/mutt.c
13133         * src/news.c
13134         * src/partial_download.c
13135         * src/pine.c
13136         * src/pop.c
13137         * src/prefs_actions.c
13138         * src/prefs_common.c
13139         * src/prefs_customheader.c
13140         * src/prefs_display_header.c
13141         * src/prefs_gtk.c
13142         * src/prefs_themes.c
13143         * src/procheader.c
13144         * src/procmime.c
13145         * src/procmsg.c
13146         * src/recv.c
13147         * src/send_message.c
13148         * src/simple-gettext.c
13149         * src/sourcewindow.c
13150         * src/textview.c
13151         * src/vcard.c
13152         * src/common/defs.h
13153         * src/common/log.c
13154         * src/common/plugin.c
13155         * src/common/prefs.c
13156         * src/common/session.c
13157         * src/common/session.h
13158         * src/common/socket.c
13159         * src/common/socket.h
13160         * src/common/ssl_certificate.c
13161         * src/common/template.c
13162         * src/common/utils.c
13163         * src/common/utils.h
13164         * src/common/xml.c
13165         * src/gtk/about.c
13166         added wrappers for C library function that
13167                 take pathname arguments.
13168                 enabled compilation with MinGW.
13169                 use GDir instead of directly using opendir().
13170                 added rename_force().
13171
13172 2005-08-19 [paul]       1.9.13cvs37
13173         
13174         patches by Colin:
13175         * src/compose.c
13176                 fix privacy settings on re-editing
13177                 a sent message
13178         * src/jpilot.c
13179                 fix encoding bug
13180         * src/folder.c
13181         * src/procmsg.c
13182         * src/procmsg.h
13183         * src/summaryview.c
13184                 flag changing optimisation
13185
13186 2005-08-18 [martin]     1.9.13cvs36
13187
13188         * commitHelper
13189             added my login
13190         * src/addrcache.c
13191         * src/addrharvest.c
13192         * src/addrindex.c
13193         * src/compose.c
13194         * src/grouplistdialog.c
13195         * src/main.c
13196         * src/mainwindow.c
13197         * src/msgcache.c
13198         * src/mutt.c
13199         * src/pine.c
13200         * src/prefs_account.c
13201         * src/prefs_themes.c
13202         * src/stock_pixmap.c
13203         * src/summaryview.c
13204         * src/gtk/about.c
13205         * src/gtk/logwindow.c
13206             removed deprecated glib and gdk stuff
13207         * src/plugins/pgpcore/select-keys.c
13208             convert attributes from locale to utf8
13209
13210 2005-08-17 [paul]       1.9.13cvs35
13211
13212         * src/account.c
13213         * src/addressbook.c
13214                 use new GTK_STOCK_ icons if available
13215         * src/summaryview.c
13216         * src/gtk/gtksctree.c
13217         * src/gtk/gtksctree.h
13218                 faster range select. patch by Colin
13219
13220 2005-08-17 [paul]       1.9.13cvs34
13221
13222         patches by colin:
13223         * src/addressbook.c
13224         * src/addressitem.h
13225                 Add an edit button for contacts, fix selections
13226                 of gtksctree items
13227         * src/editaddress.c
13228                 Change labels, let Save be always possible in the
13229                 email and user atributes tabs
13230         * src/folderview.c
13231                 fix sort issues
13232         * src/summaryview.c
13233                 select next item instead of the displayed one
13234                 after deletion
13235
13236         * src/gtk/progressdialog.c
13237                 use prefs_common.enable_rules_hint
13238
13239 2005-08-13 [hoa]        1.9.13cvs33
13240
13241         * src/etpan/imap-thread.c
13242                 fixed build on Solaris.
13243
13244 2005-08-10 [colin]      1.9.13cvs32
13245
13246         * src/procmsg.c
13247                 Fix cvs31 (missing fclose before reading
13248                 the file)
13249
13250 2005-08-10 [colin]      1.9.13cvs31
13251
13252         * src/procmsg.c
13253                 Fix procmsg_msginfo_new_from_mimeinfo() when
13254                 the MimeInfo isn't stored in memory. This fixes
13255                 replying to an attached message.
13256
13257 2005-08-10 [colin]      1.9.13cvs30
13258
13259         * src/mainwindow.c
13260                 Fix slowness in account changing
13261
13262 2005-08-10 [colin]      1.9.13cvs29
13263
13264         * src/folder.c
13265         * src/folderutils.c
13266         * src/folderview.c
13267         * src/imap_gtk.c
13268         * src/mainwindow.c
13269         * src/mh_gtk.c
13270         * src/procmsg.c
13271         * src/summaryview.c
13272                 Optimize folder_has_parent_of_type
13273                 Prevent moving special sub-folders from contextual menus
13274                 Rework message a bit ("Empty all messages" -> "Delete all
13275                 messages")
13276                 Fix bug #780 (MSexchange IMAP - using IMAP "Sent Items" 
13277                 and "Deleted Items" folders)
13278
13279 2005-08-08 [colin]      1.9.13cvs28
13280
13281         * src/summaryview.c
13282         * src/prefs_summaries.c
13283                 Make "Select first unread|new" more flexible
13284                 (just prioritize new or unread)
13285
13286 2005-08-08 [colin]      1.9.13cvs27
13287
13288         * src/summaryview.c
13289                 If "select first new" is selected and there only
13290                 are unread messages, fallback to "select first
13291                 unread".
13292
13293 2005-08-08 [colin]      1.9.13cvs26
13294
13295         * src/folder.c
13296                 Fix shameful bugs (and bug #779)
13297
13298 2005-08-08 [colin]      1.9.13cvs25
13299
13300         * src/folder.c
13301         * src/folder.h
13302                 Cache parents' type to make folder_has_parent_of_type
13303                 faster
13304         * src/folderview.c
13305                 Forbid DnD of special sub-folders
13306         * src/procmsg.c
13307         * src/procmsg.h
13308                 Add MAIL_POSTFILTERING_HOOK
13309         * src/summaryview.c
13310                 Revert over-zealous deletion of the use_addr_book 
13311                 code
13312
13313 2005-08-07 [colin]      1.9.13cvs24
13314
13315         * src/folder.c
13316                 Fix big mistake (passing MsgInfo instead 
13317                 of FolderItem)
13318
13319 2005-08-07 [colin]      1.9.13cvs23
13320
13321         * src/compose.c
13322         * src/folder.c
13323         * src/folder.h
13324         * src/foldersel.c
13325         * src/folderutils.c
13326         * src/folderview.c
13327         * src/imap.c
13328         * src/mainwindow.c
13329         * src/messageview.c
13330         * src/mh.c
13331         * src/msgcache.c
13332         * src/procmime.c
13333         * src/summaryview.c
13334                 Make subfolders of Drafts, Queue, Outbox, Trash
13335                 work like their parents. 
13336                 Fixes bug #686 (Message view on Drafts/Sent should be the same on Subfolders)
13337
13338 2005-08-07 [colin]      1.9.13cvs22
13339
13340         * src/addressbook.c
13341                 Fix bug #771 (Dragged contacts not saved)
13342
13343 2005-08-07 [paul]       1.9.13cvs21
13344
13345         * src/summaryview.c
13346                 fix bug 32 'Search Doesn't display results
13347                 if "Hide Read Messages" is chosen'
13348                 be more literal in interpreting 'Hide read
13349                 messages'
13350
13351 2005-08-07 [colin]      1.9.13cvs20
13352
13353         * src/folderview.c
13354                 Add debug
13355         * src/summaryview.c
13356                 Faster 'unthread_for_execution'
13357
13358 2005-08-06 [paul]       1.9.13cvs19
13359
13360         * src/mainwindow.c
13361                 add mnemonics to Set displayed columns
13362                 fix bug where msgview_visible option was
13363                 overwritten as TRUE on startup
13364
13365 2005-08-06 [paul]       1.9.13cvs18
13366
13367         * src/mainwindow.c
13368                 refer to 'displayed columns in folder/message
13369                 list' not 'displayed items in summary/message view'
13370         * src/prefs_display_header.c
13371                 replace GTK_STOCK_DELETE with GTK_STOCK_REMOVE to
13372                 be consistent with similar dialogues
13373         * src/prefs_folder_column.c
13374         * src/prefs_summary_column.c
13375                 'columns' not 'items', and folder and message lists,
13376                 instead of folder and summary views;
13377                 Use 'Hidden columns' as list heading not 'Available
13378                 items';
13379                 move the 'Remove' button to the right hand side;
13380                 top-align the buttons;
13381                 remove unneeded vbox
13382         * src/prefs_summaries.c
13383                 put the 2 column prefs buttons in a frame to reduce
13384                 overall width; refer to columns not items &c.
13385
13386 2005-08-05 [colin]      1.9.13cvs17
13387
13388         * src/prefs_common.c
13389         * src/prefs_common.h
13390         * src/mainwindow.c
13391         * src/compose.c
13392         * src/messageview.c
13393                 Add an hidden toolbar_detachable pref, so
13394                 that I can get rid of these painful handles
13395                 in the toolbars. Defaults to TRUE to avoid
13396                 changing the GUI on unsuspecting people...
13397
13398 2005-08-05 [colin]      1.9.13cvs16
13399
13400         * src/Makefile.am
13401         * src/prefs_folder_column.c
13402         * src/prefs_folder_column.h
13403                 Add prefs for folder columns
13404         * src/folderview.c
13405         * src/folderview.h
13406         * src/mainwindow.c
13407         * src/mainwindow.h
13408         * src/prefs_common.c
13409         * src/prefs_common.h
13410         * src/prefs_summaries.c
13411                 Use them
13412         * src/prefs_summary_column.c
13413         * src/summaryview.c
13414         * src/summaryview.h
13415                 Add a To column
13416         * src/textview.c
13417         * src/common/utils.c
13418         * src/common/utils.h
13419                 Move uri colourisation functions
13420                 to utils
13421         * src/compose.c
13422                 Colourise URIs
13423         * src/imap.c
13424                 Fix bug with LIST where we'd try
13425                 to get Folder//////[...]/// 
13426
13427 2005-08-05 [paul]       1.9.13cvs15
13428
13429         * src/prefs_summaries.c
13430                 improve the English usage
13431         * src/summaryview.c
13432                 set font on column change
13433                 thanks to Colin
13434
13435 2005-08-05 [paul]       1.9.13cvs14
13436
13437         * src/prefs_common.c
13438         * src/prefs_common.h
13439         * src/prefs_summaries.c
13440         * src/summaryview.c
13441                 replace 'open_unread_on_enter' option with
13442                 'select_on_entry' option. opening/not opening
13443                 is now exclusively controlled by 'always_show_msg'
13444
13445 2005-08-04 [colin]      1.9.13cvs13
13446
13447         * src/compose.c
13448                 Remove dead code
13449                 Add colourisation of quotes and signatures
13450         * src/folderview.c
13451                 Fix possible crashes
13452         * src/messageview.c
13453                 Change an assert that is no problem
13454         * src/news.c
13455         * src/news_gtk.c
13456         * src/news_gtk.h
13457                 Fix offline mode
13458         * src/gtk/quicksearch.c
13459                 Fix a possible crash
13460
13461 2005-08-03 [colin]      1.9.13cvs12
13462
13463         * src/prefs_account.c
13464                 Fix bug #777 (Sylpheed crash in account configuration)
13465
13466 2005-08-03 [colin]      1.9.13cvs11
13467
13468         * src/addressbook.c
13469         * src/editaddress.c
13470         * src/editgroup.c
13471                 Fixing addressbook, round 2
13472         * src/textview.c
13473                 Fix emphasis color on rechecking 'Colorize messages'
13474
13475 2005-08-03 [paul]       1.9.13cvs10
13476
13477         sync with main
13478
13479         * src/addr_compl.c
13480         * src/compose.c
13481         * src/main.c
13482         * src/pop.c
13483         * src/prefs_account.c
13484         * src/procmime.c
13485         * src/procmsg.c
13486         * src/quote_fmt_parse.y
13487         * src/textview.c
13488         * src/common/quoted-printable.c
13489         * src/common/utils.c
13490         * src/common/utils.h
13491         * src/common/xml.c
13492                 replaced incorrect locale-independent
13493                 ctype functions with GLib's. Corrected
13494                 signedness mismatch.
13495         * src/headerview.c
13496                 headerview_create(): added spacing for vbox.
13497         * src/gtk/about.c
13498                 set focus to the OK button.
13499
13500 2005-08-03 [colin]      1.9.13cvs9
13501
13502         * src/folderview.c
13503                 Fix possible crash
13504
13505 2005-08-02 [colin]      1.9.13cvs8
13506
13507         * src/mainwindow.c
13508                 Fix cast
13509         * src/addressbook.c
13510         * src/addressitem.h
13511                 Fix a cast and more generally, try to make the
13512                 GUI more intuitive and consistent (round 1)
13513
13514 2005-08-02 [paul]       1.9.13cvs7
13515
13516         * src/folder.h
13517                 missing in 1.9.13cvs6
13518
13519 2005-08-02 [colin]      1.9.13cvs6
13520
13521         * src/folder.c
13522                 Fix one more leak
13523
13524 2005-08-02 [colin]      1.9.13cvs5
13525
13526         * src/folder.c
13527         * src/folderview.c
13528         * src/imap.c
13529         * src/main.c
13530         * src/mbox.c
13531         * src/procmsg.c
13532         * src/summaryview.c
13533                 Fix a number of folder_item_get_msg_list()-related
13534                 leaks (missing procmsg_msginfo_free()s)
13535
13536 2005-08-01 [colin]      1.9.13cvs4
13537
13538         * src/folderview.c
13539         * src/folderview.h
13540         * src/mainwindow.c
13541         * src/prefs_fonts.c
13542         * src/prefs_summaries.c
13543         * src/prefs_themes.c
13544         * src/summaryview.c
13545         * src/summaryview.h
13546         * src/textview.c
13547         * src/textview.h
13548                 Fix instant-apply of summary and folderview-related prefs
13549                 Fix erroneous g_free and alertpanels in prefs_theme
13550                 Add instant-apply for fonts
13551                 Defer applying of prefs a little bit so it's done only
13552                 once even if requested by multiples prefs pages
13553
13554 2005-08-01 [paul]       1.9.13cvs3
13555
13556         * src/main.c
13557                 fix bug 776 'S.C. crashes on close'
13558                 thanks to Colin
13559         * src/etpan/etpan-thread-manager-types.h
13560                 add missing include
13561                 thanks to Hoa
13562
13563 2005-07-25 [paul]       1.9.13cvs2
13564
13565         * src/summaryview.c
13566                 fix typos. spotted by Fabien Vantard
13567
13568 2005-07-24 [paul]       1.9.13cvs1
13569
13570         * doc/man/sylpheed.1
13571                 update man page, incorporating fix of
13572                 bug 769 'Typo in manpage'
13573         * src/etpan/imap-thread.c
13574                 fix NetBSD openssl dependencies. patch by
13575                 George Michaelson <ggm@apnic.net>
13576         * po/pt_BR.po
13577                 updated by Frederico Goncalves Guimaraes
13578
13579 2005-07-22 [paul]       1.9.13
13580
13581         1.9.13 release
13582
13583 2005-07-22 [paul]       1.9.12cvs91
13584
13585         * AUTHORS
13586         * INSTALL
13587         * README.claws
13588         * RELEASE_NOTES.claws
13589                 updated for release
13590         * configure.ac
13591         * po/nb.po
13592         * tools/claws.i18n.status.pl
13593                 add Norwegian translation. submiited by
13594                 Geir Helland <pjallabais@users.sourceforge.net>
13595         * po/ca.po
13596         * po/de.po
13597         * po/es.po
13598         * po/fi.po
13599         * po/fr.po
13600         * po/it.po
13601         * po/sk.po
13602         * po/sr.po
13603         * po/zh_CN.po
13604                 updated by Miquel Oliete, Thomas Gilgin, Ricardo
13605                 Mones Lastra, Tommi Pirinen, Fabien Vantard,
13606                 Andrea Spadaccini, Andrej Kacian, Aleksandar Urosevic,
13607                 Yang Guilong
13608         * src/plugins/clamav/clamav_plugin_gtk.c
13609         * src/plugins/spamassassin/spamassassin_gtk.c
13610                 replace outdated description strings
13611
13612 2005-07-21 [colin]      1.9.12cvs90
13613
13614         * src/folder.c
13615                 Set folder to batch mode when scanning it. Makes deletion
13616                 of unread mails on IMAP much faster (due to the UNREAD 
13617                 flag unsetting)
13618
13619 2005-07-21 [darko]      1.9.12cvs89
13620
13621         * configure.ac
13622                 link against libresolv if necessary (patch by Paul)
13623         * src/msgcache.c
13624                 use glib's portable macros to determine endianness
13625
13626 2005-07-21 [paul]       1.9.12cvs88
13627
13628         * src/crash.c
13629         * src/gtk/about.c
13630                 update compiled-in features list
13631
13632 2005-07-20 [colin]      1.9.12cvs87
13633
13634         * src/folder.c
13635         * src/textview.c
13636                 Gcc 2.9x compilation fixes, thanks to Darko
13637         * src/plugins/clamav/clamav_plugin.c
13638                 Little optimisation: load virus database only once
13639         * src/plugins/spamassassin/spamassassin.c
13640                 Big optimisation: filtering one mail took at least 1 second,
13641                 now it takes at least 50ms. Doesn't speed up spamassassin 
13642                 itself, but should already be much more tolerable.
13643
13644 2005-07-20 [colin]      1.9.12cvs86
13645
13646         * src/summaryview.c
13647                 Fix performance issue
13648
13649 2005-07-19 [colin]      1.9.12cvs85
13650
13651         * src/plugins/pgpinline/plugin.c
13652                 Fix warning
13653
13654 2005-07-19 [colin]      1.9.12cvs84
13655
13656         * configure.ac
13657         * src/plugins/Makefile.am
13658         * src/plugins/pgpinline/.cvsignore
13659         * src/plugins/pgpinline/Makefile.am
13660         * src/plugins/pgpinline/pgpinline.c
13661         * src/plugins/pgpinline/pgpinline.deps
13662         * src/plugins/pgpinline/pgpinline.h
13663         * src/plugins/pgpinline/plugin.c
13664                 Put pgpinline in the main tree
13665
13666 2005-07-19 [paul]       1.9.12cvs83
13667
13668         * src/prefs_actions.c
13669                 prevent '//' in menu names, which cause a crash
13670                 thanks to Colin
13671
13672 2005-07-19 [paul]       1.9.12cvs82
13673
13674         * configure.ac
13675                 be generally more informative in configure output.
13676                 OpenSSL: correction: '[ --enable-openssl ...' -> 
13677                 '[ --disable-openssl ...', as --enable-openssl is default
13678                 PGP/MIME: don't check for GPGME again, check for
13679                 pgpcore instead. Therefore prevent the possibility of
13680                 attempting to build pgpmime if pgpcore dependencies are
13681                 not met
13682                 ClamAV: use pkgconfig to check for lib
13683                 libgnomeprint: revert logic on inner test to match
13684                 everything else
13685         * src/plugins/pgpcore/sgpgme.c
13686                 add missing include
13687
13688 2005-07-19 [colin]      1.9.12cvs81
13689
13690         * src/summaryview.c
13691                 Fix slow thread rebuilding in particular
13692                 cases
13693
13694 2005-07-19 [paul]       1.9.12cvs80
13695
13696         * sylpheed-claws.desktop
13697                 fix typo, spotted by Stephan Sachse
13698         * src/account.c
13699                 replace GTK_STOCK_ADD with
13700                 GTK_STOCK_NEW button
13701
13702 2005-07-18 [colin]      1.9.12cvs79
13703
13704         * src/etpan/imap-thread.c
13705                 Fix return value (Thanks Hoa)
13706
13707 2005-07-18 [colin]      1.9.12cvs78
13708
13709         * src/imap.c
13710                 Allow empty passwords
13711                 Create drafts/queue/outbox if necessary
13712         * src/summaryview.c
13713                 Remove old code
13714         * src/etpan/imap-thread.c
13715                 Fix STARTTLS (Thanks to Hoa)
13716
13717 2005-07-18 [paul]       1.9.12cvs77
13718
13719         * ChangeLog-gtk2.jp
13720         * ChangeLog.jp
13721                 removed
13722         * Makefile.am
13723                 updated to reflect additions and removals
13724         * TODO
13725                 updated to be claws-specific
13726         * TODO-gtk2
13727         * TODO-gtk2.jp
13728         * TODO.jp
13729         * sylpheed-128x128.png
13730         * sylpheed-64x64.png
13731                 removed
13732         * sylpheed-claws-128x128.png
13733         * sylpheed-claws-64x64.png
13734         * sylpheed-claws.desktop
13735         * sylpheed-claws.png
13736                 added
13737         * sylpheed.desktop
13738         * sylpheed.png
13739                 removed
13740
13741 2005-07-17 [paul]       1.9.12cvs76
13742
13743         * src/account.c
13744         * src/addressbook.c
13745         * src/alertpanel.c
13746         * src/alertpanel.h
13747         * src/compose.c
13748         * src/exphtmldlg.c
13749         * src/expldifdlg.c
13750         * src/folderview.c
13751         * src/imap_gtk.c
13752         * src/inc.c
13753         * src/message_search.c
13754         * src/messageview.c
13755         * src/mh_gtk.c
13756         * src/news_gtk.c
13757         * src/prefs_actions.c
13758         * src/prefs_filtering.c
13759         * src/prefs_matcher.c
13760         * src/prefs_template.c
13761         * src/prefs_themes.c
13762         * src/ssl_manager.c
13763         * src/summary_search.c
13764         * src/textview.c
13765         * src/toolbar.c
13766         * src/gtk/sslcertwindow.c
13767         * src/plugins/pgpcore/sgpgme.c
13768                 rework alertpanels
13769
13770 2005-07-17 [colin]      1.9.12cvs75
13771
13772         * src/privacy.c
13773                 add a PrivacySystem accessor that checks that
13774                 the system cached in a MimeInfo's privacydata
13775                 is still registered. Use this accessor instead
13776                 of directly using data->system. Fixes crashes
13777                 after unloading pgp plugins.
13778
13779 2005-07-17 [colin]      1.9.12cvs74
13780
13781         * src/alertpanel.c
13782                 Change geometry hints to a simple default size.
13783                 Fixes the certs dialogs.
13784
13785 2005-07-17 [colin]      1.9.12cvs73
13786
13787         * src/gtk/sslcertwindow.c
13788                 Use a gtkExpander
13789
13790 2005-07-17 [colin]      1.9.12cvs72
13791
13792         * src/plugins/pgpcore/Makefile.am
13793         * src/plugins/pgpmime/Makefile.am
13794                 Add gpgme libs
13795
13796 2005-07-17 [paul]       1.9.12cvs71
13797
13798         * configure.ac
13799                 add --disable-gnomeprint option
13800                 modified version of patch by Marius Mauch
13801
13802 2005-07-17 [paul]       1.9.12cvs70
13803
13804         * src/common/defs.h
13805                 update urls
13806         * src/account.c
13807         * src/action.c
13808         * src/addressbook.c
13809         * src/compose.c
13810         * src/foldersel.c
13811         * src/folderview.c
13812         * src/html.c
13813         * src/imap_gtk.c
13814         * src/main.c
13815         * src/mainwindow.c
13816         * src/messageview.c
13817         * src/mh_gtk.c
13818         * src/mimeview.c
13819         * src/news_gtk.c
13820         * src/prefs_account.c
13821         * src/prefs_send.c
13822         * src/prefs_summaries.c
13823         * src/procmsg.c
13824         * src/summaryview.c
13825         * src/common/utils.c
13826         * src/common/xml.c
13827         * src/plugins/pgpcore/passphrase.c
13828         * src/plugins/pgpcore/select-keys.c
13829                 replace inappropriately used backticks
13830                 with single quotes
13831
13832 2005-07-16 [colin]      1.9.12cvs69
13833
13834         * src/image_viewer.c
13835                 Add extra paranoid checks
13836
13837 2005-07-16 [colin]      1.9.12cvs68
13838
13839         * src/plugins/pgpcore/prefs_gpg.c
13840                 Don't auto-check sigs by default, as it
13841                 can be really slow.
13842
13843 2005-07-16 [colin]      1.9.12cvs67
13844
13845         * src/plugins/pgpcore/sgpgme.c
13846                 Make messages a bit better.
13847
13848 2005-07-16 [colin]      1.9.12cvs66
13849
13850         * src/imap.c
13851                 Remove pseudo-log
13852         * src/etpan/imap-thread.c
13853                 Add real log
13854
13855 2005-07-16 [colin]      1.9.12cvs65
13856
13857         * src/main.c
13858         * src/prefs_other.c
13859                 And now, fix build with libetpan :-/
13860
13861 2005-07-15 [colin]      1.9.12cvs64
13862
13863         * src/prefs_other.c
13864                 Continue fixing build without libetpan.
13865
13866 2005-07-15 [colin]      1.9.12cvs63
13867
13868         * src/main.c
13869                 Fix build with --disable-libetpan
13870
13871 2005-07-15 [colin]      1.9.12cvs62
13872
13873         * configure.ac
13874                 Bump libetpan's version
13875
13876 2005-07-15 [colin]      1.9.12cvs61
13877
13878         * src/etpan/imap-thread.c
13879                 Actually stop logging :)
13880
13881 2005-07-15 [colin]      1.9.12cvs60
13882
13883         * src/addressbook.c
13884                 Fix dnd of multiple addresses.
13885
13886 2005-07-15 [hoa]        1.9.12cvs59
13887
13888         * src/etpan/imap-thread.c
13889             disable login of IMAP password in libetpan log file.
13890
13891 2005-07-15 [paul]       1.9.12cvs58
13892
13893         * src/account.c
13894                 don't automatically sort
13895                 do allow drag n drop
13896
13897 2005-07-15 [paul]       1.9.12cvs57
13898
13899         * src/account.c
13900         * src/ssl_manager.c
13901                 alphabetical listing
13902
13903 2005-07-15 [paul]       1.9.12cvs56
13904
13905         * src/gtk/pluginwindow.c
13906                 sort plugin list alphabetically
13907
13908 2005-07-15 [paul]       1.9.12cvs55
13909
13910         * src/prefs_spelling.c
13911         * src/prefs_wrapping.c
13912                 unify English usage
13913
13914 2005-07-15 [colin]      1.9.12cvs54
13915
13916         * src/wizard.c
13917                 Typo fix
13918
13919 2005-07-15 [paul]       1.9.12cvs53
13920
13921         * src/prefs_message.c
13922                 make 'show cursor' a hidden option
13923
13924 2005-07-14 [colin]      1.9.12cvs52
13925
13926         * src/plugins/spamassassin/Makefile.am
13927         * src/plugins/clamav/Makefile.am
13928                 Fix double EXTRA_DISTs
13929
13930 2005-07-14 [colin]      1.9.12cvs51
13931
13932         * src/plugins/clamav/Makefile.am
13933         * src/plugins/clamav/clamav_plugin_gtk.deps
13934         * src/plugins/spamassassin/Makefile.am
13935         * src/plugins/spamassassin/spamassassin_gtk.deps
13936                 Make $plugin_gtk depend on $plugin
13937
13938 2005-07-14 [hoa]        1.9.12cvs50
13939
13940         * src/etpan/imap-thread.c
13941                 enable debug log of libetpan when running with --debug
13942
13943 2005-07-14 [colin]      1.9.12cvs49
13944
13945         * configure.ac
13946         * src/common/Makefile.am
13947         * src/common/plugin.c
13948         * src/common/plugin.h
13949                 Add a little plugin dependancy system.
13950                 Plugins can ship a $plugin_name.deps file
13951                 (near them in PLUGINDIR) so that their
13952                 dependancies are loaded if possible.
13953         * src/plugins/Makefile.am
13954         * src/plugins/pgpcore/Makefile.am
13955         * src/plugins/pgpcore/passphrase.c
13956         * src/plugins/pgpcore/passphrase.h
13957         * src/plugins/pgpcore/plugin.c
13958         * src/plugins/pgpcore/prefs_gpg.c
13959         * src/plugins/pgpcore/prefs_gpg.h
13960         * src/plugins/pgpcore/select-keys.c
13961         * src/plugins/pgpcore/select-keys.h
13962         * src/plugins/pgpcore/sgpgme.c
13963         * src/plugins/pgpcore/sgpgme.h
13964                 Introduce pgpcore, used by pgpmime and
13965                 pgpinline
13966         * src/plugins/pgpmime/Makefile.am
13967         * src/plugins/pgpmime/passphrase.c
13968         * src/plugins/pgpmime/passphrase.h
13969         * src/plugins/pgpmime/pgpmime.c
13970         * src/plugins/pgpmime/pgpmime.deps
13971         * src/plugins/pgpmime/plugin.c
13972         * src/plugins/pgpmime/prefs_gpg.c
13973         * src/plugins/pgpmime/prefs_gpg.h
13974         * src/plugins/pgpmime/select-keys.c
13975         * src/plugins/pgpmime/select-keys.h
13976         * src/plugins/pgpmime/sgpgme.c
13977         * src/plugins/pgpmime/sgpgme.h
13978                 Remove the core from pgpmime and add the
13979                 dependancy to pgpcore.
13980
13981 2005-07-14 [paul]       1.9.12cvs48
13982
13983         * src/stock_pixmap.c
13984                 forgot this in last commit
13985
13986 2005-07-14 [paul]       1.9.12cvs47
13987
13988         * src/account.c
13989         * src/addressbook.c
13990                 add accelerators for the buttons (sync with main)
13991         * src/compose.c
13992         * src/compose.h
13993                 add accelerators for the buttons.
13994                 fix editing with external editor.
13995                 replace gdk_input_*() with GIOChannel;
13996                 (sync with main)
13997         * src/foldersel.c
13998                 display folder names with new/unread
13999                 representation (sync with main)
14000         * src/main.c
14001                 specify default window icon (sync with main)
14002         * src/prefs_common.c
14003                 use_addr_book default to FALSE
14004         * src/summaryview.c
14005         * src/textview.c
14006                 add accelerators for the buttons (sync with main)
14007         * src/gtk/menu.c
14008                 fix typos
14009         * src/pixmaps/sylpheed_icon.xpm
14010                 updated
14011
14012 2005-07-13 [paul]       1.9.12cvs46
14013
14014         * src/plugins/pgpmime/pgpmime.c
14015         * src/plugins/pgpmime/sgpgme.c
14016                 (temporarily) use deprecated gpgme_data_rewind()
14017                 while largefile support is not present
14018                 (as suggested by Colin)
14019
14020 2005-07-13 [paul]       1.9.12cvs45
14021
14022         * configure.ac
14023                 remove large file support (for now):
14024                 it breaks too many things
14025
14026 2005-07-13 [paul]       1.9.12cvs44
14027
14028         * configure.ac
14029                 add large file support
14030         * src/html.c
14031                 fix bug #763 where href attribute was not
14032                 the very first attribute of a link
14033                 patch by Thomas Gilgin
14034
14035 2005-07-13 [colin]      1.9.12cvs43
14036
14037         * src/gtk/pluginwindow.c
14038                 Little portability fix
14039
14040 2005-07-13 [colin]      1.9.12cvs42
14041
14042         * src/plugins/pgpmime/sgpgme.c
14043                 Fix crasher.
14044
14045 2005-07-13 [colin]      1.9.12cvs41
14046
14047         * src/plugins/pgpmime/pgpmime.c
14048         * src/plugins/pgpmime/sgpgme.c
14049                 Use gpgme_data_release_and_get_mem instead
14050                 of gpgme_data_read.
14051
14052 2005-07-13 [colin]      1.9.12cvs40
14053
14054         * configure.ac
14055         * src/plugins/pgpmime/passphrase.c
14056         * src/plugins/pgpmime/passphrase.h
14057         * src/plugins/pgpmime/pgpmime.c
14058         * src/plugins/pgpmime/plugin.c
14059         * src/plugins/pgpmime/select-keys.c
14060         * src/plugins/pgpmime/select-keys.h
14061         * src/plugins/pgpmime/sgpgme.c
14062         * src/plugins/pgpmime/sgpgme.h
14063                 Port pgpmime to gpgme-1.0.
14064
14065 2005-07-12 [paul]       1.9.12cvs39
14066
14067         * AUTHORS
14068         * src/toolbar.c
14069         * src/toolbar.h
14070                 add a 'Go to Prev' button to the toolbar.
14071                 correct tooltip text of go to buttons.
14072                 based on patch by Yang Guilong <bamanzi@gmail.com>
14073
14074 2005-07-12 [colin]      1.9.12cvs38
14075
14076         * src/statusbar.c
14077                 Fix progress bar showing stuff at startup.
14078
14079 2005-07-12 [paul]       1.9.12cvs37
14080
14081         * src/editjpilot.c
14082                 fix building with jpilot support
14083
14084 2005-07-11 [colin]      1.9.12cvs36
14085
14086         * src/inc.c
14087                 Add visual indication that filtering is running
14088         * src/textview.c
14089                 Make {}[] uri delimiters
14090         * src/summaryview.c
14091                 Remove useless (and slow) calls
14092
14093 2005-07-11 [paul]       1.9.12cvs35
14094
14095         * src/plugins/clamav/clamav_plugin_gtk.c
14096         * src/plugins/dillo_viewer/dillo_prefs.c
14097         * src/plugins/pgpmime/prefs_gpg.c
14098         * src/plugins/spamassassin/spamassassin_gtk.c
14099                 gather plugins prefs together under their
14100                 own 'Plugins' heading
14101
14102 2005-07-11 [paul]       1.9.12cvs34
14103
14104         sync with main
14105
14106         * src/account.c
14107                 account_delete(): modified alert dialog
14108         * src/editjpilot.c
14109         * src/editvcard.c
14110                 fixed a crash when cancelling file selection
14111                 dialog by Escape key. Made non-ascii filename
14112                 selectable.
14113         * src/prefs_template.c
14114                 prefs_template_window_create(): make scrolled
14115                 window policy AUTOMATIC
14116
14117 2005-07-10 [hoa]        1.9.12cvs33
14118
14119         * src/etpan/imap-thread.c
14120                 workaround for old Courier IMAP servers.
14121
14122 2005-07-10 [colin]      1.9.12cvs32
14123
14124         * src/folder.c
14125         * src/statusbar.c
14126         * src/statusbar.h
14127                 Add visual progress indicator on filtering/processing
14128                 Factorize the progress bar code
14129         * src/imap.c
14130         * src/imap.h
14131         * src/etpan/imap-thread.c
14132                 Add a reference counter to avoid destroying the Folder
14133                 while it's in use by another callback.
14134
14135 2005-07-09 [hoa]        1.9.12cvs31
14136
14137         * src/imap.c
14138         * src/etpan/imap-thread.c
14139                 fixed deadlock when removing IMAP account.
14140
14141 2005-07-08 [colin]      1.9.12cvs30
14142
14143         * src/textview.c
14144         * src/unmime.c
14145                 Fix again problems decoding broken headers
14146         * src/gtk/inputdialog.c
14147                 Fix local variable shadowing a global one
14148
14149 2005-07-08 [colin]      1.9.12cvs29
14150
14151         * src/msgcache.c
14152                 Make the cache/mark files platform-agnostic by writing
14153                 them in little-endian format. Reading them is also done
14154                 in little-endian format, of course; however, in order
14155                 to avoid trashing mark data on big-endian machines, the
14156                 files are, at first, read from the native format if the
14157                 little-endian one doesn't exist. This is easy to deter-
14158                 mine by trying to open a file with a swapped data_ver
14159                 and seeing if it's the wanted version.
14160                 Little-endian using users should see absolutely no
14161                 difference, Big-endian users may get a very little
14162                 performance drop due to byte-swapping.
14163                 Tested on i386 and ppc32. 
14164                 Fixes bug #159 (The index file, in the mailboxes, is 
14165                 hardware depending).
14166
14167                 To have the cache/mark files updated to the new little-
14168                 endian format, "Check for new messages" or even
14169                 "Rebuild folder tree" aren't enough. Files will be
14170                 updated as soon as a folder has been opened/closed.
14171                 To update everything, just select all folders by
14172                 selecting them one by one.
14173
14174 2005-07-07 [colin]      1.9.12cvs28
14175
14176         * src/imap.c
14177                 Remember the folder separator per IMAPFolder
14178                 instead of globally.
14179                 Revive the Session on noop; fixes bug #761
14180                 (mark a bunch of unread messages as read takes 
14181                 forever)
14182
14183 2005-07-07 [darko]      1.9.12cvs27
14184
14185         * src/common/template.c
14186                 Sort templates alphabetically
14187
14188 2005-07-06 [colin]      1.9.12cvs26
14189
14190         * src/imap.c
14191                 Try to use the correct separator in
14192                 most cases. Possibly fixes bug #759
14193                 (only creates the INBOX folder when 
14194                 setting up new IMAP account) and 
14195                 bug #760 (Can't retrieve messages)
14196
14197 2005-07-06 [colin]      1.9.12cvs25
14198
14199         * src/imap.c
14200                 Use real_path in status command. This will
14201                 help later, when namespaces will be used.
14202
14203 2005-07-06 [colin]      1.9.12cvs24
14204
14205         * configure.ac
14206         * src/account.c
14207         * src/folder.c
14208         * src/imap.c
14209         * src/etpan/etpan-log.c
14210         * src/etpan/etpan-thread-manager.c
14211         * src/etpan/imap-thread.c
14212                 Add a --disable-libetpan parameter. With this,
14213                 users that don't want IMAP4 support can avoid
14214                 the new dependancy (and have no IMAP support).
14215                 Users that have IMAP4 accounts and use this
14216                 parameter won't lose their configuration, their
14217                 IMAP accounts will just be invisible and not
14218                 used.
14219         * src/textview.c
14220                 Make the "Copy ..." contextual menu items 
14221                 copy to both the X clipboard and the gtk 
14222                 clipboard - as most other apps do.
14223         * src/gtk/about.c
14224                 Add a notice about OpenSSL usage, in order to
14225                 comply with OpenSSL's license (point 6):
14226                 http://www.openssl.org/source/license.html
14227
14228 2005-07-06 [colin]      1.9.12cvs23
14229
14230         * src/alertpanel.c
14231                 Fix a minimum size for alertpanels
14232         * src/compose.c
14233                 Show 'No space left on device' type errors
14234                 when queuing/sending
14235         * src/imap_gtk.c
14236         * src/mh_gtk.c
14237                 Rework folder's deletion message (remove 
14238                 extra \n)
14239
14240 2005-07-05 [colin]      1.9.12cvs22
14241
14242         * src/imap.c
14243                 Add an alertpanel on auth error
14244                 Add pseudo-log
14245                 Remove pthread-related stuff
14246
14247 2005-07-05 [colin]      1.9.12cvs21
14248
14249         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
14250                 Fix crash on plugin reloading (with a hack)
14251
14252 2005-07-05 [colin]      1.9.12cvs20
14253
14254         * src/prefs_account.c
14255         * src/prefs_account.h
14256                 Fix typo
14257         * src/gtk/filesel.c
14258         * src/gtk/filesel.h
14259                 Add a way to filter the view
14260         * src/gtk/pluginwindow.c
14261                 Filter loadable stuff
14262         * src/plugins/pgpmime/prefs_gpg.c
14263                 Fix missing unregistration
14264         * .cvsignore
14265         * src/etpan/.cvsignore
14266         * src/plugins/spamassassin/.cvsignore
14267                 Add more stuff to cvs ignored files
14268
14269 2005-07-04 [colin]      1.9.12cvs19
14270
14271         * src/imap.c
14272                 Fix scan_required returning FALSE when it
14273                 shouldn't. Maybe fix #760 (Can't retrieve
14274                 messages)
14275
14276 2005-07-04 [colin]      1.9.12cvs18
14277
14278         * src/summaryview.c
14279                 Fix always_show_msg pref
14280
14281 2005-07-04 [paul]       1.9.12cvs17
14282
14283         sync with main (forgotten in last commit)
14284         
14285         * src/common/utils.c
14286         * src/common/utils.h
14287                 check_line_length(): new.
14288                 is_dir_exist()
14289                 is_file_entry_exist()
14290                 dirent_is_regular_file()
14291                 dirent_is_directory(): use g_file_test() instead of stat().
14292
14293 2005-07-04 [paul]       1.9.12cvs16
14294
14295         sync with main:
14296
14297         * src/compose.c
14298                 compose_write_to_file(): check for line
14299                 length limit and display warning if exceeds
14300         * src/jpilot.c
14301                 use get_home_dir() instead of g_get_home_dir()
14302         * src/procheader.c
14303                 removed warning about invalid date
14304         * src/vcard.c
14305                 use get_home_dir() instead of g_get_home_dir()
14306
14307 2005-07-04 [paul]       1.9.12cvs15
14308
14309         * src/stock_pixmap.c
14310                 fix new pixmap naming errors
14311                 patch by Aleksandar Urosevic <urke.dd@urosevic.net>
14312
14313 2005-07-04 [colin]      1.9.12cvs14
14314
14315         * src/imap.c
14316                 Fix debugging string with a warning
14317
14318 2005-07-04 [colin]      1.9.12cvs13
14319
14320         * configure.ac
14321                 Add a check for libetpan's version (>= 0.37)
14322
14323 2005-07-04 [hoa]        1.9.12cvs12
14324
14325         * commitHelper
14326         * src/imap.c
14327         * src/etpan/imap-thread.c
14328         * src/etpan/imap-thread.h
14329                 fixed IMAP implementation of check of mails.
14330
14331 2005-07-03 [hoa]        1.9.12cvs11
14332
14333         * src/etpan/Makefile.am
14334         * src/etpan/etpan-errors.h
14335         * src/etpan/etpan-log.[ch]
14336         * src/etpan/etpan-thread-manager-types.h
14337         * src/etpan/etpan-thread-manager.[ch]
14338         * src/etpan/imap-thread.[ch]
14339         * src/Makefile.am
14340         * src/imap.c
14341         * src/main.c
14342         * src/prefs_other.c
14343         * configure.ac
14344             merged imap branch.
14345             dependency on libetpan 0.37 is now added.
14346
14347 2005-07-01 [colin]      1.9.12cvs10
14348
14349         * src/Makefile.am
14350         * src/folder.c
14351         * src/folder.h
14352         * src/folderview.c
14353         * src/stock_pixmap.c
14354         * src/stock_pixmap.h
14355         * src/plugins/trayicon/trayicon.c
14356                 Add marked symbol on folders containing
14357                 marked messages
14358         * src/procmsg.c
14359         * src/procmsg.h
14360         * src/toolbar.c
14361         * src/prefs_common.c
14362         * src/prefs_common.h
14363         * src/prefs_send.c
14364                 Add an optional confirmation dialog on queue
14365                 sending. Patch by wwp.
14366         * src/pixmaps/dir_close_mark.xpm        ** ADDED **
14367         * src/pixmaps/dir_open_hrm_mark.xpm     ** ADDED **
14368         * src/pixmaps/dir_open_mark.xpm         ** ADDED **
14369         * src/pixmaps/drafts_close_mark.xpm     ** ADDED **
14370         * src/pixmaps/drafts_open_mark.xpm      ** ADDED **
14371         * src/pixmaps/inbox_hrm_mark.xpm        ** ADDED **
14372         * src/pixmaps/inbox_mark.xpm            ** ADDED **
14373         * src/pixmaps/outbox_hrm_mark.xpm       ** ADDED **
14374         * src/pixmaps/outbox_mark.xpm           ** ADDED **
14375         * src/pixmaps/trash_hrm_mark.xpm        ** ADDED **
14376         * src/pixmaps/trash_mark.xpm            ** ADDED **
14377                 New pixmaps
14378
14379 2005-07-01 [colin]      1.9.12cvs9
14380
14381         * src/summaryview.c
14382                 Fix a little threading bug
14383         * src/addrgather.c
14384         * src/mainwindow.c
14385                 A little bit of HIG normality never hurts
14386
14387 2005-07-01 [colin]      1.9.12cvs8
14388
14389         * src/compose.c
14390         * src/msgcache.c
14391         * src/pop.c
14392         * src/procmime.c
14393         * src/recv.c
14394         * src/common/log.c
14395         * src/common/template.c
14396         * src/common/utils.c
14397         * src/common/utils.h
14398                 Reverted the fwrite_atomic stuff. In fact
14399                 it is already atomic.
14400
14401 2005-06-30 [colin]      1.9.12cvs7
14402
14403         * src/common/utils.c
14404         * src/common/utils.h
14405                 Add an fwrite_atomic() function to make
14406                 sure we write everything: fwrite can make
14407                 short writes.
14408         * src/compose.c
14409         * src/msgcache.c
14410         * src/pop.c
14411         * src/procmime.c
14412         * src/recv.c
14413         * src/common/log.c
14414         * src/common/template.c
14415                 Use that (and fix swapping of size and nmemb).
14416                 Thanks to Rich Coe for the heads up.
14417
14418 2005-06-30 [colin]      1.9.12cvs6
14419
14420         * src/addressbook.c
14421                 Optimize addressbook opening 
14422
14423 2005-06-30 [colin]      1.9.12cvs5
14424
14425         * src/summaryview.c
14426                 Remove calls to summary_step after move/copy
14427
14428 2005-06-28 [paul]       1.9.12cvs4
14429
14430         * src/alertpanel.c
14431                 wrap and make the error msg selectable
14432
14433 2005-06-28 [paul]       1.9.12cvs3
14434
14435         * src/ssl_manager.c
14436                 replace the OK button with a Close button
14437         * src/gtk/foldersort.c
14438                 use GTK_STOCK_ icons/buttons
14439
14440 2005-06-28 [colin]      1.9.12cvs2
14441
14442         * src/gedit-print.c             ** ADDED **
14443         * src/gedit-print.h             ** ADDED **
14444         * src/gtk/gtksourceprintjob.c   ** ADDED **
14445         * src/gtk/gtksourceprintjob.h   ** ADDED **
14446                 I can't believe no one had enough time to tell
14447                 me I forgot the `cvs add`
14448
14449 2005-06-27 [colin]      1.9.12cvs1
14450
14451         * src/Makefile.am
14452         * src/gtk/Makefile.am
14453         * src/messageview.c
14454         * src/procmsg.c
14455         * src/summaryview.c
14456         * configure.ac
14457                 Add optional libgnomeprint-based printing
14458         * src/mainwindow.c
14459         * src/gtk/quicksearch.c
14460                 Add an Edit/Quick search menu item to show
14461                 and focus the quicksearch
14462
14463 2005-06-27 [paul]       1.9.12
14464
14465         1.9.12 release
14466
14467         * po/ca.po
14468         * po/de.po
14469         * po/es.po
14470         * po/fr.po
14471         * po/it.po
14472         * po/ko.po
14473         * po/pt_BR.po
14474         * po/sk.po
14475         * po/zh_CN.po
14476                 updated by Miquel Oliete, Thomas Gilgin, Ricardo
14477                 Mones Lastra, Fabien Vantard, Andrea Spadaccini,
14478                 SungHyun Nam, Frederico Goncalves Guimaraes,
14479                 Andrej Kacian, and Yang Guilong
14480 2005-06-26 [colin]      1.9.11cvs106
14481
14482         * src/imap_gtk.c
14483                 Forgot one file for previous fix
14484
14485 2005-06-26 [colin]      1.9.11cvs105
14486
14487         * src/folder.c
14488         * src/imap.c
14489                 Fix problems with folder operations in no_select
14490                 imap folders. it applies only to mails, and 
14491                 creation/deletion/move/renaming of folders 
14492                 should be possible
14493
14494 2005-06-26 [paul]       1.9.11cvs104
14495
14496         * src/prefs_filtering.c
14497                 replace one more GTK_STOCK_REMOVE
14498                 with GTK_STOCK_DELETE
14499
14500 2005-06-25 [colin]      1.9.11cvs103
14501
14502         * src/imap.c
14503                 Optimize get_seq_set_from_seq_list
14504                 (Patch by Ricardo) 
14505
14506 2005-06-25 [colin]      1.9.11cvs102
14507
14508         * src/mh.c
14509                 If the directory exists, but not in the
14510                 correct encoding, rename it. This should
14511                 handle old-versions-induced bugs.
14512
14513 2005-06-25 [colin]      1.9.11cvs101
14514
14515         * src/mh.c
14516                 Fix path access with extended dir names
14517                 Fixes bug #589 (SC segfaults with wrong locale
14518                 settings)
14519
14520 2005-06-25 [colin]      1.9.11cvs100
14521
14522         * src/prefs_account.c
14523         * src/prefs_account.h
14524         * src/compose.c
14525                 Add an option to encrypt replies to
14526                 encrypted messages
14527
14528 2005-06-25 [colin]      1.9.11cvs99
14529
14530         * src/compose.c
14531         * src/quote_fmt_parse.y
14532                 ... And make it work with pgpinline.
14533
14534 2005-06-25 [colin]      1.9.11cvs98
14535
14536         * src/compose.c
14537         * src/procmime.c
14538         * src/procmime.h
14539         * src/quote_fmt_parse.y
14540                 o Make reedition of encrypted messages possible
14541                   (as long as it is encrypted to self too, no
14542                    magic there)
14543                 o Make replying with quote (and without selecting
14544                   text) possible for encrypted messages.
14545                 Closes bug #550 (Not possible to "reply with quote"
14546                 to gnupg encrypted messages)
14547
14548 2005-06-24 [paul]       1.9.11cvs97
14549
14550         * src/imap.c
14551                 add missing include
14552
14553 2005-06-24 [paul]       1.9.11cvs96
14554
14555         * src/editldap.c
14556                 made bind password entry invisible
14557                 (sync with main)
14558         * src/send_message.c
14559                 send_message_local(): check exit status
14560                 to detect errors (sync with main)
14561         * src/textview.c
14562                 use main's less ambiguous popup menu
14563                 wording
14564
14565 2005-06-24 [paul]       1.9.11cvs95
14566
14567         * src/prefs_actions.c
14568         * src/prefs_customheader.c
14569         * src/prefs_display_header.c
14570         * src/prefs_filtering_action.c
14571         * src/prefs_matcher.c
14572         * src/prefs_template.c
14573         * src/prefs_toolbar.c
14574                 replace GTK_STOCK_REMOVE with GTK_STOCK_DELETE
14575         * src/gtk/description_window.c
14576                 replace GTK_STOCK_OK with GTK_STOCK_CLOSE
14577
14578 2005-06-23 [colin]      1.9.11cvs94
14579
14580         * src/summaryview.c
14581                 Fix rough edges (be sure to call status_show whenever
14582                 necessary).
14583
14584 2005-06-23 [colin]      1.9.11cvs93
14585
14586         * src/summaryview.c
14587                 Optimize Select All
14588                 Before, in a 5K mails folder: 11s
14589                 After, in the same folder: 58000µs
14590                 The joys of locking... gtk_clist_select_all() fires a 
14591                 tree-select-row event for each selected row, which in 
14592                 summaryview, callbacks summary_selected which in turn,
14593                 calls summary_status_show, which walks the selected
14594                 rows. Hence, calling gtk_clist_select_all was 
14595                 exponential. Locking the summaryview makes 
14596                 summary_selected return early.
14597
14598 2005-06-23 [colin]      1.9.11cvs92
14599
14600         * src/imap.c
14601                 Move mutex at the important place to avoid
14602                 deadlocks
14603         * src/summaryview.c
14604                 Fix Del key deleting directly instead of
14605                 moving to trash
14606
14607 2005-06-22 [colin]      1.9.11cvs91
14608
14609         * src/plugins/spamassassin/libspamc.c
14610                 As we do spagetti code with assignations in multiple
14611                 places (see _message_read_raw where out = msg = raw),
14612                 let's be sure we don't free the same pointer twice.
14613                 Should fix bug #683 (Crash in libpam at 
14614                 message_cleanup).
14615
14616 2005-06-22 [colin]      1.9.11cvs90
14617
14618         * src/compose.c
14619         * src/messageview.c
14620         * src/toolbar.c
14621                 Make toolbar's delete use the move to trash stuff;
14622                 Add gtk_widget_realize to be sure pixmaps can get
14623                 created (that may fix an old worksforme bug which
14624                 I can't find back...)
14625
14626 2005-06-22 [colin]      1.9.11cvs89
14627
14628         * src/summaryview.c
14629         * src/summaryview.h
14630         * src/mainwindow.c
14631                 Rename "Message/Delete" to "Message/Move to trash"
14632                 Add "Message/Delete..." that directly destroys the
14633                 selected messages after asking for a confirmation.
14634
14635 2005-06-22 [colin]      1.9.11cvs88
14636
14637         * src/imap.c
14638                 o Fix compilation with non-gnu compiler (thanks Alex S Moore)
14639                 o Fix a deadlock (thanks Darko)
14640
14641 2005-06-22 [colin]      1.9.11cvs87
14642
14643         * src/gtk/foldersort.c
14644                 Add missing include for the i18n;
14645                 patch by Fabien Vantard
14646
14647 2005-06-21 [colin]      1.9.11cvs86
14648
14649         * src/folder.c
14650         * src/folderview.c
14651                 Respect the no_select flag
14652         * src/imap.c
14653                 Fix recursive deletion
14654         * src/imap_gtk.c
14655         * src/mh_gtk.c
14656                 Make the folder deletion's warning
14657                 more explicit
14658
14659 2005-06-21 [colin]      1.9.11cvs85
14660
14661         * src/textview.c
14662                 Prevent email addresses from spanning accross
14663                 lines - fixes bug # 646 (newline-chars in 
14664                 email addresses)
14665
14666 2005-06-20 [colin]      1.9.11cvs84
14667
14668         * src/folder.c
14669                 Be sure not to remove source if copy failed
14670
14671 2005-06-20 [colin]      1.9.11cvs83
14672
14673         * src/folderview.c
14674         * src/imap_gtk.c
14675                 remove summaryview's lock
14676         * src/imap.c
14677                 introduce threads to avoid problems when foreground tasks
14678                 interfere with background tasks
14679         * src/mh.c
14680                 prevent moving to drafts/queue
14681         * src/mimeview.c
14682                 fix leak
14683
14684 2005-06-19 [colin]      1.9.11cvs82
14685
14686         * src/imap_gtk.c
14687                 Remember that the user doesn't want to override
14688                 offline mode, for 3 seconds. It avoid presenting
14689                 him with N popups in a really short time.
14690
14691 2005-06-17 [colin]      1.9.11cvs81
14692
14693         * src/imap.c
14694                 Fix IMAP breaking on folders containing '('
14695                 (Probably won't be enough)
14696
14697 2005-06-17 [colin]      1.9.11cvs80
14698
14699         Forgotten files on 1.9.11cvs79
14700         * src/summaryview.c
14701                 Fix stepping when not immediately executing
14702         * src/imap.c
14703                 Really prevent UID FETCH 0
14704         * src/codeconv.c
14705                 Fix outgoing charset never set to utf-8
14706         * src/mh.c
14707                 Fix leak
14708
14709 2005-06-16 [colin]      1.9.11cvs79
14710
14711         * src/compose.c
14712                 Fix bug #707 (Dash splits rows)
14713                 Only wrap if we're on a line break position and
14714                 the previous one was a "white" (space) char.
14715                 Pango stuff is weird.
14716
14717 2005-06-16 [colin]      1.9.11cvs78
14718
14719         * src/imap_gtk.c
14720                 Lock summaryview while downloading messages
14721                 on user demand
14722         * src/procheader.c
14723         * src/unmime.c
14724         * src/common/utils.c
14725         * src/common/utils.h
14726                 Replace \r and \n with spaces in From and
14727                 Subject headers
14728
14729 2005-06-16 [paul]       1.9.11cvs77
14730
14731         * src/procmime.c
14732                 liberalise the mime parser
14733         * src/gtk/about.c
14734                 add text wrapping
14735
14736 2005-06-16 [paul]       1.9.11cvs76
14737
14738         * src/gtk/about.c
14739                 reworked
14740
14741 2005-06-15 [colin]      1.9.11cvs75
14742
14743         * src/compose.c
14744                 Finish header encoding fix
14745         * src/summaryview.c
14746                 Fix segfault
14747         * src/headerview.c
14748                 Fix compilation (Thanks Stephan
14749                 Sachse)
14750
14751 2005-06-15 [colin]      1.9.11cvs74
14752
14753         * Makefile.am
14754                 Install gnome2 stuff rather than gnome1, 
14755                 if both are present
14756         * src/codeconv.c
14757         * src/codeconv.h
14758         * src/compose.c
14759                 Fix headers encoding
14760         * src/folder.c
14761                 Visual progress when fetching all messages
14762         * src/folderview.c
14763         * src/summaryview.c
14764         * src/summaryview.h
14765                 Prevent changing current message while
14766                 incorporating
14767
14768 2005-06-15 [paul]       1.9.11cvs73
14769
14770         * src/gtk/gtkaspell.c
14771         * src/gtk/gtkaspell.h
14772                 fix build warnings
14773
14774 2005-06-15 [paul]       1.9.11cvs72
14775
14776         * src/prefs_filtering.c
14777                 allow reordering of filter rules by
14778                 drag n drop
14779
14780 2005-06-15 [paul]       1.9.11cvs71
14781
14782         * COPYING
14783                 updated
14784         * src/codeconv.c
14785                 replace deprecated function
14786         * src/inc.c
14787         * src/send_message.c
14788         * src/gtk/progressdialog.c
14789         * src/gtk/progressdialog.h
14790                 salvage and reuse parts of reverted sync
14791
14792 2005-06-15 [paul]       1.9.11cvs70
14793
14794         * src/inc.c
14795         * src/send_message.c
14796         * src/gtk/progressdialog.c
14797         * src/gtk/progressdialog.h
14798                 revert yesterday's sync with main
14799                 it contains deprecated functions
14800
14801 2005-06-15 [colin]      1.9.11cvs69
14802
14803         * src/headerview.c
14804                 Fix bug #670 (multi user to: will corrupt message 
14805                 headers display)
14806
14807 2005-06-15 [colin]      1.9.11cvs68
14808
14809         * src/compose.c
14810                 Fix bug #421 (Fix undo on wrapping)
14811
14812 2005-06-15 [colin]      1.9.11cvs67
14813
14814         * src/folder.c
14815                 Provide visual feedback while processing
14816                 folder's rules.
14817         * src/imap.c
14818                 Provide visual feedback while getting
14819                 short headers (for uncached messages)
14820
14821
14822 2005-06-14 [paul]       1.9.11cvs66
14823
14824         * src/account.c
14825                 change a couple stock icons
14826         * src/inc.c
14827         * src/send_message.c
14828         * src/gtk/progressdialog.c
14829         * src/gtk/progressdialog.h
14830                 sync main's GtkTreeView implementation
14831
14832 2005-06-14 [colin]      1.9.11cvs65
14833
14834         * src/imap.c
14835                 Various little fixes, mainly on error paths
14836
14837 2005-06-13 [colin]      1.9.11cvs64
14838
14839         * matcher.c
14840         * procmsg.c
14841         * procmsg.h
14842                 Add a way to fetch only headers. This speeds
14843                 up filtering on headers for IMAP. Fixes:
14844                 bug #481 extraneous imap commands slow down 
14845                         imap filtering
14846                 bug #522 Sylpheed downloads all messages 
14847                         when opening mailbox (IMAP)
14848                 bug #677 IMAP fetch is soooooooooooooo slow
14849         * src/folder.c
14850         * src/folder.h
14851                 Add a folder set_batch method so that
14852                 implementations can speed up flags changes
14853         * src/folderutils.c
14854         * src/summaryview.c
14855                 Use that in mark as (un)read and mark all read
14856                 Refix bug #679
14857         * src/imap.c
14858                 Implement set_batch - brings back deferred
14859                 flags in a less buggy manner. Fixes:
14860                 bug #729 IMAP immediate expunge of deleted messages
14861                 bug #191 remove list of messages with one command
14862                 Fix login with strange chars
14863                 Implement fetch_msg_full
14864                 Fix copy (wrong counts)
14865
14866 2005-06-12 [colin]      1.9.11cvs63
14867
14868         * src/folder.c
14869                 lock incorporation during long operations.
14870                 Avoids fucking up the IMAP socket.
14871
14872 2005-06-12 [colin]      1.9.11cvs62
14873
14874         * src/imap.c
14875                 Fix harmful typo
14876                 Factorize remove_all_msg
14877                 Thread-ize expunge
14878         * src/summaryview.c
14879                 Don't update partial-download status if unnecessary
14880         * src/folder.c
14881                 Use remove_msgs everywhere possible
14882
14883 2005-06-12 [colin]      1.9.11cvs61
14884
14885         * src/folder.c
14886         * src/folder.h
14887                 Add a remove_msgs function to remove a 
14888                 list of messages
14889         * src/imap.c
14890                 Implement that.
14891
14892 2005-06-12 [colin]      1.9.11cvs60
14893
14894         * src/imap.c
14895                 Remove flags-processing deferring... Too hard
14896                 to get it to work in all cases.
14897
14898 2005-06-11 [colin]      1.9.11cvs59
14899
14900         * src/imap.c
14901                 printf -> debug_print
14902
14903 2005-06-11 [colin]      1.9.11cvs58
14904
14905         * src/imap.c
14906                 o Fix build without USE_PTHREAD
14907                 o Factorize imap_open
14908                 o Alertpanel in case of impossible connection
14909                 o Alertpanel in case of impossible login
14910                 o Fix deferred flags processing to force a 
14911                   flush before adding some more flags to process,
14912                   but in another folder.
14913
14914 2005-06-10 [colin]      1.9.11cvs57
14915
14916         * src/imap.c
14917                 o Fix a format string error
14918                 o init ssl socket outside of the thread 
14919                   (it possibly invokes gtk calls)
14920         * src/procmime.c
14921                 o Put back the buffer to its necessary size
14922                 o Fix changing a file pointer without keeping
14923                   track of it (thanks Valgrind)
14924         * src/common/smtp.c
14925                 o Fix automatic STARTTLS if login should be done
14926                   and the server only allows it after starting TLS
14927         * src/gtk/gtkinputdialog.c
14928                 o Eat GDK_Return so that the combo popup doesn't 
14929                   appear when we press Enter to validate the combo
14930                   input dialog (as seen in the Open with... dialog)
14931
14932 2005-06-10 [colin]      1.9.11cvs56
14933
14934         * src/imap.c
14935                 o A bit less debug
14936                 o Fix a crash on deletion
14937                 o Threadize imap_select (it's called outside of 
14938                   threads)
14939                 o Defer treatment of DELETED flags
14940
14941
14942 2005-06-09 [colin]      1.9.11cvs55
14943
14944         * src/imap.c
14945                 Make sure we check imap_gtk_should_override(), which
14946                 potentially calls gtk stuff, before creating thread.
14947                 That way it should't be called via imap_get_session()
14948                 inside a thread.
14949
14950 2005-06-09 [colin]      1.9.11cvs54
14951
14952         * src/imap.c
14953                 o add a bit of status output
14954                 o remove some dead code
14955                 o threadize get_list_of_uids
14956                 o threadize imap_get_flags
14957                 o defer flag changing by 500ms so that they
14958                   can be batched
14959
14960
14961 2005-06-08 [colin]      1.9.11cvs53
14962
14963         * src/imap.c
14964                 Thread-ize imap_cmd_fetch
14965
14966 2005-06-08 [colin]      1.9.11cvs52
14967
14968         * src/main.c
14969                 Mmh, that broke POP3...
14970
14971 2005-06-08 [colin]      1.9.11cvs51
14972
14973         * src/main.c
14974                 Stabilize IMAP patch (thanks to Hoa)
14975
14976 2005-06-08 [colin]      1.9.11cvs50
14977
14978         * src/imap.c
14979                 Test patch to speed up imap. 
14980
14981 2005-06-08 [colin]      1.9.11cvs49
14982
14983         * src/imap_gtk.c
14984                 Warning fix
14985         * src/procmime.c
14986                 Apply patch from gentoo to use /usr/share/mime/globs if 
14987                 available, after un-breaking it
14988         * src/common/log.c
14989         * src/common/log.h
14990                 Use g_timeout for invoking hooks that possibly use gtk
14991                 calls. This should leave gtk calls in the main thread.
14992
14993 2005-06-08 [paul]       1.9.11cvs48
14994
14995         * src/codeconv.c
14996                 conv_get_outgoing_charset_str(): don't
14997                 use prefs_common setting
14998         * src/compose.c
14999         * src/compose.h
15000                 add /Options/Character encoding/... to
15001                 temporarily change the outgoing encoding
15002
15003         (belated sync with main)
15004
15005 2005-06-08 [paul]       1.9.11cvs47
15006
15007         * src/compose.c
15008                 correction to/completion of last
15009                 sync with main
15010
15011 2005-06-08 [paul]       1.9.11cvs46
15012
15013         sync with main:
15014         
15015         * src/codeconv.c
15016         * src/codeconv.h
15017                 always enabled Japanese auto-detection
15018                 if the first letters of locale string
15019                 is "ja"
15020         * src/compose.c
15021                 don't use "destroy" signal to destroy
15022                 Compose object (fix rare crashes on discard?)
15023         * src/mainwindow.c
15024         * src/messageview.c
15025         * src/prefs_send.c
15026                 added Hebrew encodings
15027         * src/sourcewindow.c
15028                 don't use "destroy" signal to destroy
15029                 objects
15030
15031 2005-06-07 [colin]      1.9.11cvs45
15032
15033         * src/summaryview.c
15034                 Add missing unlocks/locks
15035
15036 2005-06-07 [paul]       1.9.11cvs44
15037
15038         * src/summaryview.c
15039                 restore bug #749 fix
15040
15041 2005-06-06 [colin]      1.9.11cvs43
15042
15043         * src/summaryview.c
15044                 Fix selection bug when prefs_common.open_unread 
15045                 is FALSE
15046
15047 2005-06-06 [colin]      1.9.11cvs42
15048
15049         * src/common/md5.c
15050                 Fix a warning
15051         * src/summaryview.c
15052         * src/folderview.c
15053                 Factorize long operations beginning and end
15054                 (locking, freezing/thawing, cursor, ...)
15055                 Check selection->data member in selection-
15056                 related loops; this avoids dying an awful
15057                 death if the selection changes on us while
15058                 we're marking a whole IMAP folder unread, 
15059                 for example.
15060
15061 2005-06-06 [paul]       1.9.11cvs41
15062
15063         * src/textview.c
15064                 don't g_free() a static gchar buffer
15065
15066 2005-06-05 [colin]      1.9.11cvs40
15067
15068         * src/mainwindow.c
15069         * src/messageview.c
15070         * src/summaryview.c
15071                 Fix bug #749 (Show all headers should be
15072                 sticky as the GUI suggests)
15073
15074 2005-06-03 [paul]       1.9.11cvs39
15075
15076         * src/compose.c
15077                 don't allow editing of mail while sending.
15078                 patch by Colin
15079
15080 2005-06-03 [paul]       1.9.11cvs38
15081
15082         * src/folderview.c
15083                 add a freeze/thaw to speed up 'mark all read'
15084
15085 2005-06-03 [paul]       1.9.11cvs37
15086
15087         * src/prefs_message.c
15088                 reflect changes immediately
15089
15090 2005-06-02 [colin]      1.9.11cvs36
15091
15092         * po/POTFILES.in
15093                 Patch by Fabien Vantard.
15094
15095 2005-06-02 [colin]      1.9.11cvs35
15096
15097         * src/imap.c
15098                 Use a non-blocking imap_getline() if possible.
15099                 This should completely prevent the interface
15100                 from freezin on imap operations, although it
15101                 may do strange stuff in case of folder switching
15102                 while a big imap operation is taking place...
15103
15104                 In addition, fix a leak in the case thread
15105                 creation fails on connection.
15106
15107 2005-06-02 [colin]      1.9.11cvs34
15108
15109         * src/crash.c
15110         * src/prefs_common.h
15111                 Fix build (prefs_common_init() doesn't exist
15112                 anymore)
15113
15114 2005-06-02 [colin]      1.9.11cvs33
15115
15116         * src/prefs_account.c
15117                 Fix bug #245 (filtering rules broken when
15118                 renaming a remote account (imap4 or nntp)
15119
15120 2005-06-02 [colin]      1.9.11cvs32
15121
15122         * src/imap.c
15123                 Try to fix IMAP shortcomings: 
15124                 o Multithread imap_open()
15125                 o allow offline-mode overriding instead of
15126                   just returning NULL
15127         * src/imap_gtk.c
15128         * src/imap_gtk.h
15129                 Add a function to ask whether we want to
15130                 override offline-mode for 10 minutes (one-shot
15131                 asking was painful)
15132         * src/procheader.c
15133                 Fix segfault when imap parser isn't happy about
15134                 a missing {
15135
15136 2005-06-01 [colin]      1.9.11cvs31
15137
15138         * src/addrharvest.c
15139         * src/compose.c
15140         * src/mbox.c
15141         * src/mbox.h
15142         * src/mh.c
15143         * src/msgcache.c
15144         * src/send_message.c
15145         * src/setup.c
15146         * src/undo.c
15147         * src/common/hooks.c
15148         * src/common/prefs.c
15149         * src/common/template.c
15150         * src/common/utils.c
15151         * src/gtk/gtkutils.c
15152         * src/gtk/inputdialog.c
15153         * src/gtk/menu.c
15154         * src/gtk/pluginwindow.c
15155         * src/gtk/prefswindow.c
15156         * src/plugins/pgpmime/passphrase.c
15157         * src/plugins/pgpmime/prefs_gpg.c
15158                 More -Wall fixes
15159
15160         * src/common/Makefile.am
15161         * src/common/timing.h
15162                 Add basic timing code
15163
15164         * src/summaryview.c
15165                 Fix a bug with unread messages when 
15166                 re-sorting folders, and by the way
15167                 fix a big performance hit when 
15168                 re-sorting (10k mails: before 5s,
15169                 after .5s)
15170
15171         * src/prefs_compose_writing.c
15172         * src/prefs_compose_writing.h
15173         * src/prefs_message.c
15174         * src/prefs_message.h
15175         * src/prefs_other.c
15176         * src/prefs_other.h
15177         * src/prefs_quote.c
15178         * src/prefs_quote.h
15179         * src/prefs_receive.c
15180         * src/prefs_receive.h
15181         * src/prefs_send.c
15182         * src/prefs_send.h
15183         * src/prefs_summaries.c
15184         * src/prefs_summaries.h
15185                 Fix copyright banner
15186
15187 2005-06-01 [paul]       1.9.11cvs30
15188
15189         * po/fi.po
15190                 updated by Flammie Pirinen
15191         * src/procmime.c
15192                 fix 'Bad BASE64 content' output
15193
15194 2005-05-31 [colin]      1.9.11cvs29
15195
15196         * src/procmime.c
15197                 Oops, where did my hunk go.
15198
15199 2005-05-31 [colin]      1.9.11cvs28
15200
15201         * src/Makefile.am
15202         * src/account.c
15203         * src/action.c
15204         * src/addr_compl.c
15205         * src/addressbook.c
15206         * src/codeconv.c
15207         * src/compose.c
15208         * src/export.c
15209         * src/folder.c
15210         * src/folderview.c
15211         * src/image_viewer.c
15212         * src/main.c
15213         * src/mainwindow.c
15214         * src/messageview.c
15215         * src/mimeview.c
15216         * src/msgcache.c
15217         * src/prefs_account.c
15218         * src/prefs_actions.c
15219         * src/prefs_common.c
15220         * src/prefs_compose_writing.c
15221         * src/prefs_customheader.c
15222         * src/prefs_ext_prog.c
15223         * src/prefs_filtering.c
15224         * src/prefs_filtering_action.c
15225         * src/prefs_fonts.c
15226         * src/prefs_image_viewer.c
15227         * src/prefs_message.c
15228         * src/prefs_message.h
15229         * src/prefs_msg_colors.c
15230         * src/prefs_other.c
15231         * src/prefs_other.h
15232         * src/prefs_quote.c
15233         * src/prefs_receive.c
15234         * src/prefs_receive.h
15235         * src/prefs_send.c
15236         * src/prefs_send.h
15237         * src/prefs_spelling.c
15238         * src/prefs_summaries.c
15239         * src/prefs_summary_column.c
15240         * src/prefs_template.c
15241         * src/prefs_themes.c
15242         * src/prefs_toolbar.c
15243         * src/prefs_wrapping.c
15244         * src/procmime.c
15245         * src/procmsg.c
15246         * src/send_message.h
15247         * src/ssl_manager.c
15248         * src/summary_search.c
15249         * src/summaryview.c
15250         * src/textview.c
15251         * src/wizard.c
15252         * src/common/smtp.c
15253         * src/common/smtp.h
15254         * src/gtk/gtkutils.h
15255                 o Move the rest of Common prefs to new style
15256                 o Lots of -Wall warning fixes
15257                 o fix FIXME in cache memusage calculation
15258                 o Let return receipts be sent from any account
15259                 o Little cache optimisation (read)
15260                 o Fix bug #746 (don't treat commas as separators
15261                   when inside a quoted string)
15262
15263 2005-05-31 [paul]       1.9.11cvs27
15264
15265         * src/prefs_common.c
15266                 fix 'off-by-one' typo
15267
15268 2005-05-31 [paul]       1.9.11cvs26
15269
15270         * src/account.c
15271         * src/addr_compl.c
15272         * src/compose.c
15273         * src/foldersel.c
15274         * src/prefs_actions.c
15275         * src/prefs_common.c
15276         * src/prefs_common.h
15277         * src/prefs_customheader.c
15278         * src/prefs_display_header.c
15279         * src/prefs_filtering.c
15280         * src/prefs_filtering_action.c
15281         * src/prefs_matcher.c
15282         * src/prefs_summaries.c
15283         * src/prefs_summary_column.c
15284         * src/prefs_template.c
15285         * src/prefs_toolbar.c
15286         * src/ssl_manager.c
15287         * src/gtk/pluginwindow.c
15288         * src/gtk/prefswindow.c
15289         * src/gtk/progressdialog.c
15290                 add hidden prefs 'enable_rules_hint'
15291                 for gtk_tree_view_set_rules_hint()
15292                 (sync with main)
15293                 
15294
15295 2005-05-31 [colin]      1.9.11cvs25
15296
15297         * src/Makefile.am
15298         * src/main.c
15299         * src/prefs_common.c
15300         * src/prefs_summaries.c ** ADDED **
15301         * src/prefs_summaries.h ** ADDED **
15302                 Common/Display -> Display/Summaries
15303
15304 2005-05-31 [colin]      1.9.11cvs24
15305
15306         * src/Makefile.am
15307         * src/main.c
15308         * src/prefs_quote.c ** ADDED **
15309         * src/prefs_quote.h ** ADDED **
15310                 Move Common/Quote to Compose/Quoting
15311         * src/prefs_common.c
15312         * src/prefs_common.h
15313                 Remove old quote stuff, add
15314                 convenience functions for GtkTextView prefs
15315         * src/gtk/prefswindow.c
15316                 Set default height higher
15317
15318 2005-05-30 [colin]      1.9.11cvs23
15319
15320         * src/Makefile.am
15321         * src/main.c
15322         * src/prefs_common.c
15323         * src/prefs_compose_writing.c ** ADDED **
15324         * src/prefs_compose_writing.h ** ADDED **
15325                 Move Common/Compose prefs to Compose/Writing
15326
15327 2005-05-30 [colin]      1.9.11cvs22
15328
15329         * src/common/utils.c
15330                 Fix bug #651 (Confused Attract by Subject)
15331                 Patch by M. Benkmann <haferfrost@web.de>
15332         * AUTHORS
15333
15334 2005-05-30 [colin]      1.9.11cvs21
15335
15336         * src/compose.c
15337                 Fix concatenation of different headers of
15338                 the same type (bug #645)
15339         * src/prefs_folder_item.c
15340                 Fix bug #699 (setting color to black doesn't
15341                 work immediately)
15342         * src/procmime.c
15343                 Print out decoding error only once per
15344                 block
15345
15346 2005-05-30 [paul]       1.9.11cvs20
15347
15348         * src/common/template.c
15349                 fix Bcc
15350
15351 2005-05-30 [paul]       1.9.11cvs19
15352
15353         * doc/src/rfc2368.txt   **NEW FILE**
15354         * src/compose.c
15355                 compose_entries_set(): don't interpret Bcc
15356                 header field (conform to RFC 2368)
15357                 (sync with main)
15358
15359 2005-05-29 [colin]      1.9.11cvs18
15360
15361         * src/prefs_common.c
15362                 Let the default reply format respect
15363                 netiquette by cutting the signature.
15364
15365 2005-05-29 [colin]      1.9.11cvs17
15366
15367         * src/summaryview.c
15368                 Don't let always_show_msg override
15369                 open_unread_on_enter when opening a new
15370                 directory.
15371
15372 2005-05-27 [paul]       1.9.11cvs16
15373
15374         sync with main:
15375
15376         * src/main.c
15377                 app_will_exit(): cleanup tmp directory when exit
15378         * src/message_search.c
15379                 improved the interface and made code cleanup.
15380                 removed Clear button
15381         * src/send_message.c
15382                 send_message_local(): use GSpawn, and detect errors
15383         * src/summary_search.c
15384                 improved the interface and made code cleanup
15385         * src/textview.c
15386                 textview_write_link(): also skip non-ascii space
15387                  at the head of link strings (phishing check
15388                  didn't work at the case)
15389         * src/common/utils.c
15390                 get_command_output(): use g_spawn_command_line_sync()
15391                 instead of popen()
15392
15393 2005-05-26 [colin]      1.9.11cvs15
15394
15395         * src/folder.c
15396                 remove printf
15397
15398 2005-05-26 [colin]      1.9.11cvs14
15399
15400         * src/common/nntp.c
15401                 Fix nntp mode reader (bug #611)
15402                 Patch by Florian Mickler <florian@mickler.org>
15403
15404 2005-05-26 [colin]      1.9.11cvs13
15405
15406         * src/plugins/pgpmime/passphrase.c
15407                 Fix mouse grabbing (bug #557)
15408
15409 2005-05-26 [colin]      1.9.11cvs12
15410
15411         * src/prefs_themes.c
15412                 Fix g_warning (bug #541)
15413
15414 2005-05-26 [colin]      1.9.11cvs11
15415
15416         * src/prefs_actions.c
15417         * src/prefs_template.c
15418                 Fix bug #506 (no warning if action/template
15419                 is not saved)
15420         * src/common/template.c
15421                 Fix a possible crash
15422
15423 2005-05-26 [colin]      1.9.11cvs10
15424
15425         * src/folder.c
15426         * src/folderview.c
15427         * src/procmsg.c
15428         * src/summaryview.c
15429                 Forbid locked messages to be moved or
15430                 deleted. Locked messages in trashes 
15431                 still get deleted, for performance
15432                 reason (mh.c::mh_remove_all_msgs)
15433
15434 2005-05-25 [colin]      1.9.11cvs9
15435
15436         * src/procmime.c
15437                 Use correct encoding when sending mails
15438                 with attachments that have accentued 
15439                 chars in their name
15440
15441 2005-05-24 [colin]      1.9.11cvs8
15442
15443         * src/summaryview.c
15444                 Fix bug #688 f) read/unread marker not
15445                 changed on first click
15446                 Also, optimize summary_status_show()
15447                 calls
15448         * src/folder.c
15449         * src/inc.c
15450         * src/procmime.c
15451                 Fix bug #688 b) and c) wrt message
15452                 attachments and signature
15453         * src/stock_pixmap.c
15454         * src/stock_pixmap.h
15455         * src/stock_pixmap.c
15456         * src/stock_pixmap.h
15457         * src/Makefile.am
15458         * src/pixmaps/clip_gpg_signed.xpm
15459                 Add clip/signed icon
15460
15461 2005-05-24 [colin]      1.9.11cvs7
15462
15463         * src/folder_item_prefs.c
15464                 whitespace fix
15465
15466 2005-05-24 [colin]      1.9.11cvs6
15467
15468         * src/folderview.c
15469         * src/prefs_common.c
15470         * src/prefs_common.h
15471                 Add a confirmation to folder drag and drop
15472                 fixes bug #156
15473         * src/alertpanel.c
15474         * src/alertpanel.h
15475                 fix _with_disable parameters so that
15476                 the buttons labels are specifiable too
15477         * src/plugins/pgpmime/sgpgme.c
15478                 reflect said change
15479                 
15480
15481 2005-05-24 [colin]      1.9.11cvs5
15482
15483         * src/folderview.c
15484                 Uncollapse/collapse folders on double-click
15485                 patch by Torsten Schoenfeld <kaffeetisch@gmx.de>
15486                 closes bug #108
15487
15488 2005-05-23 [colin]      1.9.11cvs4
15489
15490         * src/common/socket.c
15491                 Check another special SSL_peek() error.
15492                 Should help wrt bug #728
15493
15494 2005-05-23 [colin]      1.9.11cvs3
15495
15496         * src/plugins/pgpmime/pgpmime.c
15497                 Change name to "PGP MIME" instead of "PGP/MIME" to avoid
15498                 breaking menu accelerators and stuff. Users will have to
15499                 reselect "PGP MIME" instead of "PGP/MIME" in their 
15500                 account's privacy preferences if needed.
15501
15502 2005-05-22 [paul]
15503
15504         * tools/kdeservicemenu/install.sh
15505                 use kdesu to prompt for root password if doing
15506                 global install/uninstall
15507
15508 2005-05-20 [colin]      1.9.11cvs2
15509
15510         * src/procmsg.c
15511                 Fix another compilation error with gcc-2.9x
15512                 Thanks to Pawel Pekala <c0rn@gazeta.pl>
15513         * src/send_message.c
15514                 Don't send QUIT if we aren't connected
15515
15516 2005-05-19 [colin]      1.9.11cvs1
15517
15518         * src/procmsg.c
15519                 Fix compilation with gcc 2.9x
15520
15521 2005-05-19 [paul]       1.9.11
15522
15523         1.9.11 released
15524
15525 2005-05-19 [paul]       1.9.9cvs14
15526
15527         * src/gtk/inputdialog.c
15528                 prevent gettext warning
15529
15530 2005-05-19 [paul]       1.9.9cvs13
15531
15532         * src/mainwindow.c
15533         * src/prefs_common.c
15534         * src/prefs_common.h
15535         * src/textview.c
15536         * src/textview.h
15537                 add an option to toggle cursor in message
15538                 view (sync with main)
15539
15540 2005-05-18 [colin]      1.9.9cvs12
15541
15542         * src/compose.c
15543                 Dereference freed pointer
15544         * src/gtk/gtkaspell.c
15545                 Fix duplication of dictionaries (is it an aspell issue?)
15546
15547 2005-05-18 [colin]      1.9.9cvs11
15548
15549         * src/gtk/inputdialog.c
15550         * src/gtk/gtkaspell.c
15551                 HIGuify dialogs
15552         * src/alertpanel.c
15553                 Remove a double call
15554
15555 2005-05-17 [colin]      1.9.9cvs10
15556
15557         * src/gtk/gtkaspell.c
15558                 Fix dialogs, Ctrl-Enter accel
15559
15560 2005-05-17 [colin]      1.9.9cvs9
15561
15562         * src/gtk/gtkaspell.c
15563                 Fix some accelerators, escape in replace-window
15564
15565 2005-05-16 [colin]      1.9.9cvs8
15566
15567         * src/gtk/gtkaspell.c
15568                 Revert last commit, it was a mistake.
15569
15570 2005-05-16 [colin]      1.9.9cvs7
15571
15572         * src/gtk/gtkaspell.c
15573                 Remove buggy code while we're at it. It's a 
15574                 dead code path anyway.
15575
15576 2005-05-16 [colin]      1.9.9cvs6
15577
15578         * src/gtk/gtkaspell.c
15579                 Missed some gtk_menu_popup where deactivate
15580                 signal should be handled. Should fix bug
15581                 #629 a bit more.
15582
15583 2005-05-16 [colin]      1.9.9cvs5
15584
15585         * src/gtk/gtkaspell.c
15586                 Remove debug printf()s
15587
15588 2005-05-16 [colin]      1.9.9cvs4
15589
15590         * src/gtk/gtkaspell.c
15591                 Fix a bit aspell problems
15592                 (see bug #629)
15593
15594 2005-05-13 [colin]      1.9.9cvs3
15595
15596         * src/folderview.c
15597                 Fix the + appearing even when no subfolders
15598                 have unread messages. Thanks to wwp for the
15599                 bug report.
15600
15601 2005-05-11 [paul]       1.9.9cvs2
15602
15603         * src/folderview.c
15604                 correction to 1.9.9cvs1, only colour folders that
15605                 have new msgs (not unread msgs)
15606
15607 2005-05-10 [colin]      1.9.9cvs1
15608
15609         * src/folderview.c
15610         * src/summaryview.c
15611                 Try to fix bolding bugs again.
15612
15613 2005-05-09 [paul]
15614
15615         * tools/claws.i18n.status.pl
15616                 add Ricardo Mones Lastra's script that has been providing
15617                 the i18n status page for many months
15618
15619 2005-05-09 [paul]       1.9.9
15620
15621         1.9.9 release
15622
15623 2005-05-09 [paul]       1.9.6cvs58
15624
15625         * AUTHORS
15626         * INSTALL
15627         * README.claws
15628                 updated
15629         * Makefile.am 
15630         * RELEASE_NOTES.claws
15631                 add release notes to cvs to simplify release
15632                 procedure
15633         * configure.ac
15634                 add ca and fi to ALL_LINGUAS
15635         * po/Makefile.in.in
15636                 workaround for missing Makevars
15637         * po/ca.po
15638         * po/fi.po
15639                 add new Catalan and Finnish translations
15640                 submitted by Miquel Oliete and Flammie Pirinen
15641         * po/de.po
15642         * po/es.po
15643         * po/fr.po
15644         * po/it.po
15645         * po/pl.po
15646         * po/ru.po
15647         * po/sk.po
15648         * po/sr.po
15649         * po/zh_CN.po
15650                 updated by Thomas Gilgin, Ricardo Mones Lastra, Fabien Vantard,
15651                 Andrea Spadaccini, Emilian Nowak, Pavlo Bohmat, Andrej Kacian,
15652                 Urke MMI, and Hansom Young
15653         * src/main.c
15654                 Fix drafting when quitting. compose_draft() closes the
15655                 compose windows, which modifies the compose_list GSList.
15656                 We have to refresh this list after echo drafting to avoid a
15657                 segfault
15658         * src/partial_download.c
15659                 fix segfault on exit
15660
15661 2005-05-06 [paul]       1.9.6cvs57
15662
15663         * src/grouplistdialog.c
15664                 quick fix/workaround for unresizeable newsgroup
15665                 name column 
15666
15667 2005-05-06 [paul]       1.9.6cvs56
15668
15669         * src/inc.c
15670         * src/mainwindow.c
15671                 use gettext plural forms
15672         * src/imap_gtk.c
15673         * src/mh_gtk.c
15674         * src/toolbar.c
15675                 small improvement to english usage
15676
15677 2005-05-05 [thorsten]   1.9.6cvs55
15678
15679         * src/folder.c
15680                 fix possible crash
15681
15682 2005-05-05 [paul]       1.9.6cvs54
15683         
15684         sync with HEAD
15685
15686         * AUTHORS
15687         * src/compose.c
15688                 fix bug 713 'Resent-To and Resent-Cc headers are garbled'
15689                 patch by Tim Mann
15690
15691 2005-05-05 [paul]       1.9.6cvs53
15692
15693         * src/mainwindow.c
15694                 fix resizing of separate message and
15695                 folder views
15696
15697 2005-05-05 [paul]       1.9.6cvs52
15698
15699         * src/account.c
15700         * src/addrgather.c
15701         * src/browseldap.c
15702         * src/exphtmldlg.c
15703         * src/expldifdlg.c
15704         * src/importmutt.c
15705         * src/importpine.c
15706         * src/main.c
15707         * src/mainwindow.c
15708         * src/noticeview.c
15709         * src/prefs_filtering.c
15710         * src/prefs_filtering_action.c
15711         * src/prefs_matcher.c
15712         * src/prefs_spelling.c
15713         * src/prefs_toolbar.c
15714         * src/toolbar.c
15715         * src/wizard.c
15716         * src/gtk/description_window.c
15717         * src/gtk/gtkvscrollbutton.c
15718         * src/gtk/progressdialog.c
15719         * src/gtk/quicksearch.c
15720         * src/plugins/pgpmime/prefs_gpg.c
15721         * src/plugins/spamassassin/spamassassin_gtk.c
15722                 replace deprecated gtk_widget_set_usize
15723
15724 2005-05-04 [colin]      1.9.6cvs51
15725
15726         * src/common/utils.c
15727                 Fix crash when subst_for_filename is called
15728                 with a NULL parameter
15729
15730 2005-05-04 [colin]      1.9.6cvs50
15731
15732         * src/partial_download.c
15733         * src/pop.c
15734                 Escape login when writing uidl file
15735                 fixes bug #736
15736
15737 2005-05-03 [colin]      1.9.6cvs49
15738
15739         * src/procmime.c
15740                 Fix possible DOS in mime parser
15741                 (see bug #634)
15742
15743 2005-05-02 [colin]      1.9.6cvs48
15744
15745         * src/compose.c
15746                 Try to fix the copy/paste mess once again.
15747
15748
15749 2005-04-30 [colin]      1.9.6cvs47
15750
15751         * src/prefs_account.h
15752         * src/procmsg.c
15753         * src/send_message.c
15754         * src/common/smtp.c
15755         * src/common/smtp.h
15756                 Try to batch sending mails (per account) instead of
15757                 reconnecting to server every time.
15758
15759 2005-04-29 [colin]      1.9.6cvs46
15760
15761         * src/messageview.c
15762                 Fix window resizing that refused to size down
15763         * src/prefs_common.c
15764         * src/prefs_common.h
15765         * src/prefs_filtering.c
15766                 Save Filtering's window size
15767
15768 2005-04-21 [paul]       1.9.6cvs45
15769
15770         * ChangeLog-gtk2.claws
15771         * src/setup.c
15772                 correction to sync
15773
15774 2005-04-21 [paul]       1.9.6cvs44
15775
15776         sync with main:
15777
15778         * src/setup.c
15779         * src/statusbar.c
15780         * src/statusbar.h
15781                 use gtkut_widget_draw_now(). Improved performance
15782                 of the update of statusbar
15783         * src/textview.c
15784                 textview_smooth_scroll_do(): redraw it after scroll
15785                 is done (fixed incorrect display when a part of the
15786                 view is hidden).
15787         * src/gtk/gtkutils.c
15788         * src/gtk/gtkutils.h
15789                 gtkut_widget_draw_now(): use gdk_window_process_updates()
15790                 to force update of widgets.
15791                 Removed gtkut_widget_wait_for_draw() which had a big
15792                 overhead  because of waiting for all events processed 
15793
15794 2005-04-20 [paul]       1.9.6cvs43
15795
15796         * src/codeconv.c
15797                 complete 1.9.6cvs42's sync:
15798                 Fallback to GBK if "X-GBK" is passed (thanks to SuperMMX)
15799
15800 2005-04-19 [paul]       1.9.6cvs42
15801
15802         sync with main:
15803
15804         * src/action.c
15805                 catch_output(): correctly select the insert text
15806                 (fix invalid iterator warnings).
15807         * src/codeconv.c
15808         * src/codeconv.h
15809         * src/mainwindow.c
15810         * src/messageview.c
15811         * src/prefs_common.c
15812                 support GBK encoding.
15813         * src/common/session.c
15814         * src/common/session.h
15815                 use separate buffer for large data to be sent,
15816                 and don't duplicate it (reduces memory usage) (thanks to Dirk).
15817
15818 2005-04-18 [paul]       1.9.6cvs41
15819
15820         * src/jpilot.c
15821                 convert unsigned long into guint32
15822                 patch by Paul LeoNerd Evans 
15823
15824 2005-04-17 [colin]      1.9.6cvs40
15825
15826         * src/compose.c
15827                 Fix 'Request return receipt' from folder
15828                 properties (bug #708)
15829
15830 2005-04-17 [colin]      1.9.6cvs39
15831
15832         * src/mainwindow.c
15833                 Fix duplicate hotkeys in Mainwindow's menu
15834
15835 2005-04-17 [colin]      1.9.6cvs38
15836
15837         * src/folderview.c
15838                 Fix duplicate hotkeys in Folderview's contextual
15839                 menu
15840
15841 2005-04-15 [colin]      1.9.6cvs37
15842
15843         * src/summaryview.c
15844                 Fix 'Save as...' with non-ascii filenames
15845
15846 2005-04-15 [colin]      1.9.6cvs36
15847
15848         * src/plugins/pgpmime/pgpmime.c
15849                 Fix bus error on 64bit. Spotted by 
15850                 macallan1888@gmail.com
15851
15852 2005-04-15 [colin]      1.9.6cvs35
15853
15854         * src/prefs_account.c
15855                 Fix cvs34.
15856
15857 2005-04-12 [colin]      1.9.6cvs34
15858
15859         * src/prefs_account.c
15860                 Fix smtp auth type off-by-one. We forgot to
15861                 add PLAIN in the prefs-to-gui setter func and
15862                 as a result, the selected auth when opening
15863                 account prefs was not the correct one.
15864
15865 2005-04-12 [paul]       1.9.6cvs33
15866
15867         * src/inc.c
15868                 if the recv dialog is visible, Cancel only
15869                 cancels the current account
15870
15871
15872 2005-04-10 [colin]      1.9.6cvs32
15873
15874         * src/filtering.c
15875                 Copy score when copying FilteringActions
15876                 Fix bug #674
15877
15878 2005-04-10 [colin]      1.9.6cvs31
15879
15880         * src/inc.c
15881                 Make Message -> Receive -> Cancel cancel 
15882                 incorporation on all accounts. Fixes
15883                 bug #693
15884
15885 2005-04-10 [colin]      1.9.6cvs30
15886
15887         * src/prefs_account.c
15888                 Update Privacy checkbuttons status based
15889                 on the selected privacy system
15890         * src/compose.c
15891                 Always connect the "None" privacy system; the
15892                 static boolean was probably there to avoid
15893                 reconnecting twice in the same compose window,
15894                 but as the parent function is only called once
15895                 per compose, it's only a bug - as a static is
15896                 initialized once per application instance.
15897                 Also, don't uncheck Sign and Encrypt when
15898                 selecting None as privacy system; just ignore
15899                 them when sending/queuing.
15900                 Should fix bug #695
15901
15902 2005-04-08 [colin]      1.9.6cvs29
15903
15904         * src/account.c
15905         * src/prefs_account.c
15906         * src/prefs_account.h
15907                 Add account preference to queue message in a certain
15908                 folder.
15909
15910 2005-04-06 [colin]      1.9.6cvs28
15911
15912         * src/prefs_account.c
15913                 Update old inbox path syntax
15914
15915 2005-04-06 [paul]       1.9.6cvs27
15916
15917         sync with main:
15918
15919         * configure.ac
15920                 changed -traditional-cpp to -no-cpp-precomp for newer
15921                 Mac OS X support
15922         * src/foldersel.c
15923                 made column resize automatically
15924         * src/send_message.c
15925                 send_message_smtp(): consider EOF right after QUIT
15926                 successful (workaround for Gmail SMTP server)
15927         * src/common/socket.c
15928                 ssl_read(), ssl_peek(): check EOF which violates the
15929                 SSL protocol
15930         * src/gtk/colorlabel.c
15931                 removed warnings when displaying colorlabel menu
15932                 (don't use GtkAlignment)
15933
15934 2005-04-05 [paul]       1.9.6cvs26
15935
15936         * src/plugins/trayicon/trayicon.c
15937                 fix clipping of icon under KDE3 
15938
15939 2005-04-05 [paul]       1.9.6cvs25
15940
15941         * src/summaryview.c
15942                 hide display of threading
15943                 patch by Alfons
15944
15945 2005-04-04 [thorsten]   1.9.6cvs24
15946
15947         * src/mh.c
15948                 marks lost on filesystems with different stat() results on
15949                 summer-/wintertime
15950
15951 2005-04-03 [colin]      1.9.6cvs23
15952
15953         * src/summaryview.c
15954                 Don't handle up/down. Patch by Alfons
15955
15956 2005-04-02 [colin]      1.9.6cvs22
15957
15958         * src/summaryview.c
15959                 Make scrolling faster. Patch by Alfons.
15960
15961 2005-04-01 [colin]      1.9.6cvs21
15962
15963         * src/Makefile.am
15964         * src/stock_pixmap.c
15965         * src/pixmaps/dir-noselect.xpm ** REMOVED **
15966         * src/pixmaps/dir_noselect.xpm ** ADDED **
15967                 Fix pixmap name mismatch (Thanks Stephan Sachse)
15968
15969 2005-04-01 [colin]      1.9.6cvs20
15970
15971         * src/image_viewer.c
15972         * src/image_viewer.h
15973         * src/procmime.c
15974         * src/procmime.h
15975         * src/textview.c
15976         * src/textview.h
15977                 Implement inline image resizing and right-clicking
15978
15979 2005-04-01 [paul]       1.9.6cvs19
15980
15981         * AUTHORS
15982         * Makefile.am
15983         * configure.ac
15984                 check for gnome2
15985                 patch by Luca Cavalli <loopback<AT>slackit.org>
15986         * po/ru.po
15987                 updated by Pavlo Bohmat
15988
15989 2005-03-31 [colin]      1.9.6cvs18
15990
15991         * src/news.c
15992                 Fix parsing references
15993         * src/msgcache.c
15994                 don't put nulls in the references list
15995         * src/procheader.c
15996                 commit that forgotten file in 1.9.6cvs14
15997
15998 2005-03-31 [colin]      1.9.6cvs17
15999
16000         * src/compose.c
16001                 Fix joining of signature separator again. 
16002                 Maybe Hiro could put it in main too...
16003
16004 2005-03-31 [colin]      1.9.6cvs16
16005
16006         * src/Makefile.am
16007         * src/foldersel.c
16008         * src/stock_pixmap.c
16009         * src/stock_pixmap.h
16010         * src/pixmaps/dir-noselect.xpm
16011                 Update foldersel.c (sync from main, patch by Alfons)
16012
16013 2005-03-30 [colin]      1.9.6cvs15
16014
16015         * src/imap.c
16016                 Fix handling of imap folders containing [] in 
16017                 their name. Thanks to Nahuel Angelinetti for
16018                 the detailed bugreport.
16019
16020 2005-03-30 [colin]      1.9.6cvs14
16021
16022         * src/common/utils.h
16023         * src/common/utils.c
16024         * src/common/defs.h
16025         * src/matcher.c
16026         * src/msgcache.c
16027         * src/news.c
16028         * src/procmsg.c
16029         * src/procmsg.h
16030         * src/quote_fmt_parse.y
16031         * src/summaryview.c
16032                 Update references system. Patch by Alfons
16033
16034 2005-03-30 [colin]      1.9.6cvs13
16035
16036         * src/common/socket.c
16037                 Force the glibc to read resolv.conf again when 
16038                 it has changed. Should fix issues when changing
16039                 networks on a laptop and not restarting sylpheed. 
16040
16041 2005-03-30 [paul]       1.9.6cvs12
16042
16043         partial sync with main:
16044
16045         * src/action.c
16046                 create_io_dialog(): use user-defined text font
16047                 (thanks to Alfons), and modified its appearance.
16048         * src/addrgather.c
16049         * src/addrharvest.c
16050         * src/browseldap.c
16051                 replace old code
16052         * src/compose.c
16053                 don't join (presumably) itemized lines on line-wrapping
16054                 fixed wrapping of quote when auto-wrapping is enabled
16055                 compose_destroy(): destroy paned only if it's not
16056                 attached to window. Fixed memory leak of popup menu.
16057         * src/exphtmldlg.c
16058         * src/expldifdlg.c
16059                 replace old code
16060         * src/html.c
16061         * src/html.h
16062         * src/importmutt.c
16063         * src/importpine.c
16064                 replace old code
16065         * src/main.c
16066                 removed redundant code
16067         * src/mainwindow.c
16068                 changed 'Code set' (which is rather incorrect)
16069                 in the menu to 'Character encoding'
16070                 main_window_set_widgets(): request size first
16071                 to prevent window size becoming wrong
16072                 fixed remembering of the state of the visibility
16073                 of MessageView
16074         * src/messageview.c
16075                 changed 'Code set' (which is rather incorrect)
16076                 in the menu to 'Character encoding'
16077         * src/prefs_common.c
16078         * src/prefs_common.h
16079                 added an option whether to render HTML as text or not
16080                 added separators to outgoing encoding menu
16081         * src/procheader.c
16082                 procheader_scan_date_string(): support header
16083                 like: "[Tue,] 01 Feb 2005 09:57[:00]"
16084         * src/summaryview.c
16085         * src/summaryview.h
16086                 minor code cleanup
16087         * src/textview.c
16088                 textview_show_html(): force output of newline
16089                 added an option whether to render HTML as text or not
16090         * src/common/utils.c
16091                 strncpy2(): optimized based on Alfons' code
16092         * src/gtk/gtkutils.c
16093         * src/gtk/gtkutils.h
16094                 removed non-used code
16095         * src/plugins/pgpmime/passphrase.c
16096                 partially fixed grab input of passphrase dialog
16097                 Confine pointer to window
16098
16099 2005-03-30 [colin]      1.9.6cvs11
16100
16101         * src/msgcache.c
16102         * src/msgcache.h
16103                 Read/write 32bit ints from cache & marks
16104                 From main.
16105
16106 2005-03-29 [paul]       1.9.6cvs10
16107
16108         * AUTHORS
16109         * ChangeLog.claws
16110         * src/compose.c
16111         * src/gtk/gtkaspell.c
16112                 sync with HEAD (don't pass NULL pointers) 
16113
16114 2005-03-24 [paul]
16115
16116         * tools/Makefile.am
16117         * tools/README
16118         * tools/acroread2sylpheed.pl
16119                 sync with HEAD (add script to send pdfs as
16120                 attachments from Adobe Reader 7)
16121
16122 2005-03-21 [paul]       1.9.6cvs9
16123
16124         * configure.ac
16125         * po/POTFILES.in
16126         * src/Makefile.am
16127         * src/crash.c
16128         * src/image_viewer.c ** ADDED **
16129         * src/image_viewer.h ** ADDED **
16130         * src/main.c
16131         * src/prefs_common.c
16132         * src/prefs_common.h
16133         * src/prefs_image_viewer.c ** ADDED **
16134         * src/prefs_image_viewer.h ** ADDED **
16135         * src/textview.c
16136         * src/gtk/about.c
16137         * src/pixmaps/sylpheed_logo.xpm
16138         * src/plugins/Makefile.am
16139         * src/plugins/image_viewer/.cvsignore ** REMOVED **
16140         * src/plugins/image_viewer/Makefile.am ** REMOVED **
16141         * src/plugins/image_viewer/plugin.c ** REMOVED **
16142         * src/plugins/image_viewer/viewer.c ** REMOVED **
16143         * src/plugins/image_viewer/viewer.glade ** REMOVED **
16144         * src/plugins/image_viewer/viewer.h ** REMOVED ** 
16145         * src/plugins/image_viewer/viewerprefs.c ** REMOVED **
16146         * src/plugins/image_viewer/viewerprefs.glade ** REMOVED **
16147         * src/plugins/image_viewer/viewerprefs.h ** REMOVED **
16148                 as gdk-pixbuf is now built-in
16149                 remove image_viewer plugin and put code back into
16150                 main codebase
16151                 implement inline image display (sync with main)
16152
16153                 replace logo with newer, nicer, larger version  
16154
16155 2005-03-21 [paul]       1.9.6cvs8
16156
16157         * src/gtk/about.c
16158                 cosmetic improvement
16159
16160 2005-03-21 [holger]     1.9.6cvs7
16161
16162         * src/plugins/spamassassin/spamassassin.c
16163                 Sync with HEAD
16164                 (unregister hook on failed plugin init)
16165
16166 2005-03-20 [colin]      1.9.6cvs6
16167
16168         * src/common/plugin.c
16169                 Check that plugin isn't already loaded
16170                 Patch by Alfons
16171
16172 2005-03-20 [thorsten]   1.9.6cvs5
16173
16174         * src/compose.c
16175                 use a more compatible syntax
16176
16177 2005-03-20 [thorsten]   1.9.6cvs4
16178
16179         * src/prefs_toolbar.c
16180                 fix crash when selecting toolbar item (uninitialized pointer)
16181
16182 2005-03-20 [thorsten]   1.9.6cvs3
16183
16184         * src/procmime.c
16185                 fix mimetype detection (referenced free()d string)
16186
16187 2005-03-20 [paul]       1.9.6cvs2
16188
16189         * src/compose.c
16190                 sync with HEAD (1.0.3cvs5)
16191                 neglect Reply-To header if empty
16192                 Patch by Alfons 
16193
16194 2005-03-19 [holger]     1.9.6cvs1
16195
16196         * src/summaryview.c
16197         * src/summaryview.h
16198                 Sync with HEAD
16199
16200 2005-03-18 [paul]       1.9.6
16201
16202         initial GTK2 release
16203
16204 2005-03-18 [paul]       1.0.3cvs3.1
16205
16206         * AUTHORS
16207         * ChangeLog.claws
16208         * configure.ac
16209         * src/gtk/about.c
16210         * src/pixmaps/sylpheed_logo.xpm
16211                 sync with HEAD
16212
16213 2005-03-18 [colin]      1.0.3cvs2.6
16214
16215         * src/summaryview.c
16216                 Remove call to summary_step in summary_copy_selected_to
16217                 Can't see its purpose, and this causes bug when copying
16218                 a message if the next one is unread: it reads it.
16219
16220 2005-03-18 [paul]       1.0.3cvs2.5
16221
16222         * src/foldersel.c
16223                 fix bug 694 'Enter doesn't trigger OK in "Move" window'
16224
16225 2005-03-18 [paul]       1.0.3cvs2.4
16226
16227         * src/addrharvest.c
16228         * src/codeconv.c
16229         * src/codeconv.h
16230         * src/compose.c
16231         * src/news.c
16232         * src/procheader.c
16233         * src/procmime.c
16234         * src/unmime.c
16235         * src/unmime.h
16236                 fix buffer overflow, CAN-2005-0667, see
16237                 http://secunia.com/advisories/14491/
16238                 Patch by Alfons
16239
16240 2005-03-17 [colin]      1.0.3cvs2.3
16241
16242         * src/prefs_fonts.c
16243         * src/summaryview.c
16244                 Fix font bugs (both lists now officialy share 
16245                 the same font)
16246                 
16247
16248 2005-03-17 [paul]       1.0.3cvs2.2
16249
16250         * src/gtk/pluginwindow.c
16251                 make plugin descriptions uneditable
16252
16253 2005-03-11 [paul]       1.0.3cvs2.1
16254
16255         * ChangeLog.claws
16256         * configure.ac
16257         * po/POTFILES.in
16258         * src/plugins/trayicon/trayicon.c
16259                 sync with HEAD
16260                 add src/wizard.c to POTFILES.in
16261
16262 2005-03-11 [paul]       1.0.3cvs1.1
16263
16264         * ChangeLog
16265         * ChangeLog.claws
16266         * configure.ac
16267         * po/de.po
16268         * po/es.po
16269         * po/fr.po
16270         * po/it.po
16271         * po/pt_BR.po
16272         * po/ru.po
16273         * po/sk.po
16274         * po/sr.po
16275         * po/zh_CN.po
16276                 sync with HEAD
16277
16278 2005-03-04 [colin]      1.0.1cvs22.2
16279
16280         * src/compose.c
16281                 Fix signatures with accentued chars in it
16282
16283 2005-03-04 [colin]      1.0.1cvs22.1
16284
16285         * src/common/smtp.c
16286         * src/common/smtp.h
16287                 Don't use SIZE param in MAIL FROM: if server 
16288                 doesn't support it. Patch by Eugen Freiter
16289                 <eugen_f@users.sf.net>
16290
16291 2005-02-27 [paul]       1.0.1cvs20.1
16292
16293         * ChangeLog.claws
16294         * configure.ac
16295         * src/messageview.c
16296                 sync with HEAD
16297
16298 2005-02-27 [colin]      1.0.1cvs19.4
16299
16300         * src/procheader.c
16301         * src/procheader.h
16302                 Fix prototypes. Patch by Alfons
16303
16304 2005-02-27 [colin]      1.0.1cvs19.3
16305
16306         * src/compose.c
16307                 Don't auto-join the signature separator.
16308
16309 2005-02-26 [colin]      1.0.1cvs19.2
16310
16311         * src/summaryview.c
16312                 Fix 'mark all read' with collapsed threads.
16313                 Patch by Alfons.
16314
16315 2005-02-25 [paul]       1.0.1cvs19.1
16316
16317         * ChangeLog.claws
16318         * configure.ac
16319         * src/prefs_account.c
16320         * src/prefs_folder_item.c
16321         * src/gtk/prefswindow.c
16322         * src/gtk/prefswindow.h
16323                 sync with HEAD
16324
16325 2005-02-25 [paul]       1.0.1cvs15.12
16326
16327         * src/alertpanel.c
16328         * src/codeconv.c
16329         * src/compose.c
16330         * src/textview.c
16331         * src/gtk/gtkutils.c
16332         * src/gtk/gtkutils.h
16333         * src/gtk/logwindow.c
16334         * src/gtk/progressdialog.c
16335                 sync with main (revision 127)
16336                 and fix logwindow clipping
16337
16338 2005-02-24 [colin]      1.0.1cvs15.11
16339
16340         * src/plugins/pgpmime/passphrase.c
16341                 Disable input grabbing; it doesn't work yet.
16342
16343 2005-02-24 [colin]      1.0.1cvs15.10
16344
16345         * src/messageview.c
16346                 Don't send out receipts if offline. Ask.
16347
16348 2005-02-23 [colin]      1.0.1cvs15.9
16349
16350         * src/summaryview.c     
16351                 Fix expanding
16352
16353 2005-02-23 [colin]      1.0.1cvs15.8
16354
16355         * src/summaryview.c
16356                 Really fix Bug 568 by removing useless
16357                 calls. summary_thread_init() now called
16358                 in summary_sort(). This should please
16359                 Alfons as it should be faster than 
16360                 previously.
16361
16362 2005-02-23 [colin]      1.0.1cvs15.7
16363
16364         * src/compose.c
16365                 Encode parts as QP or B64 if signing
16366
16367 2005-02-23 [colin]      1.0.1cvs15.6
16368
16369         * src/compose.c
16370                 Fix Mimeinfo leakage (including tmp files)
16371         * src/procmsg.c
16372                 Fix tmp file leakage (spotted by Ivan Rayner)
16373
16374 2005-02-22 [colin]      1.0.1cvs15.5
16375
16376         * src/expldifdlg.c
16377                 Fix keyboard input. Patch by Alfons.
16378
16379 2005-02-21 [colin]      1.0.1cvs15.4
16380
16381         * src/compose.c
16382                 Fix Sign/Encrypt when unselecting privacy
16383                 system
16384         * src/prefs_common.c
16385                 Change default message font to Monospace
16386         * src/summaryview.c
16387                 More freezing during potentially large operations
16388
16389 2005-02-21 [paul]       1.0.1cvs15.3
16390
16391         * src/main.c
16392                 fix --help output
16393
16394 2005-02-21 [paul]       1.0.1cvs15.2
16395
16396         * po/Makefile.in.in
16397         * src/compose.c
16398         * src/summaryview.c
16399         * src/textview.c
16400         * src/common/utils.c
16401         * src/common/utils.h
16402                 sync with main (revision 117)
16403
16404 2005-02-20 [colin]      1.0.1cvs15.1
16405
16406         * src/common/defs.h
16407                 Change cache file to .sylpheed_claws_cache, as
16408                 suggested by Alfons. Allows people to switch
16409                 between Sylpheed and Sylpheed-Claws. it is
16410                 a good idea to "Check for new messages" at next
16411                 startup.
16412
16413
16414 2005-02-18 [colin]      1.0.1cvs14.1
16415
16416         * src/quote_fmt_lex.l
16417         * src/quote_fmt_parse.y
16418                 Fix parser initialisation. Patch by Ivan.
16419
16420 2005-02-18 [colin]      1.0.1cvs11.6
16421
16422         * src/folderview.c
16423                 Fix scrolldown (bug 662)
16424
16425 2005-02-17 [colin]      1.0.1cvs11.5
16426
16427         * src/codeconv.c
16428                 conv_filename_to_utf8: return clean 7bit instead
16429                 of broken utf8 if needed
16430         * src/mimeview.c
16431                 Fix display of parts with unclean 8bit names
16432
16433 2005-02-17 [paul]       1.0.1cvs11.4
16434
16435         * src/compose.c
16436         * src/exportldif.c
16437         * src/matcher_parser_parse.y
16438         * src/procmime.c
16439         * src/sourcewindow.c
16440         * src/common/Makefile.am
16441         * src/common/intl.h             ** REMOVED **
16442         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
16443                 sync with main (revision 109)
16444                 and clean up
16445
16446 2005-02-16 [colin]      1.0.1cvs11.3
16447
16448         * src/summaryview.c
16449                 Fix collapsed thread not highlighting when new
16450                 messages in it (Bug 568) Patch by Stephan Sachse.
16451                 Fix messed up selection when reaching bounds (Bug 632)
16452         * src/prefs_themes.c
16453                 Fix theme installing (Bug 684)
16454
16455 2005-02-16 [colin]      1.0.1cvs11.2
16456
16457         * src/messageview.c
16458                 Fix messageview_select_all
16459
16460 2005-02-16 [colin]      1.0.1cvs11.1
16461
16462         * src/mh.c
16463                 Sync with HEAD (MH scan required function)
16464
16465 2005-02-15 [colin]      1.0.1cvs8.1
16466
16467         * src/mimeview.c
16468         * src/common/utils.c
16469                 Sync with HEAD (filename chars substitution)
16470
16471 2005-02-15 [colin]      1.0.1cvs7.3
16472
16473         * src/gtk/pluginwindow.c
16474                 Fix button spacing
16475
16476 2005-02-15 [colin]      1.0.1cvs7.2
16477
16478         * src/mimeview.c
16479                 Fix mime icons not reset across message when
16480                 scrolled down
16481
16482 2005-02-15 [colin]      1.0.1cvs7.1
16483
16484         * src/compose.c
16485         * src/procmime.c
16486                 Sync with HEAD (optimisation of cvs6)
16487
16488 2005-02-14 [colin]      1.0.1cvs6.1
16489
16490         * src/compose.c
16491         * src/procmime.c
16492                 Sync with HEAD (encode "From " at line beginning)
16493
16494 2005-02-14 [colin]      1.0.1cvs5.3
16495
16496         * src/compose.c
16497                 Fix wrapping with accentued chars.
16498
16499 2005-02-13 [colin]      1.0.1cvs5.2
16500
16501         * src/textview.c
16502                 Fix email informative part parsing with
16503                 accentued chars in it. ispunct() returns
16504                 true for them in utf8...
16505
16506 2005-02-12 [colin]      1.0.1cvs5.1
16507
16508         * src/filtering.c
16509                 Sync with HEAD (remove wrong use of compose after send)
16510
16511 2005-02-12 [paul]       1.0.1cvs4.5
16512
16513         * src/textview.c
16514                 remove unnecessary code (thanks to Alfons)
16515
16516 2005-02-12 [paul]       1.0.1cvs4.4
16517
16518         * src/textview.c
16519                 add 'Copy' to contextual menu on emails
16520
16521 2005-02-11 [colin]      1.0.1cvs4.3
16522
16523         * src/compose.c
16524                 revert 1.0.0cvs28.2, it doesn't work that well.
16525
16526 2005-02-11 [paul]       1.0.1cvs4.2
16527
16528         * po/Makefile.in.in
16529                 fix 'make release'
16530
16531 2005-02-10 [paul]       1.0.1cvs4.1
16532
16533         * ChangeLog
16534         * ChangeLog.claws
16535         * ChangeLog.jp
16536         * configure.ac
16537         * src/compose.c
16538                 sync with HEAD (sync with main)
16539
16540 2005-02-10 [paul]       1.0.1cvs3.2
16541
16542         * AUTHORS
16543         * Makefile.am
16544         * autogen.sh
16545         * configure.ac
16546         * config/mkinstalldirs
16547         * intl/.cvsignore
16548         * intl/ChangeLog
16549         * intl/VERSION
16550         * intl/bindtextdom.c
16551         * intl/config.charset
16552         * intl/dcgettext.c
16553         * intl/dcigettext.c
16554         * intl/dcngettext.c
16555         * intl/dgettext.c
16556         * intl/dngettext.c
16557         * intl/eval-plural.h
16558         * intl/explodename.c
16559         * intl/finddomain.c
16560         * intl/gettext.c
16561         * intl/gettextP.h
16562         * intl/gmo.h
16563         * intl/hash-string.h
16564         * intl/intl-compat.c
16565         * intl/l10nflist.c
16566         * intl/libgnuintl.h.in
16567         * intl/loadinfo.h
16568         * intl/loadmsgcat.c
16569         * intl/localcharset.c
16570         * intl/localcharset.h
16571         * intl/locale.alias
16572         * intl/localealias.c
16573         * intl/localename.c
16574         * intl/log.c
16575         * intl/ngettext.c
16576         * intl/os2compat.c
16577         * intl/os2compat.h
16578         * intl/osdep.c
16579         * intl/plural-exp.c
16580         * intl/plural-exp.h
16581         * intl/plural.c
16582         * intl/plural.y
16583         * intl/ref-add.sin
16584         * intl/ref-del.sin
16585         * intl/relocatable.c
16586         * intl/relocatable.h
16587         * intl/textdomain.c
16588         * m4/Makefile.am
16589         * po/Makefile.in.in
16590         * src/Makefile.am
16591         * src/account.c
16592         * src/action.c
16593         * src/addr_compl.c
16594         * src/addressadd.c
16595         * src/addressbook.c
16596         * src/addrgather.c
16597         * src/addrindex.c
16598         * src/alertpanel.c
16599         * src/browseldap.c
16600         * src/codeconv.c
16601         * src/codeconv.h
16602         * src/compose.c
16603         * src/compose.h
16604         * src/crash.c
16605         * src/editaddress.c
16606         * src/editbook.c
16607         * src/editgroup.c
16608         * src/editjpilot.c
16609         * src/editldap.c
16610         * src/editldap_basedn.c
16611         * src/editvcard.c
16612         * src/exphtmldlg.c
16613         * src/expldifdlg.c
16614         * src/export.c
16615         * src/exporthtml.c
16616         * src/filtering.c
16617         * src/folder.c
16618         * src/folder_item_prefs.c
16619         * src/foldersel.c
16620         * src/folderview.c
16621         * src/grouplistdialog.c
16622         * src/headerview.c
16623         * src/imap.c
16624         * src/imap_gtk.c
16625         * src/import.c
16626         * src/importldif.c
16627         * src/importmutt.c
16628         * src/importpine.c
16629         * src/inc.c
16630         * src/ldif.c
16631         * src/main.c
16632         * src/mainwindow.c
16633         * src/matcher.c
16634         * src/mbox.c
16635         * src/message_search.c
16636         * src/messageview.c
16637         * src/mh.c
16638         * src/mh_gtk.c
16639         * src/mimeview.c
16640         * src/msgcache.c
16641         * src/news.c
16642         * src/news_gtk.c
16643         * src/noticeview.c
16644         * src/partial_download.c
16645         * src/pop.c
16646         * src/prefs_account.c
16647         * src/prefs_actions.c
16648         * src/prefs_common.c
16649         * src/prefs_customheader.c
16650         * src/prefs_display_header.c
16651         * src/prefs_ext_prog.c
16652         * src/prefs_filtering.c
16653         * src/prefs_filtering_action.c
16654         * src/prefs_folder_item.c
16655         * src/prefs_fonts.c
16656         * src/prefs_gtk.c
16657         * src/prefs_matcher.c
16658         * src/prefs_msg_colors.c
16659         * src/prefs_spelling.c
16660         * src/prefs_summary_column.c
16661         * src/prefs_template.c
16662         * src/prefs_themes.c
16663         * src/prefs_toolbar.c
16664         * src/prefs_wrapping.c
16665         * src/privacy.c
16666         * src/procheader.c
16667         * src/procmime.c
16668         * src/procmsg.c
16669         * src/quote_fmt.c
16670         * src/recv.c
16671         * src/send_message.c
16672         * src/setup.c
16673         * src/sourcewindow.c
16674         * src/ssl_manager.c
16675         * src/statusbar.c
16676         * src/summary_search.c
16677         * src/summaryview.c
16678         * src/textview.c
16679         * src/toolbar.c
16680         * src/wizard.c
16681         * src/common/nntp.c
16682         * src/common/plugin.c
16683         * src/common/smtp.c
16684         * src/common/ssl.c
16685         * src/common/ssl_certificate.c
16686         * src/common/string_match.c
16687         * src/common/sylpheed.c
16688         * src/common/template.c
16689         * src/common/utils.c
16690         * src/gtk/about.c
16691         * src/gtk/colorlabel.c
16692         * src/gtk/description_window.c
16693         * src/gtk/filesel.c
16694         * src/gtk/foldersort.c
16695         * src/gtk/gtkaspell.c
16696         * src/gtk/gtkutils.c
16697         * src/gtk/inputdialog.c
16698         * src/gtk/logwindow.c
16699         * src/gtk/menu.c
16700         * src/gtk/pluginwindow.c
16701         * src/gtk/prefswindow.c
16702         * src/gtk/progressdialog.c
16703         * src/gtk/quicksearch.c
16704         * src/gtk/sslcertwindow.c
16705         * src/plugins/clamav/clamav_plugin.c
16706         * src/plugins/clamav/clamav_plugin_gtk.c
16707         * src/plugins/demo/demo.c
16708         * src/plugins/dillo_viewer/dillo_prefs.c
16709         * src/plugins/dillo_viewer/dillo_viewer.c
16710         * src/plugins/image_viewer/plugin.c
16711         * src/plugins/image_viewer/viewer.c
16712         * src/plugins/image_viewer/viewerprefs.c
16713         * src/plugins/mathml_viewer/mathml_viewer.c
16714         * src/plugins/pgpmime/passphrase.c
16715         * src/plugins/pgpmime/plugin.c
16716         * src/plugins/pgpmime/prefs_gpg.c
16717         * src/plugins/pgpmime/select-keys.c
16718         * src/plugins/pgpmime/sgpgme.c
16719         * src/plugins/spamassassin/spamassassin.c
16720         * src/plugins/spamassassin/spamassassin_gtk.c
16721         * src/plugins/trayicon/trayicon.c
16722                 sync with main (revision 104)
16723
16724 2005-02-10 [colin]      1.0.1cvs3.1
16725
16726         * src/mainwindow.c
16727                 Sync with HEAD (fix occasional crasher)
16728
16729 2005-02-10 [colin]      1.0.1cvs2.1
16730
16731         * src/messageview.c
16732                 Synw with HEAD (don't automatically display html)
16733
16734 2005-02-09 [colin]      1.0.1cvs1.3
16735
16736         * src/textview.c
16737         * src/textview.h
16738                 Add contextual menu on emails
16739
16740 2005-02-09 [colin]      1.0.1cvs1.2
16741
16742         * src/codeconv.c
16743                 Fix converting from broken headers and 
16744                 put back the _ in missing places
16745                 (feature broke with cvs24.2 sync, main 
16746                  possibly affected?)
16747
16748 2005-02-09 [colin]      1.0.1cvs1.1
16749
16750         * src/messageview.c
16751         * src/mimeview.c
16752         * src/mimeview.h
16753                 Sync with HEAD (display non text/plain mails with plugin)
16754
16755 2005-02-08 [colin]      1.0.1.1
16756
16757         * ChangeLog.claws
16758         * po/pt_BR.po
16759                 Sync with HEAD
16760         * configure.ac
16761                 Make default configuration directory 
16762                 be .sylpheed-gtk2
16763
16764 2005-02-08 [colin]      1.0.0cvs29.1
16765
16766         * po/de.po
16767         * po/es.po
16768         * po/fr.po
16769         * po/it.po
16770         * po/sk.po
16771         * po/sr.po
16772                 Sync translations with HEAD
16773
16774 2005-02-06 [colin]      1.0.0cvs28.3
16775
16776         * src/compose.c
16777                 Make compose a bit faster - patch by Alfons.
16778
16779 2005-02-06 [colin]      1.0.0cvs28.2
16780
16781         * src/compose.c
16782                 Make pasting via middle-click more reliable
16783
16784 2005-02-05 [paul]       1.0.0cvs28.1
16785
16786         * ChangeLog
16787         * ChangeLog.claws
16788         * ChangeLog.jp
16789         * configure.ac
16790         * src/compose.c
16791                 sync with HEAD
16792                 (fix bug 682 'redirect is broken'
16793
16794 2005-02-05 [torte]      1.0.0cvs27.1
16795
16796         * ChangeLog.claws
16797         * configure.ac
16798         * src/partial_download.c
16799                 Sync with HEAD (fix buf overflow)
16800
16801 2005-02-03 [colin]      1.0.0cvs26.1
16802
16803         * src/common/plugin.c
16804                 Sync with HEAD (avoid plugin mismatches)
16805
16806 2005-02-03 [paul]       1.0.0cvs25.3
16807
16808         * src/folderview.c
16809         * src/headerview.c
16810         * src/summaryview.c
16811         * src/textview.c
16812         * src/gtk/colorlabel.c
16813                 third and final part of initial sync with main-gtk2
16814
16815 2005-02-03 [paul]       1.0.0cvs25.2
16816
16817         * src/jpilot.c
16818                 fix building with jpilot support
16819
16820 2005-02-02 [colin]      1.0.0cvs25.1
16821
16822         * src/messageview.c
16823                 Sync with HEAD (fix dangerous typo)
16824
16825 2005-02-01 [colin]      1.0.0cvs24.3
16826
16827         * src/common/xml.c
16828                 Write file as advertised (UTF-8)
16829
16830 2005-02-01 [paul]       1.0.0cvs24.2
16831
16832         * src/addrbook.c
16833         * src/addrindex.c
16834         * src/alertpanel.h
16835         * src/codeconv.c
16836         * src/codeconv.h
16837         * src/compose.c
16838         * src/export.c
16839         * src/folder_item_prefs.c
16840         * src/html.c
16841         * src/imap.c
16842         * src/import.c
16843         * src/jpilot.c
16844         * src/mainwindow.c
16845         * src/matcher_parser_lex.l
16846         * src/messageview.c
16847         * src/mh.c
16848         * src/prefs_account.c
16849         * src/prefs_actions.c
16850         * src/prefs_common.c
16851         * src/prefs_gtk.c
16852         * src/prefs_gtk.h
16853         * src/prefs_themes.c
16854         * src/procheader.c
16855         * src/procmime.c
16856         * src/sourcewindow.c
16857         * src/statusbar.c
16858         * src/summaryview.c
16859         * src/textview.c
16860         * src/toolbar.c
16861         * src/unmime.c
16862         * src/common/template.c
16863         * src/common/utils.c
16864         * src/common/xml.c
16865         * src/common/xml.h
16866         * src/gtk/gtkaspell.c
16867         * src/plugins/clamav/clamav_plugin.c
16868         * src/plugins/dillo_viewer/dillo_prefs.c
16869         * src/plugins/image_viewer/viewerprefs.c
16870         * src/plugins/pgpmime/passphrase.c
16871         * src/plugins/pgpmime/prefs_gpg.c
16872         * src/plugins/pgpmime/select-keys.c
16873         * src/plugins/spamassassin/spamassassin.c
16874                 second part of initial sync with main-gtk2
16875                 (more to follow)
16876
16877 2005-01-31 [colin]      1.0.0cvs24.1
16878
16879         * src/compose.c
16880                 Sync with HEAD
16881
16882 2005-01-29 [paul]       1.0.0cvs23.2
16883
16884         * src/account.c
16885         * src/action.c
16886         * src/addressadd.c
16887         * src/addressbook.c
16888         * src/alertpanel.c
16889         * src/compose.c
16890         * src/editaddress.c
16891         * src/editbook.c
16892         * src/editgroup.c
16893         * src/editjpilot.c
16894         * src/editldap.c
16895         * src/editldap_basedn.c
16896         * src/editvcard.c
16897         * src/export.c
16898         * src/foldersel.c
16899         * src/grouplistdialog.c
16900         * src/import.c
16901         * src/importldif.c
16902         * src/inc.c
16903         * src/main.c
16904         * src/mainwindow.c
16905         * src/message_search.c
16906         * src/messageview.c
16907         * src/mimeview.c
16908         * src/prefs_actions.c
16909         * src/prefs_common.c
16910         * src/prefs_common.h
16911         * src/prefs_customheader.c
16912         * src/prefs_display_header.c
16913         * src/prefs_filtering.c
16914         * src/prefs_filtering_action.c
16915         * src/prefs_gtk.c
16916         * src/prefs_matcher.c
16917         * src/prefs_summary_column.c
16918         * src/prefs_template.c
16919         * src/sourcewindow.c
16920         * src/summary_search.c
16921         * src/summaryview.c
16922         * src/textview.c
16923         * src/gtk/about.c
16924         * src/gtk/description_window.c
16925         * src/gtk/gtkshruler.c
16926         * src/gtk/gtkutils.c
16927         * src/gtk/gtkutils.h
16928         * src/gtk/inputdialog.c
16929         * src/gtk/logwindow.c
16930         * src/gtk/prefswindow.c
16931         * src/gtk/progressdialog.c
16932         * src/gtk/progressdialog.h
16933                 first part of initial sync with main-gtk2
16934                 (more to follow)
16935
16936 2005-01-28 [colin]      1.0.0cvs23.1
16937
16938         * src/folderview.c
16939                 Sync with HEAD
16940
16941 2005-01-27 [colin]      1.0.0cvs21.1
16942
16943         * src/folder.c
16944         * src/folderview.c
16945                 Sync with HEAD
16946
16947 2005-01-27 [colin]      1.0.0cvs19.1
16948
16949         * src/procmime.c
16950                 Sync with HEAD
16951
16952 2005-01-27 [colin]      1.0.0cvs18.1
16953
16954         * src/messageview.c
16955         * src/summaryview.c
16956         * src/mainwindow.c
16957         * src/compose.c
16958         * src/compose.h
16959         * src/procmsg.c
16960         * src/procmsg.h
16961         * src/toolbar.c
16962                 Sync with HEAD
16963
16964 2005-01-26 [paul]       1.0.0cvs15.2
16965
16966         * src/compose.c
16967                 compose_entries_set(): convert subject and body to
16968                 utf8 if necessary. patch by Felix Eckhofer
16969
16970 2005-01-26 [paul]       1.0.0cvs15.1
16971
16972         * configure.ac
16973         * src/common/template.c
16974                 sync with HEAD (fix memory leak)
16975
16976 2005-01-25 [paul]       1.0.0cvs14.1
16977
16978         * configure.ac
16979         * src/compose.c
16980                 sync with HEAD
16981
16982 2005-01-24 [colin]      1.0.0cvs13.1
16983
16984         * src/summaryview.c
16985                 Sync with HEAD
16986
16987 2005-01-24 [paul]       1.0.0cvs12.1
16988
16989         * configure.ac
16990         * src/messageview.c
16991         * src/mh.c
16992         * src/common/utils.c
16993                 sync with HEAD
16994
16995 2005-01-24 [colin]      1.0.0cvs11.1
16996
16997         * src/procheader.c
16998                 Sync with HEAD
16999
17000 2005-01-24 [colin]      1.0.0cvs10.1
17001
17002         * src/folderview.c
17003                 Sync with HEAD
17004
17005 2005-01-23 [colin]      1.0.0cvs9.1
17006
17007         * src/crash.c
17008                 Sync with HEAD
17009
17010 2005-01-22 [colin]      1.0.0cvs8.1
17011
17012         * src/summaryview.c
17013         * src/gtk/quicksearch.c
17014                 Sync with HEAD
17015
17016 2005-01-21 [colin]      1.0.0cvs7.1
17017
17018         * src/summaryview.c
17019                 Sync with HEAD
17020
17021 2005-01-21 [colin]      1.0.0cvs6.1
17022
17023         * src/summaryview.c
17024                 Sync with HEAD
17025
17026 2005-01-21 [colin]      1.0.0cvs5.1
17027
17028         * src/gtk/quicksearch.c
17029         * src/prefs_common.c
17030         * src/prefs_common.h
17031                 Sync with HEAD (recurse option)
17032
17033 2005-01-21 [colin]      1.0.0cvs4.1
17034
17035         * src/folder.h
17036         * src/folderview.c
17037         * src/folderview.h
17038         * src/summaryview.c
17039         * src/gtk/quicksearch.c
17040         * src/gtk/quicksearch.h
17041                 Sync with HEAD (recursive quicksearch)
17042
17043 2005-01-20 [colin]      1.0.0cvs3.4
17044
17045         * src/ssl_manager.c
17046                 Remove useless code
17047
17048 2005-01-20 [colin]      1.0.0cvs3.3
17049
17050         * src/ssl_manager.c
17051                 Fix leak, thanks to Alfons.
17052
17053 2005-01-20 [colin]      1.0.0cvs3.2
17054
17055         * src/ssl_manager.c
17056                 Port SSL certificate window to GTK2.
17057
17058 2005-01-20 [paul]       1.0.0cvs3.1
17059
17060         * ChangeLog.claws
17061         * configure.ac
17062         * src/addrindex.c
17063         * src/addrindex.h
17064                 sync with HEAD
17065
17066 2005-01-19 [colin]      1.0.0cvs2.2
17067
17068         * src/plugins/trayicon/trayicon.c
17069                 Fix freeze with gtk-2.6, the easy way
17070                 (signal blocking helpless there...)
17071                 Closes bug #668.
17072
17073 2005-01-19 [colin]      1.0.0cvs2.1
17074
17075         * src/mbox.c
17076         * src/mbox.h
17077         * src/mainwindow.c
17078         * src/summaryview.c
17079         * src/summaryview.h
17080                 Sync with HEAD
17081
17082 2005-01-19 [paul]       1.0.0cvs1.1
17083
17084         * configure.ac
17085         * po/de.po
17086         * po/es.po
17087         * po/fr.po
17088         * po/hr.po
17089         * po/it.po
17090         * po/ja.po
17091         * po/ko.po
17092         * po/pt_BR.po
17093         * po/ru.po
17094         * po/sk.po
17095         * po/sr.po
17096                 sync with HEAD (update translations)
17097
17098 2005-01-18 [colin]      1.0.0cvs0.1
17099
17100         * src/foldersel.c
17101                 Specify search column - patch by Alfons
17102
17103 2005-01-18 [colin]      0.9.13cvs36.3
17104
17105         * src/prefs_toolbar.c
17106                 Change Delete to Remove
17107         * src/prefs_fonts.c
17108                 GTK2 version and leak fixes
17109         * src/prefs_actions.c
17110                 Add stock buttons.
17111                 All patches by Alfons
17112
17113 2005-01-17 [colin]      0.9.13cvs36.2
17114
17115         * src/compose.c
17116                 Fix DnD inserting twice. While at it,
17117                 add DnD support for text/plain in the
17118                 body, and add support in the headers.
17119
17120 2005-01-16 [colin]      0.9.13cvs36.1
17121
17122         * ChangeLog
17123         * ChangeLog.jp
17124         * ChangeLog.claws
17125                 Sync with HEAD (nothing applicable)
17126
17127 2005-01-16 [colin]      0.9.13cvs33.2
17128
17129         * src/prefs_toolbar.c
17130                 GTK2ize prefs_toolbar, by Alfons.
17131
17132 2005-01-14 [colin]      0.9.13cvs33.1
17133
17134         * src/html.c
17135         * src/msgcache.c
17136                 Sync with HEAD
17137
17138 2005-01-14 [colin]      0.9.13cvs32.1
17139
17140         * src/html.c
17141         * src/html.h
17142         * src/msgcache.c
17143         * AUTHORS
17144         * tools/calypso_convert.pl
17145                 Sync with HEAD
17146
17147 2005-01-08 [colin]      0.9.13cvs29.2
17148
17149         * src/prefs_filtering_action.c
17150         * src/prefs_filtering.c
17151                 2 more gtk2 patches by Alfons
17152
17153 2005-01-07 [paul]       0.9.13cvs29.1
17154
17155         * ChangeLog
17156         * ChangeLog.claws
17157         * ChangeLog.jp
17158         * configure.ac
17159         * src/pop.c
17160         * src/pop.h
17161                 sync with HEAD
17162
17163 2005-01-07 [colin]      0.9.13cvs28.3
17164
17165         * src/gtk/progressdialog.c
17166         * src/gtk/progressdialog.h
17167         * src/inc.c
17168         * src/send_message.c
17169                 GTK2 for the incorporation dialog. The CList isn't dead
17170                 yet, for a more smooth migration. Patch by Alfons.
17171
17172 2005-01-06 [colin]      0.9.13cvs28.2
17173
17174         * src/prefs_display_header.c
17175                 GTK2 conversion by Alfons
17176         * src/prefs_actions.c
17177         * src/prefs_matcher.c
17178                 Fix 2 leaks - patch by Alfons
17179
17180 2005-01-06 [colin]      0.9.13cvs28.1
17181
17182         * src/prefs_matcher.c
17183                 Sync with HEAD
17184
17185 2005-01-06 [colin]      0.9.13cvs27.4
17186
17187         * src/prefs_matcher.c
17188                 Fix double-free. Patch by Alfons
17189
17190 2005-01-06 [colin]      0.9.13cvs27.3
17191
17192         * src/prefs_matcher.c
17193                 GTK2 widgets + memleak
17194                 Patch by Alfons
17195
17196 2005-01-05 [colin]      0.9.13cvs27.2
17197
17198         * src/account.c
17199         * src/addr_compl.c
17200         * src/foldersel.c
17201         * src/stock_pixmap.c
17202         * src/stock_pixmap.h
17203                 3 more GTK2 patches by Alfons.
17204
17205 2005-01-04 [colin]      0.9.13cvs27.1
17206
17207         * src/folderview.c
17208         * src/imap_gtk.c
17209         * src/news_gtk.c
17210                 Sync with HEAD
17211
17212 2005-01-04 [colin]      0.9.13cvs25.9
17213
17214         * src/compose.c
17215                 Fix Show Ruler menuitem
17216         * src/prefs_template.c
17217                 Convert to GTK2
17218         * src/common/utils.c
17219                 Make auto pointer stuff handles NULLs
17220                 Patches by Alfons.
17221
17222 2005-01-04 [colin]      0.9.13cvs25.8
17223
17224         * src/compose.c
17225                 Move the attachment list to gtk2
17226                 Patch by Alfons.
17227
17228 2005-01-04 [colin]      0.9.13cvs25.7
17229
17230         * src/textview.c
17231                 Make some keys work again
17232                 Patch by SungHyun Nam <namsh@kldp.org>
17233
17234 2005-01-04 [colin]      0.9.13cvs25.6
17235
17236         * src/gtk/gtkshruler.c
17237                 Move the ruler to GTK2
17238                 Patch by Alfons
17239
17240 2005-01-03 [colin]      0.9.13cvs25.5
17241
17242         * src/compose.c
17243                 Fix my broken patch apply 
17244
17245 2005-01-03 [colin]      0.9.13cvs25.4
17246
17247         * src/common/utils.c
17248         * src/common/utils.h
17249         * src/gtk/prefswindow.c
17250                 Move auto pointer stuff to utils.c
17251                 Patch by Alfons again :)
17252
17253 2005-01-03 [colin]      0.9.13cvs25.3
17254
17255         * src/compose.c
17256         * src/prefs_gtk.c
17257         * src/prefs_template.c
17258         * src/textview.c
17259                 Empty text widgets with empty strings, not NULL char
17260                 Patch by SungHyun Nam <namsh@kldp_org>
17261
17262 2005-01-03 [colin]      0.9.13cvs25.2
17263
17264         * src/main.c
17265         * AUTHORS
17266                 Sync with HEAD
17267
17268 2005-01-03 [colin]      0.9.13cvs25.1
17269
17270         * src/pop.c
17271         * src/pop.h
17272                 Sync with HEAD
17273
17274 2005-01-03 [colin]      0.9.13cvs24.3
17275
17276         * src/account.c
17277                 Two patches from Alfons and Alex S Moore:
17278                 fix images, fix return value.
17279
17280 2005-01-01 [colin]      0.9.13cvs24.2
17281
17282         * src/prefs_actions.c
17283                 Fix over-zealous assertion. Patch by Alfons
17284
17285 2005-01-01 [colin]      0.9.13cvs24.1
17286
17287         * src/procmime.c
17288                 Sync with HEAD (leak fix)
17289
17290 2004-12-31 [colin]      0.9.13cvs23.2
17291
17292         * src/prefs_common.c
17293                 GTK2 widgets + stock buttons - patch by Alfons
17294
17295 2004-12-31 [paul]       0.9.13cvs23.1
17296
17297         * configure.ac
17298                 bump up EXTRA_VERSION to match (sync'ed) HEAD
17299         * src/gtk/pluginwindow.c
17300                 use GTK2 widgets and plug memory leaks,
17301                 patches by Alfons
17302
17303 2004-12-30 [colin]      0.9.13cvs22.4
17304
17305         * src/account.c
17306         * src/action.c
17307         * src/export.c
17308         * src/foldersel.c
17309         * src/import.c
17310         * src/message_search.c
17311         * src/prefs_actions.c
17312         * src/prefs_common.c
17313         * src/prefs_customheader.c
17314         * src/prefs_filtering.c
17315         * src/prefs_summary_column.c
17316         * src/summary_search.c
17317         * src/gtk/about.c
17318         * src/gtk/description_window.c
17319         * src/gtk/gtkutils.c
17320         * src/gtk/gtkutils.h
17321         * src/gtk/inputdialog.c
17322         * src/gtk/prefswindow.c
17323                 Use GTK2 stock buttons. Patches by Alfons.
17324
17325 2004-12-30 [colin]      0.9.13cvs22.3
17326
17327         * src/account.c
17328                 Sync with HEAD
17329         * src/prefs_actions.c
17330         * src/prefs_customheader.c
17331         * src/prefs_filtering.c
17332         * src/prefs_msg_colors.c
17333         * src/prefs_summary_column.c
17334         * src/gtk/prefswindow.c
17335                 Use GtkTreeView instead of deprecated 
17336                 widgets. Patches by Alfons.
17337
17338 2004-12-30 [paul]       0.9.13cvs22.2
17339
17340         * src/foldersel.c
17341                 use GTK 2 Tree View
17342                 patch by Alfons, with root folder sorting fix
17343                 by Stephan Sachse
17344
17345 2004-12-30 [paul]       0.9.13cvs22.1
17346
17347         * ChangeLog
17348         * ChangeLog.claws
17349         * ChangeLog.jp
17350         * NEWS
17351         * configure.ac
17352         * src/account.c
17353                 sync with HEAD
17354
17355 2004-12-22 [martin]     0.9.13cvs21.2
17356
17357         * src/action.c
17358                 free the command line after its use
17359
17360 2004-12-18 [paul]       0.9.13cvs21.1
17361
17362         * AUTHORS
17363         * ChangeLog
17364         * ChangeLog.claws
17365         * ChangeLog.jp
17366         * NEWS
17367         * configure.ac
17368         * src/action.c
17369         * src/compose.c
17370         * src/syldap.c
17371                 sync with HEAD
17372
17373 2004-12-17 [martin]     0.9.13cvs17.2
17374
17375         * src/action.c
17376                 convert actions input to locale
17377         * src/inc.c
17378                 convert notification command to locale
17379         * src/plugins/pgpmime/select-keys.c
17380                 convert attributes to utf8
17381
17382 2004-12-14 [colin]      0.9.13cvs17.1
17383
17384         * ChangeLog
17385         * ChangeLog.jp
17386         * ChangeLog.claws
17387         * src/action.c
17388         * src/common/utils.c
17389         * src/gtk/prefswindow.c
17390         * src/gtk/gtkutils.c
17391         * src/gtk/gtkutils.h
17392         * src/plugins/spamassassin/libspamc.c
17393                 Sync with HEAD
17394
17395 2004-12-13 [colin]      0.9.13cvs14.1
17396
17397         * src/quote_fmt_parse.y
17398                 Sync with HEAD
17399
17400 2004-12-10 [colin]      0.9.13cvs12.1
17401
17402         * src/prefs_themes.c
17403         * src/mainwindow.c
17404         * src/messageview.c
17405                 Sync with HEAD
17406
17407 2004-12-09 [colin]      0.9.13cvs10.1
17408
17409         * src/procmime.c
17410                 Sync with HEAD (fix B64 encoding from memory)
17411
17412 2004-12-08 [colin]      0.9.13cvs9.1
17413
17414         * src/gtk/colorlabel.c
17415                 Sync with HEAD
17416
17417 2004-12-08 [paul]       0.9.13cvs8.2
17418
17419         * src/gtk/pluginwindow.c
17420                 fix window resizing oddities
17421
17422 2004-12-08 [colin]      0.9.13cvs8.1
17423
17424         * src/quote_fmt_parse.y
17425                 Sync with HEAD
17426
17427 2004-12-08 [colin]      0.9.13cvs7.1
17428
17429         * src/matcher_parser_parse.y
17430         * src/msgcache.c
17431         * src/prefs_matcher.c
17432         * src/procheader.c
17433         * src/matcher.c
17434         * src/common/defs.h
17435         * po/sr.po
17436                 Sync with HEAD
17437
17438 2004-12-08 [colin]      0.9.13cvs6.1
17439
17440         * src/quote_fmt_parse.y
17441         * src/textview.c
17442                 Sync with HEAD
17443         * src/gtk/prefswindow.c
17444         * src/gtk/pluginwindow.c
17445                 Fix G_CALLBACKS protos (thanks to Alfons)
17446
17447 2004-12-07 [torte]      0.9.13cvs2.2
17448
17449         * src/procmime.c
17450                 [Bug 650] reply button causes crash
17451                 Thanks to David Relson and Christoph
17452
17453 2004-12-07 [colin]      0.9.13cvs2.1
17454
17455         * ChangeLog.claws
17456         * AUTHORS
17457         * po/sk.po
17458         * src/procmime.c
17459         * src/prefs_account.c
17460         * src/common/smtp.c
17461         * src/common/smtp.h
17462                 Sync with HEAD
17463
17464 2004-12-06 [colin]      0.9.12cvs187.1
17465
17466         * ChangeLog.claws
17467         * INSTALL
17468         * Makefile.am
17469         * README.claws
17470         * TODO.claws
17471         * configure.ac
17472         * po/bg.po
17473         * po/cs.po
17474         * po/el.po
17475         * po/en_GB.po
17476         * po/es.po
17477         * po/fr.po
17478         * po/hr.po
17479         * po/hu.po
17480         * po/it.po
17481         * po/ja.po
17482         * po/ko.po
17483         * po/nl.po
17484         * po/pl.po
17485         * po/pt_BR.po
17486         * po/ru.po
17487         * po/sk.po
17488         * po/sr.po
17489         * po/sv.po
17490         * po/zh_CN.po
17491         * po/zh_TW.Big5.po
17492         * src/compose.c
17493         * tools/Makefile.am
17494         * tools/README
17495         * tools/filter_conv.pl
17496         * tools/kdeservicemenu/README
17497         * tools/kdeservicemenu/template_sylpheed-attach-files.desktop
17498         * tools/kdeservicemenu/template_sylpheed-compress-attach.desktop
17499                 Sync with HEAD
17500
17501 2004-12-04 [colin]      0.9.12cvs183.1
17502
17503         * src/compose.c
17504                 Sync with HEAD (compose window position saving)
17505
17506 2004-12-04 [paul]       0.9.12cvs182.3
17507
17508         * src/messageview.c
17509         * src/mimeview.c
17510         * src/prefs_customheader.c
17511         * src/gtk/quicksearch.c
17512                 replace some forgotten GTK_SIGNAL_FUNCs
17513
17514 2004-12-04 [paul]       0.9.12cvs182.2
17515
17516         * src/Makefile.am
17517                 remove 'pixmaps/dir_noselect.xpm'. from local patch,
17518                 committed in error      
17519
17520 2004-12-04 [paul]       0.9.12cvs182.1
17521
17522         * ChangeLog
17523         * ChangeLog.claws
17524         * ChangeLog.jp
17525         * INSTALL
17526         * NEWS
17527         * README
17528         * README.jp
17529         * configure.ac
17530         * doc/manual/ja/Makefile.am
17531         * doc/manual/ja/sylpheed-1.html
17532         * doc/manual/ja/sylpheed-10.html
17533         * doc/manual/ja/sylpheed-11.html
17534         * doc/manual/ja/sylpheed-12.html
17535         * doc/manual/ja/sylpheed-13.html
17536         * doc/manual/ja/sylpheed-14.html
17537         * doc/manual/ja/sylpheed-15.html
17538         * doc/manual/ja/sylpheed-16.html
17539         * doc/manual/ja/sylpheed-17.html
17540         * doc/manual/ja/sylpheed-18.html
17541         * doc/manual/ja/sylpheed-19.html
17542         * doc/manual/ja/sylpheed-2.html
17543         * doc/manual/ja/sylpheed-20.html
17544         * doc/manual/ja/sylpheed-3.html
17545         * doc/manual/ja/sylpheed-4.html
17546         * doc/manual/ja/sylpheed-5.html
17547         * doc/manual/ja/sylpheed-6.html
17548         * doc/manual/ja/sylpheed-7.html
17549         * doc/manual/ja/sylpheed-8.html
17550         * doc/manual/ja/sylpheed-9.html
17551         * doc/manual/ja/sylpheed.html
17552         * doc/manual/ja/sylpheed.sgml
17553         * po/de.po
17554         * src/Makefile.am
17555         * src/compose.c
17556         * src/procmime.c
17557         * src/pixmaps/regular.xpm **REMOVED**
17558         * src/plugins/pgpmime/pgpmime.c
17559         * src/plugins/pgpmime/plugin.c
17560         * src/plugins/pgpmime/prefs_gpg.c
17561                 sync with HEAD
17562
17563 2004-12-03 [paul]       0.9.12cvs180.1
17564
17565         * ChangeLog
17566         * ChangeLog.claws
17567         * ChangeLog.jp
17568         * configure.ac
17569         * src/Makefile.am
17570         * src/pop.c
17571         * src/common/utils.c
17572         * src/common/utils.h
17573         * src/pixmaps/continue.xpm
17574         * src/pixmaps/dir_close.xpm
17575         * src/pixmaps/dir_open.xpm
17576         * src/pixmaps/drafts_close.xpm
17577         * src/pixmaps/drafts_open.xpm
17578         * src/pixmaps/folder.xpm **REMOVED**
17579         * src/pixmaps/group.xpm
17580         * src/pixmaps/unread.xpm
17581                 sync with HEAD
17582
17583 2004-12-02 [colin]      0.9.12cvs179.1
17584
17585         * src/compose.c
17586                 Sync with HEAD (non-duplicated reedition)
17587
17588 2004-12-02 [colin]      0.9.12cvs178.1
17589
17590         * src/compose.c
17591                 Sync with HEAD (linewrap_quote fix)
17592
17593 2004-12-01 [colin]      0.9.12cvs177.3
17594
17595         * src/addrharvest.c
17596                 Replace sizeof with strlen
17597
17598 2004-12-01 [paul]       0.9.12cvs177.2
17599
17600         * src/addrharvest.c
17601                 fix 'harvest addresses'
17602
17603 2004-11-30 [colin]      0.9.12cvs177.1
17604
17605         * src/gtk/prefswindow.c
17606         * src/gtk/pluginwindow.c
17607                 Sync with HEAD
17608
17609 2004-11-29 [colin]      0.9.12cvs176.1
17610
17611         * src/folderview.c
17612                 sync with HEAD (Fix disappearing separators in folderview's popup)
17613
17614 2004-11-29 [colin]      0.9.12cvs175.1
17615
17616         * src/procmime.c
17617                 Sync with head (another format fix)
17618
17619 2004-11-29 [colin]      0.9.12cvs174.1
17620
17621         * src/pop.c
17622                 Sync with HEAD (format string fix)
17623
17624 2004-11-26 [colin]      0.9.12cvs173.1
17625
17626         * src/common/smtp.c
17627         * src/common/smtp.h
17628                 Sync with HEAD
17629
17630 2004-11-24 [colin]      0.9.12cvs172.1
17631
17632         * src/plugins/pgpmime/pgpmime.c
17633                 Sync with HEAD
17634
17635 2004-11-24 [colin]      0.9.12cvs171.1
17636
17637         * src/plugins/pgpmime/pgpmime.c
17638                 Sync with head (gpgmectx leaks)
17639
17640 2004-11-24 [colin]      0.9.12cvs169.1
17641
17642         * src/plugins/pgpmime/plugin.c
17643         * src/plugins/trayicon/Makefile.am
17644         * src/plugins/trayicon/newmarkedmail.xpm
17645         * src/plugins/trayicon/trayicon.c
17646         * src/plugins/trayicon/unreadmarkedmail.xpm
17647                 Sync with HEAD
17648
17649 2004-11-23 [colin]      0.9.12cvs168.1
17650
17651         * src/partial_download.c
17652         * src/partial_download.h
17653         * src/plugins/pgpmime/plugin.c
17654                 Sync with HEAD
17655
17656 2004-11-23 [colin]      0.9.12cvs166.1
17657
17658         * src/Makefile.am
17659         * src/codeconv.c
17660         * src/compose.c
17661         * src/folderview.c
17662         * src/main.c
17663         * src/partial_download.c
17664         * src/partial_download.h
17665         * src/prefs_account.c
17666         * src/prefs_account.h
17667         * src/privacy.c
17668         * src/privacy.h
17669         * src/procmime.c
17670         * src/common/Makefile.am
17671         * src/common/base64.h
17672         * src/common/partial_download.c
17673         * src/common/partial_download.h
17674         * src/gtk/prefswindow.c
17675         * src/gtk/prefswindow.h
17676         * src/plugins/pgpmime/pgpmime.c
17677         * src/plugins/pgpmime/prefs_gpg.c
17678         * src/plugins/pgpmime/prefs_gpg.h
17679         * src/plugins/pgpmime/sgpgme.c
17680         * src/plugins/pgpmime/sgpgme.h
17681                 Sync with HEAD
17682
17683 2004-11-23 [colin]      0.9.12cvs163.1
17684
17685         * src/main.c
17686                 Sync with HEAD (cursor optimization)
17687
17688 2004-11-23 [colin]      0.9.12cvs162.1
17689
17690         * src/prefs_common.c
17691         * src/prefs_themes.c
17692         * src/procmsg.c
17693                 Sync with HEAD
17694
17695 2004-11-23 [colin]      0.9.12cvs158.9
17696
17697         * src/compose.c
17698                 Fix double-free when forwarding
17699         * src/msgcache.c
17700                 Fix leak on error path
17701                 
17702
17703 2004-11-23 [colin]      0.9.12cvs158.8
17704
17705         * src/compose.c
17706                 Fix possible double-free
17707                 Spotted by Alfons
17708
17709 2004-11-23 [colin]      0.9.12cvs158.7
17710
17711         * src/compose.c
17712                 Fix some signal handlers' prototypes
17713                 Spotted by Alfons
17714
17715 2004-11-22 [colin]      0.9.12cvs158.6
17716
17717         * src/compose.c
17718                 Remove unneeded code and duplicated
17719                 wrapping - patch by Alfons
17720
17721 2004-11-22 [colin]      0.9.12cvs158.5
17722
17723         * src/prefs_themes.c
17724                 Fix oversized selector
17725
17726 2004-11-22 [colin]      0.9.12cvs158.4
17727
17728         * src/compose.c
17729                 fix dump_text()
17730                 patch by Alfons
17731
17732 2004-11-19 [colin]      0.9.12cvs158.3
17733
17734         * src/textview.c
17735                 Add a context menu on links (open, copy)
17736
17737 2004-11-18 [paul]       0.9.12cvs158.2
17738
17739         * src/addrgather.c
17740         * src/exphtmldlg.c
17741         * src/expldifdlg.c
17742         * src/mimeview.c
17743         * src/prefs_common.c
17744         * src/plugins/image_viewer/viewer.c
17745         * src/plugins/spamassassin/spamassassin_gtk.c
17746                 replace deprecated gtk_notebook_set_page
17747                 and gtk_notebook_current_page
17748
17749 2004-11-18 [paul]       0.9.12cvs158.1
17750
17751         * configure.ac
17752         * src/compose.c
17753         * src/mainwindow.c
17754         * src/messageview.c
17755         * src/prefs_common.c
17756         * src/common/utils.c
17757         * src/common/utils.h
17758                 sync with HEAD
17759
17760 2004-11-17 [colin]      0.9.12cvs156.1
17761
17762         * src/prefs_account.c
17763         * src/prefs_account.h
17764         * src/procmsg.c
17765                 Sync with HEAD (add pref to store encrypted mails encrypted)
17766
17767 2004-11-17 [paul]       0.9.12cvs155.1
17768
17769         * ChangeLog
17770         * ChangeLog.claws
17771         * ChangeLog.jp
17772         * NEWS
17773         * configure.ac
17774         * src/compose.c
17775         * src/jpilot.c
17776         * src/privacy.c
17777         * src/procmime.c
17778         * src/procmime.h
17779         * src/procmsg.c
17780         * src/toolbar.c
17781         * src/pixmaps/error.xpm
17782                 sync with HEAD
17783
17784 2004-11-17 [colin]      0.9.12cvs151.1
17785
17786         * src/plugins/pgpmime/pgpmime.c
17787                 Sync with HEAD (remove debug printf)
17788
17789 2004-11-17 [colin]      0.9.12cvs150.1
17790
17791         * src/plugins/pgpmime/pgpmime.c
17792                 Sync with HEAD (off-by-one fix)
17793
17794 2004-11-17 [colin]      0.9.12cvs149.1
17795
17796         * src/procmsg.c
17797                 Sync with HEAD (coding style fixes)
17798
17799 2004-11-16 [colin]      0.9.12cvs148.1
17800
17801         * src/procmsg.c
17802                 Sync with head (Fix the fix)
17803
17804 2004-11-16 [colin]      0.9.12cvs147.1
17805
17806         * src/procmsg.c
17807                 Sync with Main (leak fix)
17808
17809 2004-11-16 [colin]      0.9.12cvs146.14
17810
17811         * src/compose.c
17812                 Remove useless chunk of code
17813                 Patch by Alfons
17814
17815 2004-11-15 [colin]      0.9.12cvs146.13
17816
17817         * src/compose.c
17818                 Fix drafting after insertion
17819                 Patch by Alfons
17820
17821 2004-11-15 [colin]      0.9.12cvs146.12
17822
17823         * src/compose.c
17824         * src/prefs_filtering.c
17825         * src/prefs_filtering_action.c
17826         * src/prefs_toolbar.c
17827                 Fix some const-correctness
17828
17829 2004-11-15 [colin]      0.9.12cvs146.11
17830
17831         * src/summaryview.c
17832         * src/prefs_themes.c
17833         * src/messageview.c
17834                 Fix some leaks
17835
17836 2004-11-15 [colin]      0.9.12cvs146.10
17837
17838         * src/codeconv.c
17839                 More unreadable locale fixes
17840
17841 2004-11-14 [colin]      0.9.12cvs146.9
17842
17843         * src/textview.c
17844                 Fix uri_security_check
17845                 Patch by Alfons
17846
17847 2004-11-13 [paul]       0.9.12cvs146.8
17848
17849         * src/folder.c
17850         * src/procmime.c
17851                 fix 2 bugs introduced in last commit
17852
17853 2004-11-13 [paul]       0.9.12cvs146.7
17854
17855         * src/compose.c
17856         * src/exporthtml.c
17857         * src/exportldif.c
17858         * src/folder.c
17859         * src/imap.c
17860         * src/imap_gtk.c
17861         * src/main.c
17862         * src/mainwindow.c
17863         * src/messageview.c
17864         * src/mh_gtk.c
17865         * src/prefs_themes.c
17866         * src/procmime.c
17867         * src/setup.c
17868         * src/summaryview.c
17869                 replace deprecated g_basename
17870
17871 2004-11-13 [paul]       0.9.12cvs146.6
17872
17873         * src/compose.c
17874         * src/imap.c
17875         * src/matcher_parser.h
17876         * src/matcher_parser_parse.y
17877         * src/prefs_filtering.c
17878         * src/prefs_filtering_action.c
17879         * src/prefs_themes.c
17880         * src/prefs_toolbar.c
17881         * src/common/utils.c
17882                 various small fixes/cleanups
17883
17884 2004-11-12 [colin]      0.9.12cvs146.5
17885
17886         * src/textview.c
17887                 Validate event's origin on visibility notify
17888                 Patch by Alfons.
17889
17890 2004-11-12 [paul]       0.9.12cvs146.4
17891
17892         * src/exporthtml.c
17893         * src/exportldif.c
17894         * src/imap.c
17895         * src/mh.c
17896         * src/mimeview.c
17897         * src/prefs_spelling.c
17898         * src/prefs_themes.c
17899                 replace deprecated g_dirname    
17900
17901 2004-11-12 [colin]      0.9.12cvs146.3
17902
17903         * src/textview.c
17904                 Some coding style fixes
17905
17906 2004-11-12 [colin]      0.9.12cvs146.2
17907
17908         * src/codeconv.c
17909                 We want to replace _all_ extended chars in
17910                 conv_unreadable_*, because any string containing
17911                 extended chars not parsing as UTF8 is 
17912                 undisplayed on gtk2.
17913
17914 2004-11-12 [paul]       0.9.12cvs146.1
17915
17916         * ChangeLog
17917         * ChangeLog.claws
17918         * ChangeLog.jp
17919         * NEWS
17920         * configure.ac
17921         * src/account.c
17922         * src/folderview.c
17923         * src/folderview.h
17924         * src/imap.c
17925         * src/imap_gtk.c
17926         * src/inc.c
17927         * src/mainwindow.c
17928         * src/mh_gtk.c
17929         * src/news_gtk.c
17930         * src/pop.c
17931         * src/prefs_account.c
17932         * src/prefs_account.h
17933         * src/prefs_ext_prog.c
17934         * src/procmime.c
17935         * src/procmime.h
17936         * src/procmsg.c
17937         * src/procmsg.h
17938         * src/summary_search.c
17939         * src/summaryview.c
17940         * src/textview.c
17941         * src/common/defs.h
17942         * src/common/utils.c
17943         * src/common/utils.h
17944         * src/gtk/menu.c
17945         * src/gtk/menu.h
17946                 sync with HEAD
17947
17948 2004-11-11 [colin]      0.9.12cvs144.2
17949
17950         * src/textview.c
17951                 Fix URI range selection (patch by Alfons)
17952
17953 2004-11-09 [colin]      0.9.12cvs144.1
17954
17955         * ChangeLog.claws
17956         * src/compose.c
17957         * src/folder.c
17958         * src/folder_item_prefs.c
17959         * src/prefs_account.c
17960         * src/prefs_account.h
17961         * src/plugins/pgpmime/pgpmime.c
17962                 Sync with HEAD
17963
17964 2004-11-08 [colin]      0.9.12cvs143.1
17965
17966         * src/summaryview.c
17967                 Sync with HEAD (optimize quicksearch)
17968
17969 2004-11-08 [colin]      0.9.12cvs142.2
17970
17971         * src/compose.c
17972                 Don't wrap when Edit/Auto wrapping is disabled
17973
17974 2004-11-08 [colin]      0.9.12cvs142.1
17975
17976         * src/textview.c
17977                 Sync with HEAD
17978
17979 2004-11-08 [colin]      0.9.12cvs141.1
17980
17981         * src/textview.c
17982                 Sync with HEAD (fix some mail URIs)
17983
17984 2004-11-08 [colin]      0.9.12cvs140.3
17985
17986         * src/textview.c
17987                 o Use text cursor instead of arrow when
17988                   not on a link
17989                 o Fix handling of contiguous links (as in
17990                   "colin@colino.net" <colin@colino.net>)
17991                   This one unveils a bug in get_email_part()
17992
17993 2004-11-07 [colin]      0.9.12cvs140.2
17994
17995         * src/textview.c
17996                 Fix memleak. Patch by Alfons.
17997
17998 2004-11-06 [colin]      0.9.12cvs140.1
17999
18000         * src/compose.c
18001                 Sync with HEAD (don't ask passphrase
18002                 when drafting)
18003
18004 2004-11-06 [paul]       0.9.12cvs139.2
18005
18006         * AUTHORS
18007         * src/textview.c
18008         * src/textview.h
18009                 textview URI handling. hovering over a 
18010                 link displays it in the status bar,
18011                 and changes the mouse pointer to a hand 
18012                 cursor. a link is activated with a single 
18013                 click. (Modified from the) patch by Jean-Yves 
18014                 Lefort <jylefort@users.sourceforge.net>
18015                 
18016
18017 2004-11-05 [colin]      0.9.12cvs139.1
18018
18019         * src/compose.c
18020         * src/procmime.c
18021                 Sync with HEAD again ^^
18022
18023 2004-11-05 [colin]      0.9.12cvs139.1
18024
18025         * src/compose.c
18026         * src/procmime.c
18027                 Sync with HEAD
18028
18029 2004-11-03 [paul]       0.9.12cvs138.1
18030
18031         * ChangeLog.claws
18032         * configure.ac
18033         * po/POTFILES.in
18034         * src/prefs_ext_prog.c
18035         * src/procmime.c
18036         * tools/kdeservicemenu/README
18037         * tools/kdeservicemenu/template_sylpheed-attach-files.desktop
18038         * tools/kdeservicemenu/template_sylpheed-compress-attach.desktop
18039                 sync with HEAD
18040
18041 2004-11-01 [christoph]  0.9.12cvs136.2
18042
18043         * src/procmime.c
18044                 convert MIME parameters to UTF-8
18045
18046 2004-10-29 [colin]      0.9.12cvs136.1
18047
18048         * src/common/utils.c
18049                 Sync with HEAD (don't use '=' in mime boundary)
18050
18051 2004-10-29 [paul]       0.9.12cvs135.1
18052
18053         * configure.ac
18054         * doc/src/rfc2231.txt
18055         * src/procmime.c
18056         * src/common/quoted-printable.c
18057         * src/common/utils.c
18058         * src/common/utils.h
18059                 sync with HEAD
18060
18061 2004-10-27 [paul]       0.9.12cvs134.1
18062
18063         * configure.ac
18064         * src/main.c
18065         * src/procmime.c
18066         * src/plugins/pgpmime/pgpmime.c
18067                 sync with HEAD
18068
18069 2004-10-26 [paul]       0.9.12cvs132.3
18070
18071         * src/account.c
18072         * src/addressbook.c
18073         * src/addrgather.c
18074         * src/addrharvest.c
18075         * src/codeconv.c
18076         * src/compose.c
18077         * src/customheader.c
18078         * src/editaddress.c
18079         * src/editgroup.c
18080         * src/enriched.c
18081         * src/expldifdlg.c
18082         * src/exporthtml.c
18083         * src/exportldif.c
18084         * src/folder.c
18085         * src/foldersel.c
18086         * src/folderview.c
18087         * src/grouplistdialog.c
18088         * src/html.c
18089         * src/imap.c
18090         * src/jpilot.c
18091         * src/ldapserver.c
18092         * src/ldif.c
18093         * src/mimeview.c
18094         * src/news.c
18095         * src/news_gtk.c
18096         * src/pop.c
18097         * src/prefs_display_header.c
18098         * src/prefs_gtk.c
18099         * src/prefs_msg_colors.c
18100         * src/prefs_toolbar.c
18101         * src/procheader.c
18102         * src/procmime.c
18103         * src/summaryview.c
18104         * src/textview.c
18105         * src/toolbar.c
18106         * src/vcard.c
18107         * src/common/mgutils.c
18108         * src/common/nntp.c
18109         * src/common/smtp.c
18110         * src/common/template.c
18111         * src/common/utils.c
18112         * src/common/xmlprops.c
18113         * src/plugins/pgpmime/pgpmime.c
18114         * src/plugins/pgpmime/select-keys.c
18115         * src/plugins/pgpmime/sgpgme.c
18116                 replace deprecated g_strcasecmp(), g_strncasecmp(),
18117                 g_string_sprintfa(), gtk_notebook_current_page()
18118
18119 2004-10-26 [colin]      0.9.12cvs132.2
18120
18121         * src/prefs_folder_item.c
18122                 Fix default-account selection
18123
18124 2004-10-21 [colin]      0.9.12cvs133
18125
18126         * src/compose.c
18127                 Sync with HEAD (Remove extra separator in compose's Options)
18128         * src/textview.c
18129                 Set wrapping to char
18130
18131 2004-10-21 [paul]       0.9.12cvs131.2
18132
18133         * src/compose.c
18134         * src/sourcewindow.c
18135                 fix wrapping
18136                 fix window shrinking 
18137
18138 2004-10-21 [colin]      0.9.12cvs131.1
18139
18140         * ChangeLog.claws
18141         * src/compose.c
18142                 Sync with HEAD
18143
18144 2004-10-21 [paul]       0.9.12cvs130.2
18145
18146         * src/prefs_folder_item.c
18147                 sync with HEAD (Apply to subfolders)
18148
18149 2004-10-19 [colin]      0.9.12cvs130.1
18150
18151         * ChangeLog.claws
18152         * src/compose.c
18153         * src/common/utils.c
18154         * src/gtk/menu.c
18155                 Sync with HEAD
18156
18157 2004-10-19 [colin]      0.9.12cvs128.1
18158
18159         * src/addrbook.c
18160         * src/addrcache.c
18161         * src/addressbook.c
18162         * src/codeconv.c
18163         * src/compose.c
18164         * src/customheader.c
18165         * src/editaddress.c
18166         * src/editgroup.c
18167         * src/exporthtml.c
18168         * src/folder.c
18169         * src/folderview.c
18170         * src/imap.c
18171         * src/jpilot.c
18172         * src/main.c
18173         * src/matcher_parser_parse.y
18174         * src/mbox.c
18175         * src/pop.c
18176         * src/prefs_account.c
18177         * src/prefs_gtk.c
18178         * src/prefs_msg_colors.c
18179         * src/procheader.c
18180         * src/procmime.c
18181         * src/procmime.h
18182         * src/procmsg.c
18183         * src/summaryview.c
18184         * src/textview.c
18185         * src/common/base64.c
18186         * src/common/partial_download.c
18187         * src/common/socket.c
18188         * src/common/sylpheed.c
18189         * src/common/utils.c
18190         * src/common/utils.h
18191         * src/gtk/pluginwindow.c
18192         * src/gtk/quicksearch.c
18193         * src/plugins/clamav/clamav_plugin.c
18194         * src/plugins/clamav/clamav_plugin.h
18195         * src/plugins/clamav/clamav_plugin_gtk.c
18196         * src/plugins/pgpmime/passphrase.c
18197         * src/plugins/pgpmime/pgpmime.c
18198         * src/plugins/pgpmime/plugin.c
18199         * src/plugins/pgpmime/prefs_gpg.c
18200         * src/plugins/pgpmime/prefs_gpg.h
18201         * src/plugins/pgpmime/select-keys.c
18202         * src/plugins/pgpmime/sgpgme.c
18203         * src/plugins/spamassassin/libspamc.c
18204         * src/plugins/spamassassin/spamassassin.c
18205         * src/plugins/spamassassin/spamassassin.h
18206         * src/plugins/spamassassin/spamassassin_gtk.c
18207         * src/plugins/trayicon/trayicon.c
18208         * src/plugins/trayicon/libeggtrayicon/gtkplugxembed.c
18209                 Sync with HEAD
18210
18211 2004-10-14 [colin]      0.9.12cvs126.2
18212
18213         * src/codeconv.c
18214         * src/textview.c
18215                 Fix conv_unreadable_locale
18216
18217 2004-10-13 [colin]      0.9.12cvs126.1
18218
18219         * src/compose.c
18220                 Sync with HEAD (don't convert charset for 
18221                 drafted messages, minor cleanup)
18222
18223 2004-10-13 [colin]      0.9.12cvs125.1
18224
18225         * po/POTFILES.in
18226                 Sync with HEAD (POTFILES fix)
18227
18228 2004-10-12 [colin]      0.9.12cvs124.3
18229
18230         * src/compose.c
18231                 Fix encoding bug from latest sync
18232
18233 2004-10-12 [paul]       0.9.12cvs124.2
18234
18235         * src/plugins/pgpmime/prefs_gpg.c
18236         * src/plugins/pgpmime/prefs_gpg.h
18237                 forgotten in last commit        
18238
18239 2004-10-12 [paul]       0.9.12cvs124.1
18240
18241         * ChangeLog.claws
18242         * configure.ac
18243         * m4/spamassassin.m4
18244         * src/Makefile.am
18245         * src/account.c
18246         * src/compose.c
18247         * src/compose.h
18248         * src/crash.c
18249         * src/main.c
18250         * src/mimeview.c
18251         * src/passphrase.c
18252         * src/passphrase.h
18253         * src/prefs_account.c
18254         * src/prefs_account.h
18255         * src/prefs_common.c
18256         * src/privacy.c
18257         * src/privacy.h
18258         * src/procmime.c
18259         * src/procmime.h
18260         * src/procmsg.c
18261         * src/rfc2015.c
18262         * src/rfc2015.h
18263         * src/select-keys.c
18264         * src/select-keys.h
18265         * src/textview.c
18266         * src/common/utils.c
18267         * src/common/utils.h
18268         * src/gtk/about.c
18269         * src/plugins/pgpmime/Makefile.am
18270         * src/plugins/pgpmime/passphrase.c
18271         * src/plugins/pgpmime/passphrase.h
18272         * src/plugins/pgpmime/pgpmime.c
18273         * src/plugins/pgpmime/plugin.c
18274         * src/plugins/pgpmime/select-keys.c
18275         * src/plugins/pgpmime/select-keys.h
18276         * src/plugins/pgpmime/sgpgme.c
18277         * src/plugins/pgpmime/sgpgme.h
18278                 sync with HEAD
18279
18280 2004-10-04 [colin]      0.9.12cvs122.1
18281
18282         * src/mainwindow.c
18283         * src/messageview.c
18284         * src/messageview.h
18285         * src/textview.c
18286                 Sync with HEAD
18287
18288 2004-10-04 [colin]      0.9.12cvs121.1
18289
18290         * src/summaryview.c
18291                 Sync with HEAD
18292
18293 2004-10-04 [paul]       0.9.12cvs120.1
18294
18295         * configure.ac
18296                 sync with HEAD [don't try to build 
18297                 pgpmime plugin when gpgme is disabled]
18298
18299 2004-10-03 [colin]      0.9.12cvs119.3
18300
18301         * src/gtk/gtksctree.c
18302                 Lots of side effects. Put back as before 117.2.
18303         * src/summaryview.c
18304                 Fix bug #602
18305
18306 2004-10-03 [colin]      0.9.12cvs119.2
18307
18308         * src/gtk/gtksctree.c
18309                 Revert 608 fix that doesn't work that good
18310
18311 2004-10-02 [colin]      0.9.12cvs119.1
18312
18313         * src/mainwindow.c
18314         * src/messageview.c
18315         * src/prefs_common.h
18316         * src/procmime.c
18317         * src/procmime.h
18318         * src/textview.c
18319                 Sync with HEAD
18320         * src/gtk/gtksctree.c
18321                 Close bug #608
18322
18323 2004-10-01 [colin]      0.9.12cvs118.1
18324
18325         * src/mimeview.c
18326                 Sync with HEAD (better Save All fix)
18327
18328 2004-10-01 [colin]      0.9.12cvs117.2
18329
18330         * src/gtk/gtksctree.c
18331                 Faster on selection
18332
18333 2004-10-01 [colin]      0.9.12cvs117.1
18334
18335         * src/mimeview.c
18336                 Sync with HEAD (Save All: only attachments)
18337
18338 2004-10-01 [paul]       0.9.12cvs116.1
18339
18340         * ChangeLog.claws
18341         * configure.ac
18342         * src/account.c
18343         * src/prefs_common.c
18344         * src/gtk/colorlabel.c
18345                 sync with HEAD
18346
18347 2004-09-30 [colin]      0.9.12cvs115.1
18348
18349         * src/stock_pixmap.c
18350         * src/stock_pixmap.h
18351         * src/folderview.c
18352         * src/Makefile.am
18353         * src/pixmaps/read.xpm
18354                 Sync with HEAD (new pixmap)
18355
18356 2004-09-29 [colin]      0.9.12cvs114.1
18357
18358         * src/compose.c
18359                 Sync with HEAD
18360                 Fix focus handling in headers
18361
18362 2004-09-29 [paul]       0.9.12cvs113.1
18363
18364         * src/quote_fmt_parse.y
18365                 sync with HEAD
18366  
18367
18368 2004-09-28 [colin]      0.9.12cvs112.1
18369
18370         * src/folderview.c
18371         * src/mainwindow.c
18372                 Sync with HEAD
18373
18374 2004-09-28 [colin]      0.9.12cvs110.1
18375
18376         * src/folderview.c
18377                 Sync with HEAD (Contextual Empty trash menu)
18378
18379 2004-09-28 [colin]      0.9.12cvs108.1
18380
18381         * src/addressbook.c
18382                 Sync with HEAD (addressbook edit on double-click)
18383
18384 2004-09-28 [colin]      0.9.12cvs106.1
18385
18386         * src/inc.c
18387                 Sync with HEAD (folder_item freeze on inc)
18388
18389 2004-09-27 [colin]      0.9.12cvs105.1
18390
18391         * src/folderview.c
18392                 Sync with HEAD (right-align new and unread column)
18393
18394 2004-09-27 [colin]      0.9.12cvs104.1
18395
18396         * src/main.c
18397                 Sync with HEAD (revert 0.9.12cvs101)
18398
18399 2004-09-24 [colin]      0.9.12cvs103.2
18400
18401         * src/wizard.c
18402                 Fix gtk warnings and use domain part of the email address 
18403                 when domain detection fails (no dot in domain name)
18404
18405 2004-09-23 [colin]      0.9.12cvs103.1
18406
18407         * src/plugins/spamassassin/libspamc.c
18408         * src/plugins/spamassassin/libspamc.h
18409         * src/plugins/spamassassin/utils.c
18410         * src/plugins/spamassassin/utils.h
18411                 Sync with HEAD (Update spamassassin to 3.0)
18412
18413 2004-09-21 [colin]      0.9.12cvs102.3
18414
18415         * src/action.c
18416                 Add horizontal scrollbar in action io dialog as needed
18417                 Patch by Alfons.
18418
18419 2004-09-20 [colin]      0.9.12cvs102.2
18420
18421         * src/plugins/image_viewer/viewer.c
18422                 Remove imlib stuff
18423                 use gtk_pixmap_set when clearing
18424                 (would be better to use gtkImages, but causes size-allocate 
18425                 signals storm)
18426
18427 2004-09-17 [paul]       0.9.12cvs102.1
18428
18429         * ChangeLog
18430         * ChangeLog.claws
18431         * ChangeLog.jp
18432         * configure.ac
18433         * src/inc.c
18434                 sync with HEAD
18435
18436
18437 2004-09-17 [colin]      0.9.12cvs101.1
18438
18439         * ChangeLog.claws
18440         * src/main.c
18441                 Sync with HEAD (fix segs at exit)
18442
18443 2004-09-14 [colin]      0.9.12cvs99.5
18444
18445         * src/common/socket.c
18446         * AUTHORS
18447                 Fix send error on 64bit platforms
18448                 Patch by Guy Rouillier <guy-rouillier@speakeasy.net>
18449
18450 2004-09-14 [colin]      0.9.12cvs99.4
18451
18452         * src/action.c
18453                 Fix action output with utf8 
18454                 Patch by Alfons.
18455
18456 2004-09-14 [colin]      0.9.12cvs99.3
18457
18458         * ChangeLog.claws
18459         * src/folder.c
18460                 Sync with HEAD
18461
18462 2004-09-09 [colin]      0.9.12cvs99.2
18463
18464         * src/action.c
18465                 Fix progress bar (displaying "Completed %v/%u")
18466                 Patch by Alfons.
18467
18468 2004-09-08 [colin]      0.9.12cvs99.1
18469
18470         * src/account.c
18471         * src/folder.c
18472         * src/procmsg.c
18473         * src/procmsg.h
18474         * src/plugins/pgpmime/pgpmime.c
18475                 Sync with HEAD
18476
18477 2004-09-08 [colin]      0.9.12cvs97.2
18478
18479         * src/summaryview.c
18480                 Don't select mails in collapsed threads 
18481                 when navigating with up/down
18482
18483 2004-09-07 [colin]      0.9.12cvs97.1
18484
18485         * src/inc.c
18486                 Sync with HEAD (meaningful error messages)
18487
18488 2004-09-06 [colin]      0.9.12cvs96.1
18489
18490         * src/toolbar.c
18491                 Sync with HEAD (fix Redirect graying out)
18492
18493 2004-09-06 [colin]      0.9.12cvs95.1
18494
18495         * src/summaryview.c
18496         * src/mimeview.c
18497                 Sync with HEAD (fix dropped URIs)
18498
18499 2004-09-06 [colin]      0.9.12cvs94.1
18500
18501         * src/addressbook.c
18502         * src/addressitem.h
18503         * src/addritem.c
18504         * src/addritem.h
18505                 Sync with HEAD (addressbook DnD)
18506
18507 2004-09-03 [colin]      0.9.12cvs93.1
18508
18509         * src/summaryview.c
18510                 Sync with HEAD (next/prev unread)
18511
18512 2004-09-03 [colin]      0.9.12cvs92.1
18513
18514         * src/prefs_common.c
18515         * src/prefs_common.h
18516         * src/summaryview.c
18517                 Sync with HEAD ('mark_as_read_delay' pref)
18518
18519 2004-09-02 [colin]      0.9.12cvs91.2
18520
18521         * src/common/xml.c
18522                 Fix leak
18523
18524 2004-09-02 [colin]      0.9.12cvs91.1
18525
18526         * src/gtk/menu.c
18527                 Sync with HEAD (menu accel don't work, but whatever)
18528
18529 2004-09-02 [colin]      0.9.12cvs90.1
18530
18531         * src/account.c
18532                 Sync with HEAD (fix bug 582)
18533
18534 2004-09-02 [colin]      0.9.12cvs89.1
18535
18536         * src/addrindex.c
18537                 Sync with HEAD (free deleted queries)
18538
18539 2004-09-02 [colin]      0.9.12cvs88.1
18540
18541         * src/ldapquery.c
18542                 Sync with HEAD (fix LDAP freezes)
18543
18544 2004-09-02 [colin]      0.9.12cvs87.1
18545
18546         * src/prefs_spelling.c
18547                 Sync with HEAD (add default dictionary)
18548
18549 2004-09-01 [colin]      0.9.12cvs86.1
18550
18551         * src/filtering.c
18552         * src/folderview.c
18553         * src/imap.c
18554         * src/prefs_matcher.c
18555         * src/stock_pixmap.c
18556         * src/summary_search.c
18557         * src/summaryview.c
18558         * src/wizard.c
18559         * src/wizard.h
18560                 Sync with HEAD (uninitialized vars fixes)
18561                 + gtk2 specific warning fixes
18562
18563 2004-08-31 [colin]      0.9.12cvs85.1
18564
18565         * src/folder.c
18566                 Sync with HEAD (Fix memory corruption due to 
18567                 uninitialized var)
18568
18569 2004-08-31 [colin]      0.9.12cvs84.4
18570
18571         * src/summary_search.c
18572                 Fix segfaults when searching in folders with broken headers
18573
18574 2004-08-31 [colin]      0.9.12cvs84.3
18575
18576         * src/compose.c
18577         * src/textview.c
18578                 Fix some more encoding/decoding issues
18579
18580 2004-08-30 [colin]      0.9.12cvs84.2
18581
18582         * src/mimeview.c
18583         * src/prefs_themes.c
18584         * src/gtk/filesel.c
18585         * src/gtk/filesel.h
18586                 Add a folder-mode selection (fixes mimeview's "Save all")
18587
18588 2004-08-29 [colin]      0.9.12cvs84.1
18589
18590         * src/mimeview.c
18591                 Sync with HEAD (don't escape saved filenames)
18592
18593 2004-08-27 [colin]      0.9.12cvs83.1
18594
18595         * ChangeLog
18596         * ChangeLog.claws
18597         * ChangeLog.jp
18598         * src/mh.c
18599         * src/procheader.c
18600         * src/procmsg.c
18601         * src/procmsg.h
18602         * src/common/utils.c
18603         * src/gtk/menu.h
18604         * po/
18605                 Sync with HEAD 0.9.12cvs83 (sync with main)
18606
18607 2004-08-26 [colin]      0.9.12cvs82.4
18608
18609         * src/codeconv.c
18610                 Fix strange stack corruption
18611                 Convert to utf8 after unmime, not before
18612
18613 2004-08-26 [colin]      0.9.12cvs82.3
18614
18615         * src/main.c
18616         * src/wizard.c
18617                 Fix account folders duplication
18618
18619 2004-08-25 [colin]      0.9.12cvs82.2
18620
18621         * src/wizard.c
18622                 Remove ports
18623                 Add SSL selection
18624                 Use login@server as account name
18625
18626 2004-08-25 [colin]      0.9.12cvs82.1
18627
18628         * src/plugins/pgpmime/pgpmime.c
18629                 Sync with HEAD (leak fix).
18630
18631 2004-08-25 [colin]      0.9.12cvs81.1
18632
18633         * src/plugins/pgpmime/pgpmime.c
18634         * src/plugins/pgpmime/sgpgme.c
18635         * src/plugins/pgpmime/sgpgme.h
18636                 Sync with HEAD (Handle combined messages).
18637
18638 2004-08-24 [colin]      0.9.12cvs80.3
18639
18640         * src/wizard.c
18641                 Fix full name, ports, and imap
18642
18643 2004-08-24 [colin]      0.9.12cvs80.2
18644
18645         * src/Makefile.am
18646         * src/main.c
18647         * src/setup.c
18648         * src/setup.h
18649         * src/stock_pixmap.c
18650         * src/stock_pixmap.h
18651         * src/wizard.c ** ADDED **
18652         * src/wizard.h ** ADDED ** 
18653         * src/pixmaps/sylpheed_icon.xpm ** ADDED **
18654                 Add a setup wizard 
18655
18656 2004-08-24 [colin]      0.9.12cvs80.1
18657
18658         * src/folder.c
18659                 Sync with HEAD (set mimeflags on all messages)
18660
18661 2004-08-24 [colin]      0.9.12cvs79.3
18662
18663         * src/matcher_parser_lex.l
18664                 Fix 8bits strings not in utf8
18665
18666 2004-08-24 [colin]      0.9.12cvs79.2
18667
18668         * src/compose.c
18669                 Check conversion result before replacing buffer
18670
18671 2004-08-23 [colin]      0.9.12cvs79.1
18672
18673         * src/compose.c
18674                 Sync with HEAD (create message header in memory)
18675
18676 2004-08-23 [colin]      0.9.12cvs78.1
18677
18678         * src/rfc2015.c
18679         * src/rfc2015.h
18680                 Sync with HEAD (fix bug 197 again)
18681
18682 2004-08-23 [colin]      0.9.12cvs77.3
18683
18684         * src/compose.c
18685                 Fix again inline gpg signing (which outputs utf8
18686                 in gtk2). Not syncing this fix to HEAD as this 
18687                 code is meant to die.
18688
18689 2004-08-23 [colin]      0.9.12cvs77.2
18690
18691         * src/prefs_account.h
18692                 Remove useless include
18693
18694 2004-08-23 [colin]      0.9.12cvs77.1
18695
18696         * src/imap.c
18697         * po/es.po
18698         * po/fr.po
18699         * po/it.po
18700         * po/pl.po
18701         * po/pt_BR.po
18702         * po/sk.po
18703         * po/sr.po
18704                 Sync with HEAD (fix bug 577)
18705
18706 2004-08-22 [colin]      0.9.12cvs76.1
18707
18708         * src/plugins/trayicon/trayicon.c
18709                 Sync with HEAD (fix formatting bug)
18710
18711 2004-08-21 [colin]      0.9.12cvs74.2
18712
18713         * src/gtk/colorsel.c
18714                 Fix bug 564 (Folder color selection window exits on any
18715                 keypress)
18716
18717 2004-08-21 [colin]      0.9.12cvs74.1
18718
18719         * ChangeLog.claws
18720         * src/compose.c
18721         * src/summaryview.c
18722         * src/toolbar.c
18723                 Sync with HEAD (fix bug 576)
18724
18725 2004-08-21 [colin]      0.9.12cvs70.1
18726
18727         * src/compose.c
18728         * src/mainwindow.c
18729                 Sync with HEAD
18730                 
18731
18732 2004-08-21 [paul]       0.9.12cvs66.4
18733
18734         * src/mainwindow.c
18735         * src/messageview.c
18736         * src/gtk/menu.c
18737         * src/plugins/spamassassin/spamassassin_gtk.c
18738                 remove some deprecated gtk1 functions
18739
18740
18741 2004-08-21 [colin]      0.9.12cvs66.3
18742
18743         * src/compose.c
18744         * src/codeconv.c
18745                 Fix warnings
18746                 Remove encoding hacks
18747                 Fix bug 575 (Strange character messes up message)
18748                 Don't display conversion error when drafting
18749
18750 2004-08-21 [paul]       0.9.12cvs66.2
18751
18752         * src/prefs_account.c
18753                 fix GnuPG mode bugs
18754
18755
18756 2004-08-20 [colin]      0.9.12cvs66.1
18757
18758         * src/codeconv.c
18759                 Sync with HEAD 0.9.12cvs66
18760
18761 2004-08-20 [paul]
18762
18763         * src/plugins/pgpmime/plugin.c
18764                 modify PGP/MIME plugin's description
18765
18766 2004-08-17 [colin]      0.9.12cvs65.1
18767
18768         * src/common/ssl.c
18769         * src/plugins/pgpmime/plugin.c
18770                 Sync with HEAD
18771
18772 2004-08-14 [colin]      0.9.12cvs60.3
18773
18774         * src/plugins/trayicon/trayicon.c
18775                 Put back resize callback, on size-request signal
18776                 rather than size-allocate to avoid infinite 
18777                 callback loop
18778
18779 2004-08-13 [colin]      0.9.12cvs60.2
18780
18781         * src/common/defs.h
18782                 Cache versions have been fixed
18783
18784 2004-08-13 [colin]      0.9.12cvs60.1
18785
18786         * src/folderutils.c
18787                 Sync with HEAD
18788
18789 2004-08-12 [colin]      0.9.12cvs59.1
18790
18791         * src/plugins/trayicon/trayicon.c
18792                 Sync with HEAD
18793
18794 2004-08-12 [colin]      0.9.12cvs57.5
18795
18796         * sylpheed.desktop
18797         * configure.ac
18798         * src/Makefile.am
18799         * src/main.c
18800                 Add support for Freedesktop.org's startup notification
18801
18802 2004-08-11 [colin]      0.9.12cvs57.4
18803
18804         * src/textview.c
18805                 Fix off-by-one
18806
18807 2004-08-11 [colin]      0.9.12cvs57.3
18808
18809         * src/message_search.c
18810         * src/summary_search.c
18811                 Make searches case insensitive by default
18812         * src/textview.c
18813                 Fix case-insensitive search in message
18814
18815 2004-08-11 [colin]      0.9.12cvs57.2
18816
18817         * src/summary_search.c
18818                 Let case-sensitive be specified
18819
18820 2004-08-10 [colin]      0.9.12cvs55.4
18821
18822         * src/common/socket.c
18823                 Fix the possible race condition
18824
18825 2004-08-09 [paul]       0.9.12cvs55.3
18826
18827         * configure.ac
18828         * src/Makefile.am
18829         * src/common/Makefile.am
18830                 sync with HEAD
18831
18832
18833 2004-08-09 [paul]       0.9.12cvs55.2
18834
18835         * autogen.sh
18836         * po/poconv.sh
18837                 remove unneeded script
18838
18839         * configure.ac
18840                 add forgotten USE_LDAP_TLS (sync with HEAD)
18841
18842
18843 2004-08-09 [colin]      0.9.12cvs55.1
18844
18845         * src/main.c
18846         * src/common/ssl.c
18847         * src/common/sylpheed.c
18848         * src/common/sylpheed.h
18849                 Sync from 0.9.12cvs55 HEAD (nonblocking SSL_connect)
18850
18851 2004-08-09 [paul]       0.9.12cvs54.1
18852
18853         * ChangeLog
18854         * ChangeLog.claws
18855         * ChangeLog.jp
18856         * configure.ac
18857         * po/POTFILES.in
18858         * src/Makefile.am
18859         * src/folderutils.c
18860         * src/main.c
18861         * src/pgpmime.c
18862         * src/pgpmime.h
18863         * src/sgpgme.c
18864         * src/sgpgme.h
18865         * src/plugins/Makefile.am
18866         * src/plugins/pgpmime/.cvsignore
18867         * src/plugins/pgpmime/Makefile.am
18868         * src/plugins/pgpmime/pgpmime.c
18869         * src/plugins/pgpmime/pgpmime.h
18870         * src/plugins/pgpmime/plugin.c
18871         * src/plugins/pgpmime/sgpgme.c
18872         * src/plugins/pgpmime/sgpgme.h
18873                 sync with HEAD
18874
18875 2004-08-08 [paul]       0.9.12cvs51.1
18876
18877         * configure.ac
18878         * src/folder.c
18879                 sync with HEAD
18880
18881 2004-08-07 [colin]      0.9.12cvs50.1
18882
18883         * src/pop.c
18884         * src/common/partial_download.c
18885                 fix warnings (sync from HEAD)
18886
18887 2004-08-07 [colin]      0.9.12cvs48.1
18888
18889         * src/prefs_folder_item.c
18890                 sync with HEAD 0.9.12cvs48
18891
18892 2004-08-06 [colin]      0.9.12cvs47.1
18893
18894         * src/compose.c
18895                 Sync with HEAD
18896
18897 2004-08-06 [christoph]  0.9.12cvs46.2
18898
18899         * src/main.c
18900         * src/plugins/clamav/clamav_plugin_gtk.c
18901         * src/plugins/dillo_viewer/dillo_viewer.c
18902         * src/plugins/image_viewer/plugin.c
18903         * src/plugins/mathml_viewer/mathml_viewer.c
18904         * src/plugins/spamassassin/spamassassin_gtk.c
18905         * src/plugins/trayicon/trayicon.c
18906                 don't mix GTK1.2 plugin with GTK2 plugins
18907
18908 2004-08-06 [colin]      0.9.12cvs46.1
18909
18910         * ChangeLog
18911         * ChangeLog.claws
18912         * ChangeLog.jp
18913         * configure.ac
18914         * sylpheed-claws.pc.in
18915         * src/folder.c
18916         * src/imap.c
18917         * src/localfolder.c
18918         * src/messageview.c
18919         * src/mimeview.c
18920         * src/mimeview.h
18921         * src/msgcache.c
18922         * src/news.c
18923         * src/prefs_ext_prog.c
18924         * src/prefs_folder_item.c
18925         * src/prefs_fonts.c
18926         * src/prefs_msg_colors.c
18927         * src/prefs_spelling.c
18928         * src/prefs_themes.c
18929         * src/prefs_toolbar.c
18930         * src/prefs_wrapping.c
18931         * src/procmime.h
18932         * src/common/defs.h
18933         * src/common/nntp.c
18934         * src/common/session.c
18935         * src/common/session.h
18936         * src/common/socket.c
18937         * src/common/utils.h
18938         * src/common/xml.c
18939         * src/common/xml.h
18940         * src/gtk/prefswindow.c
18941         * src/gtk/prefswindow.h
18942         * src/plugins/clamav/clamav_plugin_gtk.c
18943         * src/plugins/dillo_viewer/dillo_prefs.c
18944         * src/plugins/image_viewer/viewerprefs.c
18945         * src/plugins/spamassassin/spamassassin_gtk.c
18946         * m4/openssl.m4 *** REMOVED ***
18947                 Sync with HEAD 0.9.12cvs46
18948
18949 2004-08-03 [paul]       0.9.12cvs40.2
18950
18951         * src/action.c
18952         * src/addressadd.c
18953         * src/addressbook.c
18954         * src/addrgather.c
18955         * src/browseldap.c
18956         * src/compose.c
18957         * src/crash.c
18958         * src/editaddress.c
18959         * src/editgroup.c
18960         * src/editldap_basedn.c
18961         * src/foldersel.c
18962         * src/importldif.c
18963         * src/mimeview.c
18964         * src/prefs_common.c
18965         * src/prefs_template.c
18966         * src/sourcewindow.c
18967         * src/summaryview.c
18968         * src/gtk/about.c
18969         * src/gtk/foldersort.c
18970         * src/gtk/logwindow.c
18971         * src/gtk/pluginwindow.c
18972         * src/gtk/prefswindow.c
18973                 change all gtk_scrolled_window_set_policy from 
18974                 GTK_POLICY_ALWAYS to GTK_POLICY_AUTOMATIC
18975
18976 2004-08-02 [paul]       0.9.12cvs40.1
18977
18978         * AUTHORS
18979                 update translation team section
18980         * po/pt_BR.po
18981                 updated by Frederico Goncalves Guimaraes
18982                 <fggdebian@yahoo.com.br>
18983
18984 2004-07-31 [colin]      0.9.12cvs39.9
18985
18986         * src/exphtmldlg.c
18987                 Fix compilation
18988
18989 2004-07-31 [colin]      0.9.12cvs39.8
18990
18991         * src/exphtmldlg.c
18992                 Fix an alertpanel type
18993
18994 2004-07-30 [colin]      0.9.12cvs39.7
18995
18996         * src/alertpanel.c
18997                 Fix alertpanel_error_log's icon
18998
18999 2004-07-30 [colin]      0.9.12cvs39.6
19000
19001         * src/pop.c
19002                 Two of them should still be warnings
19003
19004 2004-07-30 [colin]      0.9.12cvs39.5
19005
19006         * src/pop.c
19007                 More warning -> error
19008 2004-07-29 [colin]      0.9.12cvs39.4
19009
19010         * src/pop.c
19011                 Warning -> error
19012
19013 2004-07-29 [colin]      0.9.12cvs39.3
19014
19015         * src/prefs_matcher.c
19016                 Fix segfault
19017
19018 2004-07-29 [colin]      0.9.12cvs39.2
19019
19020         * src/alertpanel.c
19021                 More nice-looking alertpanels
19022
19023 2004-07-29 [colin]      0.9.12cvs39.1
19024
19025         * src/messageview.c
19026                 sync with head
19027                 (inform user when partial mail is deleted on server)
19028
19029 2004-07-29 [colin]      0.9.12cvs38.1
19030
19031         * src/messageview.c
19032                 sync with head
19033
19034 2004-07-28 [paul]       0.9.12cvs37.7
19035
19036         * src/mainwindow.c
19037                 complete the replacement of deprecated gtk_progress_*
19038
19039 2004-07-28 [paul]       0.9.12cvs37.6
19040
19041         * src/action.c
19042         * src/inc.c
19043         * src/mainwindow.c
19044         * src/send_message.c
19045         * src/gtk/progressdialog.c
19046         * src/gtk/progressdialog.h
19047                 replace deprecated gtk_progress_*
19048
19049 2004-07-28 [paul]       0.9.12cvs37.5
19050
19051         * src/gtk/filesel.c
19052                 remove gtk_window_set_wmclass()
19053 2004-07-28 [paul]       0.9.12cvs37.4
19054
19055         * src/addressbook.c
19056         * src/compose.c
19057         * src/foldersel.c
19058         * src/mainwindow.c
19059         * src/messageview.c
19060         * src/sourcewindow.c
19061         * src/gtk/logwindow.c
19062                 remove gtk_window_set_wmclass()
19063                 
19064         * src/prefs_filtering.c
19065         * src/prefs_filtering_action.c
19066         * src/prefs_fonts.c
19067         * src/prefs_gtk.c
19068         * src/prefs_matcher.c
19069         * src/ssl_manager.c
19070         * src/gtk/prefswindow.c
19071                 replace gtk_window_position()
19072
19073 2004-07-28 [colin]      0.9.12cvs37.3
19074
19075         * src/alertpanel.c
19076         * src/alertpanel.h
19077                 Add a way to specify panel type for specific
19078                 panels (alertpanel())
19079         * src/account.c
19080         * src/addressbook.c
19081         * src/compose.c
19082         * src/expldifdlg.c
19083         * src/main.c
19084         * src/messageview.c
19085         * src/summaryview.c
19086         * src/textview.c
19087         * src/gtk/sslcertwindow.c
19088                 Fix alertpanel()s so that their icon match
19089                 their real type
19090
19091 2004-07-28 [paul]       0.9.12cvs37.2
19092
19093         * src/addr_compl.c
19094         * src/addressbook.c
19095         * src/alertpanel.c
19096         * src/compose.c
19097         * src/export.c
19098         * src/foldersel.c
19099         * src/folderview.c
19100         * src/grouplistdialog.c
19101         * src/import.c
19102         * src/mainwindow.c
19103         * src/message_search.c
19104         * src/messageview.c
19105         * src/passphrase.c
19106         * src/prefs_actions.c
19107         * src/prefs_common.c
19108         * src/prefs_customheader.c
19109         * src/prefs_display_header.c
19110         * src/prefs_filtering.c
19111         * src/prefs_filtering_action.c
19112         * src/prefs_gtk.c
19113         * src/prefs_matcher.c
19114         * src/prefs_msg_colors.c
19115         * src/prefs_summary_column.c
19116         * src/prefs_template.c
19117         * src/sourcewindow.c
19118         * src/ssl_manager.c
19119         * src/summary_search.c
19120         * src/gtk/colorsel.c
19121         * src/gtk/description_window.c
19122         * src/gtk/gtkaspell.c
19123         * src/gtk/inputdialog.c
19124         * src/gtk/logwindow.c
19125         * src/gtk/prefswindow.c
19126         * src/gtk/progressdialog.c
19127                 replace deprecated gtk_window_set_policy
19128
19129 2004-07-27 [colin]      0.9.12cvs37.1
19130
19131         * src/msgcache.c
19132                 More fixes (synced for head again)
19133
19134 2004-07-27 [colin]      0.9.12cvs35.3
19135
19136         * src/msgcache.c
19137                 Fix wrong test
19138
19139 2004-07-27 [colin]      0.9.12cvs35.2
19140
19141         * src/mimeview.c
19142                 Fix width a bit (by Paul)
19143         * src/alertpanel.c
19144         * src/alertpanel.h
19145                 Specialize icons, make alertpanel_message()
19146                 private
19147         * src/message_search.c
19148         * src/sgpgme.c
19149         * src/summary_search.c
19150                 Suit alertpanel changes
19151
19152 2004-07-27 [colin]      0.9.12cvs35.1
19153
19154         * src/alertpanel.c
19155                 Add an icon
19156         * src/passphrase.c
19157                 Add debug output - maybe someone will
19158                 want to look at the problem with Grab
19159                 Input :)
19160         Bump version as we're synced with HEAD
19161
19162 2004-07-26 [colin]      0.9.12cvs33.26
19163
19164         * src/pop.c
19165                 Fix uidl-file parsing when not in new
19166                 format
19167
19168 2004-07-26 [colin]      0.9.12cvs33.25
19169
19170         * src/gtk/menu.c
19171                 Move popup menu up if necessary (fixes 
19172                 account selector)
19173         * src/mainwindow.c
19174                 Set account selector's button height to
19175                 minimum
19176
19177 2004-07-26 [colin]      0.9.12cvs33.24
19178
19179         * src/alertpanel.c
19180                 Maybe fix 551 (Truncated font in alert window)
19181
19182 2004-07-26 [colin]      0.9.12cvs33.23
19183
19184         * po/de.po
19185         * po/es.po
19186         * po/fr.po
19187         * po/it.po
19188         * po/ja.po
19189         * po/pl.po
19190         * po/ru.po
19191         * po/sk.po
19192         * po/sr.po
19193         * po/zh_CN.po
19194                 Sync po files with HEAD
19195
19196 2004-07-26 [paul]       0.9.12cvs33.22
19197
19198         * src/compose.c
19199                 fix Bug 556 'Organisation-header is sent even if empty'
19200
19201 2004-07-24 [colin]      0.9.12cvs33.21
19202
19203         * src/compose.c
19204         * src/gtk/gtkaspell.c
19205         * src/gtk/gtkaspell.h
19206                 Fix speller accelerators (require hack)
19207
19208 2004-07-24 [colin]      0.9.12cvs33.20
19209
19210         * src/gtk/gtkaspell.c
19211                 Fix over-eager code deletion breaking
19212                 Check while typing
19213
19214 2004-07-24 [colin]      0.9.12cvs33.19
19215
19216         * src/browseldap.c
19217         * src/ldapctrl.c
19218         * src/ldapctrl.h
19219         * src/ldapserver.h
19220                 Sync ldap with HEAD
19221         (Fixes 546 LDAP completely broken)
19222
19223 2004-07-24 [colin]      0.9.12cvs33.18
19224
19225         * src/prefs_msg_colors.c
19226                 Fix prototype mismatch
19227         (Fixes 547 void function cannot return value)
19228
19229 2004-07-24 [colin]      0.9.12cvs33.17
19230
19231         * src/mainwindow.c
19232                 Fix sort going back to previous sort key
19233                 when changing sort direction
19234
19235 2004-07-24 [colin]      0.9.12cvs33.16
19236
19237         * src/compose.c
19238                 Fix space insertion when re-wrapping at 
19239                 cursor point
19240
19241 2004-07-24 [colin]      0.9.12cvs33.15
19242
19243         * src/gtk/gtkaspell.c
19244                 Don't change cursor position in insert-text
19245                 callback
19246         (Fixes 539 Word wrapping on input transposes letters)
19247
19248 2004-07-24 [colin]      0.9.12cvs33.14
19249
19250         * src/gtk/gtkaspell.c
19251                 Reencode non-ascii chars to dictionary's
19252                 encoding
19253         (Fixes 544 Spell check broken non english locale)
19254
19255 2004-07-24 [colin]      0.9.12cvs33.13
19256
19257         * src/summaryview.c
19258                 Fix Shift+Down, add Home/End/PgUp/PgDown
19259
19260 2004-07-21 [colin]      0.9.12cvs33.12
19261
19262         * src/prefs_common.c
19263                 Fix a gtk warning (Patch by Andrej Kacian)
19264
19265 2004-07-21 [colin]      0.9.12cvs33.11
19266
19267         * src/gtk/filesel.c
19268                 More check
19269
19270 2004-07-21 [colin]      0.9.12cvs33.10
19271
19272         * src/compose.c
19273         * src/crash.c
19274         * src/export.c
19275         * src/import.c
19276         * src/messageview.c
19277         * src/mimeview.c
19278         * src/prefs_spelling.c
19279         * src/prefs_themes.c
19280         * src/summaryview.c
19281         * src/gtk/filesel.c
19282         * src/gtk/filesel.h
19283         * src/gtk/pluginwindow.c
19284                 Untwist open/save mode guessing logic, make
19285                 it explicit
19286
19287 2004-07-20 [colin]      0.9.12cvs33.9
19288
19289         * src/codeconv.c
19290                 conv_encode_header: src_charset is UTF-8 on
19291                 gtk2
19292         * src/compose.c
19293                 Remove double encoding of the headers
19294
19295 2004-07-20 [colin]      0.9.12cvs33.8
19296
19297         * src/codeconv.c
19298                 Fix typo
19299
19300 2004-07-20 [colin]      0.9.12cvs33.7
19301
19302         * src/mainwindow.c
19303                 Set the separated messageview to the saved
19304                 size of Claws' messageview (Patch by Alfons)
19305                 Fix a callback prototype (me)
19306
19307 2004-07-20 [colin]      0.9.12cvs33.6
19308
19309         * src/codeconv.h
19310                 Forgot one hunk in 0.9.12cvs33.4
19311
19312 2004-07-19 [colin]      0.9.12cvs33.5
19313
19314         * src/action.c
19315                 Action output fix
19316                 Patch by Alfons
19317
19318 2004-07-19 [colin]      0.9.12cvs33.4
19319
19320         * src/compose.c
19321                 Fix outgoing charset bug in headers
19322         * src/codeconv.c
19323                 Clean for glib2 - Patch by Alfons
19324
19325 2004-07-19 [colin]      0.9.12cvs33.3
19326
19327         * src/statusbar.c
19328                 Remove grip from the statusbar
19329                 Patch by Alfons
19330
19331 2004-07-19 [colin]      0.9.12cvs33.2
19332
19333         * src/messageview.c
19334         * src/textview.c
19335                 Fix messageview remembering the previous
19336                 scroll position when loading a new message
19337                 Patch by Alfons
19338
19339 2004-07-19 [colin]      0.9.12cvs33.1
19340
19341         * src/folder.h
19342         * src/folderview.c
19343         * src/summaryview.c
19344                 Sync with HEAD
19345
19346 2004-07-18 [colin]      0.9.12cvs32.7
19347
19348         * configure.ac
19349                 Remove useless check for XIM - noticed
19350                 by Alfons
19351
19352 2004-07-18 [colin]      0.9.12cvs32.6
19353
19354         * src/summaryview.c
19355                 Remove non-modified and shift-modified
19356                 accelerators in summaryview's popup
19357                 menu, as that doesn't get catched by
19358                 the accel-activate signal catcher...
19359
19360 2004-07-18 [colin]      0.9.12cvs32.5
19361
19362         * src/prefs_common.c
19363                 Define sensible default prefs for 
19364                 wrapping
19365
19366 2004-07-18 [colin]      0.9.12cvs32.4
19367
19368         * src/compose.c
19369         * src/prefs_common.c
19370         * src/prefs_common.h
19371         * src/prefs_wrapping.c
19372                 Remove Smart Wrapping pref, which does
19373                 nothing on gtk2 branch
19374
19375 2004-07-18 [colin]      0.9.12cvs32.3
19376
19377         * src/sourcewindow.c
19378                 Proper utf8
19379
19380 2004-07-18 [colin]      0.9.12cvs32.2
19381
19382         * src/compose.c
19383                 Save attachment status when drafting
19384
19385 2004-07-18 [colin]      0.9.12cvs32.1
19386
19387         * src/gtk/filesel.c
19388                 Fix erratic folder selection in open mode
19389
19390 2004-07-18 [colin]      0.9.12cvs31.11
19391
19392         * src/pop.c
19393                 Don't let partial messages get deleted
19394                 even with "dowload all"
19395                 (0.9.12cvs31.8 fix extension)
19396 2004-07-18 [colin]      0.9.12cvs31.10
19397
19398         * src/gtk/logwindow.c
19399                 Fix log scrolling
19400
19401 2004-07-18 [colin]      0.9.12cvs31.9
19402
19403         * src/common/utils.c
19404                 Fix non-utf8 strings coming from commands
19405                 and files
19406
19407 2004-07-18 [colin]      0.9.12cvs31.8
19408
19409         * src/pop.c
19410                 Fix partial download bug with Download all
19411                 messages option
19412
19413 2004-07-18 [colin]      0.9.12cvs31.7
19414
19415         * src/textview.c
19416                 Fix bug introduced in 0.9.12cvs31.2
19417                 (blocked in select mode after double click)
19418
19419 2004-07-18 [colin]      0.9.12cvs31.6
19420
19421         * src/compose.c
19422         * src/gtk/menu.c
19423                 More glib-warning fixes
19424
19425 2004-07-18 [colin]      0.9.12cvs31.5
19426
19427         * src/compose.c
19428                 Fix trashing the primary clipboard when moving 
19429                 around with tab
19430         (Fix Bug 536 Unintuitive: "To:" copied to clipboard)
19431
19432 2004-07-18 [colin]      0.9.12cvs31.4
19433
19434         * src/codeconv.c
19435                 convert unencoded iso headers to utf8
19436         (Fix Bug 538 Unencoded local characters in subject make it 
19437          disappear)
19438
19439 2004-07-18 [colin]      0.9.12cvs31.3
19440
19441         * src/compose.c
19442                 Fix tab char handling in wrapping
19443         (Fix Bug 537 Line wrap problem - TAB character treated as 
19444          one character instead of 8)
19445
19446 2004-07-18 [colin]      0.9.12cvs31.2
19447
19448         * src/textview.c
19449                 return FALSE on GDK_MOTION_NOTIFY
19450         (Fix Bug 535 Hyperlinks/addresses are not selectable 
19451          (unable to highlight))
19452
19453 2004-07-18 [colin]      0.9.12cvs31.1
19454
19455         * src/folderview.c
19456                 Sync with 0.9.12cvs31
19457
19458 2004-07-18 [colin]      0.9.12cvs30.4
19459
19460         * src/compose.c
19461                 Also block text_inserted when inserting a file
19462
19463 2004-07-18 [colin]      0.9.12cvs30.3
19464
19465         * src/compose.c
19466                 Fix smart wrapping (block text_inserted handler
19467                 while putting quotation to avoid wrap on input,
19468                 don't join lines if next is sig separator)
19469
19470 2004-07-17 [colin]      0.9.12cvs30.2
19471
19472         * src/folderview.c
19473         * src/mainwindow.c
19474         * src/mimeview.c
19475         * src/summaryview.c
19476         * src/gtk/quicksearch.c
19477         * src/gtk/quicksearch.h
19478                 Block key events handlers *and* accels while
19479                 quicksearch is focused
19480         (Fixes Bug 534 quick-search bar not accepting certain letters)
19481
19482 2004-07-17 [colin]      0.9.12cvs30.1
19483
19484         * src/folder.h
19485         * src/folderview.c
19486         * src/summaryview.c
19487                 Sync with 0.9.12cvs30
19488
19489 2004-07-17 [colin]      0.9.12cvs28.2
19490
19491         * src/mimeview.c
19492         * src/procmime.c
19493         * src/summaryview.c
19494         * src/gtk/menu.c
19495                 Squash some compile and glib warnings
19496
19497 2004-07-17 [paul]       0.9.12cvs28.1
19498
19499         * src/mimeview.c
19500                 sync with 0.9.12cvs28 HEAD
19501
19502 2004-07-16 [paul]       0.9.12cvs26.1
19503         
19504         * src/gtk/quicksearch.c
19505         * src/account.c
19506         * src/account.h
19507         * src/compose.c
19508         * src/customheader.c
19509         * src/folder_item_prefs.c
19510         * src/main.c
19511         * src/mainwindow.c
19512         * src/messageview.c
19513         * src/mimeview.c
19514         * src/news.c
19515         * src/pgpmime.c
19516         * src/pop.c
19517         * src/pop.h
19518         * src/prefs_account.c
19519         * src/prefs_account.h
19520         * src/prefs_common.c
19521         * src/prefs_common.h
19522         * src/prefs_display_header.c
19523         * src/prefs_gtk.c
19524         * src/prefs_gtk.h
19525         * src/procheader.c
19526         * src/procmime.c
19527                 sync with 0.9.12cvs26 HEAD      
19528
19529 2004-07-15 [colin]      0.9.12cvs18.14
19530
19531         * src/folder.c
19532                 Disable GPG signature check during
19533                 folder move and scan
19534         (Closes Bug 521 Signature checking slows down Folder-Move)
19535
19536 2004-07-14 [colin]      0.9.12cvs18.13
19537
19538         * src/common/partial_download.c
19539                 update includes
19540
19541 2004-07-14 [colin]      0.9.12cvs18.12
19542
19543         * src/common/partial_download.c
19544         * src/common/partial_download.h
19545                 Move doc at top, add correct copyright
19546
19547 2004-07-14 [colin]      0.9.12cvs18.11
19548
19549         * src/folder.c
19550         * src/messageview.c
19551         * src/pop.c
19552         * src/pop.h
19553         * src/procmsg.c
19554         * src/summaryview.c
19555         * src/common/Makefile.am
19556         * src/common/partial_download.c ** NEW FILES **
19557         * src/common/partial_download.h ** NEW FILES **
19558                 Move partial-download related stuff to its
19559                 own file
19560
19561 2004-07-14 [colin]      0.9.12cvs18.10
19562
19563         * src/send_message.c
19564                 Fix smtp auth when user is null or empty
19565
19566 2004-07-13 [colin]      0.9.12cvs18.9
19567
19568         * src/gtk/quicksearch.c
19569                 Use alphabetic order
19570
19571 2004-07-13 [colin]      0.9.12cvs18.8
19572
19573         * src/pop.c
19574                 Be paranoid on the checks
19575
19576 2004-07-13 [colin]      0.9.12cvs18.7
19577
19578         * src/gtk/quicksearch.c
19579                 Fix Engrish once again
19580
19581 2004-07-13 [colin]      0.9.12cvs18.6
19582
19583         * src/procmsg.c
19584         * src/summaryview.c
19585                 Mark messages for deletion when they are about to
19586                 be removed from trash
19587
19588 2004-07-13 [colin]      0.9.12cvs18.5
19589
19590         * src/matcher.c
19591         * src/matcher.h
19592         * src/matcher_parser_parse.y
19593         * src/prefs_matcher.c
19594         * src/gtk/quicksearch.c
19595                 Add 'partial' ('p') match string to find partially
19596                 downloaded messages
19597
19598 2004-07-13 [colin]      0.9.12cvs18.4
19599
19600         * src/pop.c
19601                 Fix misplaced block
19602
19603 2004-07-13 [colin]      0.9.12cvs18.3
19604
19605         * src/pop.c
19606         * src/pop.h
19607         * src/messageview.c
19608                 Refactor API (to avoid passing 5+ params and code
19609                 duplication)
19610         * src/folder.c
19611         * src/msgcache.c
19612         * src/procheader.c
19613         * src/common/defs.h
19614                 Add planned_download to cache
19615                 Don't mess uidl file when moving partially downloaded
19616                 mails (they change folder, we should change it in the
19617                 uidl list too or we'll remove an incorrect message)
19618                 (this also helps removing hacks when changing 
19619                 planned_download in messageview.c)
19620
19621 2004-07-12 [colin]      0.9.12cvs18.2
19622
19623         * src/gtk/quicksearch.c
19624                 Fix missing status update in quicksearch
19625
19626 2004-07-12 [paul]       0.9.12cvs18.1
19627
19628         * po/POTFILES.in
19629         * src/Makefile.am
19630         * src/account.c
19631         * src/codeconv.c
19632         * src/compose.c
19633         * src/inc.c
19634         * src/main.c
19635         * src/prefs_common.c
19636         * src/procmsg.h
19637         * src/toolbar.c
19638         * src/prefs_msg_colors.[ch]     ** NEW FILES **
19639         * src/prefs_wrapping.[ch]       ** NEW FILES **
19640         * src/common/intl.h
19641         * src/common/utils.[ch]
19642         * src/gtk/quicksearch.[ch]
19643                 sync with 0.9.12cvs18 HEAD
19644
19645 2004-07-12 [colin]      0.9.11cvs17.25
19646
19647         * src/folder.c
19648         * src/folder.h
19649                 Remove unused function added by me in 0.9.11cvs17.10
19650
19651 2004-07-11 [colin]      0.9.11cvs17.24
19652
19653         * src/inc.c
19654         * src/messageview.c
19655         * src/pop.c
19656         * src/pop.h
19657                 Use folderitem and msgnum instead of filename to
19658                 know which mail to delete
19659                 Move old partial mail deletion to pop.c
19660
19661 2004-07-10 [colin]      0.9.11cvs17.23
19662
19663         * src/inc.c
19664                 Add debug
19665         * src/pop.c
19666         * src/pop.h
19667                 Don't re-use same enums for unrelated stuff: it's 
19668                 completely misleading !
19669                 Document a bit
19670
19671 2004-07-09 [colin]      0.9.11cvs17.22
19672
19673         * src/inc.c
19674                 Remove folder-type check and do
19675                 more tests to be sure everything's
19676                 ok
19677         * src/messageview.c
19678                 Punctuation update, remove useless
19679                 code, fix two warnings
19680         * src/noticeview.c
19681                 Layout cleaning, reset 2nd button
19682                 when specifying one
19683
19684 2004-07-09 [colin]      0.9.11cvs17.21
19685
19686         * src/messageview.c
19687         * src/pop.c
19688         * src/pop.h
19689                 Allow user to change his mind
19690                 and postpone decision (by
19691                 unmarking the mail)
19692
19693 2004-07-09 [colin]      0.9.11cvs17.20
19694
19695         * src/messageview.c
19696                 Fix bug with delete state
19697         * src/pop.c
19698         * src/pop.h
19699                 Fix buffer leak (fread doesn't 
19700                 terminate buffers with \0)
19701                 Refactoring (remove magic 
19702                 numbers)
19703
19704 2004-07-09 [colin]      0.9.11cvs17.19
19705
19706         * src/pop.c
19707                 Don't log "Skipping message" if 
19708                 we're going to TOP it two lines
19709                 later
19710
19711 2004-07-09 [colin]      0.9.11cvs17.18
19712
19713         * src/messageview.c
19714                 Fix Engrish
19715
19716 2004-07-09 [colin]      0.9.11cvs17.17
19717
19718         * src/pop.c
19719                 strlen checking...
19720         * src/messageview.c
19721                 refactoring a bit
19722
19723 2004-07-08 [colin]      0.9.11cvs17.16
19724
19725         * src/noticeview.c
19726         * src/noticeview.h
19727                 Add an optional second button
19728         * src/messageview.c
19729         * src/pop.c
19730         * src/pop.h
19731                 Don't delete partially received mails after a certain
19732                 time; rather, let the user decide.
19733
19734 2004-07-08 [colin]      0.9.11cvs17.15
19735
19736         * src/common/smtp.h
19737                 Sync with HEAD
19738
19739 2004-07-08 [colin]      0.9.11cvs17.14
19740
19741         * src/messageview.c
19742         * src/common/smtp.c
19743                 Use to_human_readable() for sizes
19744
19745 2004-07-08 [colin]      0.9.11cvs17.13
19746
19747         * src/inc.c
19748         * src/messageview.c
19749         * src/pop.c
19750         * src/pop.h
19751         * src/procmsg.c
19752                 Fix partial-downloading issues:
19753                         catch unsupported TOP
19754                         don't delete partially downloaded mails before 5 days
19755                         don't update existing with non-MH folders; that'll
19756                         make dups, but it's better than trashing the folder
19757                         free new msginfo parts
19758                 Fix indentation ;-)
19759
19760 2004-07-08 [colin]      0.9.11cvs17.12
19761
19762         * src/common/smtp.c
19763         * src/common/smtp.h
19764                 Sync smtp size verification with HEAD
19765
19766 2004-07-08 [colin]      0.9.11cvs17.11
19767
19768         * src/summaryview.c
19769         * src/prefs_common.c
19770         * src/prefs_common.h
19771         * src/gtk/quicksearch.c
19772         * src/gtk/quicksearch.h
19773                 Sync sticky pref with HEAD
19774
19775 2004-07-08 [colin]      0.9.11cvs17.10
19776
19777         * src/folder.c [1.213.2.6]
19778         * src/folder.h [1.87.2.6]
19779         * src/inc.c [1.149.2.7]
19780         * src/messageview.c [1.94.2.8]
19781         * src/procheader.c [1.47.2.6]
19782         * src/procmsg.c [1.150.2.4]
19783         * src/procmsg.h [1.60.2.5]
19784         * src/pop.c [1.56.2.4]
19785         * src/pop.h [1.17.2.3]
19786                 Let too big messages get downloaded, but truncated
19787                 Add a button to download them completely
19788                 
19789 2004-07-06 [colin]      0.9.11cvs17.9
19790
19791         * src/gtk/quicksearch.c [1.1.2.3]
19792                 Add a Clear button
19793         * commitHelper
19794         * PATCHSETS
19795                 Add a script to help with cvs
19796
19797 2004-07-03 [colin]      0.9.11cvs17.8
19798
19799         * src/plugins/imageviewer/viewer.c
19800                 fix imageviewer (which was staying on the first
19801                 displayed image)
19802
19803 2004-07-03 [colin]      0.9.11cvs17.7
19804
19805         Removed FIXME_GTK2 warnings
19806         * src/gtk/gtkutils.c
19807                 useless #warnings
19808         * src/gtk/menu.c
19809                 useless #warnings (no need to mess with menu rc)
19810         * src/gtk/menu.h
19811                 unused functions
19812         
19813
19814 2004-07-03 [colin]      0.9.11cvs17.6
19815
19816         Removed FIXME_GTK2 warnings
19817         * src/codeconv.c
19818                 useless #warnings (rewrite needed)
19819         * src/compose.c
19820                 useless #warnings (rewrite needed)
19821                 useless #warnings (gtk2 is like that)
19822                 useless #warnings (previously fixed)
19823         * src/main.c
19824                 useless #warnings (previously fixed)
19825         * src/message_search.c
19826                 useless #warnings (gtk2 is like that)
19827                 Made apparent that search is case-sensitive
19828         * src/mimeview.c
19829                 useless #warnings (rewrite needed)
19830                 useless #warnings (gtk2 is like that)
19831                 reimplemented real warnings
19832         * src/prefs_common.c
19833                 Removed block cursor option (not it gtk2)
19834         * src/prefs_gtk.c
19835                 useless #warnings (rewrite needed)
19836         * src/procheader.c
19837                 useless #warnings (rewrite needed)
19838         * src/sourcewindow.c
19839                 useless #warnings (incorrect placing)
19840         * src/summary_search.c
19841                 useless #warnings (gtk2 is like that)
19842                 Made apparent that search is case-sensitive
19843         * src/action.c
19844                 useless #warnings (gtk2 is like that)
19845         * src/textview.c
19846                 useless #warnings (rewrite needed)
19847         * src/toolbar.c
19848                 useless #warnings (rewrite needed)
19849
19850 2004-07-03 [colin]      0.9.11cvs17.5
19851
19852         * src/textview.c
19853                 Fix mismerge which broke URI opening
19854                 
19855 2004-07-01 [colin]      0.9.11cvs17.4
19856
19857         * src/gtk/filesel.c
19858                 Fill filename when saving
19859                 
19860 2004-06-27 [colin]      0.9.11cvs17.3
19861
19862         * src/gtk/filesel.[ch]
19863                 Use the new GTK file selector
19864                 Update prototype to match the reality: multiple file
19865                 selection is open-only          
19866         * src/compose.c
19867                 Match the new prototypes        
19868         * configure.ac
19869                 Match the new requirements (gtk 2.4.0)
19870                         
19871 2004-06-26 [colin]      0.9.11cvs17.2
19872
19873         * src/plugins/trayicon/trayicon.c
19874                 Remove useless signal handler on resize, which causes
19875                 an infinite "loop"
19876         
19877 2004-06-26 [colin]      0.9.11cvs17.1
19878         
19879         * tools/Makefile.am
19880                 remove launch_firebird and add nautilus2sylpheed.sh
19881         * src/quicksearch.c
19882           src/summaryview.c
19883                 Fix show/hide "Extended symbols" button problem
19884                 Fix apparition at startup
19885                 Fix const warnings
19886         * src/plugins/image_viewer/Makefile.am
19887                 Fix configure 
19888         * common/ssl.c
19889                 Re-enable certificate check, as it doesn't seem to
19890                 cause Xlib errors anymore
19891
19892 2004-06-25 [paul]       0.9.11cvs17
19893
19894         * sync with 0.9.11cvs17 HEAD
19895         
19896         NOTE: QuickSearch is broken
19897
19898 2004-06-07 [colin]      0.9.10claws67.10
19899         * src/plugins/trayicon/trayicon.c
19900           src/plugins/trayicon/libeggtrayicon/Makefile.am
19901           src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
19902                 Fix gettextization in trayicon plugin
19903
19904 2004-06-07 [colin]      0.9.10claws67.9
19905         
19906         * src/summaryview.c
19907           src/gtk/gtksctree.[ch]
19908                 Let Shift+{Up,Down} work in summaryview
19909                 (well, Down "works" and Up works)
19910                 Let the list scroll when using these keys
19911
19912 2004-06-06 [colin]      0.9.10claws67.8
19913
19914         * src/plugins/trayicon/trayicon.c
19915                 Fix pixmap update
19916
19917 2004-06-06 [colin]      0.9.10claws67.7
19918
19919         * src/addressbook.c
19920                 Fix signal handling causing system-wide focus grab
19921
19922 2004-05-25 [paul]       0.9.10claws67.6
19923
19924         * Makefile.am
19925           src/Makefile.am
19926                 clean up
19927
19928 2004-05-25 [paul]       0.9.10claws67.5
19929
19930         * replace deprecated gtk_signal... functions
19931
19932 2004-05-23 [colin]      0.9.10claws67.4
19933
19934         * src/compose.c
19935                 Fix wrapping
19936
19937 2004-05-22 [colin]      0.9.10claws67.3
19938
19939         * src/compose.c
19940                 Re-fix [Edited] in compose.c::compose_reedit()
19941
19942 2004-05-22 [colin]      0.9.10claws67.2
19943
19944         * src/procmime.c
19945                 Fix parsing of multiparts mails
19946
19947 2004-05-22 [colin]      0.9.10claws67.1
19948
19949         * src/summaryview.c
19950                 Fix quicksearch
19951
19952 2004-05-22 [paul]       0.9.10claws67
19953
19954         * sync with 0.9.10claws67 HEAD
19955
19956 2004-05-14 [alfons]
19957
19958         * src/procmime.h
19959                 add forgotton prototype
19960
19961 2004-05-10 [paul]       0.9.10claws57
19962
19963         * sync with 0.9.10claws57 HEAD
19964
19965 2004-05-05 [paul]       0.9.9.claws1
19966
19967         * ChangeLog-gtk2        ** REMOVED **
19968           ChangeLog-gtk2.claws  ** ADDED **
19969                 rename and adopt the normal claws format
19970                 
19971         * configure.ac
19972                 require gtkmathview >= 0.5
19973
19974         * ac/*                          ** REMOVED **
19975           ac/                           ** REMOVED **
19976           intl/Makefile.in              ** REMOVED **
19977           m4/                           ** ADDED **
19978           m4/missing                    ** ADDED **
19979           m4/missing/gdk-pixbuf.m4      ** ADDED **
19980           m4/missing/gettext.m4         ** ADDED **
19981           m4/missing/gpgme.m4           ** ADDED **
19982           m4/missing/imlib.m4           ** ADDED **
19983           m4/.cvsignore                 ** ADDED **
19984           m4/Makefile.am                ** ADDED **
19985           m4/README                     ** ADDED **
19986           m4/aclocal-include.m4         ** ADDED **
19987           m4/aspell.m4                  ** ADDED **
19988           m4/check-type.m4              ** ADDED **
19989           m4/gnupg-check-typedef.m4     ** ADDED **
19990           m4/openssl.m4                 ** ADDED **
19991           m4/spamassassin.m4            ** ADDED **
19992           po/ChangeLog                  ** REMOVED **
19993           po/Makefile.in.in             ** REMOVED **
19994           po/Rules-quot                 ** REMOVED **
19995           po/boldquot.sed               ** REMOVED **
19996           po/en@boldquot.header         ** REMOVED **
19997           po/en@quot.header             ** REMOVED **
19998           po/insert-header.sin          ** REMOVED **
19999           po/quot.sed                   ** REMOVED **
20000           po/remove-potcdate.sed        ** REMOVED **
20001           po/remove-potcdate.sin        ** REMOVED **
20002           po/stamp-po                   ** REMOVED **
20003           Makefile.am
20004           autogen.sh
20005           configure.ac
20006                 enable building with automake 1.8.x
20007                 add 'autopoint --force' to autogen.sh and remove all
20008                 auto-generated files, remove ac/ directory and use
20009                 m4/ directory instead
20010                 
20011         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
20012                 fix gettextization
20013
20014 2004-02-28 Colin Leroy <colin@colino.net>
20015         * src/prefs_matcher.c
20016           src/prefs_filtering.c
20017           src/prefs_filtering_action.c
20018                 Fix non-editable GtkEntries
20019
20020 2004-02-22 Thorsten Maerz <torte@netztorte.de>
20021         * src/prefs_themes.c
20022                 utf8 conversion for theme info
20023
20024 2004-02-21 Thorsten Maerz <torte@netztorte.de>
20025         * sync 0.9.9claws
20026
20027 2004-02-14 Thorsten Maerz <torte@netztorte.de>
20028         * src/grouplistdialog.c
20029                 allow multiple selections without ctrl key
20030
20031 2004-02-09 Thorsten Maerz <torte@netztorte.de>
20032         * src/main.c
20033                 enable customizable accelerators
20034
20035 2004-02-08 Thorsten Maerz <torte@netztorte.de>
20036         * src/prefs_common.c
20037                 re-enable different font settings for gtk1/2
20038         * src/prefs_folder_item.c
20039                 fix folder prefs displayed wrong
20040         * src/textview.c
20041                 set 'sunken' shadow type
20042
20043 2004-02-07 Colin Leroy <colin@colino.net>
20044         * src/compose.c
20045                 Fix message being always [Edited]
20046                 Encode headers correctly (utf8 buf)
20047
20048 2004-01-27 Thorsten Maerz <torte@netztorte.de>
20049         * src/socket.c
20050                 remove double g_source_attach()
20051                 (Thanks to Colin Leroy)
20052
20053 2004-01-27 Thorsten Maerz <torte@netztorte.de>
20054         * src/gtk/gtksctree.c
20055                 Fix SSL certificate list not shown
20056         * src/mimeview.c
20057                 Fix clicks in mime tree
20058
20059 2004-01-27 Thorsten Maerz <torte@netztorte.de>
20060         * src/common/socket.c
20061                 Fix SSL receive
20062         * src/compose.c
20063                 Fix clipboard menu hotkeys
20064
20065 2004-01-25 Thorsten Maerz <torte@netztorte.de>
20066         * src/gtk/gtkaspell.[ch]
20067           src/compose.c
20068                 reimplement spellchecker
20069
20070 2004-01-25 Thorsten Maerz <torte@netztorte.de>
20071         * src/gtk/filesel.c
20072                 crash when inserting file in compose window
20073                 (TODO: keep old selection on clicks)
20074         * src/main.c
20075                 use gtkrc-2.0 instead of gtkrc
20076
20077 2004-01-25 Thorsten Maerz <torte@netztorte.de>
20078         * src/messageview.c
20079                 remove orphaned mimeview unref()
20080
20081 2004-01-20 Thorsten Maerz <torte@netztorte.de>
20082         * src/grouplistdialog.c
20083                 expand nodes containing subscribed groups
20084
20085 2004-01-19 Thorsten Maerz <torte@netztorte.de>
20086         * src/textview.c
20087                 textview: hide cursor, restore old click behaviour
20088
20089 2004-01-18 Thorsten Maerz <torte@netztorte.de>
20090         * src/textview.c
20091                 variable names messed up
20092
20093 2004-01-17 Colin Leroy <colin@colino.net>
20094         * src/addr_compl.c
20095                 Fix completion address too thin
20096         * src/compose.c
20097                 Fix tab-to-subject behaviour
20098         * src/summaryview.c
20099                 Implement key up & down in summaryview
20100
20101 2004-01-12 Thorsten Maerz <torte@netztorte.de>
20102
20103         * sync 098claws
20104
20105 2004-01-08 Thorsten Maerz <torte@netztorte.de>
20106         * configure.ac
20107           Makefile.am
20108           doc/.cvsignore
20109           doc/Makefile.am
20110                 faq, man, manual moved to doc/
20111         * ac/aspell.m4
20112           ac/check-type.m4
20113           ac/gnupg-check-typedef.m4
20114           ac/openssl.m4
20115           ac/spamassassin.m4
20116           ac/missing/gdk-pixbuf.m4
20117           ac/missing/gpgme.m4
20118           ac/missing/imlib.m4
20119                 fix automake warnings
20120
20121 2003-12-06 Colin Leroy <colin@colino.net>
20122         * src/summaryview.c
20123                 Fix quicksearch
20124
20125 2003-12-05 Colin Leroy <colin@colino.net>
20126         * src/summaryview.c
20127                 Fix going to next unread folder
20128
20129 2003-12-05 Colin Leroy <colin@colino.net>
20130         * src/crash.c
20131                 Fix gtk2 compilation
20132         * src/session.c
20133                 Remove iotag source handler at disconnection
20134         * src/socket.[ch] 
20135                 Remove source handler when closing socket 
20136                 (fixes another seg)
20137
20138 2003-12-04 Colin Leroy <colin@colino.net>
20139         * src/compose.c
20140           src/prefs_account.c
20141           src/prefs_common.c
20142                 Fix some dropdown menus
20143
20144 2003-12-04 Colin Leroy <colin@colino.net>
20145         * src/compose.c
20146                 Fix event handlers on header fields
20147         * src/common/socket.c
20148           src/common/session.c
20149                 Fix segfault with callback (SSL)
20150                 Fix end of session 
20151
20152 2003-10-06 Thorsten Maerz <torte@netztorte.de>
20153
20154         * Fix compile bug in src/compose.c
20155         * removed src/gtk/gtkstext.[ch]
20156
20157 2003-09-17 Takuro Ashie <ashie@homa.ne.jp>
20158
20159         * Convert character set and escape "text" attributes in toolbar setting
20160         files.
20161         * Fixed bug in button-press-event handling.
20162
20163 2003-09-16 Thorsten Maerz <torte@netztorte.de>
20164
20165         * Fixed bug in key-press-event handling.
20166
20167 2003-09-16 Takuro Ashie <ashie@homa.ne.jp>
20168
20169         * Enabled to compile tray-icon plugin (Ad-hoc).
20170         * Avoid hang up bug of icon list in mime view (Ad-hoc).
20171
20172 2003-09-14 Takuro Ashie <ashie@homa.ne.jp>
20173
20174         * Enabled to compile on sylpheed-claws.
20175         (tray-icon plugin still cannot compile yet.)
20176
20177 2003-09-06 Takuro Ashie <ashie@homa.ne.jp>
20178
20179         * Updated to 0.9.5.
20180
20181 2003-08-02 Takuro Ashie <ashie@homa.ne.jp>
20182
20183         * Updated to 0.9.4.
20184         * Ported monitoring SSL mechanism to GSource of GLib2
20185         (I don't confirm it)
20186         * Added _gtk2 suffix to key name of font preference to avoid
20187         ovverwriting preference of Gtk+-1.2 version.
20188
20189 2003-06-09 Takuro Ashie <ashie@homa.ne.jp>
20190
20191         * Updated to 0.9.2.
20192
20193 2003-05-30 Takuro Ashie <ashie@homa.ne.jp>
20194
20195         * Updated to 0.9.1.
20196         * Translate po files into UTF-8 when execute autogen.sh.
20197
20198 2003-05-28 Takuro Ashie <ashie@homa.ne.jp>
20199
20200         * Updated to 0.9.0.
20201
20202 2003-04-29 Takuro Ashie <ashie@homa.ne.jp>
20203
20204         * Plugged GError related memory leaks.
20205
20206 2003-04-28 Takuro Ashie <ashie@homa.ne.jp>
20207
20208         * Changed default size of fonts.
20209         * Enabled to set titile font size of warning dialog.
20210
20211 2003-04-23 Takuro Ashie <ashie@homa.ne.jp>
20212
20213         * Embed a sylpheed icon into executable binary on Windows.
20214
20215 2003-04-21 Takuro Ashie <ashie@homa.ne.jp>
20216
20217         * I forgot to traslate character set of element string in src/xml.c.
20218
20219 2003-04-18 Takuro Ashie <ashie@homa.ne.jp>
20220
20221         * Fixed detecting bind_textdomain_codeset in configure.in.
20222         * The bug in which "Example" of "Date fromat" preference isn't displayed
20223         correctly has been fixed.
20224
20225 2003-04-04 Takuro Ashie <ashie@homa.ne.jp>
20226
20227         * Added bind_textdomain_codeset into AC_CHECK_FUNCS.
20228           Replaced AM_GLIB_GNU_GETTEXT to AM_GNU_GETTEXT.
20229           glib-gettextize
20230           Removed intl directory.
20231           Translated po files into UTF-8.
20232           (Thanks! Ryuji Abe)
20233
20234 2003-03-28 Takuro Ashie <ashie@homa.ne.jp>
20235
20236         * The bug which doesn't unscape string in xml.c has been fixed.
20237
20238 2003-03-27 Takuro Ashie <ashie@homa.ne.jp>
20239
20240         * The bug which is failed to translate encoding of file name thorough
20241         file dialog has been fixed.
20242
20243 2003-03-25 Takuro Ashie <ashie@homa.ne.jp>
20244
20245         * Modified to translate file names which is used in inporting/expoting
20246         mbox feature and "Save as" feature into locale encoding.
20247         * Translate file names into locale encoding when "Attache file" and
20248         "Insert file".
20249         * Force set G_BROKEN_FILENAMES environment variable.
20250         * Other minor fixes.
20251
20252 2003-03-17 Takuro Ashie <ashie@homa.ne.jp>
20253
20254         * Modified to treat MH folder's name as locale encoding.
20255
20256 2003-03-16 Takuro Ashie <ashie@homa.ne.jp>
20257
20258         * The bug which clash on switching candidates of auto completion of
20259         addresses, cannot use auto completion in Japanesse is fixed
20260         (Thanks! Tokunaga-san)¡¥
20261
20262 2003-03-14 Takuro Ashie <ashie@homa.ne.jp>
20263
20264         * The bug which cannot switch key accelerator preference has been fixed
20265         (Thanks! smbd-san)¡¥
20266
20267 2003-03-14 Takuro Ashie <ashie@homa.ne.jp>
20268
20269         * version 0.8.11-gtk2-20030314
20270
20271 2003-03-14 Takuro Ashie <ashie@homa.ne.jp>
20272
20273         * The bug in which character set conversion of filtering messages has
20274         been fixed.(Thanks! COCOA-san).
20275
20276 2003-03-13 Takuro Ashie <ashie@homa.ne.jp>
20277
20278         * Revived "Leave space on head" preference in "Message" category.
20279         * A bug which clash when put the cursor to end of buffer and execute
20280         "Wrap current paragraph" was fixed.(Thanks! Tokunaga-san)
20281
20282 2003-03-12 Takuro Ashie <ashie@homa.ne.jp>
20283
20284         * version 0.8.11-gtk2-20030312
20285
20286 2003-03-12 Takuro Ashie <ashie@homa.ne.jp>
20287
20288         * Fixed position of  switching account popup (Thanks! Ikezoe-san)¡¥
20289         * Modified to use Pango's API directly for font preference.
20290         * Integrated GtkTextView of textview to one widget.
20291         * Set fonts of header title in textview by "header_title" tag.
20292         * Removed some deprecated codes.
20293
20294 2003-03-11 Takuro Ashie <ashie@homa.ne.jp>
20295
20296         * Updated to 0.8.11.
20297         * Merged cygwin patch(Thanks! Sakai-san).
20298
20299 2003-03-09 Takuro Ashie <ashie@homa.ne.jp>
20300
20301         * version 0.8.10-gtk2-20030309