2006-03-19 [colin] 2.0.0cvs158
[claws.git] / ChangeLog
1 2006-03-19 [colin]      2.0.0cvs158
2
3         * src/addressbook.c
4                 and put groups at the top, always
5
6 2006-03-19 [colin]      2.0.0cvs157
7
8         * src/addressbook.c
9                 Order groups before names, as previously
10
11 2006-03-19 [colin]      2.0.0cvs156
12
13         * src/addressbook.c
14                 - Sort case-unsensitive
15                 - Put the sort arrow at opening too
16
17 2006-03-19 [wwp]        2.0.0cvs155
18
19         * src/addressbook.c
20                 allow sorting by name/email/remarks, ensure that right-pane's contents
21                 matches the left-pane selection (cleared when appropriate).
22                 Patch by Pawel Pekala <c0rn@o2.pl>.
23
24 2006-03-18 [colin]      2.0.0cvs154
25
26         * src/textview.c
27                 Fix text cursor ;)
28
29 2006-03-18 [colin]      2.0.0cvs153
30
31         * src/gtk/filesel.c
32                 Make sure we hide the preview if we didn't get
33                 a filename
34
35 2006-03-18 [colin]      2.0.0cvs152
36
37         * src/summaryview.c
38                 Set cursor to watch for execution (fixes lack
39                 of watch-cursor when dnd'ing hundreds of mails)
40         * src/gtk/filesel.c
41                 Check that mime type is 'image/*' before updating
42                 the preview (maybe fix crashes on Solaris+gtk2.8.4 ?)
43
44 2006-03-18 [colin]      2.0.0cvs151
45
46         * src/mainwindow.c
47         * src/textview.c
48         * src/textview.h
49                 Put a watch cursor in textview too when the mainwindow's
50                 cursor in a watch
51
52 2006-03-18 [colin]      2.0.0cvs150
53
54         * src/folder.c
55                 Change wrong asserts to simple tests
56
57 2006-03-17 [colin]      2.0.0cvs149
58
59         * src/mainwindow.c
60         * src/mainwindow.h
61         * src/prefs_msg_colors.c
62         * src/summaryview.c
63         * src/summaryview.h
64         * src/gtk/colorlabel.c
65         * src/gtk/colorlabel.h
66                 Add a color label menu in the main menubar
67                 Add (fixed) accels Ctrl-{0-7} to change the color
68                 They have to be fixed because the menu's dynamic,
69                 the items are complex widgets, hence we can't use
70                 a GtkItemFactory.
71
72
73 2006-03-17 [wwp]        2.0.0cvs148
74
75         * src/compose.c
76                 rollback few lines from my previous commit (those lines come from
77                 a pending patch, accidentally commited, even if neutral as they are
78                 commented out).
79
80 2006-03-17 [wwp]        2.0.0cvs147
81
82         * src/compose.c
83                 fix a compilation warning (wrong return type, introduced w/ cvs143), and
84                 applied code style/indentation to the modified function.
85
86 2006-03-17 [wwp]        2.0.0cvs146
87
88         * src/procmsg.c
89         * src/compose.c
90                 fix for bug #908: some IMAP servers dislike \x7f char in the RMID (thanks to Colin).
91
92 2006-03-17 [paul]
93
94         2.1.0-rc1 released
95
96 2006-03-17 [paul]       2.0.0cvs145
97
98         * src/main.c
99                 addressbook_read_file() was called twice
100         * src/textview.c
101                 X-Mailer highlighting
102
103 2006-03-16 [colin]      2.0.0cvs144
104
105         * src/sourcewindow.c
106         * src/sourcewindow.h
107                 And the last one, in source window.
108
109 2006-03-16 [colin]      2.0.0cvs143
110
111         * src/compose.c
112         * src/compose.h
113                 Fix the same stuff in compose
114
115 2006-03-16 [colin]      2.0.0cvs142
116
117         * src/messageview.c
118                 Complete the previous messageview crash fix
119
120 2006-03-16 [colin]      2.0.0cvs141
121
122         * src/procmsg.h
123         * src/procmsg.c
124         * src/folder.c
125                 Fix POSTPROCESSING hook
126                 Patch by H. Merijn Brand
127
128         * src/procmime.c
129         * src/procmime.h
130                 Parse Content-Location
131
132         * src/toolbar.c
133         * src/messageview.c
134         * src/messageview.h
135                 Don't crash when a top-level MessageView has
136                 been closed on us. Same problematic than
137                 yesterday's quicksearch issue.
138
139 2006-03-15 [colin]      2.0.0cvs140
140
141         * src/gtk/quicksearch.c
142                 Fix a bitchy race we didn't think about when we
143                 added quicksearch cancellation:
144                 If the search is not on cached fields, for example
145                 body_part matchcase "stuff"
146                 the matcher code has to get the whole message. If
147                 we're on IMAP, that can be slow, and in order to
148                 be non-blocking, the IMAP code idle loop processes
149                 gtk events too. So it is possible to cancel a
150                 quicksearch while the matcher is getting the mail's
151                 body. After matcher got its body, it will start to
152                 iterate over the matcher list that the Quicksearch's
153                 clear_search_cb() just freed via prepare_matcher().
154                 SIGSEGV ensues.
155                 The fix consists of guarding the matcherlist_match()
156                 call with a boolean 'matching'. If we reset the
157                 quicksearch while matching is TRUE, we don't free
158                 the matcherlist anymore like we did, but we set
159                 another new flag, deferred_free, to TRUE. Then,
160                 in quicksearch_match(), just after returning from
161                 matcherlist_match() and unsetting the matching flag,
162                 we check the deferred_free flag and do the
163                 prepare_matcher() (which does the matcherlist_free)
164                 for real, so we free the matcherlist once it's not
165                 used anymore.
166                 As all of this runs via the glib main loop, we
167                 luckily don't need a mutex.
168         * src/summaryview.c
169                 Also, show progress while searching.
170
171
172 2006-03-14 [colin]      2.0.0cvs139
173
174         * src/alertpanel.c
175                 Make alertpanel_is_open non-static
176
177 2006-03-14 [colin]      2.0.0cvs138
178
179         * src/prefs_spelling.c
180                 Cleanups - Fabien Vantard
181
182 2006-03-14 [wwp]        2.0.0cvs137
183
184         * src/main.c
185                 code style normalization (curly braces, indentation).
186
187 2006-03-14 [wwp]        2.0.0cvs137
188
189         * src/main.c
190                 code style (braces, indentation)
191
192 2006-03-12 [paul]       2.0.0cvs136
193
194         * src/prefs_common.c
195                 trans_hdr defaults to FALSE to be RFC-savvy
196         * src/prefs_summaries.c
197                 add a tooltip to the trans_hdr option
198                 
199
200 2006-03-12 [paul]       2.0.0cvs135
201
202         * src/prefs_matcher.c
203                 give a little more width to the combos
204         * src/prefs_display_header.c
205         * src/textview.c
206                 translate headers if prefs_common.trans_hdr
207                 is TRUE
208
209         Patches by Pawel Pekala
210
211 2006-03-12 [paul]       2.0.0cvs134
212
213         * src/plugins/clamav/clamav_plugin.c
214         * src/plugins/dillo_viewer/dillo_viewer.c
215         * src/plugins/pgpcore/plugin.c
216         * src/plugins/pgpinline/plugin.c
217         * src/plugins/pgpmime/plugin.c
218         * src/plugins/spamassassin/spamassassin.c
219                 update/add to descriptions
220         * src/plugins/spamassassin/spamassassin_gtk.c
221                 fixes to the english, remove superfluous
222                 tooltips, clean up a little
223
224 2006-03-12 [paul]       2.0.0cvs133
225
226         * src/compose.c
227                 fix Bug 924, 'Account combo box shows up wrong 
228                 if & is in account name'
229
230 2006-03-11 [colin]      2.0.0cvs132
231
232         * src/summaryview.c
233                 Revert 2.0.0cvs84 which reverted 1.9.6cvs23 which
234                 messed up shift-selection because is slows down
235                 moving around summaryview. thanks -users
236
237 2006-03-10 [colin]      2.0.0cvs131
238
239         * src/plugins/spamassassin/spamassassin_gtk.c
240                 Put back Paul's engrish fixes
241
242 2006-03-10 [colin]      2.0.0cvs130
243
244         * src/plugins/spamassassin/spamassassin.c
245         * src/plugins/spamassassin/spamassassin.h
246         * src/plugins/spamassassin/spamassassin_gtk.c
247                 Cleanup SA prefs page (more)
248                 Patch by Fabien Vantard
249
250 2006-03-10 [paul]       2.0.0cvs129
251
252         * src/prefs_msg_colors.c
253         * src/prefs_spelling.c
254                 widget sensitivity
255
256 2006-03-09 [mones]      2.0.0cvs128
257
258         * po/es.po
259                 Update for next RC
260
261 2006-03-09 [wwp]        2.0.0cvs127
262
263         * configure.ac
264                 revert accidental commit (requirement for libetpan 0.43), this time
265                 not in HEAD.
266
267 2006-03-09 [wwp]        2.0.0cvs125
268
269         * configure.ac
270                 revert accidental commit (requirement for libetpan 0.43)
271
272 2006-03-09 [paul]       2.0.0cvs126
273
274         * src/prefs_receive.c
275                 remove useless frame
276                 replace 'incorporation' with 'receiving'
277         * src/plugins/clamav/clamav_plugin_gtk.c
278         * src/plugins/spamassassin/spamassassin_gtk.c
279                 improve widget sensitivity
280                 fix a bit his engrish
281
282 2006-03-09 [wwp]        2.0.0cvs125
283
284         * src/addressadd.c
285         * src/foldersel.c
286         * src/prefs_common.c
287         * src/prefs_common.h
288                 remember some more windows' sizes (add to addressbook and
289                 select folder).
290
291 2006-03-09 [paul]       2.0.0cvs124
292
293         * src/plugins/pgpcore/prefs_gpg.c
294                 normalise construction of dialogue
295
296 2006-03-09 [paul]       2.0.0cvs123
297
298         * src/plugins/trayicon/Makefile.am
299                 add missing slash
300
301 2006-03-08 [colin]      2.0.0cvs122
302
303         * src/plugins/trayicon/Makefile.am
304                 Fix build in separate dir 
305                 Patch by Bamanzi <bamanzi@gmail.com>
306
307 2006-03-08 [colin]      2.0.0cvs121
308
309         * src/procmsg.c
310                 Batch move and copies from summaryview with delayed execution
311                 too
312
313 2006-03-07 [paul]       2.0.0cvs120
314
315         * src/common/utils.c
316                 fix highlighting of URIs containing "()"
317                 Patch by Pawel Pekala
318
319 2006-03-07 [paul]       2.0.0cvs119
320
321         * src/folder.c
322         * src/folder.h
323         * src/folderview.c
324                 immediately do alphabetical resort when
325                 changing a folder's name
326                 Patch by Pawel Pekala
327
328 2006-03-07 [paul]       2.0.0cvs118
329
330         * src/news.c
331         * src/news_gtk.c
332                 when unsubscribing a newsgroup, remove the
333                 folder and msgs in .sylpheed-claws/newscache
334                 Patch by Pawel Pekala <c0rn@gazeta.pl>
335
336 2006-03-07 [paul]       2.0.0cvs117
337
338         * src/textview.c
339                 fix wrong Fake URL Warning
340                 Thanks to Hiro
341
342 2006-03-07 [colin]      2.0.0cvs116
343
344         * src/imap.c
345                 Return immediately when password dialog was
346                 cancelled
347         * src/gtk/inputdialog.c
348                 Allow empty strings for passwords
349
350
351 2006-03-06 [colin]      2.0.0cvs115
352
353         * src/imap.c
354                 Prevent double-timeouts when connection fails
355
356 2006-03-06 [colin]
357
358         2.0.1-rc1 released
359
360 2006-03-06 [colin]      2.0.0cvs114
361
362         * src/imap.c
363                 Refresh session during potentially long
364                 operations
365
366 2006-03-06 [wwp]        2.0.0cvs113
367
368         * src/prefs_msg_colors.h
369                 forgot that one (custom color labels).
370
371 2006-03-06 [wwp]        2.0.0cvs112
372
373         * src/prefs_common.c
374         * src/prefs_common.h
375         * src/prefs_msg_colors.c
376         * src/summaryview.c
377         * src/summaryview.h
378         * src/gtk/colorlabel.c
379         * src/gtk/colorlabel.h
380                 colors in messages list are now customizable. Color values and names can
381                 be changed in "Configuration/Preferences/Display/Colors/Color labels".
382                 Thanks to Paul and Colin for their help with this longstanding patch!
383
384 2006-03-06 [wwp]        2.0.0cvs111
385
386         * src/textview.c
387                 don't crash if (x)face is bad.
388
389 2006-03-05 [paul]       2.0.0cvs110
390
391         * AUTHORS
392         * configure.ac
393         * src/Makefile.am
394         * src/common/Makefile.am
395         * src/common/utils.h
396         * src/etpan/imap-thread.c
397         * src/gtk/authors.h
398         * src/plugins/clamav/Makefile.am
399         * src/plugins/demo/Makefile.am
400         * src/plugins/dillo_viewer/Makefile.am
401         * src/plugins/pgpcore/Makefile.am
402         * src/plugins/pgpcore/passphrase.c
403         * src/plugins/pgpinline/Makefile.am
404         * src/plugins/pgpmime/Makefile.am
405         * src/plugins/spamassassin/Makefile.am
406         * src/plugins/trayicon/Makefile.am
407                 fix builiding on cygwin
408                 Patch by Ralgh Young <bamanzi@gmail.com>
409
410 2006-03-04 [wwp]        2.0.0cvs109
411
412         * manual/keyboard.xml
413                 fix mixed up/down keys.
414
415 2006-03-04 [wwp]        2.0.0cvs108
416
417         * README
418         * INSTALL
419                 updated links to SpamAssassin.
420
421 2006-03-04 [wwp]        2.0.0cvs107
422
423         * manual/plugins.xml
424         * src/plugins/spamassassin/README
425                 updated SpamAssassin plugin docs to reflect new functional additions
426                 (also fix/update/documents few technical stuff more, see the README).
427
428 2006-03-04 [wwp]        2.0.0cvs106
429
430         * src/prefs_message.c
431                 normalized capitalization of message-prefs paths.
432
433 2006-03-04 [wwp]        2.0.0cvs105
434
435         * manual/advanced.xml
436                 typo.
437
438 2006-03-03 [colin]      2.0.0cvs104
439
440         * src/plugins/clamav/clamav_plugin_gtk.c
441                 Rework prefs page, patch by Fabien 
442
443 2006-03-03 [colin]      2.0.0cvs103
444
445         * src/plugins/clamav/clamav_plugin.c
446                 Set error on all errors
447
448 2006-03-03 [colin]      2.0.0cvs102
449
450         * src/common/plugin.c
451                 Initialize error to avoid crashing when a plugin fails
452                 without setting error
453
454 2006-03-02 [wwp]        2.0.0cvs101
455
456         * configure.ac
457                 fixed linker flags for libetpan support on Cygwin
458                 (thanks to H.Merijn Brand).
459
460 2006-03-02 [wwp]        2.0.0cvs100
461
462         * src/addressbook.c
463                 fix some AB error messages: one for punctuation and
464                 one wrongly duplicate (thanks, maxbritov).
465
466 2006-03-02 [wwp]        2.0.0cvs99
467
468         * src/plugins/spamassassin/spamassassin.c
469                 make sync calls to sa-learn/spamc to prevent
470                 system (whatever local or client/server) overload.
471
472 2006-03-02 [colin]      2.0.0cvs98
473
474         * src/summaryview.c
475                 Put the spam icon in the status column instead of the
476                 mark one
477
478 2006-03-01 [colin]      2.0.0cvs97
479
480         * src/plugins/spamassassin/spamassassin.c
481                 Fix segfault (g_file_set_contents fails for some 
482                 reason and err==0x2f. Can't find out why with
483                 valgrind, using working function :-)
484
485 2006-03-01 [colin]      2.0.0cvs96
486
487         * src/inc.c
488                 Offline overriding: let 'No' be cached only 3 seconds
489
490 2006-03-01 [colin]      2.0.0cvs95
491
492         * src/addr_compl.c
493         * src/addrbook.c
494         * src/addressbook.c
495         * src/addrindex.c
496         * src/folder_item_prefs.c
497         * src/headerview.c
498         * src/imap.c
499         * src/inc.c
500         * src/ldif.c
501         * src/mainwindow.c
502         * src/mh.c
503         * src/msgcache.c
504         * src/prefs_common.h
505         * src/prefs_msg_colors.c
506         * src/procheader.c
507         * src/procheader.h
508         * src/procmime.c
509         * src/procmsg.c
510         * src/procmsg.h
511         * src/send_message.h
512         * src/simple-gettext.c
513         * src/summaryview.c
514         * src/summaryview.h
515         * src/syldap.c
516         * src/textview.c
517         * src/undo.c
518         * src/common/ssl_certificate.c
519         * src/common/utils.c
520         * src/gtk/colorsel.c
521         * src/gtk/gtksctree.c
522         * src/gtk/gtkshruler.c
523         * src/plugins/trayicon/trayicon.c
524                 #if 0 goes to /dev/null
525
526 2006-03-01 [colin]      2.0.0cvs94
527
528         * src/compose.c
529         * src/imap.c
530         * src/inc.c
531         * src/inc.h
532         * src/messageview.c
533         * src/news.c
534         * src/plugins/spamassassin/spamassassin.c
535                 Allow to add information in the "working offline"
536                 window
537
538 2006-03-01 [wwp]        2.0.0cvs93
539
540         * src/plugins/spamassassin/spamassassin.c
541                 fixed spamc invocation: use a tricky temporary mini shell wrapper
542                 'cause it seems that calling `spamc ... < inputfile` with
543                 g_spawn_(a)sync simply.. erm doesn't work :-).
544
545 2006-03-01 [wwp]        2.0.0cvs92
546
547         * src/toolbar.c
548         * src/toolbar.h
549                 simplify the adding of spam/ham button to the messageview toolbar
550                 (it gets more clear now that the same button will be "Mark as spam"
551                 or "Mark as ham" according to the current message status,
552                 thanks to Colin).
553
554 2006-03-01 [wwp]        2.0.0cvs91
555
556         * src/messageview.c
557         * src/procmsg.c
558         * src/procmsg.h
559         * src/summaryview.c
560         * src/plugins/spamassassin/spamassassin.c
561         * src/plugins/spamassassin/spamassassin.h
562                 make learner callbacks return a status (0 for ok),
563                 handle it in main code to avoid setting flags when learning failed,
564                 don't learn on TCP if offline in spamassassin,
565                 thanks to Colin.
566
567                 
568
569 2006-03-01 [wwp]        2.0.0cvs90
570
571         * src/compose.c
572                 some work around the compose window's account menu,
573                 patch by Fabien Vantard.
574
575 2006-03-01 [wwp]        2.0.0cvs89
576
577         * src/plugins/spamassassin/spamassassin.c
578                 fixed bad logics, was using spamc in local mode and sa-learn
579                 in remote mode (thanks, Colin).
580
581 2006-03-01 [wwp]        2.0.0cvs88
582
583         * src/plugins/spamassassin/spamassassin.c
584         * src/plugins/spamassassin/spamassassin.h
585         * src/plugins/spamassassin/spamassassin_gtk.c
586                 made processing of emails w/ sa-plugin an option (default is TRUE),
587                 fixed Engrish some tooltips, capitalization of some debug messages
588                 and warnings. The spamassassin plugin now provides two separate
589                 services: process emails upon incorporation and spamd training.
590                 Both services (un)register independently but use some common
591                 plugin settings (transport settings, spam storage location).
592
593 2006-02-28 [wwp]        2.0.0cvs87
594
595         * src/plugins/spamassassin/spamassassin.c
596                 fix async flag to spamc cmdline execution (batch exec should
597                 be asynchronous).
598
599 2006-02-27 [wwp]        2.0.0cvs86
600
601         * src/plugins/spamassassin/spamassassin.c
602         * src/plugins/spamassassin/spamassassin.h
603         * src/plugins/spamassassin/spamassassin_gtk.c
604                 - added the ability to learn a remote spamassassin server (spamd),
605                 using spamc.
606                 - added the spamassassin option 'username', that applies to all
607                 spamassassin operations (filtering, learning, local or remote).
608                 The default username is the current unix user (if left blank
609                 from gtk prefs or config file).
610                 - commented out some unused code (notebook widget), removed unused
611                 layout (hbox1).
612                 - make more widgets sensitive to the transport type.
613
614 2006-02-27 [colin]      2.0.0cvs85
615
616         * src/plugins/spamassassin/spamassassin.c
617                 Fix sa-learn call when offline
618
619 2006-02-27 [colin]      2.0.0cvs84
620
621         * configure.ac
622         * src/Makefile.am
623         * src/mainwindow.c
624         * src/mainwindow.h
625         * src/messageview.c
626         * src/messageview.h
627         * src/prefs_toolbar.c
628         * src/procmsg.c
629         * src/stock_pixmap.c
630         * src/stock_pixmap.h
631         * src/summaryview.c
632         * src/toolbar.c
633         * src/toolbar.h
634         * src/pixmaps/ham_btn.xpm
635         * src/pixmaps/spam.xpm
636         * src/pixmaps/spam_btn.xpm
637         * src/plugins/spamassassin/spamassassin.c
638                 Add button in toolbar for spam learning
639                 Fix a few bugs from the last related commit
640                 Revert 1.9.6cvs23 which messed up shift-selection
641
642 2006-02-24 [colin]      2.0.0cvs83
643
644         * src/procmsg.c
645         * src/summaryview.c
646         * src/summaryview.h
647         * src/plugins/spamassassin/spamassassin.c
648         * src/plugins/spamassassin/spamassassin.h
649         * src/plugins/spamassassin/spamassassin_gtk.c
650                 Unregister learner when spamassassin is either
651                 disabled or over tcp
652
653 2006-02-24 [colin]      2.0.0cvs82
654
655         * src/Makefile.am
656         * src/mainwindow.c
657         * src/mainwindow.h
658         * src/procmsg.c
659         * src/procmsg.h
660         * src/stock_pixmap.c
661         * src/stock_pixmap.h
662         * src/summaryview.c
663         * src/summaryview.h
664         * src/gtk/icon_legend.c
665         * src/pixmaps/spam.xpm  ** NEW FILE **
666         * src/plugins/spamassassin/spamassassin.c
667         * src/plugins/spamassassin/spamassassin_gtk.c
668                 Add spam learning interface (Mark/Mark as 
669                 (spam|ham) menus)
670
671 2006-02-24 [wwp]        2.0.0cvs81
672
673         * src/compose.c
674         * src/compose.h
675         * src/filtering.c
676                 hide compose window when sending message in batch mode
677                 (filtering: forward and redirect). Also fixed a wrong
678                 value returned when sending failed, neutral anyway.
679                 (Colin, me) 
680
681 2006-02-24 [wwp]        2.0.0cvs80
682
683         * src/mainwindow.c
684                 use GTK+'s stock quit button. Patch by Fabien Vantard.
685
686 2006-02-24 [paul]       2.0.0cvs79
687
688         * src/news.c
689         * src/news.h
690         * src/news_gtk.c
691                 fix bug 916, 'newsgroup unsubscribe segmentation fault'
692                 Thanks to Colin
693
694 2006-02-23 [colin]      2.0.0cvs78
695
696         * src/alertpanel.c
697                 Change OK to Close in alertpanel with View log
698                 button; add accel to View log. Patch by Fabien
699                 Vantard
700
701 2006-02-23 [wwp]        2.0.0cvs77
702
703         * src/compose.c
704                 silly me, there were much more tests to perform, since toolbars can
705                 really have down to 1 element only.
706
707 2006-02-23 [wwp]        2.0.0cvs76
708
709         * commitHelper
710                 fixed indentation from my previous commit. Fallback to VISUAL if
711                 EDITOR is not set (and to vi, at last resort).
712
713 2006-02-23 [wwp]        2.0.0cvs75
714
715         * commitHelper
716                 improved error detection (Colin, me).
717
718 2006-02-23 [wwp]        2.0.0cvs74
719
720         * src/prefs_toolbar.c
721                 simplify and fix prefs/toolbars layouting. Combos' contents can
722                 now be really displayed.
723
724 2006-02-23 [wwp]        2.0.0cvs73
725         simplifies and fix prefs/toolbars layouting. Combos' contents can now
726         be really displayed.
727
728 2006-02-22 [wwp]        2.0.0cvs72
729
730         * src/compose.c
731                 fix a typo in my previous commit (sorry!).
732
733 2006-02-22 [wwp]        2.0.0cvs71
734
735         * src/prefs_toolbar.c
736                 fix a crash when adding separators to toolbars,
737                 also fix some separator item information.
738
739 2006-02-22 [wwp]        2.0.0cvs70
740
741         * src/compose.c
742                 fix a crash when redirecting (for instance) when compose window's
743                 toolbar contents has been customized (when some buttons have been
744                 removed in fact).
745
746 2006-02-21 [wwp]        2.0.0cvs69
747
748         * src/summaryview.c
749         * src/gtk/pluginwindow.c
750         * src/plugins/pgpcore/prefs_gpg.c
751                 fix some compilation warnings (feat. remains of removed code).
752
753 2006-02-21 [wwp]        2.0.0cvs68
754
755         * src/gtk/gtkutils.c
756                 fix two compilation issues, thanks to Stephan Sachse.
757
758 2006-02-20 [colin]      2.0.0cvs67
759
760         * src/mainwindow.c
761                 Don't reselect displayed mail on refocus
762                 This fixes actions misbehaving 
763
764 2006-02-20 [wwp]        2.0.0cvs66
765
766         * src/summaryview.c
767         * src/gtk/gtksctree.c
768         * src/gtk/gtkshruler.c
769                 changed more runtime typecast checks.
770
771 2006-02-20 [wwp]        2.0.0cvs65
772
773         * src/summary_search.c
774                 find all - summaryview refresh issue fixed, thanks to Colin.
775
776 2006-02-20 [wwp]        2.0.0cvs64
777
778         * src/gtk/gtkutils.c
779                 better runtime typecast checks.
780
781 2006-02-20 [wwp]        2.0.0cvs63
782
783         * src/summary_search.c
784                 enhancements to the summary search:
785                         - add the ability to stop the running search
786                           (upon ESC-key press, new Stop button or when Clear button is pressed)
787                         - don't search if no criteria (From/To/Subject/Body) is set
788                         - ensure that a busy mouse pointer is always shown when searching,
789                           show it even a bit earlier
790
791 2006-02-19 [colin]      2.0.0cvs62
792
793         * src/compose.c
794         * src/imap.c
795         * src/etpan/imap-thread.c
796         * src/etpan/imap-thread.h
797                 (Future) IMAP speed improvement on sending
798                 Will require a libetpan update
799         * src/summaryview.c
800         * src/gtk/quicksearch.c
801                 Make quicksearch clearable while running.
802
803 2006-02-17 [colin]      2.0.0cvs61
804
805         * src/imap.c
806         * src/etpan/imap-thread.c
807         * src/etpan/imap-thread.h
808                 Check for IMAP certificates
809                 ** Requires libetpan-0.42-cvs4 
810                 ** http://claws.sylpheed.org/snapshots/libetpan-0.42cvs4.tar.gz
811
812 2006-02-17 [colin]      2.0.0cvs60
813
814         * src/messageview.c
815         * src/prefs_common.c
816         * src/prefs_common.h
817         * src/prefs_message.c
818                 Add pref to display HTML-only mails with plugin, 
819                 if possible (defaulting to FALSE of course).
820
821 2006-02-16 [colin]      2.0.0cvs59
822
823         * src/main.c
824         * src/common/plugin.c
825         * src/common/plugin.h
826         * src/gtk/pluginwindow.c
827                 Keep track of requested (but unloaded) plugins
828                 in some error cases.
829
830 2006-02-16 [wwp]        2.0.0cvs58
831
832         * src/gtk/gtkaspell.c
833         * src/gtk/gtkaspell.h
834         * src/prefs_spelling.c
835         * src/compose.c
836         * src/prefs_common.c
837         * src/prefs_common.h
838                 implemented new optional spellchecker behaviour: re-check message when
839                 dictionary got changed (from compose-window/context-menu/Change dictionary).
840
841 2006-02-16 [wwp]        2.0.0cvs57
842
843         * src/quote_fmt_parse.y
844                 pclose popen'ed pipe.
845
846 2006-02-15 [colin]      2.0.0cvs56
847
848         * src/mimeview.c
849         * src/mimeview.h
850                 Let MimeViewers know which MimeView they
851                 depend of.
852         * src/summaryview.c
853                 Swap From/To columns in Sent/Queue/Drafts
854                 folders
855         * src/etpan/imap-thread.c
856                 Use mailstream_low_tls_open() for STARTTLS
857                 instead of mailstream_low_ssl_open()
858                 ** REQUIRES libetpan 0.42cvs3 **
859
860 2006-02-15 [wwp]        2.0.0cvs55
861
862         * src/compose.c
863         * src/compose.h
864         * src/message_search.c
865         * src/message_search.h
866         * src/textview.c
867         * src/gtk/gtkutils.c
868         * src/gtk/gtkutils.h
869                 added the ability to Find text in the compose window (and a bit
870                 of code factorization).
871
872 2006-02-15 [wwp]        2.0.0cvs54
873
874         * src/prefs_gtk.c
875                 yet another one file was missing (fix for some widgets' sensitivity).
876                 Thanks Colin!
877
878 2006-02-15 [wwp]        2.0.0cvs53
879
880         * src/prefs_gtk.h
881                 oops forgot that file (fix for some widgets' sensitivity).
882
883 2006-02-15 [wwp]        2.0.0cvs52
884
885         * src/summary_search.c
886                 implemented advanced summary search options (added the ability
887                 to use matcher conditions in an advanced search mode).
888
889 2006-02-15 [wwp]        2.0.0cvs51
890
891         * src/plugins/pgpcore/prefs_gpg.c
892         * src/prefs_account.c
893                 fix some widget sensitivity, mostly around some labels in
894                 account prefs.
895
896 2006-02-15 [paul]       2.0.0cvs50
897
898         * manual/advanced.xml
899                 improve Templates info
900                 written by wwp
901
902 2006-02-14 [colin]      2.0.0cvs49
903
904         * src/pixmaps/address_book.xpm
905         * src/pixmaps/preferences.xpm
906         * src/pixmaps/properties.xpm
907                 Fix pixmap size - patch by Fabien Vantard
908
909 2006-02-13 [colin]      2.0.0cvs48
910
911         * src/procmime.c
912                 Add missing fclose()s on error
913         * src/textview.c
914                 Remove unused code
915         * src/common/utils.c
916                 Fix temp files not being deleted on windows
917         Patches by Thomas Gilgin
918
919 2006-02-13 [colin]      2.0.0cvs47
920
921         * src/mainwindow.c
922                 Fix exit crash
923
924 2006-02-13 [wwp]        2.0.0cvs46
925
926         * src/plugins/pgpcore/prefs_gpg.c
927                 fixed sensitivity of radio widgets in account / GPG-plugin prefs.
928
929 2006-02-12 [colin]      2.0.0cvs45
930
931         * src/folderview.c
932         * src/main.c
933         * src/mainwindow.c
934                 Fix "stuff" when quitting
935
936 2006-02-12 [wwp]        2.0.0cvs44
937
938         * src/prefs_themes.c
939                 fix typos in debug messages.
940
941 2006-02-11 [colin]      2.0.0cvs43
942
943         * src/summaryview.c
944                 don't allow drag/drop from ourself
945
946 2006-02-10 [wwp]        2.0.0cvs42
947
948         * src/exporthtml.c
949         * src/html.c
950         * src/html.h
951         * src/procmime.c
952         * src/textview.c
953                 renamed html_ prefixed functions and data structures to avoid
954                 namespace clashes w/ other software (gtkhtml2 for instance).
955                 Closes bug #907.
956
957
958 2006-02-09 [colin]      2.0.0cvs41
959
960         * src/summaryview.c
961                 Fix shitty logic messed up. Thanks Ticho for the hint!
962
963 2006-02-09 [wwp]        2.0.0cvs40
964
965         * src/gtk/about.c
966         * src/compose.c
967         * src/prefs_account.c
968         * src/prefs_gtk.h
969         * src/editaddress.c
970                 added mnemonics to notebook widgets (compose, account prefs, about and editaddress),
971                 patch by Fabien Vantard (fzzzzz!). Solved some mnemonic conflicts around the
972                 Browse buttons in accounts prefs.
973
974 2006-02-09 [colin]      2.0.0cvs39
975
976         * src/matcher.c
977                 Check for pointer before using its members
978         * src/gtk/gtksourceprintjob.c
979                 Fix a wrong warning
980
981 2006-02-09 [wwp]        2.0.0cvs38
982
983         * src/gtk/filesel.c
984                 fix few compiler warnings (type mismatch).
985
986 2006-02-09 [paul]       2.0.0cvs37
987
988         * po/fr.po
989                 updated by Fabien Vantard
990
991 2006-02-08 [colin]      2.0.0cvs36
992
993         * src/prefs_common.c
994         * src/common/defs.h
995         * src/common/plugin.c
996                 allow windows and linux configurations to coexist
997                 patch by Thomas Gilgin
998
999 2006-02-08 [colin]      2.0.0cvs35
1000
1001         * src/filtering.c
1002         * src/matcher.c
1003         * src/matcher.h
1004         * src/matcher_parser_parse.y
1005         * src/prefs_filtering_action.c
1006         * src/prefs_matcher.c
1007                 Add the "Ignore thread" filtering
1008                 action
1009
1010 2006-02-08 [colin]      2.0.0cvs34
1011
1012         * src/compose.c
1013         * src/procmime.c
1014         * src/procmime.h
1015                 Fix bug #905 (damaged attachment)
1016                 text files with raw \0's aren't really text files
1017         FOR_STABLE
1018
1019 2006-02-08 [colin]      2.0.0cvs33
1020
1021         * src/summaryview.c
1022                 Fix crasher introduced yesterday
1023
1024 2006-02-08 [wwp]        2.0.0cvs32
1025
1026         * src/compose.c
1027         * src/compose.h
1028                 templates enhancement: allow symbols substitutions in To/Cc/Bcc/Subject fields
1029
1030 2006-02-08 [wwp]        2.0.0cvs31
1031
1032         * src/prefs_template.c
1033                 templates enhancement: allow address completion for Cc and Bcc fields
1034                 (it was currently possible for the To field only)
1035
1036 2006-02-08 [colin]      2.0.0cvs30
1037
1038         * src/compose.c
1039                 Don't unblock if not blocked
1040         FOR_STABLE
1041
1042 2006-02-07 [colin]      2.0.0cvs29
1043
1044         * src/action.c
1045                 Forgot to refresh summaryview
1046
1047 2006-02-07 [colin]      2.0.0cvs28
1048
1049         * src/action.c
1050                 Freeze/thaw message list and folder list while
1051                 processing %as{} actions 
1052         * src/compose.c
1053                 Fix auto-wrap disabling after a middle-click
1054                 paste - FOR_STABLE
1055
1056 2006-02-07 [paul]       2.0.0cvs27
1057
1058         * src/folder.c
1059                 fix freeing of uninitialised pointers
1060                 Thanks to Colin
1061
1062 2006-02-06 [colin]      2.0.0cvs26
1063
1064         * src/folder.c
1065                 Use g_slist_prepend in potentially big list
1066
1067 2006-02-06 [colin]      2.0.0cvs25
1068
1069         * src/folder.c
1070                 Completely skip processing if it doesn't 
1071                 exist (faster!)
1072
1073 2006-02-06 [colin]      2.0.0cvs24
1074
1075         * src/folder.c
1076         * src/summaryview.c
1077                 Batch filtering in summaryview (from Tools menu)
1078                 and pre/post//-processing too
1079
1080 2006-02-06 [colin]      2.0.0cvs23
1081
1082         * src/procmsg.h
1083         * src/filtering.c
1084                 Use a special field for batch filtering instead
1085                 of stepping on deferred execution's toes
1086
1087 2006-02-06 [colin]      2.0.0cvs22
1088
1089         * src/action.c
1090         * src/filtering.c
1091         * src/filtering.h
1092         * src/folder.c
1093         * src/summaryview.c
1094                 Fix filtering via menus and actions
1095
1096 2006-02-06 [colin]      2.0.0cvs21
1097
1098         * src/imap.c
1099                 Put the added file directly to cache if possible (will work
1100                 with next libetpan)
1101         * src/filtering.c
1102         * src/filtering.h
1103         * src/inc.c
1104         * src/folder.c
1105         * src/mbox.c
1106         * src/procmsg.h
1107                 Move and copy filtered messages by batches instead of one
1108                 by one - faster on IMAP
1109         * src/procmsg.c
1110                 Add a function that'll possibly be useful later
1111
1112 2006-02-06 [colin]      2.0.0cvs20
1113
1114         * src/addressbook.c
1115                 Use internal mime-type instead of text/plain for d'n'd
1116         * src/compose.c
1117                 Allow attaching files from mimeview's icon list via d'n'd
1118         * src/folderview.c
1119         * src/folderview.h
1120                 Use internal mime-type instead of text/plain for d'n'd
1121                 Don't try to selected opened folder if none is
1122                 Factorize d'n'd from other apps code
1123         * src/headerview.c
1124         * src/textview.c
1125         * src/gtk/gtkutils.c
1126         * src/gtk/gtkutils.h
1127                 Factorize Face/X-Face stuff
1128         * src/mimeview.c
1129                 Fix d'n'd to other apps
1130         * src/prefs_message.c
1131                 Let the XFace pref be usable without libcompface as it also
1132                 applies to Face
1133         * src/summaryview.c
1134                 Fix d'n'd to other apps
1135                 Factorize d'n'd from other apps code
1136
1137 2006-02-06 [wwp]        2.0.0cvs19
1138
1139         * po/it.po
1140                 Italian translation fixes by Andrea Spadaccini (no more confusion
1141                 between filtering and processing, and few changes in the About
1142                 dialog).
1143
1144
1145 2006-02-06 [mones]      2.0.0cvs18
1146
1147         * src/gtk/icon_legend.c
1148                 Improved descriptions allowing better translations
1149
1150 2006-02-05 [colin]      2.0.0cvs17
1151
1152         * src/imap.c
1153                 Add the f*cking missing expunge that caused imap_fetch_env
1154                 to fail after an add_msgs ! :-///
1155         * src/etpan/imap-thread.c
1156                 Add a bit of debug
1157         FOR_STABLE
1158
1159 2006-02-05 [colin]      2.0.0cvs16
1160
1161         * src/common/utils.c
1162                 Don't check for return-path (or we can't put
1163                 back non-sent mails)
1164
1165 2006-02-05 [colin]      2.0.0cvs15
1166
1167         * src/textview.c
1168                 Don't try to display Face header in textview
1169                 when teh headerview's active
1170
1171 2006-02-05 [colin]      2.0.0cvs14
1172
1173         * tools/tbird2syl.py
1174         * tools/Makefile.am
1175                 Add script to import Thunderbird mails
1176
1177 2006-02-05 [colin]      2.0.0cvs13
1178
1179         * src/headerview.c
1180         * src/procheader.c
1181         * src/procmsg.c
1182         * src/procmsg.h
1183         * src/textview.c
1184                 Show Face headers - patch partially by Klaus Flittner
1185
1186 2006-02-05 [colin]      2.0.0cvs12
1187
1188         * src/folderview.c
1189         * src/summaryview.c
1190         * src/common/utils.c
1191         * src/common/utils.h
1192                 Let dnd work from mime icons to summaryview
1193                 and to folderview too
1194                 Add a crude test to avoid trying to add files
1195                 drag'n'dropped when they're not mails
1196
1197 2006-02-04 [colin]      2.0.0cvs11
1198
1199         * src/summaryview.c
1200         * src/mimeview.c
1201                 Fix utf8 conversion
1202
1203 2006-02-04 [colin]      2.0.0cvs10
1204
1205         * src/compose.c
1206         * src/folderview.c
1207         * src/mimeview.c
1208         * src/summaryview.c
1209         * src/summaryview.h
1210                 Added various drag and drop capas:
1211                 From                    To
1212                 summaryview             other apps
1213                 mimeview icons          other apps
1214                 other apps              summaryview
1215                 other apps              folderview
1216
1217                 This shouldn't have broken the existing:
1218                 From                    To
1219                 summaryview             folderview
1220                 folderview              folderview
1221                 summaryview             compose's attachments
1222
1223         Tests welcomed.
1224
1225 2006-02-02 [paul]       2.0.0cvs9
1226
1227         * src/mainwindow.c
1228                 move global option 'Set displayed columns...' out
1229                 of folder option grouping.
1230                 fix sensitivity of 'harvest addresses'
1231         FOR_STABLE
1232
1233 2006-02-01 [colin]      2.0.0cvs8
1234
1235         * src/mimeview.c
1236                 Revert the alertpanel patch, it sucks (intrusive
1237                 and gets in the way of "open")
1238
1239 2006-02-01 [colin]      2.0.0cvs7
1240
1241         * src/compose.c
1242         * src/prefs_account.c
1243         * src/prefs_common.c
1244         * src/common/defs.h
1245         * src/common/utils.c
1246         * src/common/utils.h
1247                 Add ability to edit the signature file
1248                 from the account preferences, and use
1249                 a default for the text editor.
1250                 Patch by Fabien Vantard
1251
1252 2006-02-01 [colin]      2.0.0cvs6
1253
1254         * src/mimeview.c
1255                 Try to get mime type by extension if it is
1256                 application/octet-stream
1257                 Display a window with possible choices when
1258                 encountering unknown mime types
1259         * src/gtk/filesel.c
1260         * src/gtk/filesel.h
1261                 Add preview
1262                 Allow multiple selection in filtered filesel
1263                 (patch by Fabien Vantard)
1264         * src/gtk/pluginwindow.c
1265                 Use it (patch by Fabien Vantard)
1266
1267 2006-02-01 [paul]       2.0.0cvs5
1268
1269         * src/jpilot.c
1270                 fix crash on creating jpilot address book
1271                 Thanks to Colin - FOR_STABLE
1272         * src/prefs_summaries.c
1273         * src/prefs_wrapping.c
1274         * src/gtk/icon_legend.c
1275         * src/gtk/quicksearch.c
1276                 string fixes and additions
1277
1278 2006-02-01 [paul]       2.0.0cvs4
1279
1280         * src/compose.c
1281         * src/mainwindow.c
1282         * src/messageview.c
1283         * src/prefs_send.c
1284                 add Arabic encoding option
1285                 Patch submitted by  Mohammed Sameer <msameer@users.sf.net>
1286
1287 2006-01-31 [colin]      2.0.0cvs3
1288
1289         * src/plugins/pgpcore/passphrase.c
1290                 Convert passphrase to locale encoding
1291         * src/compose.c
1292                 Fix drafting on IMAP. Crappy bug sneaked in
1293                 the release :-/
1294         FOR_STABLE
1295
1296 2006-01-30 [paul]       2.0.0cvs2
1297
1298         * src/gtk/icon_legend.c
1299                 show the new entries
1300
1301 2006-01-30 [colin]      2.0.0cvs1
1302
1303         * src/manual.c
1304                 Check for the file to be present before 
1305                 enabling the menu - FOR_STABLE
1306         * src/gtk/icon_legend.c
1307                 Add folders icons (not all of them, there
1308                 are too much, but the most intriguing ones)
1309
1310 2006-01-30 [paul]       2.0.0
1311
1312         version 2.0.0 released
1313
1314 2006-01-30 [paul]       1.9.100cvs200
1315
1316         * manual/faq.xml
1317         * manual/gpl.xml
1318         * manual/intro.xml
1319         * manual/starting.xml
1320         * manual/sylpheed-claws-manual.xml
1321                 fixes, additions
1322
1323 2006-01-29 [mones]      1.9.100cvs199
1324
1325         * manual/account.xml
1326         * manual/advanced.xml
1327         * manual/glossary.xml
1328                 Some typos fixed, added LDIF term to glossary
1329         * po/es.po
1330                 Fixed leading plus symbol
1331
1332 2006-01-29 [paul]       1.9.100cvs198
1333
1334         * po/fi.po
1335         * po/sk.po
1336                 updated by Tommi Pirinen and Andrej Kacian
1337
1338 2006-01-29 [paul]       1.9.100cvs197
1339
1340         * src/gtk/authors.h
1341                 remove duplicates
1342
1343 2006-01-29 [paul]       1.9.100cvs196
1344
1345         * AUTHORS
1346         * po/nl.po
1347         * src/gtk/authors.h
1348         * tools/claws.i18n.status.pl
1349                 nl translation updated by Tim Dijkstra
1350
1351 2006-01-29 [paul]       1.9.100cvs195
1352
1353         * po/sr.po
1354         * po/sv.po
1355                 updated by Aleksandar Urosevic and Anders Troback
1356
1357 2006-01-28 [colin]      1.9.100cvs194
1358
1359         * src/gtk/gtksourceprintjob.c
1360                 Don't fiddle with PangoLayout when we
1361                 have an image
1362
1363 2006-01-28 [paul]       1.9.100cvs193
1364
1365         * AUTHORS
1366         * po/el.po
1367         * po/zh_CN.po
1368         * src/gtk/authors.h
1369         * tools/claws.i18n.status.pl
1370                 updated translations submitted by Stavros Giannouris
1371                 and Ralgh Young
1372
1373 2006-01-27 [colin]      1.9.100cvs192
1374
1375         * src/summaryview.c
1376         * src/gtk/gtksourceprintjob.c
1377                 Add image printing 
1378                 (libgnomeprint only, of course)
1379
1380 2006-01-27 [paul]       1.9.100cvs191
1381
1382         * po/fr.po
1383         * po/it.po
1384                 updated by Fabien Vantard and Andrea Spadaccini
1385
1386 2006-01-26 [colin]      1.9.100cvs190
1387
1388         * manual/Makefile.am
1389         * configure.ac
1390                 Make building the manual optional 
1391                 (--disable-manual)
1392
1393 2006-01-26 [paul]       1.9.100cvs189
1394
1395         * manual/glossary.xml
1396         * manual/plugins.xml
1397                 edited
1398         * po/en_GB.po
1399                 updated
1400
1401 2006-01-26 [paul]       1.9.100cvs188
1402
1403         * src/prefs_display_header.c
1404         * src/prefs_folder_column.c
1405         * src/prefs_msg_colors.c
1406         * src/prefs_summaries.c
1407         * src/prefs_summary_column.c
1408                 HIGify
1409
1410 2006-01-25 [colin]      1.9.100cvs187
1411
1412         * src/imap.c
1413                 Don't allow moving/copying mails between
1414                 queue/drafts and non-queue/drafts folders
1415                 Fixes bug #897 (message header is resetted 
1416                 if one is copied to Drafts)
1417
1418 2006-01-25 [colin]      1.9.100cvs186
1419
1420         * src/folder.c
1421         * src/mainwindow.c
1422                 Fix subscribed folders not found
1423         * src/compose.c
1424                 Don't try to encode as original mail's charset
1425                 if it's ascii 
1426
1427 2006-01-25 [paul]       1.9.100cvs185
1428
1429         * AUTHORS
1430         * po/Makevars
1431                 updated
1432         * po/de.po
1433         * po/pl.po
1434         * po/pt_BR.po
1435         * po/sr.po
1436                 updates submitted by Stephan Sachse, Emilian Nowak
1437                 and Quar, Frederico Goncalves Guimaraes, and
1438                 Aleksandar Urosevic
1439                 Fix Bug 896, 'PT_BR locale broken'.
1440         * src/gtk/authors.h
1441                 updated
1442
1443 2006-01-24 [mones]      1.9.100cvs184
1444
1445         * manual/glossary.xml
1446                 All current terms finished. Reviewers welcome ;-)
1447         * manual/keyboard.xml
1448                 Fixed column width for pdf output.
1449         * po/es.po
1450                 Updated
1451
1452 2006-01-24 [paul]       1.9.100cvs183
1453
1454         * manual/glossary.xml
1455                 fix id name
1456         * manual/dist/html/Makefile.am
1457         * manual/dist/pdf/Makefile.am
1458         * manual/dist/ps/Makefile.am
1459         * manual/dist/txt/Makefile.am
1460                 fix make deps
1461                 Thanks to Colin
1462
1463 2006-01-24 [mones]      1.9.100cvs182
1464
1465         * manual/glossary.xml
1466                 Nearly finished, some terms missing.
1467
1468 2006-01-23 [paul]       1.9.100cvs181
1469
1470         * manual/dist/html/Makefile.am
1471         * manual/dist/pdf/Makefile.am
1472         * manual/dist/ps/Makefile.am
1473         * manual/dist/txt/Makefile.am
1474         * src/mainwindow.c
1475                 re-enable manual
1476                 Thanks to Colin
1477
1478 2006-01-22 [colin]      1.9.100cvs180
1479
1480         * src/compose.c
1481         * src/gtk/gtkaspell.c
1482                 Don't deselect stuff before right-clicking, with aspell.
1483                 (This prevented right-click Copy, for example).
1484                 Thanks to Clo!
1485
1486 2006-01-22 [paul]       1.9.100cvs179
1487
1488         * src/summary_search.c
1489                 don't fix the widget size as it causes problems
1490                 under localisation.
1491                 Thanks to Emilian Nowak
1492
1493 2006-01-21 [paul]       1.9.100cvs178
1494
1495         * src/prefs_themes.c
1496                 fix broken underlining of label text
1497                 with some translations
1498
1499 2006-01-21 [colin]      1.9.100cvs177
1500
1501         * po/fr.po
1502                 In French "Composition" puts the Compose toolbar's prefs in the wrong place
1503
1504 2006-01-20 [colin]      1.9.100cvs176
1505
1506         * configure.ac
1507         * Makefile.am
1508         * manual/Makefile
1509         * manual/dist/html/.cvsignore
1510         * manual/dist/html/Makefile.am
1511         * manual/dist/pdf/.cvsignore
1512         * manual/dist/pdf/Makefile.am
1513         * manual/dist/ps/.cvsignore
1514         * manual/dist/ps/Makefile.am
1515         * manual/dist/txt/.cvsignore
1516         * manual/dist/txt/Makefile.am
1517                 Autotool-ize manual
1518
1519 2006-01-20 [paul]       1.9.100cvs175
1520
1521         * manual/handling.xml
1522                 make Filtering and Searching entries easier to find
1523         * manual/keyboard.xml
1524                 add the remaining default keybinds
1525         * src/prefs_summaries.c
1526                 update the default keybinds
1527
1528 2006-01-20 [paul]       1.9.100cvs174
1529
1530         * src/addressbook.c
1531         * src/addrgather.c
1532         * src/addrharvest.c
1533         * src/editaddress.c
1534         * src/editgroup.c
1535         * src/exphtmldlg.c
1536         * src/expldifdlg.c
1537         * src/exporthtml.c
1538         * src/exportldif.c
1539         * src/ldif.c
1540                 replace 'e-mail' with 'email'
1541         * src/summary_search.c
1542                 add mnemonic to "Find all" button
1543
1544 2006-01-20 [wwp]        1.9.100cvs173
1545
1546         * src/export.c
1547         * src/import.c
1548                 touched mbox import/export buttons for HIG-compliance
1549
1550 2006-01-19 [paul]       1.9.100cvs172
1551
1552         * manual/account.xml
1553         * manual/addrbook.xml
1554         * manual/advanced.xml
1555         * manual/faq.xml
1556         * manual/handling.xml
1557         * manual/intro.xml
1558         * manual/plugins.xml
1559         * manual/starting.xml
1560                 more editing
1561
1562 2006-01-19 [paul]       1.9.100cvs171
1563
1564         * src/toolbar.c
1565                 allow use of trash button while receiving
1566                 Thanks to Colin
1567
1568 2006-01-19 [wwp]        1.9.100cvs170
1569
1570         * src/gtk/quicksearch.c
1571         * src/compose.c
1572                 force text color to black when yellow background is set
1573
1574 2006-01-19 [colin]      1.9.100cvs169
1575
1576         * src/plugins/trayicon/trayicon.c
1577                 Gray out Get Mail when already getting mail
1578
1579 2006-01-18 [paul]       1.9.100cvs168
1580
1581         * src/compose.c
1582                 give widget yellow background was To is
1583                 set via folder prefs
1584         * src/gtk/quicksearch.c
1585                 give widget yellow background when quick
1586                 search is active.
1587                 Thanks to Colin
1588
1589 2006-01-18 [paul]       1.9.100cvs167
1590
1591         * doc/man/sylpheed-claws.1
1592                 add --subscribe option
1593
1594 2006-01-18 [paul]       1.9.100cvs166
1595
1596         * tools/kdeservicemenu/template_sylpheed-attach-files.desktop
1597         * tools/kdeservicemenu/template_sylpheed-compress-attach.desktop
1598                 use %U instead of %F (%F is broken for user installed
1599                 files in kde 3.5)
1600
1601 2006-01-18 [colin]      1.9.100cvs165
1602
1603         * src/summaryview.c
1604                 Default to Yes in "No more * messages" dialogs
1605
1606 2006-01-17 [colin]      1.9.100cvs164
1607
1608         * src/compose.c
1609                 Possibly fix an invalid iterator causing
1610                 crash
1611
1612 2006-01-17 [colin]      1.9.100cvs163
1613
1614         * src/mimeview.c
1615                 Fix crash when the image disappears under the
1616                 image viewer
1617
1618 2006-01-16 [colin]      1.9.100cvs162
1619
1620         * src/compose.c
1621                 Fix reenabling autowrap
1622
1623 2006-01-16 [colin]      1.9.100cvs161
1624
1625         * src/compose.c
1626                 reset quote_len before getting quote_str
1627
1628 2006-01-16 [colin]      1.9.100cvs160
1629
1630         * src/account.c
1631         * src/account.h
1632         * src/folder.c
1633         * src/imap_gtk.c
1634         * src/mh_gtk.c
1635                 Fix bug #883 (default inbox does not track folder move)
1636
1637 2006-01-16 [colin]      1.9.100cvs159
1638
1639         * src/compose.c
1640         * src/plugins/pgpcore/passphrase.c
1641                 More buttons fixes
1642
1643 2006-01-16 [paul]       1.9.100cvs158
1644
1645         * src/prefs_actions.c
1646         * src/prefs_filtering_action.c
1647         * src/prefs_matcher.c
1648         * src/quote_fmt.c
1649         * src/gtk/description_window.c
1650         * src/gtk/description_window.h
1651         * src/gtk/quicksearch.c
1652                 description window cleanups
1653
1654 2006-01-15 [colin]      1.9.100cvs157
1655
1656         * src/addressbook.c
1657         * src/prefs_filtering.c
1658                 Same here
1659
1660 2006-01-15 [colin]      1.9.100cvs156
1661
1662         * src/folderview.c
1663         * src/mainwindow.c
1664                 Same for "Empty trash"
1665
1666 2006-01-15 [colin]      1.9.100cvs155
1667
1668         * src/inc.c
1669                 Override offline dialog had Yes by default
1670
1671 2006-01-15 [colin]      1.9.100cvs154
1672
1673         * src/summaryview.c
1674                 Delete selected messages? previously had Yes the default
1675
1676 2006-01-15 [colin]      1.9.100cvs153
1677
1678         * src/folder.c
1679         * src/folder.h
1680         * src/main.c
1681                 Check if a mailbox is loaded after all
1682                 plugins are loaded.
1683
1684 2006-01-15 [colin]      1.9.100cvs152
1685
1686         * src/folder.c
1687                 Don't start wizard when there are unloaded folders (will help
1688                 people with only mbox or maildir mailboxes)
1689
1690 2006-01-14 [colin]      1.9.100cvs151
1691
1692         * src/addressbook.c
1693         * src/expldifdlg.c
1694         * src/importldif.c
1695         * src/importmutt.c
1696         * src/importpine.c
1697         * src/mh_gtk.c
1698                 More HIG compliance and fixes
1699
1700 2006-01-14 [colin]      1.9.100cvs150
1701
1702         * src/prefs_filtering_action.c
1703         * src/foldersel.c
1704                 Two forgotten button order changes
1705
1706 2006-01-14 [colin]      1.9.100cvs149
1707
1708         * src/account.c
1709         * src/addressbook.c
1710         * src/compose.c
1711         * src/folderview.c
1712         * src/imap_gtk.c
1713         * src/mainwindow.c
1714         * src/mh_gtk.c
1715         * src/news_gtk.c
1716         * src/prefs_actions.c
1717         * src/prefs_customheader.c
1718         * src/prefs_filtering.c
1719         * src/prefs_matcher.c
1720         * src/prefs_template.c
1721         * src/ssl_manager.c
1722         * src/summaryview.c
1723         * src/textview.c
1724         * src/toolbar.c
1725                 All deletion confirmations are now "Cancel, Delete" 
1726                 instead of "No, Yes"
1727                 Clarified most of the other "No, Yes" to 
1728                 "Cancel, Descriptive_action"
1729                 Rechanged the "Entry not saved" alerts to have 
1730                 "Close, Continue editing"
1731
1732
1733 2006-01-14 [paul]
1734
1735         * 2.0.0-rc4 released
1736
1737 2006-01-14 [paul]       1.9.100cvs148
1738
1739         * src/account.c
1740         * src/addressadd.c
1741         * src/addressbook.c
1742         * src/compose.c
1743         * src/editaddress.c
1744         * src/editbook.c
1745         * src/editgroup.c
1746         * src/editjpilot.c
1747         * src/editldap.c
1748         * src/editvcard.c
1749         * src/exphtmldlg.c
1750         * src/expldifdlg.c
1751         * src/folderview.c
1752         * src/grouplistdialog.c
1753         * src/imap_gtk.c
1754         * src/importmutt.c
1755         * src/importpine.c
1756         * src/inc.c
1757         * src/main.c
1758         * src/mainwindow.c
1759         * src/message_search.c
1760         * src/messageview.c
1761         * src/mh_gtk.c
1762         * src/mimeview.c
1763         * src/news_gtk.c
1764         * src/prefs_actions.c
1765         * src/prefs_customheader.c
1766         * src/prefs_filtering.c
1767         * src/prefs_matcher.c
1768         * src/prefs_template.c
1769         * src/prefs_themes.c
1770         * src/ssl_manager.c
1771         * src/summary_search.c
1772         * src/summaryview.c
1773         * src/textview.c
1774         * src/toolbar.c
1775         * src/gtk/foldersort.c
1776         * src/gtk/gtkaspell.c
1777         * src/gtk/inputdialog.c
1778         * src/gtk/prefswindow.c
1779         * src/plugins/pgpcore/select-keys.c
1780         * src/plugins/trayicon/trayicon.c
1781                 HIG compliant button order
1782
1783 2006-01-14 [mones]      1.9.100cvs147
1784
1785         * po/es.po
1786                 Updated translation
1787
1788 2006-01-13 [paul]       1.9.100cvs146
1789
1790         * AUTHORS
1791         * ChangeLog
1792         * src/gtk/authors.h
1793                 add Joshua M. Kwan to contributors list
1794
1795 2006-01-13 [colin]      1.9.100cvs145
1796
1797         * src/gtk/quicksearch.c
1798                 Don't refocus quick search after executing (Esc or Enter)
1799                 Allows to '/'search something then move up/down in 
1800                 summaryview, and to Esc a search and be back in the 
1801                 summaryview
1802
1803 2006-01-13 [paul]       1.9.100cvs144
1804
1805         * src/plugins/pgpinline/pgpinline.c
1806                 support Content-Type 'application/pgp'
1807                 patch by Joshua M. Kwan <joshuak@users.sf.net>
1808
1809 2006-01-13 [paul]       1.9.100cvs143
1810
1811         * manual/account.xml
1812                 make mention of partial retrieval
1813                 thanks to Colin
1814
1815 2006-01-13 [paul]       1.9.100cvs142
1816
1817         * src/account.c
1818         * src/account.h
1819         * src/action.c
1820         * src/action.h
1821         * src/adbookbase.h
1822         * src/addr_compl.c
1823         * src/addr_compl.h
1824         * src/addrbook.c
1825         * src/addrcache.c
1826         * src/addrcache.h
1827         * src/addrcindex.c
1828         * src/addrcindex.h
1829         * src/addrclip.c
1830         * src/addrclip.h
1831         * src/addrdefs.h
1832         * src/addressadd.c
1833         * src/addressadd.h
1834         * src/addressbook.c
1835         * src/addressbook.h
1836         * src/addrgather.c
1837         * src/addrgather.h
1838         * src/addrharvest.c
1839         * src/addrharvest.h
1840         * src/addrindex.c
1841         * src/addrindex.h
1842         * src/addritem.c
1843         * src/addritem.h
1844         * src/addrquery.c
1845         * src/addrquery.h
1846         * src/addrselect.c
1847         * src/addrselect.h
1848         * src/alertpanel.c
1849         * src/alertpanel.h
1850         * src/browseldap.c
1851         * src/browseldap.h
1852         * src/codeconv.c
1853         * src/codeconv.h
1854         * src/compose.c
1855         * src/compose.h
1856         * src/customheader.c
1857         * src/customheader.h
1858         * src/displayheader.c
1859         * src/displayheader.h
1860         * src/editaddress.c
1861         * src/editaddress.h
1862         * src/editbook.c
1863         * src/editbook.h
1864         * src/editgroup.c
1865         * src/editgroup.h
1866         * src/editjpilot.c
1867         * src/editjpilot.h
1868         * src/editldap.c
1869         * src/editldap.h
1870         * src/editldap_basedn.c
1871         * src/editldap_basedn.h
1872         * src/editvcard.c
1873         * src/editvcard.h
1874         * src/exphtmldlg.c
1875         * src/exphtmldlg.h
1876         * src/expldifdlg.c
1877         * src/expldifdlg.h
1878         * src/export.h
1879         * src/exporthtml.c
1880         * src/exporthtml.h
1881         * src/exportldif.c
1882         * src/exportldif.h
1883         * src/filtering.c
1884         * src/filtering.h
1885         * src/folder.c
1886         * src/folder.h
1887         * src/folder_item_prefs.c
1888         * src/folder_item_prefs.h
1889         * src/foldersel.c
1890         * src/foldersel.h
1891         * src/folderutils.c
1892         * src/folderutils.h
1893         * src/folderview.c
1894         * src/folderview.h
1895         * src/grouplistdialog.c
1896         * src/grouplistdialog.h
1897         * src/headerview.c
1898         * src/html.c
1899         * src/html.h
1900         * src/image_viewer.c
1901         * src/image_viewer.h
1902         * src/imap.c
1903         * src/imap.h
1904         * src/imap_gtk.c
1905         * src/imap_gtk.h
1906         * src/import.h
1907         * src/importldif.c
1908         * src/importldif.h
1909         * src/importmutt.c
1910         * src/importmutt.h
1911         * src/importpine.c
1912         * src/importpine.h
1913         * src/inc.c
1914         * src/inc.h
1915         * src/jpilot.c
1916         * src/jpilot.h
1917         * src/ldapctrl.c
1918         * src/ldapctrl.h
1919         * src/ldaplocate.c
1920         * src/ldaplocate.h
1921         * src/ldapquery.c
1922         * src/ldapquery.h
1923         * src/ldapserver.c
1924         * src/ldapserver.h
1925         * src/ldaputil.c
1926         * src/ldaputil.h
1927         * src/ldif.c
1928         * src/ldif.h
1929         * src/main.c
1930         * src/main.h
1931         * src/mainwindow.c
1932         * src/mainwindow.h
1933         * src/manual.c
1934         * src/manual.h
1935         * src/mbox.c
1936         * src/mbox.h
1937         * src/message_search.c
1938         * src/message_search.h
1939         * src/messageview.c
1940         * src/messageview.h
1941         * src/mh.c
1942         * src/mh.h
1943         * src/mh_gtk.c
1944         * src/mh_gtk.h
1945         * src/mimeview.c
1946         * src/mimeview.h
1947         * src/msgcache.c
1948         * src/msgcache.h
1949         * src/mutt.c
1950         * src/mutt.h
1951         * src/news.c
1952         * src/news.h
1953         * src/news_gtk.c
1954         * src/news_gtk.h
1955         * src/partial_download.c
1956         * src/partial_download.h
1957         * src/pine.c
1958         * src/pine.h
1959         * src/pop.c
1960         * src/pop.h
1961         * src/prefs_account.c
1962         * src/prefs_account.h
1963         * src/prefs_actions.c
1964         * src/prefs_actions.h
1965         * src/prefs_common.c
1966         * src/prefs_common.h
1967         * src/prefs_compose_writing.c
1968         * src/prefs_compose_writing.h
1969         * src/prefs_customheader.c
1970         * src/prefs_customheader.h
1971         * src/prefs_display_header.c
1972         * src/prefs_display_header.h
1973         * src/prefs_filtering.c
1974         * src/prefs_filtering.h
1975         * src/prefs_filtering_action.c
1976         * src/prefs_filtering_action.h
1977         * src/prefs_folder_column.c
1978         * src/prefs_folder_column.h
1979         * src/prefs_folder_item.c
1980         * src/prefs_folder_item.h
1981         * src/prefs_fonts.c
1982         * src/prefs_fonts.h
1983         * src/prefs_gtk.c
1984         * src/prefs_gtk.h
1985         * src/prefs_image_viewer.c
1986         * src/prefs_image_viewer.h
1987         * src/prefs_matcher.c
1988         * src/prefs_matcher.h
1989         * src/prefs_message.c
1990         * src/prefs_msg_colors.c
1991         * src/prefs_msg_colors.h
1992         * src/prefs_other.c
1993         * src/prefs_quote.c
1994         * src/prefs_receive.c
1995         * src/prefs_send.c
1996         * src/prefs_spelling.c
1997         * src/prefs_spelling.h
1998         * src/prefs_summaries.c
1999         * src/prefs_summaries.h
2000         * src/prefs_summary_column.c
2001         * src/prefs_summary_column.h
2002         * src/prefs_template.c
2003         * src/prefs_template.h
2004         * src/prefs_themes.c
2005         * src/prefs_themes.h
2006         * src/prefs_toolbar.c
2007         * src/prefs_toolbar.h
2008         * src/prefs_wrapping.c
2009         * src/prefs_wrapping.h
2010         * src/privacy.c
2011         * src/privacy.h
2012         * src/procheader.c
2013         * src/procheader.h
2014         * src/procmime.c
2015         * src/procmime.h
2016         * src/procmsg.c
2017         * src/procmsg.h
2018         * src/quote_fmt.c
2019         * src/quote_fmt_parse.y
2020         * src/recv.c
2021         * src/recv.h
2022         * src/remotefolder.c
2023         * src/remotefolder.h
2024         * src/send_message.c
2025         * src/send_message.h
2026         * src/setup.c
2027         * src/setup.h
2028         * src/sourcewindow.c
2029         * src/sourcewindow.h
2030         * src/ssl_manager.c
2031         * src/ssl_manager.h
2032         * src/statusbar.c
2033         * src/statusbar.h
2034         * src/stock_pixmap.c
2035         * src/stock_pixmap.h
2036         * src/summary_search.c
2037         * src/summary_search.h
2038         * src/summaryview.c
2039         * src/summaryview.h
2040         * src/syldap.c
2041         * src/syldap.h
2042         * src/textview.c
2043         * src/textview.h
2044         * src/toolbar.c
2045         * src/toolbar.h
2046         * src/undo.c
2047         * src/undo.h
2048         * src/unmime.c
2049         * src/unmime.h
2050         * src/vcard.c
2051         * src/vcard.h
2052         * src/wizard.c
2053         * src/wizard.h
2054         * src/common/base64.c
2055         * src/common/base64.h
2056         * src/common/defs.h
2057         * src/common/hooks.c
2058         * src/common/hooks.h
2059         * src/common/log.c
2060         * src/common/log.h
2061         * src/common/mgutils.c
2062         * src/common/mgutils.h
2063         * src/common/nntp.c
2064         * src/common/nntp.h
2065         * src/common/passcrypt.c
2066         * src/common/passcrypt.h.in
2067         * src/common/plugin.c
2068         * src/common/plugin.h
2069         * src/common/prefs.c
2070         * src/common/prefs.h
2071         * src/common/progressindicator.c
2072         * src/common/progressindicator.h
2073         * src/common/quoted-printable.c
2074         * src/common/quoted-printable.h
2075         * src/common/session.c
2076         * src/common/session.h
2077         * src/common/smtp.c
2078         * src/common/smtp.h
2079         * src/common/socket.c
2080         * src/common/socket.h
2081         * src/common/ssl.c
2082         * src/common/ssl.h
2083         * src/common/ssl_certificate.c
2084         * src/common/ssl_certificate.h
2085         * src/common/stringtable.c
2086         * src/common/stringtable.h
2087         * src/common/sylpheed.c
2088         * src/common/sylpheed.h
2089         * src/common/template.c
2090         * src/common/template.h
2091         * src/common/timing.h
2092         * src/common/utils.c
2093         * src/common/utils.h
2094         * src/common/version.h.in
2095         * src/common/xml.c
2096         * src/common/xml.h
2097         * src/common/xmlprops.c
2098         * src/common/xmlprops.h
2099         * src/gtk/colorlabel.c
2100         * src/gtk/colorsel.c
2101         * src/gtk/colorsel.h
2102         * src/gtk/description_window.c
2103         * src/gtk/description_window.h
2104         * src/gtk/filesel.c
2105         * src/gtk/filesel.h
2106         * src/gtk/foldersort.c
2107         * src/gtk/foldersort.h
2108         * src/gtk/gtkutils.c
2109         * src/gtk/gtkutils.h
2110         * src/gtk/inputdialog.c
2111         * src/gtk/inputdialog.h
2112         * src/gtk/logwindow.c
2113         * src/gtk/logwindow.h
2114         * src/gtk/manage_window.c
2115         * src/gtk/manage_window.h
2116         * src/gtk/menu.c
2117         * src/gtk/menu.h
2118         * src/gtk/pluginwindow.c
2119         * src/gtk/pluginwindow.h
2120         * src/gtk/prefswindow.c
2121         * src/gtk/prefswindow.h
2122         * src/gtk/progressdialog.c
2123         * src/gtk/progressdialog.h
2124         * src/gtk/sslcertwindow.c
2125         * src/gtk/sslcertwindow.h
2126         * src/plugins/clamav/clamav_plugin.c
2127         * src/plugins/clamav/clamav_plugin.h
2128         * src/plugins/clamav/clamav_plugin_gtk.c
2129         * src/plugins/demo/demo.c
2130         * src/plugins/dillo_viewer/dillo_prefs.c
2131         * src/plugins/dillo_viewer/dillo_prefs.h
2132         * src/plugins/dillo_viewer/dillo_viewer.c
2133         * src/plugins/pgpcore/passphrase.c
2134         * src/plugins/pgpcore/passphrase.h
2135         * src/plugins/pgpcore/plugin.c
2136         * src/plugins/pgpcore/select-keys.c
2137         * src/plugins/pgpcore/select-keys.h
2138         * src/plugins/pgpcore/sgpgme.c
2139         * src/plugins/pgpcore/sgpgme.h
2140         * src/plugins/pgpinline/pgpinline.c
2141         * src/plugins/pgpinline/pgpinline.h
2142         * src/plugins/pgpinline/plugin.c
2143         * src/plugins/pgpmime/pgpmime.c
2144         * src/plugins/pgpmime/pgpmime.h
2145         * src/plugins/pgpmime/plugin.c
2146         * src/plugins/spamassassin/spamassassin.c
2147         * src/plugins/spamassassin/spamassassin.h
2148         * src/plugins/spamassassin/spamassassin_gtk.c
2149         * src/plugins/trayicon/trayicon.c
2150                 update copyright header
2151
2152 2006-01-13 [paul]       1.9.100cvs141
2153
2154         * src/account.c
2155         * src/export.c
2156         * src/import.c
2157         * src/mainwindow.c
2158         * src/prefs_account.c
2159         * src/prefs_display_header.c
2160         * src/prefs_receive.c
2161         * src/prefs_send.c
2162         * src/prefs_summaries.c
2163         * src/prefs_themes.c
2164         * src/prefs_toolbar.c
2165         * src/gtk/about.c
2166                 various cleanups
2167
2168 2006-01-12 [colin]      1.9.100cvs140
2169
2170         * src/folder.c
2171         * src/folder.h
2172         * src/main.c
2173                 Add --subscribe option
2174                 Let sylpheed-claws email@domain.com equivalent to --compose
2175                 Let sylpheed-claws proto://blah.com equivalent to --subscribe
2176
2177 2006-01-12 [paul]       1.9.100cvs139
2178
2179         * src/mainwindow.c
2180                 append 'Change folder order' label with '...'
2181         * src/prefs_actions.c
2182                 allow reordering of actions list by dnd
2183         * src/gtk/foldersort.c
2184                 make the dialog nicer
2185
2186 2006-01-11 [colin]      1.9.100cvs138
2187
2188         * src/compose.c
2189                 Allow templates without text
2190
2191 2006-01-11 [paul]       1.9.100cvs137
2192
2193         * tools/README
2194         * tools/filter_conv_new.pl
2195                 add info to README
2196                 also check .sylpheed for filter.xml
2197                 be a bit informative to the user
2198
2199 2006-01-11 [colin]      1.9.100cvs136
2200
2201         * src/textview.c
2202                 Fix bug #888 (2.0.0rc3 not displaying image in message view)
2203
2204 2006-01-10 [paul]       1.9.100cvs135
2205
2206         * tools/Makefile.am
2207         * tools/filter_conv_new.pl
2208                 add script to convert new style Sylpheed
2209                 filter rules (Sylpheed >= 0.9.99) to
2210                 Claws filtering rules
2211
2212 2006-01-10 [colin]      1.9.100cvs134
2213
2214         * src/compose.c
2215                 Fix broken line joins in certain conditions
2216                 (between two quoted lines: <enter><enter><up>
2217                  <type a wrapped sentence><go in the first line>
2218                  <insert more text><watch as line joining failed>)
2219
2220 2006-01-10 [paul]       1.9.100cvs133
2221
2222         * src/compose.c
2223                 don't report success in error dialog
2224                 thanks to Colin
2225         * src/common/utils.c
2226                 include some trailing punctuations as URI
2227                 thanks to Hiro
2228
2229 2006-01-10 [paul]       1.9.100cvs132
2230
2231         * src/mimeview.c
2232                 fix incompatible pointer type
2233                 warning
2234
2235 2006-01-10 [paul]       1.9.100cvs131
2236
2237         * src/compose.c
2238                 change Subject in window title
2239                 instantaneously
2240
2241 2006-01-09 [colin]      1.9.100cvs130
2242
2243         * src/addressbook.c
2244         * src/headerview.c
2245         * src/mainwindow.c
2246         * src/messageview.c
2247         * src/mimeview.c
2248         * src/noticeview.c
2249         * src/summaryview.c
2250                 Fix possible crashes on exit and in addressbook
2251
2252 2006-01-09 [paul]       1.9.100cvs129
2253
2254         * src/prefs_msg_colors.c
2255                 some cleanups that I forgot last time
2256
2257 2006-01-09 [paul]       1.9.100cvs128
2258
2259         * README
2260         * src/folderview.c
2261         * src/prefs_msg_colors.c
2262                 add previously hidden option, color_new, to
2263                 the gui
2264                 move the page to Display/
2265                 rework the gui
2266
2267 2006-01-09 [wwp]        1.9.100cvs127
2268
2269         * src/prefs_themes.c
2270                 made the prefs/display/themes layouts spacing less condensed
2271                 (and so they match other prefs/pages' look).
2272
2273 2006-01-09 [paul]       1.9.100cvs126
2274
2275         * src/compose.c
2276         * src/prefs_common.c
2277         * src/prefs_common.h
2278         * src/prefs_wrapping.c
2279                 remove 'wrap at send' option
2280
2281 2006-01-06 [colin]      1.9.100cvs125
2282
2283         * src/compose.c
2284                 Just make completely sure we don't insert "manual line breaks" 
2285                 when wrapping... 
2286
2287 2006-01-04 [paul]
2288
2289         * 2.0.0-rc3 released
2290
2291 2006-01-04 [paul]       1.9.100cvs124
2292
2293         * src/folderview.c
2294                 fix bug 882, 'quick scroll in folder list
2295                 displays wrong folder contents'
2296
2297 2006-01-04 [paul]       1.9.100cvs123
2298
2299         * src/plugins/pgpmime/pgpmime.c
2300                 better debug information when signing
2301                 Patch by Ivan F. Martinez <ivanfm@users.sourceforge.net>
2302
2303 2006-01-03 [colin]      1.9.100cvs122
2304
2305         * configure.ac
2306                 We need to recheck for gpgme 1.0.0 after checking
2307                 for 1.1.1, because if 1.1.1 isn't available, 
2308                 GPGME_LIBS and friends are blanked out by the 
2309                 second check.
2310
2311 2006-01-03 [colin]      1.9.100cvs121
2312
2313         * src/common/prefs.c
2314                 Windows unlink-before rename fix
2315         * src/plugins/pgpcore/sgpgme.c
2316                 Add support for PKA info if available
2317                 Both patches by Werner Koch
2318
2319 2006-01-03 [paul]       1.9.100cvs120
2320
2321         * src/messageview.c
2322                 fix bug 884, 'Send receipt' button visible in queue
2323                 Thanks to Colin
2324
2325 2006-01-02 [colin]      1.9.100cvs119
2326
2327         * src/compose.c
2328         * src/imap.c
2329                 Fix autosave on IMAP and more generally try to
2330                 return the correct ID on a newly added IMAP message
2331
2332 2006-01-02 [paul]       1.9.100cvs118
2333
2334         * manual/keyboard.xml
2335                 edited
2336
2337 2006-01-01 [paul]       1.9.100cvs117
2338
2339         * src/gtk/authors.h
2340                 alphabetical order
2341
2342 2005-12-30 [colin]      1.9.100cvs116
2343
2344         * manual/advanced.xml
2345                 Explain Pre/Post-processing differences.
2346
2347 2005-12-30 [colin]      1.9.100cvs115
2348
2349         * src/mh.c
2350                 Implement copy_msgs for a little optimization
2351         * src/imap.c
2352                 Finish yesterday's fix
2353
2354 2005-12-29 [colin]      1.9.100cvs114
2355
2356         * src/imap.c
2357                 Fix occasional failure in fetching a mail over
2358                 IMAP
2359
2360 2005-12-29 [colin]      1.9.100cvs113
2361
2362         * src/compose.c
2363                 Don't remove a draft when sending it, if it is 
2364                 locked.
2365
2366 2005-12-28 [colin]      1.9.100cvs112
2367
2368         * src/summaryview.c
2369                 Fix leak for real
2370
2371 2005-12-28 [wwp]        1.9.100cvs111
2372
2373         * doc/faq/.cvsignore
2374         * doc/faq/de/.cvsignore
2375         * doc/faq/en/.cvsignore
2376         * doc/faq/es/.cvsignore
2377         * doc/faq/fr/.cvsignore
2378         * doc/faq/it/.cvsignore
2379         * doc/manual/.cvsignore
2380         * doc/manual/de/.cvsignore
2381         * doc/manual/en/.cvsignore
2382         * doc/manual/es/.cvsignore
2383         * doc/manual/fr/.cvsignore
2384         * doc/manual/ja/.cvsignore
2385         * src/plugins/mathml_viewer/.cvsignore
2386                 rollback revival of those files (my bad, sorry for the noise).
2387
2388 2005-12-28 [wwp]        1.9.100cvs110
2389
2390         * src/compose.c
2391                 fix a minor wrapping issue w/ autowrap disabled (patch by Colin).
2392
2393 2005-12-28 [wwp]        1.9.100cvs109
2394
2395         * doc/faq/.cvsignore
2396         * doc/faq/de/.cvsignore
2397         * doc/faq/en/.cvsignore
2398         * doc/faq/es/.cvsignore
2399         * doc/faq/fr/.cvsignore
2400         * doc/faq/it/.cvsignore
2401         * doc/manual/.cvsignore
2402         * doc/manual/de/.cvsignore
2403         * doc/manual/en/.cvsignore
2404         * doc/manual/es/.cvsignore
2405         * doc/manual/fr/.cvsignore
2406         * doc/manual/ja/.cvsignore
2407         * src/plugins/mathml_viewer/.cvsignore
2408         * po/.cvsignore
2409                 more files to ignore.
2410
2411 2005-12-24 [colin]      1.9.100cvs108
2412
2413         * AUTHORS
2414         * src/gtk/authors.h
2415                 Update for Werner
2416
2417 2005-12-24 [colin]      1.9.100cvs107
2418
2419         * src/procmsg.c
2420                 Allow NULL src_msginfo in 
2421                 procmsg_msginfo_new_from_mimeinfo
2422
2423 2005-12-23 [paul]       1.9.100cvs106
2424
2425         * src/plugins/pgpinline/mypgpcore.def
2426                 add this forgotten file
2427
2428 2005-12-23 [colin]      1.9.100cvs105
2429
2430         * src/mainwindow.c
2431                 Fix missing break
2432
2433 2005-12-23 [colin]      1.9.100cvs104
2434
2435         * autogen.sh
2436         * src/folder.c
2437         * src/mh.c
2438         * src/common/plugin.c
2439         * src/common/socket.c
2440         * src/common/socket.h
2441         * src/common/utils.c
2442         * src/common/utils.h
2443         * src/gtk/pluginwindow.c
2444         * src/plugins/pgpcore/plugin.def
2445         * src/plugins/pgpcore/sylpheed.def
2446         * src/plugins/pgpinline/Makefile.am
2447         * src/plugins/pgpinline/plugin.def
2448         * src/plugins/pgpinline/sylpheed.def
2449         * src/plugins/pgpmime/plugin.def
2450         * src/plugins/pgpmime/sylpheed.def
2451                 Various w32 fixes by Werner Koch
2452
2453 2005-12-22 [paul]       1.9.100cvs103
2454
2455         * src/wizard.c
2456                 don't offer IMAP as 'server type' if
2457                 libetpan isn't built in
2458
2459 2005-12-22 [paul]       1.9.100cvs102
2460
2461         * AUTHORS
2462         * src/mainwindow.c
2463         * src/mainwindow.h
2464         * src/toolbar.c
2465         * src/gtk/authors.h
2466                 support GTK_TOOLBAR_BOTH_HORIZ (text
2467                 next to icon) Patch by Marien Zwart
2468                 marienz@users.sf.net
2469                 Also reword the text
2470
2471 2005-12-21 [colin]      1.9.100cvs101
2472
2473         * configure.ac
2474                 Fix DATADIRNAME
2475         * COPYING
2476                 Fix missing section and explicit the exception better
2477         * src/compose.c
2478                 Prevent mail from being lost without notice when an
2479                 SMTP error happens on trying to send an unmodified
2480                 drafted mail.
2481         * src/send_message.c
2482         * src/common/smtp.c
2483                 Fix password remembering when wrong, and add return
2484                 value checks where they should have been
2485         * src/plugins/pgpcore/sylpheed.def
2486         * src/plugins/pgpinline/sylpheed.def
2487         * src/plugins/pgpmime/sylpheed.def
2488                 Add a few symbols needed
2489
2490 2005-12-21 [paul]       1.9.100cvs100
2491
2492         * m4/codeset.m4
2493         * m4/glibc21.m4
2494         * m4/intdiv0.m4
2495         * m4/inttypes-pri.m4
2496         * m4/inttypes.m4
2497         * m4/inttypes_h.m4
2498         * m4/isc-posix.m4
2499         * m4/lcmessage.m4
2500         * m4/stdint_h.m4
2501         * m4/uintmax_t.m4
2502                 gettextization
2503                 thanks to Colin
2504
2505 2005-12-21 [paul]       1.9.100cvs99
2506
2507         * po/sv.po
2508                 fixed by Colin
2509
2510 2005-12-20 [paul]       1.9.100cvs98
2511
2512         * po/sv.po
2513                 updated by Anders Trobäck
2514
2515 2005-12-20 [colin]      1.9.100cvs97
2516
2517         * ABOUT-NLS
2518         * Makefile.am
2519         * autogen.sh
2520         * configure.ac
2521         * config/config.rpath
2522         * config/mkinstalldirs
2523         * m4/Makefile.am
2524         * m4/glibc2.m4
2525         * m4/gnupg.m4
2526         * m4/gpgme.m4
2527         * m4/intmax.m4
2528         * m4/longdouble.m4
2529         * m4/longlong.m4
2530         * m4/printf-posix.m4
2531         * m4/signed.m4
2532         * m4/size_max.m4
2533         * m4/ulonglong.m4
2534         * m4/wchar_t.m4
2535         * m4/wint_t.m4
2536         * m4/xsize.m4
2537         * po/Makefile.in.in
2538         * po/Makevars
2539         * po/bg.po
2540         * po/ca.po
2541         * po/cs.po
2542         * po/de.po
2543         * po/el.po
2544         * po/en_GB.po
2545         * po/es.po
2546         * po/fi.po
2547         * po/fr.po
2548         * po/hr.po
2549         * po/hu.po
2550         * po/it.po
2551         * po/ja.po
2552         * po/ko.po
2553         * po/nb.po
2554         * po/nl.po
2555         * po/pl.po
2556         * po/pt_BR.po
2557         * po/ru.po
2558         * po/sk.po
2559         * po/sr.po
2560         * po/stamp-po
2561         * po/sv.po
2562         * po/zh_CN.po
2563         * po/zh_TW.po
2564         * src/Makefile.am
2565         * src/codeconv.c
2566         * src/compose.c
2567         * src/exporthtml.c
2568         * src/exportldif.c
2569         * src/folder.c
2570         * src/main.c
2571         * src/manual.c
2572         * src/mh.c
2573         * src/mimeview.c
2574         * src/send_message.c
2575         * src/common/Makefile.am
2576         * src/common/fnmatch.c
2577         * src/common/fnmatch.h
2578         * src/common/fnmatch_loop.c
2579         * src/common/nntp.c
2580         * src/common/plugin.c
2581         * src/common/smtp.c
2582         * src/common/socket.c
2583         * src/common/string_match.c
2584         * src/common/sylpheed.c
2585         * src/common/utils.c
2586         * src/common/utils.h
2587         * src/common/w32_dirent.c
2588         * src/common/w32_reg.c
2589         * src/common/w32_signal.c
2590         * src/common/w32_stat.c
2591         * src/common/w32_stdio.c
2592         * src/common/w32_stdlib.c
2593         * src/common/w32_string.c
2594         * src/common/w32_time.c
2595         * src/common/w32_unistd.c
2596         * src/common/w32_wait.c
2597         * src/common/w32lib.h
2598         * src/etpan/Makefile.am
2599         * src/gtk/Makefile.am
2600         * src/plugins/clamav/Makefile.am
2601         * src/plugins/demo/Makefile.am
2602         * src/plugins/dillo_viewer/Makefile.am
2603         * src/plugins/pgpcore/Makefile.am
2604         * src/plugins/pgpcore/passphrase.c
2605         * src/plugins/pgpcore/plugin.def
2606         * src/plugins/pgpcore/sgpgme.c
2607         * src/plugins/pgpcore/sylpheed.def
2608         * src/plugins/pgpcore/version.rc
2609         * src/plugins/pgpinline/Makefile.am
2610         * src/plugins/pgpinline/plugin.def
2611         * src/plugins/pgpinline/sylpheed.def
2612         * src/plugins/pgpinline/version.rc
2613         * src/plugins/pgpmime/Makefile.am
2614         * src/plugins/pgpmime/mypgpcore.def
2615         * src/plugins/pgpmime/plugin.def
2616         * src/plugins/pgpmime/sylpheed.def
2617         * src/plugins/pgpmime/version.rc
2618         * src/plugins/spamassassin/Makefile.am
2619                 Very little ;-) patch from Werner Koch, providing
2620                 infrastructure for cross-compiling to Win32
2621
2622 2005-12-20 [paul]       1.9.100cvs96
2623
2624         * src/account.c
2625         * src/account.h
2626         * src/mainwindow.c
2627         * src/mainwindow.h
2628         * src/toolbar.c
2629         * src/toolbar.h
2630                 add a combo to the Get All button, allowing
2631                 quick retrieval from any account
2632                 Patch by Fabien Vantard, slightly modified
2633                 by Colin
2634         * src/gtk/about.c
2635                 i18n fix. Patch by Fabien Vantard
2636
2637 2005-12-19 [colin]      1.9.100cvs95
2638
2639         * src/compose.c
2640         * src/compose.h
2641                 Don't automatically join lines when they've 
2642                 been separated by the user and not automatically
2643
2644 2005-12-19 [paul]       1.9.100cvs94
2645
2646         * src/gtk/pluginwindow.c
2647                 i18n fix.
2648                 Patch by Fabien Vantard
2649
2650 2005-12-15 [paul]       1.9.100cvs93
2651
2652         * src/common/plugin.c
2653         * src/common/plugin.h
2654         * src/gtk/pluginwindow.c
2655         * src/plugins/clamav/clamav_plugin.c
2656         * src/plugins/demo/demo.c
2657         * src/plugins/dillo_viewer/dillo_viewer.c
2658         * src/plugins/pgpcore/plugin.c
2659         * src/plugins/pgpinline/plugin.c
2660         * src/plugins/pgpmime/plugin.c
2661         * src/plugins/spamassassin/spamassassin.c
2662         * src/plugins/trayicon/trayicon.c
2663                 add plugin_version()
2664
2665 2005-12-15 [colin]      1.9.100cvs92
2666
2667         * src/compose.c
2668                 Further fix bug #875
2669
2670 2005-12-15 [paul]       1.9.100cvs91
2671
2672         * src/gtk/filesel.c
2673                 fix attach_load_dir getting set to
2674                 PLUGINDIR on plugin load
2675
2676 2005-12-14 [mones]      1.9.100cvs90
2677
2678         * manual/ack.xml
2679         * manual/keyboard.xml
2680                 Initial draft and some shortcuts added
2681                 
2682         * po/es.po
2683                 Updated translation
2684
2685 2005-12-14 [colin]      1.9.100cvs89
2686
2687         * src/compose.c
2688         * src/imap.c
2689         * src/summaryview.c
2690         * src/gtk/gtkaspell.c
2691                 More leaks fixed
2692         * src/prefs_folder_item.c
2693                 Fix recursive prefs apply
2694
2695
2696 2005-12-14 [colin]      1.9.100cvs88
2697
2698         * src/compose.c
2699                 Fix bug #875 (Freeze On Inline Forward of 
2700                 Large Message)
2701
2702 2005-12-13 [colin]      1.9.100cvs87
2703
2704         * src/compose.c
2705                 Uniq-ify and sort the mimetypes list
2706                 Patch by Fabien Vantard
2707
2708 2005-12-13 [colin]      1.9.100cvs86
2709
2710         * src/imap.c
2711         * src/etpan/imap-thread.c
2712                 Fix leaks (patch by Hoa)
2713         * src/news.c
2714         * src/common/plugin.c
2715                 Fix leaks
2716
2717 2005-12-12 [colin]
2718
2719         * 2.0.0-rc2 released
2720
2721 2005-12-12 [colin]      1.9.100cvs85
2722
2723         * src/matcher.c
2724                 Fix a leak
2725
2726 2005-12-12 [wwp]        1.9.100cvs84
2727
2728         * src/gtk/icon_legend.c
2729                 fix misbehaviour and crash when closing the legend window
2730         using the Esc key (patch by Fabien Vantard).
2731
2732 2005-12-12 [paul]       1.9.100cvs83
2733
2734         * src/browseldap.c
2735         * src/foldersel.c
2736         * src/prefs_actions.c
2737         * src/prefs_filtering.c
2738         * src/prefs_matcher.c
2739         * src/prefs_spelling.glade      ** REMOVED **
2740         * src/prefs_template.c
2741         * src/gtk/foldersort.glade      ** REMOVED **
2742         * src/gtk/pluginwindow.c
2743         * src/gtk/pluginwindow.glade    ** REMOVED **
2744         * src/plugins/spamassassin/spamassassin_gtk.glade       ** REMOVED **
2745                 cleanups
2746
2747 2005-12-11 [paul]       1.9.100cvs82
2748
2749         * src/gtk/filesel.c
2750                 fix attach_load_dir crasher (double free)
2751
2752 2005-12-09 [paul]       1.9.100cvs81
2753
2754         * po/POTFILES.in
2755         * src/mainwindow.c
2756         * src/gtk/Makefile.am
2757         * src/gtk/icon_legend.c
2758         * src/gtk/icon_legend.h
2759                 add icon legend
2760         * src/manual.c
2761                 cleanup
2762
2763 2005-12-09 [paul]       1.9.100cvs80
2764
2765         * src/plugins/pgpcore/passphrase.c
2766                 wrap the label in the dialog
2767
2768 2005-12-09 [colin]      1.9.100cvs79
2769
2770         * src/plugins/pgpcore/sgpgme.c
2771                 Display (untrusted) on not trusted signatures
2772                 Patch by Michal Èihaø <michal@cihar.com>
2773                 Closes bug #867 (Report also key trust)
2774
2775 2005-12-09 [colin]      1.9.100cvs78
2776
2777         * src/common/plugin.c
2778                 Update licence check, following Eben Moglen's advice
2779
2780 2005-12-08 [colin]      1.9.100cvs77
2781
2782         * src/folder.c
2783                 Fix the occasionnal item->cache != NULL 
2784                 assertion failure. 
2785
2786 2005-12-08 [colin]      1.9.100cvs76
2787
2788         * src/mimeview.c
2789         * src/plugins/pgpcore/sgpgme.c
2790                 Print key id when unable to check it
2791                 Closes bug #866 (Show key id when missing)
2792
2793 2005-12-08 [paul]       1.9.100cvs75
2794
2795         * src/prefs_common.c
2796         * src/prefs_common.h
2797         * src/gtk/filesel.c
2798                 remember load attachment dir
2799
2800 2005-12-07 [colin]      1.9.100cvs74
2801
2802         * src/prefs_toolbar.c
2803                 Gtk fixes, patch by Fabien Vantard
2804
2805 2005-12-07 [colin]      1.9.100cvs73
2806
2807         * src/action.c
2808         * src/compose.c
2809         * src/compose.h
2810                 Fix bug #839 (Quoted text isn't colored after 
2811                 executing an action)
2812         * src/common/plugin.c
2813                 Require plugins to declare their licence in plugin_licence()
2814                 Refuse to load non-GPL plugins as they'd be illegal (as 
2815                 derived works of Sylpheed-Claws, they must be GPL).
2816         * src/plugins/clamav/clamav_plugin.c
2817         * src/plugins/demo/demo.c
2818         * src/plugins/dillo_viewer/dillo_viewer.c
2819         * src/plugins/pgpcore/plugin.c
2820         * src/plugins/pgpinline/plugin.c
2821         * src/plugins/pgpmime/plugin.c
2822         * src/plugins/spamassassin/spamassassin.c
2823         * src/plugins/trayicon/trayicon.c
2824                 Add plugin_licence()
2825
2826 2005-12-07 [paul]       1.9.100cvs72
2827
2828         * configure.ac
2829         * src/mainwindow.c
2830         * src/manual.c
2831         * src/manual.h
2832         * src/common/defs.h
2833                 clean up after local FAQ removal and
2834                 temporary manual removal
2835
2836 2005-12-06 [colin]      1.9.100cvs71
2837
2838         * configure.ac
2839         * doc/Makefile.am
2840         * doc/faq/.cvsignore
2841         * doc/faq/Makefile.am
2842         * doc/faq/de/.cvsignore
2843         * doc/faq/de/Makefile.am
2844         * doc/faq/de/sylpheed-faq-1.html
2845         * doc/faq/de/sylpheed-faq-2.html
2846         * doc/faq/de/sylpheed-faq-3.html
2847         * doc/faq/de/sylpheed-faq.html
2848         * doc/faq/en/.cvsignore
2849         * doc/faq/en/Makefile.am
2850         * doc/faq/en/sylpheed-faq-1.html
2851         * doc/faq/en/sylpheed-faq-2.html
2852         * doc/faq/en/sylpheed-faq-3.html
2853         * doc/faq/en/sylpheed-faq-4.html
2854         * doc/faq/en/sylpheed-faq.html
2855         * doc/faq/es/.cvsignore
2856         * doc/faq/es/Makefile.am
2857         * doc/faq/es/sylpheed-faq-1.html
2858         * doc/faq/es/sylpheed-faq-2.html
2859         * doc/faq/es/sylpheed-faq-3.html
2860         * doc/faq/es/sylpheed-faq-4.html
2861         * doc/faq/es/sylpheed-faq.html
2862         * doc/faq/fr/.cvsignore
2863         * doc/faq/fr/Makefile.am
2864         * doc/faq/fr/sylpheed-faq-1.html
2865         * doc/faq/fr/sylpheed-faq-2.html
2866         * doc/faq/fr/sylpheed-faq-3.html
2867         * doc/faq/fr/sylpheed-faq.html
2868         * doc/faq/it/.cvsignore
2869         * doc/faq/it/Makefile.am
2870         * doc/faq/it/sylpheed-faq-1.html
2871         * doc/faq/it/sylpheed-faq-2.html
2872         * doc/faq/it/sylpheed-faq-3.html
2873         * doc/faq/it/sylpheed-faq.html
2874         * doc/manual/.cvsignore
2875         * doc/manual/Makefile.am
2876         * doc/manual/de/.cvsignore
2877         * doc/manual/de/Makefile.am
2878         * doc/manual/de/sylpheed-1.html
2879         * doc/manual/de/sylpheed-10.html
2880         * doc/manual/de/sylpheed-11.html
2881         * doc/manual/de/sylpheed-12.html
2882         * doc/manual/de/sylpheed-13.html
2883         * doc/manual/de/sylpheed-14.html
2884         * doc/manual/de/sylpheed-15.html
2885         * doc/manual/de/sylpheed-16.html
2886         * doc/manual/de/sylpheed-17.html
2887         * doc/manual/de/sylpheed-18.html
2888         * doc/manual/de/sylpheed-19.html
2889         * doc/manual/de/sylpheed-2.html
2890         * doc/manual/de/sylpheed-20.html
2891         * doc/manual/de/sylpheed-3.html
2892         * doc/manual/de/sylpheed-4.html
2893         * doc/manual/de/sylpheed-5.html
2894         * doc/manual/de/sylpheed-6.html
2895         * doc/manual/de/sylpheed-7.html
2896         * doc/manual/de/sylpheed-8.html
2897         * doc/manual/de/sylpheed-9.html
2898         * doc/manual/de/sylpheed.html
2899         * doc/manual/en/.cvsignore
2900         * doc/manual/en/Makefile.am
2901         * doc/manual/en/sylpheed-1.html
2902         * doc/manual/en/sylpheed-10.html
2903         * doc/manual/en/sylpheed-11.html
2904         * doc/manual/en/sylpheed-12.html
2905         * doc/manual/en/sylpheed-13.html
2906         * doc/manual/en/sylpheed-14.html
2907         * doc/manual/en/sylpheed-15.html
2908         * doc/manual/en/sylpheed-16.html
2909         * doc/manual/en/sylpheed-17.html
2910         * doc/manual/en/sylpheed-18.html
2911         * doc/manual/en/sylpheed-19.html
2912         * doc/manual/en/sylpheed-2.html
2913         * doc/manual/en/sylpheed-20.html
2914         * doc/manual/en/sylpheed-21.html
2915         * doc/manual/en/sylpheed-22.html
2916         * doc/manual/en/sylpheed-3.html
2917         * doc/manual/en/sylpheed-4.html
2918         * doc/manual/en/sylpheed-5.html
2919         * doc/manual/en/sylpheed-6.html
2920         * doc/manual/en/sylpheed-7.html
2921         * doc/manual/en/sylpheed-8.html
2922         * doc/manual/en/sylpheed-9.html
2923         * doc/manual/en/sylpheed.html
2924         * doc/manual/es/.cvsignore
2925         * doc/manual/es/Makefile.am
2926         * doc/manual/es/sylpheed-1.html
2927         * doc/manual/es/sylpheed-10.html
2928         * doc/manual/es/sylpheed-11.html
2929         * doc/manual/es/sylpheed-12.html
2930         * doc/manual/es/sylpheed-13.html
2931         * doc/manual/es/sylpheed-14.html
2932         * doc/manual/es/sylpheed-15.html
2933         * doc/manual/es/sylpheed-16.html
2934         * doc/manual/es/sylpheed-17.html
2935         * doc/manual/es/sylpheed-18.html
2936         * doc/manual/es/sylpheed-19.html
2937         * doc/manual/es/sylpheed-2.html
2938         * doc/manual/es/sylpheed-20.html
2939         * doc/manual/es/sylpheed-3.html
2940         * doc/manual/es/sylpheed-4.html
2941         * doc/manual/es/sylpheed-5.html
2942         * doc/manual/es/sylpheed-6.html
2943         * doc/manual/es/sylpheed-7.html
2944         * doc/manual/es/sylpheed-8.html
2945         * doc/manual/es/sylpheed-9.html
2946         * doc/manual/es/sylpheed.html
2947         * doc/manual/fr/.cvsignore
2948         * doc/manual/fr/Makefile.am
2949         * doc/manual/fr/sylpheed-1.html
2950         * doc/manual/fr/sylpheed-10.html
2951         * doc/manual/fr/sylpheed-11.html
2952         * doc/manual/fr/sylpheed-12.html
2953         * doc/manual/fr/sylpheed-13.html
2954         * doc/manual/fr/sylpheed-14.html
2955         * doc/manual/fr/sylpheed-15.html
2956         * doc/manual/fr/sylpheed-16.html
2957         * doc/manual/fr/sylpheed-17.html
2958         * doc/manual/fr/sylpheed-18.html
2959         * doc/manual/fr/sylpheed-19.html
2960         * doc/manual/fr/sylpheed-2.html
2961         * doc/manual/fr/sylpheed-20.html
2962         * doc/manual/fr/sylpheed-3.html
2963         * doc/manual/fr/sylpheed-4.html
2964         * doc/manual/fr/sylpheed-5.html
2965         * doc/manual/fr/sylpheed-6.html
2966         * doc/manual/fr/sylpheed-7.html
2967         * doc/manual/fr/sylpheed-8.html
2968         * doc/manual/fr/sylpheed-9.html
2969         * doc/manual/fr/sylpheed.html
2970         * doc/manual/ja/.cvsignore
2971         * doc/manual/ja/Makefile.am
2972         * doc/manual/ja/sylpheed-1.html
2973         * doc/manual/ja/sylpheed-10.html
2974         * doc/manual/ja/sylpheed-11.html
2975         * doc/manual/ja/sylpheed-12.html
2976         * doc/manual/ja/sylpheed-13.html
2977         * doc/manual/ja/sylpheed-14.html
2978         * doc/manual/ja/sylpheed-15.html
2979         * doc/manual/ja/sylpheed-16.html
2980         * doc/manual/ja/sylpheed-17.html
2981         * doc/manual/ja/sylpheed-18.html
2982         * doc/manual/ja/sylpheed-19.html
2983         * doc/manual/ja/sylpheed-2.html
2984         * doc/manual/ja/sylpheed-20.html
2985         * doc/manual/ja/sylpheed-3.html
2986         * doc/manual/ja/sylpheed-4.html
2987         * doc/manual/ja/sylpheed-5.html
2988         * doc/manual/ja/sylpheed-6.html
2989         * doc/manual/ja/sylpheed-7.html
2990         * doc/manual/ja/sylpheed-8.html
2991         * doc/manual/ja/sylpheed-9.html
2992         * doc/manual/ja/sylpheed.html
2993         * doc/manual/ja/sylpheed.sgml
2994         * src/mainwindow.c
2995                 Remove outdated manual and faq. Noisy, eh?
2996
2997 2005-12-06 [colin]      1.9.100cvs70
2998
2999         * src/compose.c
3000         * src/quote_fmt_parse.y
3001         * src/undo.c
3002         * src/undo.h
3003                 Allow %X to position cursor at 0 
3004                 (no %X = before signature)
3005                 Fix paste as quotation putting the cursor at 0
3006                 Fix undo offsets when pasting
3007                 Insert the quote_fmt at once instead of line 
3008                 by line
3009                 Fix [Edited] when starting to reply/forward
3010
3011 2005-12-06 [paul]       1.9.100cvs69
3012
3013         * src/plugins/clamav/clamav_plugin_gtk.c
3014                 add another tooltip
3015         * src/plugins/spamassassin/spamassassin_gtk.c
3016                 rework spamassassin_create_widget_func()
3017
3018 2005-12-05 [colin]      1.9.100cvs68
3019
3020         * po/POTFILES.in
3021                 Fix make release ;-)
3022
3023 2005-12-05 [colin]      1.9.100cvs67
3024
3025         * src/compose.c
3026         * src/compose.h
3027                 Fix cursor positioning (not obeying %X)
3028
3029 2005-12-05 [paul]       1.9.100cvs66
3030
3031         * src/plugins/dillo_viewer/dillo_prefs.c
3032                 fix compilation warning
3033
3034 2005-12-05 [paul]       1.9.100cvs65
3035
3036         * src/prefs_spelling.c
3037         * src/plugins/trayicon/trayicon.c
3038                 cleanups - remove unused stuff
3039
3040 2005-12-05 [paul]       1.9.100cvs64
3041
3042         * README
3043         * manual/plugins.xml
3044                 remove info about removed mathml_viewer plugin
3045
3046 2005-12-05 [paul]       1.9.100cvs63
3047
3048         * configure.ac
3049         * src/plugins/Makefile.am
3050         * src/plugins/mathml_viewer/.cvsignore
3051         * src/plugins/mathml_viewer/Makefile.am
3052         * src/plugins/mathml_viewer/mathml_viewer.c
3053                 remove unmaintained mathml_viewer plugin
3054
3055 2005-12-05 [paul]       1.9.100cvs62
3056
3057         * src/summaryview.c
3058                 obey prefs_common.always_show_msg when
3059                 moving a msg
3060                 Thanks to Colin
3061
3062 2005-12-05 [paul]       1.9.100cvs61
3063
3064         * src/compose.c
3065         * src/prefs_account.c
3066         * src/prefs_filtering.c
3067         * src/prefs_quote.c
3068         * src/prefs_spelling.c
3069         * src/prefs_toolbar.c
3070         * src/summaryview.c
3071         * src/gtk/gtkutils.c
3072         * src/gtk/quicksearch.c
3073         * src/plugins/dillo_viewer/dillo_prefs.c
3074                 dialog cleanups
3075
3076 2005-12-04 [paul]       1.9.100cvs60
3077
3078         * src/inc.c
3079         * src/prefs_account.c
3080         * src/prefs_account.h
3081                 allow a Local account to specify a
3082                 default inbox
3083                 (closes bug 843 'Inbox cannot be changed for local
3084                  mailboxes')
3085
3086 2005-12-04 [colin]      1.9.100cvs59
3087
3088         * src/plugins/trayicon/trayicon.c
3089                 Remove Get, rename Get All to Get Mail in order to
3090                 be consistent with the default main toolbar
3091
3092 2005-12-03 [colin]      1.9.100cvs58
3093
3094         * manual/gpl.xml
3095         * manual/sylpheed-claws-manual.xml
3096                 Add GPL appendix
3097
3098 2005-12-03 [paul]       1.9.100cvs57
3099
3100         * AUTHORS
3101         * po/sv.po
3102         * src/gtk/authors.h
3103                 new (partially complete) Swedish translation
3104                 by Anders Troback <sylpheed@troback.com>
3105
3106 2005-12-02 [paul]       1.9.100cvs56
3107
3108         * configure.ac
3109                 libetpan 0.41 required
3110
3111 2005-12-02 [paul]       1.9.100cvs55
3112
3113         * src/plugins/clamav/clamav_plugin.c
3114         * src/plugins/clamav/clamav_plugin.h
3115         * src/plugins/clamav/clamav_plugin_gtk.c
3116         * src/plugins/spamassassin/spamassassin.c
3117         * src/plugins/spamassassin/spamassassin.h
3118         * src/plugins/spamassassin/spamassassin_gtk.c
3119                 unregister prefs pages on unloading, thus
3120                 preventing a crash
3121                 (thanks to Colin for the hint)
3122
3123 2005-12-02 [wwp]        1.9.100cvs54
3124
3125         * src/quote_fmt.h
3126         * src/quote_fmt_parse.y
3127                 fix misuse of gboolean*, use gboolean instead
3128                 (thanks to Paul, Colin, for pointing out that scaring one)
3129
3130 2005-12-02 [paul]       1.9.100cvs53
3131
3132         * src/plugins/clamav/clamav_plugin.c
3133                 int no --> unsigned int no
3134         * src/plugins/clamav/clamav_plugin_gtk.c
3135                 rework config page
3136
3137 2005-12-02 [wwp]        1.9.100cvs52
3138
3139         * src/compose.c
3140         * src/prefs_template.c
3141         * src/quote_fmt.h
3142         * src/quote_fmt_parse.y
3143                 prevent from executing |f and |p templates commands when
3144                 adding or replacing templates in prefs (avoids annoying and
3145                 potentially dangerous behaviours)
3146
3147 2005-12-02 [paul]       1.9.100cvs51
3148
3149         * src/prefs_common.c
3150                 allow translation of some default values
3151                 Patch by Fabien Vantard
3152
3153 2005-12-02 [paul]       1.9.100cvs50
3154
3155         * src/codeconv.c
3156         * src/codeconv.h
3157         * src/prefs_common.c
3158         * src/prefs_common.h
3159         * src/prefs_message.c
3160         * src/textview.c
3161                 remove obsolete 'convert_mb_alnum' option
3162                 and related stuff
3163         * src/gtk/about.c
3164                 remove unused 'about_textview_visibility_notify'
3165
3166 2005-12-02 [paul]       1.9.100cvs49
3167
3168         * src/prefs_account.c
3169         * src/prefs_compose_writing.c
3170         * src/prefs_fonts.c
3171         * src/prefs_gtk.h
3172         * src/prefs_image_viewer.c
3173         * src/prefs_message.c
3174         * src/prefs_other.c
3175         * src/prefs_receive.c
3176         * src/prefs_send.c
3177         * src/prefs_spelling.c
3178         * src/prefs_summaries.c
3179         * src/prefs_wrapping.c
3180         * src/plugins/dillo_viewer/dillo_prefs.c
3181         * src/plugins/pgpcore/prefs_gpg.c
3182                 several cleanups to the prefs dialogs
3183                 (slightly modified) patch by Fabien Vantard
3184
3185 2005-12-02 [paul]       1.9.100cvs48
3186
3187         * src/main.c
3188                 --exit means exit
3189         * src/send_message.c
3190                 fix crash on send when connection fails
3191
3192         Thanks to Colin
3193
3194 2005-12-01 [colin]      1.9.100cvs47
3195
3196         * src/html.c
3197                 Translate &hellip; to "..."
3198
3199 2005-11-30 [colin]      1.9.100cvs46
3200
3201         * src/matcher.c
3202         * src/matcher.h
3203                 Optimize back yesterday's fix.
3204
3205 2005-11-30 [paul]       1.9.100cvs45
3206
3207         * manual/faq.xml
3208                 standardised
3209         * manual/intro.xml
3210                 written by Colin, edited by me
3211
3212 2005-11-29 [colin]      1.9.100cvs44
3213
3214         * src/matcher.c
3215                 Skip headers unconditionnaly in match_body if the
3216                 rule is not message or ~message
3217
3218 2005-11-29 [colin]      1.9.100cvs43
3219
3220         * src/matcher.c
3221                 Fix body_part and such, not skipping headers 
3222                 if the matchcriteria wasn't the first in the rule
3223
3224 2005-11-29 [colin]      1.9.100cvs42
3225
3226         * src/compose.c
3227                 Add Windows-1252 (Closes bug #863, windows-1252 encoding 
3228                 option missing from message view window)
3229                 Fix double text D'n'D with gtk-2.8
3230         * src/matcher.c
3231                 Fix ~message, ~headers_part, ~body_part rules
3232         * src/messageview.c
3233                 Add Windows-1252 (Closes bug #863)
3234                 Fix accels
3235         * src/gtk/gtkaspell.c
3236                 Properly destroy accels in all menus
3237
3238 2005-11-29 [mones]      1.9.100cvs41
3239
3240         * po/es.po
3241                 Updated.
3242
3243 2005-11-27 [colin]      1.9.100cvs40
3244
3245         * src/mh_gtk.c
3246                 "/Remove mailbox" -> "/Remove mailbox..."
3247
3248 2005-11-27 [paul]       1.9.100cvs39
3249
3250         * AUTHORS
3251         * po/de.po
3252         * src/gtk/authors.h
3253                 updated by new maintainer, Stephan Sachse
3254
3255 2005-11-27 [paul]       1.9.100cvs38
3256
3257         * manual/faq.xml
3258                 written by Colin, edited by me
3259
3260 2005-11-27 [paul]       1.9.100cvs37
3261
3262         * src/prefs_common.c
3263         * src/prefs_common.h
3264         * src/prefs_receive.c
3265         * src/prefs_summaries.c
3266                 move 'go to inbox after receiving new mail'
3267                 option from display/sumamaries to mail
3268                 handling/receive, and rework prefs_summaries
3269                 dialog a little
3270
3271 2005-11-25 [martin]     1.9.100cvs36
3272
3273         * po/de.po
3274             fixed windows-1252 translation;
3275             translated some new and fuzzy strings
3276
3277 2005-11-25 [paul]       1.9.100cvs35
3278
3279         * src/plugins/clamav/clamav_plugin.c
3280                 complete the update done in cvs34
3281
3282 2005-11-25 [paul]       1.9.100cvs34
3283
3284         * src/plugins/clamav/clamav_plugin.c
3285                 reflect upstream changes
3286
3287 2005-11-25 [paul]       1.9.100cvs33
3288
3289         * manual/ack.xml
3290         * manual/plugins.xml
3291         * manual/sylpheed-claws-manual.xml
3292                 written/updated by Colin, edited by me
3293         * tools/acroread2sylpheed.pl
3294                 update binary name
3295
3296 2005-11-24 [colin]      1.9.100cvs32
3297
3298         * src/compose.c
3299                 Fix bug #856 (reediting messages forgets Request
3300                 Return Receipt)
3301
3302 2005-11-24 [paul]       1.9.100cvs31
3303
3304         * manual/addrbook.xml
3305         * manual/starting.xml
3306                 written by Colin, proofread, edited, adapted by me
3307         * manual/advanced.xml
3308                 add some Actions examples
3309         * src/importldif.c
3310                 use a Save button instead of a Close button
3311         * src/wizard.c
3312                 indicate mandatory fields
3313                 fix page display
3314                 Thanks to Colin
3315
3316 2005-11-23 [colin]      1.9.100cvs30
3317
3318         * src/addressbook.c
3319                 Rename menu item, fix possible crash after
3320                 deletion of books
3321         * src/addrindex.c
3322                 Allow searching for '*' in ldap
3323         * src/browseldap.c
3324                 Fix "Browse Entry" (did anyone use it?)
3325         * src/wizard.c
3326                 Add guards for mandatory information
3327
3328 2005-11-23 [paul]       1.9.100cvs29
3329
3330         * manual/advanced.xml
3331                 corrections to the English
3332
3333 2005-11-23 [colin]      1.9.100cvs28
3334
3335         * src/mimeview.c
3336                 Fix possible crash at exit. After the call to
3337                 gtk_container_remove(), the Viewer's widget has no
3338                 more parent so gtk+ automatically frees it and its
3339                 sons. If destroy_viewer() then try to access it,
3340                 problems ensue.
3341
3342 2005-11-22 [colin]      1.9.100cvs27
3343
3344         * src/compose.c
3345         * src/gtk/gtkaspell.c
3346                 Fix right-clicking on a misspelled word
3347                 Fix More... in suggestions menu
3348
3349 2005-11-22 [wwp]        1.9.100cvs26
3350
3351         * src/prefs_template.c
3352                 templates works: re-sort templates list when adding or replacing,
3353                 prevent from adding or replacing when the template name is empty
3354
3355 2005-11-21 [colin]      1.9.100cvs25
3356
3357         * src/addressbook.c
3358                 Fix some addressbook suckage (dnd, select all)
3359         * src/compose.c
3360         * src/gtk/gtkaspell.c
3361         * src/gtk/gtkaspell.h
3362                 Make the spellchecker menu work with the 
3363                 GtkTextView one instead of overriding it
3364
3365 2005-11-20 [paul]       1.9.100cvs24
3366
3367         * manual/handling.xml
3368                 proofread and corrected
3369
3370 2005-11-20 [paul]       1.9.100cvs23
3371
3372         * manual/Makefile
3373                 generate html as one file
3374         * manual/advanced.xml
3375                 fix output generation
3376                 reformat hidden options list
3377         * manual/manual.xml     ** REMOVED **
3378         * manual/sylpheed-claws-manual.xml      ** ADDED **
3379                 renamed
3380
3381 2005-11-18 [colin]      1.9.100cvs22
3382
3383         * src/prefs_account.c
3384                 Fix layout in news and mbox accounts
3385         * manual/account.xml
3386         * manual/advanced.xml
3387                 New contents for Paul to check :)
3388
3389 2005-11-18 [wwp]        1.9.100cvs21
3390
3391         * src/gtk/quicksearch.c
3392                 don't update extended quicksearch buttons twice
3393
3394 2005-11-18 [paul]       1.9.100cvs20
3395
3396         * src/textview.c
3397                 complete 1.9.100cvs19
3398
3399 2005-11-18 [paul]       1.9.100cvs19
3400
3401         * src/compose.c
3402                 cosmetic improvements
3403         * src/textview.c
3404                 also list text/* attachments
3405
3406 2005-11-18 [colin]      1.9.100cvs18
3407
3408         * src/summaryview.c
3409                 Use column 0 instead of -1 in 
3410                 gtk_ctree_node_moveto, in a naive
3411                 hope it'll fix the gtk-related crashes
3412
3413 2005-11-18 [colin]      1.9.100cvs17
3414
3415         * src/gtk/inputdialog.c
3416                 Fix icon staying the first one
3417
3418 2005-11-17 [wwp]        1.9.100cvs16
3419                 fix possible problem showing some quicksearch buttons, and a bad
3420                 call to g_return_if_fail in a function that returns a value (both
3421                 fixes by Fabien Vantard)
3422
3423 2005-11-15 [wwp]        1.9.100cvs15
3424
3425         * src/gtk/quicksearch.c
3426                 added a tooltip to that obscure ... quicksearch button
3427
3428 2005-11-15 [wwp]        1.9.100cvs14
3429
3430         * src/gtk/quicksearch.c
3431                 add a quicksearch helper to filtering expression users: the ... button
3432                 raises the condition expr window. condition expressions set up w/ this
3433                 window are used by the quicksearch if the user closes it pressing OK.
3434
3435 2005-11-14 [paul]       1.9.100cvs13
3436
3437         * src/plugins/clamav/clamav_plugin.c
3438         * src/plugins/spamassassin/spamassassin.c
3439                 change plugin type following recent merging
3440
3441 2005-11-14 [wwp]        1.9.100cvs12
3442
3443         * src/folder.c
3444                 prevent from crashing when copying/moving message(s) from and
3445                 to the same folder
3446
3447 2005-11-14 [paul]       1.9.100cvs11
3448
3449         * src/plugins/clamav/Makefile.am
3450         * src/plugins/clamav/clamav_plugin.c
3451         * src/plugins/clamav/clamav_plugin.h
3452         * src/plugins/clamav/clamav_plugin_gtk.c
3453                 also merge clamav and clamav_gtk plugins
3454
3455 2005-11-13 [colin]      1.9.100cvs10
3456
3457         * configure.ac
3458         * src/plugins/spamassassin/Makefile.am
3459         * src/plugins/spamassassin/spamassassin.c
3460         * src/plugins/spamassassin/spamassassin.h
3461         * src/plugins/spamassassin/spamassassin_gtk.c
3462                 Merge spamassassin and spamassassin_gtk plugins,
3463                 and build it by default.
3464
3465 2005-11-12 [colin]      1.9.100cvs9
3466
3467         * src/etpan/imap-thread.c
3468                 Fix gcc warning
3469
3470 2005-11-12 [colin]      1.9.100cvs8
3471
3472         * src/procmime.c
3473                 Revert 1.9.100cvs3 - it breaks PGP sign+encrypt
3474
3475 2005-11-10 [colin]      1.9.100cvs7
3476
3477         * src/main.c
3478                 Fix bug #845 (sylpheed-claws 1.9.99+ start in 
3479                 minimised state)
3480
3481 2005-11-10 [wwp]        1.9.100cvs6
3482
3483         * src/gtk/description_window.c
3484                 fix a crash when closing description windows using the WM's [X] button
3485
3486 2005-11-09 [colin]      1.9.100cvs5
3487
3488         * src/common/ssl.c
3489                 Update libetpan call to follow upstream
3490                 (yes, this requires libetpan-0.40cvs3)
3491
3492 2005-11-08 [colin]      1.9.100cvs4
3493
3494         * src/compose.c
3495         * src/textview.c
3496         * src/common/utils.c
3497         * src/common/utils.h
3498                 Enhance the email parser
3499
3500 2005-11-08 [colin]      1.9.100cvs3
3501
3502         * src/procmime.c
3503                 Fix what looks like an off-by-one (fixes 
3504                 attachments from the Bat)
3505
3506 2005-11-08 [wwp]        1.9.100cvs2
3507
3508         * src/main.c
3509                 renamed some occurrences of "Sylpheed" to "Sylpheed-Claws"
3510
3511 2005-11-08 [wwp]        1.9.100cvs1
3512
3513         * src/main.c
3514                 allow exiting Sylpheed-Claws from command-line
3515
3516 2005-11-08 [paul]       1.9.100
3517
3518         1.9.100 released
3519
3520 2005-11-07 [colin]      1.9.99cvs17
3521
3522         * src/addritem.c
3523         * src/ldif.c
3524                 Fix import of base-64 encoded items
3525
3526 2005-11-07 [colin]      1.9.99cvs16
3527
3528         * src/send_message.c
3529                 Fix bug #314 (Queue does not empty under certain 
3530                 circumstances)
3531
3532 2005-11-07 [paul]       1.9.99cvs15
3533
3534         * src/mutt.c
3535         * src/pine.c
3536                 fix buffer overflows
3537                 Thanks to Colin
3538
3539 2005-11-07 [paul]       1.9.99cvs14
3540
3541         * doc/man/Makefile.am
3542         * doc/man/sylpheed-claws.1      ** ADDED **
3543         * doc/man/sylpheed.1            ** DELETED **
3544                 rename and update the man file
3545
3546 2005-11-06 [colin]      1.9.99cvs13
3547
3548         * src/ldif.c
3549                 Fix ldif_get_line() that returned empty strings
3550                 (Didn't understand why). Also fix a possible
3551                 buffer overflow.
3552
3553 2005-11-06 [wwp]        1.9.99cvs12
3554
3555         * src/textview.c
3556         * src/gtk/about.c
3557         * src/gtk/gtkutils.c
3558         * src/gtk/gtkutils.h
3559                 fix a compilation warning,
3560                 make links sensitive in the about dialog
3561
3562 2005-11-04 [wwp]        1.9.99cvs11
3563
3564         * src/gtk/about.c
3565                 don't wrap or translate URIs, and a bit text format cleanup
3566
3567 2005-11-04 [wwp]        1.9.99cvs10
3568
3569         * src/gtk/about.c
3570                 better textview tagging implementation (no more use of marks for
3571                 postponed tagging)
3572
3573 2005-11-02 [colin]      1.9.99cvs9
3574
3575         * src/common/ssl.c
3576                 Forgot an ifdef
3577
3578 2005-11-02 [colin]      1.9.99cvs8
3579
3580         * configure.ac
3581                 Require libetpan-0.40 due to upstream fix
3582         * src/common/ssl.c
3583                 Tell libetpan not to call SSL_Library_Init,
3584                 as we do it ourselves.
3585
3586 2005-11-02 [colin]      1.9.99cvs7
3587
3588         * po/POTFILES.in
3589                 Add missing files (thanks to Fabien Vantard)
3590
3591 2005-11-02 [colin]      1.9.99cvs6
3592
3593         * src/summaryview.c
3594                 Fix totals when read messages are hidden or quicksearch
3595                 is on
3596         * src/ssl_manager.c
3597         * src/ssl_manager.h
3598         * src/common/ssl_certificate.c
3599         * src/common/ssl_certificate.h
3600         * src/gtk/sslcertwindow.c
3601         * src/gtk/sslcertwindow.h
3602                 Fix copyright on my stuff
3603
3604 2005-11-02 [wwp]        1.9.99cvs5
3605
3606         * src/prefs_themes.c
3607                 fix directory name checking (theme installation/removal),
3608                 made related error a bit more verbose
3609
3610 2005-11-02 [colin]      1.9.99cvs4
3611
3612         * src/summaryview.c
3613                 Fix typo (probably fixes bug #841 (Sort by the From 
3614                 field doesn't work)
3615
3616 2005-11-02 [paul]       1.9.99cvs3
3617
3618         * po/ko.po
3619         * po/nb.po
3620                 updated by SungHyun Nam, Geir Helland
3621         * src/wizard.c
3622                 fix typo in welcome message. spotted by
3623                 Andrea Spadaccini
3624
3625 2005-11-01 [colin]      1.9.99cvs2
3626
3627         * src/compose.c
3628                 Fix replying to ml wen confirming subscription
3629         * src/messageview.c
3630         * src/mimeview.c
3631         * src/mimeview.h
3632         * src/privacy.h
3633         * src/summaryview.c
3634                 Make key check non blocking
3635
3636 2005-10-31 [paul]       1.9.99cvs1
3637
3638         * tools/claws.i18n.status.pl
3639                 updated for ChangeLog
3640
3641 2005-10-31 [paul]       1.9.99
3642
3643         1.9.99 released
3644
3645 2005-10-31 [paul]       1.9.15cvs131
3646
3647         * .cvsignore
3648         * ChangeLog
3649         * ChangeLog.claws       ** REMOVED **
3650         * ChangeLog-gtk2.claws  ** REMOVED **
3651         * ChangeLog.gtk1        ** ADDED **
3652         * INSTALL
3653         * Makefile.am
3654         * NEWS
3655         * README
3656         * README.claws          ** REMOVED **
3657         * README.jp             ** REMOVED **
3658         * RELEASE_NOTES         ** ADDED **
3659         * RELEASE_NOTES.claws   ** REMOVED **
3660         * commitHelper
3661         * configure.ac
3662         * sylpheed.spec.in      ** REMOVED **
3663                 tidy up and update the default docs:
3664                 ChangeLog.claws is renamed ChangeLog.gtk1
3665                 ChangeLog-gtk2.claws is renamed ChangeLog
3666                 README.claws is renamed README
3667                 RELEASE_NOTES.claws is renamed RELEASE_NOTES
3668
3669 2005-10-31 [paul]       1.9.15cvs130
3670
3671         * po/it.po
3672                 fix errors
3673
3674 2005-10-31 [paul]       1.9.15cvs129
3675
3676         * po/ca.po
3677         * po/de.po
3678         * po/en_GB.po
3679         * po/fr.po
3680         * po/it.po
3681         * po/pt_BR.po
3682         * po/sk.po
3683         * po/sr.po
3684         * po/zh_CN.po
3685                 updated by Miquel Oliete, Stephan Sachse and
3686                 Thomas Gilgin, me, Fabien Vantard, Andrea
3687                 Spadaccini, Frederico Goncalves Guimaraes,
3688                 Andrej Kacian, Aleksandar Urosevic, and
3689                 Ralgh Young.
3690
3691 2005-10-31 [mones]      1.9.15cvs128
3692
3693         * manual/faq.xml
3694                 More questions.
3695         
3696         * po/es.po
3697                 Updated for release.
3698
3699 2005-10-30 [colin]      1.9.15cvs127
3700
3701         * src/compose.c
3702                 Place cursor before rewrapping (fixes cursor
3703                 pos if quotation gets rewrapped)
3704
3705 2005-10-29 [paul]       1.9.15cvs126
3706
3707         * src/crash.c
3708         * src/foldersel.c
3709         * src/main.c
3710         * src/messageview.c
3711         * src/toolbar.c
3712         * src/gtk/authors.h
3713                 corrections to text items
3714
3715 2005-10-28 [colin]      1.9.15cvs125
3716
3717         * src/messageview.c
3718                 Make "hit 'C' to check sig" work from extern 
3719                 messageviews
3720
3721 2005-10-27 [colin]      1.9.15cvs124
3722
3723         * src/summaryview.c
3724                 Add a hack to avoid segfaulting when hammering 
3725                 on gtk's events
3726
3727 2005-10-27 [wwp]        1.9.15cvs123
3728
3729         * src/prefs_themes.c
3730                 sort list of themes names in themes prefs
3731
3732 2005-10-27 [paul]       1.9.15cvs122
3733
3734         * src/folder.c
3735         * src/prefs_account.c
3736                 fix building on Solaris
3737                 Patch by Alex Moore
3738
3739 2005-10-27 [wwp]        1.9.15cvs121
3740
3741         * src/summaryview.c
3742         * src/gtk/gtksctree.c
3743                 speed up unselecting messages in summary view (thanks to Colin)
3744
3745 2005-10-27 [paul]       1.9.15cvs120
3746
3747         * src/mainwindow.c
3748                 fix a compilation warning
3749         * src/summaryview.c
3750                 fix updating of 'n items selected' count
3751                 when deselecting
3752
3753 2005-10-27 [martin]     1.9.15cvs119
3754
3755         * src/action.c
3756                 ignore actions with a leading '/' in the action menu name
3757                 fixes a crash on menu creation
3758         * src/prefs_actions.c
3759                 do not allow a leading '/' in the action menu name
3760
3761 2005-10-27 [paul]       1.9.15cvs118
3762
3763         * src/main.c
3764                 fix compilation warning
3765
3766 2005-10-27 [paul]       1.9.15cvs117
3767
3768         * src/procmime.c
3769                 add #if HAVE_LOCALE_H
3770
3771 2005-10-27 [paul]       1.9.15cvs116
3772
3773         * src/plugins/clamav/clamav_plugin.c
3774         * src/plugins/dillo_viewer/dillo_viewer.c
3775         * src/plugins/mathml_viewer/mathml_viewer.c
3776         * src/plugins/pgpcore/plugin.c
3777         * src/plugins/pgpinline/plugin.c
3778         * src/plugins/pgpmime/plugin.c
3779         * src/plugins/spamassassin/spamassassin.c
3780         * src/plugins/trayicon/trayicon.c
3781                 plugin_init() : make error messages more
3782                 informative
3783
3784 2005-10-26 [wwp]        1.9.15cvs115
3785
3786         * src/prefs_matcher.c
3787                 enlarge boolean op widget width a bit (wasn't always showing text contents)
3788
3789 2005-10-26 [wwp]        1.9.15cvs114
3790
3791         * src/procmime.c
3792         * src/gtk/gtksctree.c
3793         * src/plugins/spamassassin/libspamc.c
3794         * src/plugins/spamassassin/spamassassin.c
3795                 fix some compilation warnings more
3796
3797 2005-10-26 [mones]      1.9.15cvs113
3798
3799         * po/es.po
3800                 Updated translation
3801
3802 2005-10-26 [paul]       1.9.15cvs112
3803
3804         * src/prefs_message.c
3805                 give all display_xface stuff the
3806                 #if HAVE_LIBCOMPFACE treatment, thus
3807                 preventing a crash
3808                 (Thanks to Wolfgang Enderlein)
3809
3810 2005-10-26 [colin]      1.9.15cvs111
3811
3812         * src/gedit-print.c
3813                 Fix date format
3814         * src/imap_gtk.c
3815         * src/news_gtk.c
3816                 Remove context menu items that should not be there
3817         * src/jpilot.c
3818                 Fix encoding
3819         * src/main.c
3820         * src/mainwindow.c
3821                 Don't show the mainwindow too soon
3822
3823 2005-10-26 [wwp]        1.9.15cvs110
3824
3825         * src/folder.c
3826         * src/manual.c
3827         * src/summaryview.c
3828                 fix uninitialized pointers in the folder updating hook
3829                 (thanks to Colin)
3830
3831 2005-10-25 [mones]      1.9.15cvs109
3832
3833         * manual/faq.xml
3834                 General information subsection completed. 
3835                 Removed archaic references.
3836                 
3837         * manual/Makefile
3838         * manual/dtd/manual.dsl
3839                 Added customization stylesheet for getting paragraphs
3840                 fully justified in PDF output (as suggested by Colin).
3841
3842 2005-10-25 [colin]      1.9.15cvs108
3843
3844         * src/compose.c
3845                 Fix a second leak
3846
3847 2005-10-25 [colin]      1.9.15cvs107
3848
3849         * src/addrbook.c
3850         * src/addrindex.c
3851                 Fix leak (xml_get_element() allocates memory)
3852         * src/compose.c
3853                 Fix leak + dead code (shame!)
3854         * src/procmime.c
3855                 Fix leak
3856
3857 2005-10-25 [colin]      1.9.15cvs106
3858
3859         * src/mimeview.c
3860                 Fix encoding issue in Save all and in 
3861                 overwrite-confirmation alertpanel
3862
3863 2005-10-25 [colin]      1.9.15cvs105
3864
3865         * src/common/socket.c
3866                 Fix a leak - Thanks to Christopher Aillon
3867                 (http://christopher.aillon.org/blog/dev/gnome/20051025-gsource.html)
3868
3869 2005-10-25 [paul]       1.9.15cvs104
3870
3871         * src/wizard.c
3872                 Always guess servers from the right-hand
3873                 email part and guess username from the
3874                 left-hand part. (Thanks to Colin)
3875                 add an X-Face to the welcome message
3876
3877 2005-10-25 [paul]       1.9.15cvs103
3878
3879         * manual/handling.xml
3880                 written by Colin, edited by me
3881
3882 2005-10-25 [wwp]        1.9.15cvs102
3883
3884         * src/folderview.c
3885         * src/grouplistdialog.c
3886         * src/imap.c
3887         * src/noticeview.c
3888                 fix some compilation warnings
3889
3890 2005-10-24 [paul]
3891
3892         1.9.99-rc3 released
3893
3894 2005-10-24 [paul]       1.9.15cvs101
3895
3896         * src/gtk/about.c
3897                 fix window sizing
3898
3899 2005-10-24 [paul]       1.9.15cvs100
3900
3901         * src/pixmaps/offline.xpm
3902         * src/pixmaps/online.xpm
3903                 replace with last default versions
3904
3905 2005-10-24 [colin]      1.9.15cvs99
3906
3907         * src/imap.c
3908                 Fix bug when moving a folder
3909         * src/imap_gtk.c
3910         * src/mh_gtk.c
3911                 "Delete folder" pops up a window, so it 
3912                 should be suffixed with "..."
3913         * src/plugins/pgpcore/sgpgme.c
3914                 Include locale.h
3915
3916 2005-10-24 [mones]      1.9.15cvs98
3917
3918         * manual/Makefile
3919         * manual/account.xml
3920         * manual/ack.xml
3921         * manual/addrbook.xml
3922         * manual/advanced.xml
3923         * manual/faq.xml
3924         * manual/glossary.xml
3925         * manual/gpl.xml
3926         * manual/handling.xml
3927         * manual/intro.xml
3928         * manual/keyboard.xml
3929         * manual/manual.xml
3930         * manual/plugins.xml
3931         * manual/starting.xml
3932         * manual/dtd/sdocbook.dtd
3933                 Initial manual structure and some content.
3934
3935 2005-10-23 [wwp]        1.9.15cvs97
3936
3937         * src/gtk/about.c
3938                 fix a typo
3939
3940 2005-10-23 [wwp]        1.9.15cvs96
3941
3942         * src/gtk/about.c
3943         * src/gtk/authors.h
3944                 rework of the about window (main work by Paul), also featuring a few
3945                 fixes for typos and duplicate names
3946
3947 2005-10-23 [wwp]        1.9.15cvs95
3948
3949         * src/.cvsignore
3950                 Ignore the right binary name (sylpheed-claws now)
3951
3952 2005-10-23 [paul]       1.9.15cvs94
3953
3954         * src/compose.c
3955                 when using Folder Pref 'Default To for
3956                 replies' make the entry in the Compose
3957                 window bold
3958                 Patch by Fabien Vantard
3959
3960 2005-10-22 [colin]      1.9.15cvs93
3961
3962         * src/codeconv.c
3963                 Fix leak
3964
3965 2005-10-22 [colin]      1.9.15cvs92
3966
3967         * src/codeconv.c
3968                 try to convert using locale (apart utf8) if necessary
3969
3970 2005-10-22 [colin]      1.9.15cvs91
3971
3972         * src/pixmaps/new.xpm
3973         * src/pixmaps/unread.xpm
3974                 Make the unread envelope blue again and
3975                 saturate the new one a bit more.
3976
3977 2005-10-22 [colin]      1.9.15cvs90
3978
3979         * src/compose.c
3980                 When replying to a mail sent by one of our accounts,
3981                 use the original list of recipients. Let 'Reply All'
3982                 and 'Reply to sender' work like previously.
3983
3984 2005-10-21 [colin]      1.9.15cvs89
3985
3986         * src/prefs_filtering.c
3987                 Clear fields after add and replace
3988         * src/textview.c
3989                 Display xface differently (better)
3990         * src/plugins/pgpinline/pgpinline.c
3991                 Fix crappy encodings/recodings
3992
3993 2005-10-21 [paul]       1.9.15cvs88
3994
3995         * src/compose.c
3996         * src/prefs_folder_item.c
3997         * src/toolbar.c
3998                 fix news folder Folder Properties
3999                 (thanks to Colin)
4000         * src/folderview.c
4001                 update folderview after Themes change
4002                 keep selected folder selected
4003                 (thanks to Colin)
4004
4005 2005-10-21 [paul]       1.9.15cvs87
4006
4007         * tools/Makefile.am
4008         * tools/OOo2sylpheed.pl
4009         * tools/README
4010         * tools/README.sylprint
4011         * tools/asus_mailled.sh         ** REMOVED **
4012         * tools/filter_conv.pl
4013         * tools/freshmeat_search.pl
4014         * tools/google_search.pl
4015         * tools/gpg-sign-syl            ** REMOVED **
4016         * tools/kmail2sylpheed.pl
4017         * tools/kmail2sylpheed_v2.pl
4018         * tools/multiwebsearch.pl
4019         * tools/nautilus2sylpheed.sh
4020         * tools/newscache_clean.pl
4021         * tools/outlook2sylpheed.pl
4022         * tools/sylpheed-switcher       ** REMOVED **
4023         * tools/sylprint.pl
4024         * tools/sylprint.rc
4025         * tools/tb2sylpheed
4026         * tools/vcard2xml.py
4027         * tools/kdeservicemenu/sylpheed-kdeservicemenu.pl
4028                 update default config dir
4029                 update binary name (thanks to Fabien Vantard)
4030                 remove obsolete scripts
4031
4032 2005-10-21 [colin]      1.9.15cvs86
4033
4034         * src/inc.c
4035                 Fix possible leak and units. Based on a patch by
4036                 Fabien Vantard.
4037
4038 2005-10-20 [colin]      1.9.15cvs85
4039
4040         * src/textview.c
4041                 Clear xface when clearing textview
4042
4043 2005-10-20 [colin]      1.9.15cvs84
4044
4045         * configure.ac
4046         * src/folderview.c
4047         * src/headerview.c
4048         * src/main.c
4049         * src/prefs_common.c
4050         * src/prefs_common.h
4051         * src/prefs_message.c
4052         * src/textview.c
4053         * src/textview.h
4054         * src/common/defs.h
4055         * src/common/utils.c
4056         * src/common/utils.h
4057         * src/gtk/gtkutils.c
4058         * src/gtk/gtkutils.h
4059                 Migrate config to .sylpheed-claws (Automatically)
4060                 Add a way to get the Xface in the TextView
4061
4062 2005-10-20 [colin]      1.9.15cvs83
4063
4064         * src/gtk/Makefile.am
4065         * src/gtk/about.c
4066         * src/gtk/authors.h
4067                 Make the about dialog *grooovy*
4068
4069 2005-10-20 [colin]      1.9.15cvs82
4070
4071         * src/mimeview.c
4072                 Use "Open with" on double click if no command
4073                 was found
4074
4075 2005-10-20 [colin]      1.9.15cvs81
4076
4077         * src/imap.c
4078         * src/etpan/imap-thread.c
4079                 Fix possible crash.
4080
4081 2005-10-20 [paul]       1.9.15cvs80
4082
4083         * src/folder.c
4084                 don't show clipkey icon if the only
4085                 attachment is the signature
4086                 Patch by Colin
4087
4088 2005-10-20 [paul]       1.9.15cvs79
4089
4090         * AUTHORS
4091         * src/plugins/pgpmime/pgpmime.c
4092                 name the PGP/MIME signature 'signature.asc'
4093                 Patch by Andrew Nelson <freeandy@gmail.com>
4094
4095 2005-10-19 [colin]      1.9.15cvs78
4096
4097         * src/plugins/pgpmime/pgpmime.c
4098                 Oops, no need to double-check though
4099
4100 2005-10-19 [colin]      1.9.15cvs77
4101
4102         * src/plugins/pgpinline/pgpinline.c
4103         * src/plugins/pgpmime/pgpmime.c
4104                 Check that my_tmpfile() doesn't 
4105                 return NULL
4106
4107 2005-10-19 [colin]      1.9.15cvs76
4108
4109         * src/common/utils.c
4110                 Use shorter mime boundaries to avoid having
4111                 MTAs rewrapping our headers, breaking the
4112                 PGP signature in the process 
4113         * src/compose.c
4114         * src/plugins/pgpmime/pgpmime.c
4115                 Check for boundary uniqueness to be sure
4116                 it won't happen, instead of hoping for the
4117                 best
4118
4119 2005-10-19 [colin]      1.9.15cvs75
4120
4121         * sylpheed-claws.desktop
4122         * src/Makefile.am
4123         * src/main.c
4124                 Ship a sylpheed-claws binary instead
4125                 of a sylpheed one. Change the socket
4126                 name, too
4127         * src/folderview.c
4128                 Update folder only if it changed
4129         * src/wizard.c
4130                 Fix i18n in welcome mail, patch by
4131                 Fabien Vantard
4132
4133 2005-10-19 [paul]
4134
4135         1.9.99-rc2 released
4136
4137 2005-10-19 [paul]       1.9.15cvs74
4138
4139         * src/folder.c
4140         * src/folderview.c
4141                 fix summaryview update
4142                 Patch by Colin
4143
4144 2005-10-18 [colin]      1.9.15cvs73
4145
4146         * src/plugins/pgpcore/passphrase.c
4147                 Don't XGrabServer, and try a bit more to 
4148                 sync everything before grabbing mouse/keyboard
4149
4150 2005-10-18 [colin]      1.9.15cvs72
4151
4152         * src/Makefile.am
4153         * src/addressadd.c
4154         * src/addressbook.c
4155         * src/folderview.c
4156         * src/grouplistdialog.c
4157         * src/mimeview.c
4158         * src/stock_pixmap.c
4159         * src/stock_pixmap.h
4160         * src/summaryview.c
4161         * src/gtk/gtksctree.c
4162         * src/gtk/gtksctree.h
4163         * src/pixmaps/empty.xpm
4164                 Implement a wrapper call for gtk_ctree_set_node_info
4165                 and gtk_ctree_insert_node, that uses a 1x1 transparent
4166                 pixmap instead of a NULL one. This works around some
4167                 memory problems deep inside gtk, revealed by valgrind,
4168                 and fixes bug #834 (Pressing CTRl-D on a message marked 
4169                 as locked crashes sylpheed.), as well as, probably, 
4170                 wwp's 4th dimension problems that happen in gtk_ctree_*.
4171
4172 2005-10-17 [colin]      1.9.15cvs71
4173
4174         * src/mimeview.c
4175                 Provide visual feedback when checking
4176                 signature
4177
4178 2005-10-17 [colin]      1.9.15cvs70
4179
4180         * src/main.c
4181                 Keep the folder list frozen while checking caches...
4182
4183 2005-10-17 [colin]      1.9.15cvs69
4184
4185         * src/addr_compl.c
4186                 Fi bug #833 (Autocompleting from addressbook 
4187                 fails with extended chars)
4188         * src/imap.c
4189                 Fix 'adding messages' staying in statusbar
4190                 after an error
4191
4192 2005-10-17 [wwp]        1.9.15cvs68
4193
4194         * src/ssl_manager.c
4195                 Fix buttons' layout resizing when window size changes
4196
4197 2005-10-17 [wwp]        1.9.15cvs67
4198
4199         * src/account.c
4200         * src/prefs_account.c
4201         * src/prefs_common.c
4202         * src/prefs_common.h
4203         * src/prefs_folder_item.c
4204         * src/prefs_gtk.c
4205         * src/gtk/logwindow.c
4206         * src/gtk/pluginwindow.c
4207         * src/gtk/prefswindow.c
4208         * src/gtk/prefswindow.h
4209                 Remember yet more window sizes (log, prefs, folder prefs, accounts)
4210
4211 2005-10-17 [paul]       1.9.15cvs66
4212
4213         * configure.ac
4214                 fix missing libetpan message
4215         * po/en_GB.po
4216                 updated
4217         * src/crash.c
4218         * src/manual.c
4219         * src/prefs_themes.c
4220         * src/common/defs.h
4221                 add some new URI defines, change some
4222                 others
4223         * src/wizard.c
4224                 make welcome message translatable
4225                 small improvements to english
4226                 other tweaks
4227         * src/gtk/menu.c
4228                 fix warnings
4229
4230 2005-10-17 [paul]       1.9.15cvs65
4231
4232         * src/summaryview.c
4233                 fix column titles
4234
4235 2005-10-16 [mones]      1.9.15cvs64
4236
4237         * po/es.po
4238                 Updated translation
4239
4240 2005-10-16 [colin]
4241
4242         1.9.99-rc1 released
4243
4244 2005-10-16 [colin]      1.9.15cvs63
4245
4246         * src/wizard.c
4247                 Fix whitespace
4248
4249 2005-10-16 [colin]      1.9.15cvs62
4250
4251         * src/toolbar.c
4252                 s/Get All/Get Mail/
4253         * src/wizard.c
4254                 Real welcome mail text, thanks Paul
4255
4256 2005-10-16 [colin]      1.9.15cvs61
4257
4258         * src/editldap.c
4259         * src/exporthtml.c
4260         * src/main.c
4261         * src/mainwindow.c
4262         * src/prefs_themes.c
4263         * src/prefs_toolbar.c
4264         * src/plugins/demo/demo.c
4265         * src/plugins/trayicon/trayicon.c
4266                 s/Sylpheed/Sylpheed-Claws/
4267
4268 2005-10-16 [colin]      1.9.15cvs60
4269
4270         * src/wizard.c
4271                 Add a welcome email in the first empty mailbox
4272         * src/prefs_common.c
4273                 Change one more default
4274
4275 2005-10-16 [colin]      1.9.15cvs59
4276
4277         * src/wizard.c
4278                 Remove printf
4279
4280 2005-10-16 [colin]      1.9.15cvs58
4281
4282         * src/toolbar.c
4283         * src/prefs_common.c
4284                 Change some defaults
4285
4286 2005-10-16 [colin]      1.9.15cvs57
4287
4288         * src/toolbar.c
4289         * src/prefs_common.c
4290                 Change some defaults
4291
4292 2005-10-16 [colin]      1.9.15cvs56
4293
4294         * src/wizard.c
4295                 By default, initialize fonts to have
4296                 the same size as normal GtkWidgets
4297
4298 2005-10-16 [colin]      1.9.15cvs55
4299
4300         * src/mimeview.c
4301                 Fix message a bit more
4302
4303 2005-10-16 [colin]      1.9.15cvs54
4304
4305         * src/addressbook.c
4306                 Second attempt at flicker fixing
4307
4308 2005-10-16 [colin]      1.9.15cvs53
4309
4310         * src/addressbook.c
4311                 Fix flicker
4312
4313 2005-10-16 [wwp]        1.9.15cvs52
4314
4315         * src/addressbook.c
4316         * src/editaddress.c
4317         * src/prefs_common.c
4318         * src/prefs_common.h
4319                 Remember window sizes (address book)
4320
4321 2005-10-16 [wwp]        1.9.15cvs51
4322
4323         * src/plugins/clamav/clamav_plugin_gtk.c
4324         * src/plugins/spamassassin/spamassassin_gtk.c
4325                 Fix compilation warnings (missing #include).
4326
4327 2005-10-16 [colin]      1.9.15cvs50
4328
4329         * src/mimeview.c
4330         * src/summaryview.c
4331         * src/textview.c
4332                 Make 'c' check signature, and forward
4333                 c, l, y, t from summaryview to mimeview
4334
4335 2005-10-16 [colin]      1.9.15cvs49
4336
4337         * src/addressbook.c
4338                 Put border around buttons
4339         * src/mainwindow.c
4340         * src/summaryview.c
4341                 Rework menus (Patch based on a patch
4342                 by Paul)
4343
4344 2005-10-15 [wwp]        1.9.15cvs48
4345
4346         * src/editjpilot.c
4347         * src/editldap.c
4348         * src/editvcard.c
4349         * src/exphtmldlg.c
4350         * src/expldifdlg.c
4351         * src/export.c
4352         * src/import.c
4353         * src/importldif.c
4354         * src/importmutt.c
4355         * src/importpine.c
4356         * src/prefs_account.c
4357         * src/prefs_spelling.c
4358         * src/gtk/gtkutils.c
4359         * src/gtk/gtkutils.h
4360         * src/plugins/clamav/clamav_plugin_gtk.c
4361         * src/plugins/spamassassin/spamassassin_gtk.c
4362                 use nicer browse-for-file/dir buttons than the "..." ones,
4363                 code factorizing more.
4364
4365 2005-10-14 [colin]      1.9.15cvs47
4366
4367         * src/mainwindow.c
4368                 set relief on the account switcher so that people see it
4369                 grey out Create processing rules when no message is selected
4370         * src/prefs_filtering.c
4371                 ask before closing if the rule has not been modified, even if
4372                 it's not valid
4373         * src/prefs_matcher.c
4374                 fix sensitivity when entering the dialog
4375         * src/gtk/inputdialog.c
4376                 display a better icon on password ask
4377         * src/plugins/pgpcore/passphrase.c
4378                 make the dialog look better
4379
4380 2005-10-14 [paul]       1.9.15cvs46
4381
4382         * src/folderview.c
4383                 indicate presense of marked msgs in
4384                 unexpanded subfolders
4385
4386 2005-10-14 [paul]       1.9.15cvs45
4387
4388         * src/prefs_actions.c
4389         * src/prefs_common.c
4390         * src/prefs_common.h
4391         * src/prefs_filtering_action.c
4392         * src/prefs_matcher.c
4393         * src/prefs_template.c
4394                 remember window sizes
4395                 fix Info button size
4396
4397         Patches by wwp
4398
4399 2005-10-13 [colin]      1.9.15cvs44
4400
4401         * src/mimeview.c
4402         * src/noticeview.c
4403         * src/noticeview.h
4404                 Add a tooltip on the icon (optional) 
4405                 Get rid of the signature buttons and only
4406                 use the icon+tooltip
4407
4408 2005-10-13 [colin]      1.9.15cvs43
4409
4410         * src/noticeview.c
4411         * src/noticeview.h
4412                 Add hand cursor for hovering over icon
4413
4414 2005-10-13 [colin]      1.9.15cvs42
4415
4416         * src/summaryview.c
4417                 Fix crash when quicksearch's hidden 
4418                 at startup
4419
4420 2005-10-13 [colin]      1.9.15cvs41
4421
4422         * src/compose.c
4423                 Set subject when forwarding multiple mails
4424                 Check that other recipient than the default Cc or Bcc
4425                 have been set before sending.
4426
4427 2005-10-13 [colin]      1.9.15cvs40
4428
4429         * src/imap.c
4430                 Batch per-folder
4431                 Introduce locking, but don't use it yet
4432
4433 2005-10-13 [colin]      1.9.15cvs39
4434
4435         * src/gtk/quicksearch.c
4436                 Reset quicksearch when hiding it
4437                 Make sticky a real pref
4438
4439 2005-10-13 [colin]      1.9.15cvs38
4440
4441         * src/summaryview.c
4442                 Faster prefs apply
4443
4444 2005-10-13 [colin]      1.9.15cvs37
4445
4446         * src/mimeview.c
4447         * src/noticeview.c
4448         * src/noticeview.h
4449         * src/plugins/pgpcore/sgpgme.c
4450                 Make privacy icon clickable
4451                 Move Trust field in Full info
4452                 When trust is less than full, don't display
4453                 a warning icon
4454
4455 2005-10-13 [colin]      1.9.15cvs36
4456
4457         * src/folder.c
4458                 Batch on flags sync
4459         * src/folderview.c
4460                 Revert speed hack which is dangerous in fact
4461                 Apply prefs faster
4462
4463 2005-10-13 [colin]      1.9.15cvs35
4464
4465         * src/folder_item_prefs.c
4466                 Fix pref corruption on folder move. Patch
4467                 by wwp
4468
4469 2005-10-13 [paul]       1.9.15cvs34
4470
4471         * src/export.c
4472         * src/import.c
4473                 fix typos in g_warnings
4474         * src/prefs_account.c
4475                 add a file selector for Signature file
4476
4477         Patches by wwp
4478
4479 2005-10-12 [colin]      1.9.15cvs33
4480
4481         * src/mimeview.c
4482                 Provide a quick way to go back from a
4483                 signature's full info to the email part
4484
4485 2005-10-12 [colin]      1.9.15cvs32
4486
4487         * src/compose.c
4488                 Remove old hack of encoding signed mails with base64.
4489                 QP works equally well.
4490
4491 2005-10-12 [colin]      1.9.15cvs31
4492
4493         * src/crash.c
4494                 Replace deprecated GtkText with GtkTextView
4495         * src/imap.c
4496                 Fix a logic bug about counts in imap_select
4497                 (previously un-triggered)
4498         * src/mainwindow.c
4499         * src/summaryview.c
4500         * src/news.c
4501                 Allow local deletion of news posts
4502         * src/mimeview.c
4503                 Show GPG noticeview on the message/rfc822 part
4504                 in addition to the text/plain one
4505         * src/prefs_image_viewer.c
4506           src/plugins/pgpcore/prefs_gpg.c
4507                 Polish (set the label as part of the checkbox)
4508         * src/wizard.c
4509                 Don't sit there doing nothing after destroying
4510                 the window - return err
4511
4512 2005-10-11 [colin]      1.9.15cvs30
4513
4514         * src/folderview.c
4515                 Apply processing rules before showing folders.
4516                 Early folder show (before flags sync) will only
4517                 be done when there are no processing rules (nor
4518                 pre- or post- ones)
4519         * src/imap.c
4520                 Fix stuff related to mail subdir, creation and 
4521                 deletion of folders 
4522         * src/imap_gtk.c
4523                 Don't allow creation of folders in NoInferior
4524                 folders, as it won't work
4525
4526 2005-10-10 [colin]      1.9.15cvs29
4527
4528         * src/compose.c
4529                 Reselect "None" Privacy system when selecting an
4530                 account with no privacy system defined
4531
4532 2005-10-10 [colin]      1.9.15cvs28
4533
4534         * src/mainwindow.c
4535                 Add Windows-1252 encoding
4536         * src/prefs_common.c
4537                 Rework some defaults:
4538                 - autosave to draft by default
4539                 - don't show header pane (it's already in the textview)
4540                 - Select first new or unread mail on entry
4541                 - Assume 'Yes' to change folder when there's no more
4542                   unread message
4543         * src/prefs_matcher.c
4544                 Fix a gtk assertion failure
4545         * src/gtk/colorlabel.c
4546                 Workaround bad repainting on selection
4547         * src/main.c
4548                 Freeze/thaw (a bit faster on ssh -X)
4549         * src/msgcache.c
4550                 Get rid of StrdupConverter that just adds an
4551                 extra strdup/free 
4552         * src/etpan/imap_thread.c
4553                 memset buf to 0
4554
4555 2005-10-10 [colin]      1.9.15cvs27
4556
4557         * src/export.c
4558         * src/import.c
4559                 Fix compile on gtk 2.4. Patch by wwp
4560
4561 2005-10-09 [colin]      1.9.15cvs26
4562
4563         * src/mainwindow.c
4564         * src/messageview.c
4565         * src/summaryview.c
4566                 Clarify forward menus. Patch by wwp
4567
4568 2005-10-09 [colin]      1.9.15cvs25
4569
4570         * src/compose.c
4571         * src/compose.h
4572                 Fix bug #829 (Non-working "Encrypt message by 
4573                 default when replying to an encrypted message")
4574
4575 2005-10-08 [colin]      1.9.15cvs24
4576
4577         * src/wizard.c
4578                 Fix bug #827 ("Welcome" setup wizard after a 
4579                 permission error gives up & forgets itself.)
4580
4581 2005-10-08 [colin]      1.9.15cvs23
4582
4583         * src/procmime.c
4584                 Fix bug #828 (Ignoring headers with spaces around = sign)
4585
4586 2005-10-08 [colin]      1.9.15cvs22
4587
4588         * src/export.c
4589                 Warning fix by wwp
4590
4591 2005-10-08 [colin]      1.9.15cvs21
4592
4593         * src/folder.c
4594         * src/folder.h
4595                 Add a processing_pending indicator, set on 
4596                 folder_item_open and cleared after 
4597                 folder_item_process_open
4598         * src/folderview.c
4599         * src/summaryview.c
4600                 wrap procmsg_msginfo_*_flags, and in the
4601                 wrapper check that there's no folder processing 
4602                 pending. If there is, defer the flags change until 
4603                 processing is done to avoid stepping over each
4604                 other's toes.
4605                 Freeze during processing, but not during scanning.
4606
4607 2005-10-07 [colin]      1.9.15cvs20
4608
4609         * src/plugins/pgpcore/passphrase.c
4610                 Fix bug #826 (X-Server hangs when 
4611                 right-clicking a PGP encrypted message)
4612
4613 2005-10-07 [paul]       1.9.15cvs19
4614
4615         * src/compose.c
4616                 fix compose_entries[]
4617                 patch by Fabien Vantard
4618
4619 2005-10-06 [colin]      1.9.15cvs18
4620
4621         * src/pixmaps/address.xpm
4622         * src/pixmaps/address_book.xpm
4623         * src/pixmaps/book.xpm
4624         * src/pixmaps/check_spelling.xpm
4625         * src/pixmaps/checkbox_off.xpm
4626         * src/pixmaps/checkbox_on.xpm
4627         * src/pixmaps/close.xpm
4628         * src/pixmaps/complete.xpm
4629         * src/pixmaps/continue.xpm
4630         * src/pixmaps/deleted.xpm
4631         * src/pixmaps/down_arrow.xpm
4632         * src/pixmaps/exec.xpm
4633         * src/pixmaps/forwarded.xpm
4634         * src/pixmaps/group.xpm
4635         * src/pixmaps/ignorethread.xpm
4636         * src/pixmaps/interface.xpm
4637         * src/pixmaps/jpilot.xpm
4638         * src/pixmaps/ldap.xpm
4639         * src/pixmaps/linewrap.xpm
4640         * src/pixmaps/linewrapcurrent.xpm
4641         * src/pixmaps/mail.xpm
4642         * src/pixmaps/mail_attach.xpm
4643         * src/pixmaps/mail_compose.xpm
4644         * src/pixmaps/mail_forward.xpm
4645         * src/pixmaps/mail_receive.xpm
4646         * src/pixmaps/mail_receive_all.xpm
4647         * src/pixmaps/mail_reply.xpm
4648         * src/pixmaps/mail_reply_to_all.xpm
4649         * src/pixmaps/mail_reply_to_author.xpm
4650         * src/pixmaps/mail_send.xpm
4651         * src/pixmaps/mail_send_queue.xpm
4652         * src/pixmaps/mime_application.xpm
4653         * src/pixmaps/mime_audio.xpm
4654         * src/pixmaps/mime_image.xpm
4655         * src/pixmaps/mime_message.xpm
4656         * src/pixmaps/mime_text_enriched.xpm
4657         * src/pixmaps/mime_text_html.xpm
4658         * src/pixmaps/mime_text_plain.xpm
4659         * src/pixmaps/mime_unknown.xpm
4660         * src/pixmaps/new.xpm
4661         * src/pixmaps/news_compose.xpm
4662         * src/pixmaps/offline.xpm
4663         * src/pixmaps/online.xpm
4664         * src/pixmaps/paste.xpm
4665         * src/pixmaps/preferences.xpm
4666         * src/pixmaps/privacy_emblem_encrypted.xpm
4667         * src/pixmaps/privacy_expired.xpm
4668         * src/pixmaps/privacy_failed.xpm
4669         * src/pixmaps/privacy_passed.xpm
4670         * src/pixmaps/privacy_signed.xpm
4671         * src/pixmaps/privacy_unknown.xpm
4672         * src/pixmaps/privacy_warn.xpm
4673         * src/pixmaps/properties.xpm
4674         * src/pixmaps/replied.xpm
4675         * src/pixmaps/search.xpm
4676         * src/pixmaps/unread.xpm
4677         * src/pixmaps/up_arrow.xpm
4678         * src/pixmaps/vcard.xpm
4679                 Modernize internal theme, with icons from the 
4680                 Gnomaws theme. Keep some of the old ones where
4681                 they were better.
4682
4683 2005-10-06 [colin]      1.9.15cvs17
4684
4685         * src/summaryview.c
4686                 Little optimisations + bugfix
4687         * src/toolbar.c
4688                 Remove default useless items - useless being defined
4689                 by the default relevant prefs
4690         * src/wizard.c
4691                 include config.h to make gettext work
4692         * src/prefs_themes.c
4693                 Fix selection of current theme in prefs
4694
4695 2005-10-06 [colin]      1.9.15cvs16
4696
4697         * src/prefs_common.c
4698         * src/prefs_common.h
4699         * src/prefs_summaries.c
4700         * src/folderview.c
4701                 Add a warning dialog on Mark all read 
4702                 (with pref to get rid of it)
4703
4704 2005-10-06 [paul]       1.9.15cvs15
4705
4706         * po/nb.po
4707         * po/pt_BR.po
4708                 updated by Geir Helland and Frederico
4709                 Goncalves Guimaraes
4710
4711 2005-10-05 [colin]      1.9.15cvs14
4712
4713         * src/folder.c
4714         * src/folder.h
4715         * src/folderview.c
4716         * src/folderview.h
4717         * src/imap_gtk.c
4718         * src/mh_gtk.c
4719         * src/mainwindow.c
4720         * src/setup.c
4721                 add a way to rescan without rebuilding
4722                 make moving a bit faster (less folders changes)
4723                 don't lock the tree on Get 
4724         * src/imap.c
4725                 Don't re-delete deleted messages before expunging
4726         * src/summaryview.c
4727                 Set batch mode when deleting mails
4728
4729 2005-10-05 [paul]       1.9.15cvs13
4730
4731         * src/mainwindow.c
4732         * src/mainwindow.h
4733                 fix disabled Execute menu item
4734         * src/toolbar.c
4735                 match the change in 1.9.15cvs10: use Compose
4736                 instead of News by default
4737
4738 2005-10-04 [colin]      1.9.15cvs12
4739
4740         * src/compose.c
4741                 When replying to an ML post with Reply-To set
4742                 to the poster's email, honor it (as before),
4743                 but also honor our user's request to reply to
4744                 the mailing list: set the ML address in the To
4745                 field and the Reply-To address in the Cc: 
4746                 field.
4747
4748 2005-10-04 [colin]      1.9.15cvs11
4749
4750         * src/plugins/trayicon/trayicon.c
4751                 Finish cosmetic change - thanks to wwp
4752
4753 2005-10-04 [colin]      1.9.15cvs10
4754
4755         * src/toolbar.c
4756                 Use Compose instead of Email by default.
4757                 Spotted by wwp.
4758
4759 2005-10-04 [colin]      1.9.15cvs9
4760
4761         * src/folder.c
4762         * src/folder.h
4763         * src/folderview.c
4764         * src/imap.c
4765         * src/etpan/imap-thread.c
4766         * src/etpan/imap-thread.h
4767                 Try to make IMAP faster, by simplifying SEARCH
4768                 commands, avoiding sending two STATUS in a row,
4769                 and deferring flags sync and processing just
4770                 after displaying the folder. 
4771                 This will update the SummaryView in certain
4772                 cases (new mails not already fetched, flags
4773                 changed from another client) but in a non-
4774                 blocking manner.
4775
4776 2005-10-04 [colin]      1.9.15cvs8
4777
4778         * src/plugins/trayicon/trayicon.c
4779                 Relabel "Offline" to "Work offline"
4780
4781 2005-10-04 [colin]      1.9.15cvs7
4782
4783         * src/export.c
4784         * src/import.c
4785         * src/mbox.c
4786                 Fix mbox import/export buglets
4787                 Patch by wwp
4788         * src/plugins/trayicon/trayicon.c
4789                 Add offline swithc
4790                 Patch by wwp
4791
4792 2005-10-04 [colin]      1.9.15cvs6
4793
4794         * src/folder.c
4795         * src/folderview.c
4796         * src/summaryview.c
4797                 Better fix (don't break mark all read) for cvs2
4798
4799 2005-10-03 [colin]      1.9.15cvs5
4800
4801         * src/folder.c
4802                 Use a sane sort by default
4803
4804 2005-10-03 [colin]      1.9.15cvs4
4805
4806         * src/inc.c
4807                 Add a 'Only once' button for overriding offline mode
4808         * src/prefs_account.c
4809         * src/wizard.c
4810                 Add Local mbox to the wizard
4811                 Add IMAP subdir to the wizard (or the wizard is useless
4812                 for such accounts, or even worse than useless)
4813                 Move IMAP subdir from Advanced to Receive tab, as it's
4814                 not that uncommon
4815
4816 2005-10-03 [colin]      1.9.15cvs3
4817
4818         * src/send_message.c
4819                 Forgot this one in cvs1
4820
4821 2005-10-03 [colin]      1.9.15cvs2
4822
4823         * src/folder.c
4824                 Faster close when leaving a folder with lots
4825                 of new mails. Idea by David Relson.
4826
4827 2005-10-03 [colin]      1.9.15cvs1
4828
4829         * src/compose.c
4830         * src/imap.c
4831         * src/inc.c
4832         * src/main.c
4833         * src/messageview.c
4834         * src/news.c
4835         * src/summaryview.c
4836         * src/gtk/sslcertwindow.c
4837         * src/plugins/trayicon/trayicon.c
4838                 Add accels to every AlertPanel. Patch by Fabien 
4839                 Vantard
4840
4841 2005-10-03 [paul]       1.9.15
4842
4843         1.9.15 released
4844
4845 2005-10-03 [paul]       1.9.14cvs68
4846
4847         * po/ca.po
4848         * po/de.po
4849         * po/es.po
4850         * po/fi.po
4851         * po/fr.po
4852         * po/sk.po
4853         * po/sr.po
4854         * po/zh_CN.po
4855                 updated by Miquel Oliete, Thomas Gilgin, Ricardo
4856                 Mones Lastra, Tommi Pirinen, Fabien vantard,
4857                 Andrej Kacian, Aleksander Urosevic, Yang Guilong
4858
4859 2005-10-03 [paul]       1.9.14cvs67
4860
4861         * src/send_message.c
4862                 prevent hang on Cancel
4863                 patch by Colin
4864
4865 2005-10-03 [paul]       1.9.14cvs66
4866
4867         * src/main.c
4868                 fix crash in IMAP caused by discrepancy
4869                 between check_at_startup and offline mode
4870                 Patch by Colin
4871
4872 2005-10-01 [paul]       1.9.14cvs65
4873
4874         * src/inc.c
4875                 fix engrish
4876
4877 2005-10-01 [paul]       1.9.14cvs64
4878         * src/export.c
4879         * src/import.c
4880                 synchronise import_mbox() and export_mbox()
4881         * src/mbox.c
4882                 proc_mbox(): add alert if file cannot be opened
4883                 export_list_to_mbox(): test if dest file exists,
4884                 prompt user to overwrite if it does. add alert
4885                 if file cannot be created
4886                                                                 
4887         Patch by wwp
4888                                                                                                                 
4889
4890 2005-09-30 [paul]       1.9.14cvs63
4891
4892         * src/addressbook.c
4893                 Fix sensitivity of a menu
4894         * src/codeconv.c
4895                 Respect hidden pref for mails with no encoding
4896         * src/common/xml.c
4897                 Fix memory corruption
4898         * src/plugins/pgpcore/sgpgme.c
4899                 Fix segfault on incomplete sigs, and display
4900                 of S/Mime UIDs
4901
4902         Patches by Colin
4903
4904 2005-09-30 [colin]      1.9.14cvs62
4905
4906         * src/partial_download.c
4907                 Little logic fix in almost-dead code
4908         * src/pop.c
4909                 Fix partial download when there's no new mail
4910
4911 2005-09-29 [paul]       1.9.14cvs61
4912
4913         * src/plugins/pgpinline/pgpinline.c
4914                 fix bug 819, 'crash accessing sign message'
4915                 Patch by Colin
4916
4917 2005-09-28 [martin]     1.9.14cvs60
4918
4919         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
4920                 fix bug #790 (Crash when restarting window manager (fluxbox))
4921
4922 2005-09-28 [paul]       1.9.14cvs59
4923
4924         * src/gtk/gtkaspell.c
4925                 fix off-by-one typo
4926
4927 2005-09-27 [colin]      1.9.14cvs58
4928
4929         * src/plugins/pgpcore/sgpgme.c
4930                 Report error when there's one, instead of
4931                 "Signature unchecked" 
4932
4933 2005-09-27 [colin]      1.9.14cvs57
4934
4935         * src/prefs_quote.c
4936                 Fix bug #816 (Weird quotation with spaces)
4937
4938 2005-09-27 [colin]      1.9.14cvs56
4939
4940         * src/codeconv.c
4941         * src/compose.c
4942         * src/compose.h
4943                 Put subject in compose's title
4944                 Fix Automatic encoding so that it's really automatic:
4945                 first try default locale's charset, then charset of the replied mail, 
4946                 then utf-8
4947                 Fix encoding of headers (must be in strict mode too)
4948
4949 2005-09-26 [colin]      1.9.14cvs55
4950
4951         * src/gtk/gtkaspell.c
4952                 Fix previous patch - don't color the space,
4953                 just uncolor it :)
4954
4955 2005-09-26 [colin]      1.9.14cvs54
4956
4957         * src/gtk/gtkaspell.c
4958                 Unmark space if possible
4959
4960 2005-09-26 [colin]      1.9.14cvs53
4961
4962         * src/imap.c
4963                 log_error instead of alertpanel according to the pref
4964         * src/etpan/imap-thread.c
4965                 Print connect status, copy only necessary size to 
4966                 logger
4967         * src/plugins/pgpmime/pgpmime.c
4968                 Handle S/Mime signatures (verification only). Patch based
4969                 on a patch for Sylpheed Main by Thomas White <taw27@cam.ac.uk>
4970
4971 2005-09-26 [paul]       1.9.14cvs52
4972
4973         * src/common/passcrypt.c
4974                 this 'workaround' not necessary on NetBSD.
4975                 Thanks to Daniel Gustafson
4976
4977 2005-09-26 [paul]
4978
4979         1.9.15-rc4 released
4980
4981 2005-09-26 [paul]       1.9.14cvs51
4982
4983         * src/summaryview.c
4984                 Skip currently selected message when
4985                 looking for next new or unread message
4986                 in current folder. Patch by Colin
4987         * src/common/passcrypt.c
4988                 eliminate warnings on *BSD. Patch by
4989                 Daniel Gustafson
4990
4991 2005-09-26 [colin]      1.9.14cvs50
4992
4993         * src/procmsg.c
4994                 Call postfiltering hook anyway
4995
4996 2005-09-22 [colin]      1.9.14cvs49
4997
4998         * src/codeconv.c
4999         * src/codeconv.h
5000                 Add a strict mode that doesn't replace with _
5001         * src/compose.c
5002         * src/compose.h
5003                 Use strict conversion while sending
5004                 Fix race when drafting while sending (happens
5005                 on IMAP)
5006                 Fix d'n'd of messages from summaryview
5007         * src/prefs_common.c
5008         * src/prefs_common.h
5009                 add hidden utf8_instead_of_locale_for_broken_mail 
5010                 pref for people that preferred the default charset 
5011                 to be utf8 for broken mails
5012         * src/quote_fmt_parse.y
5013                 fix bug #815 (No quote insert if "From:" fied 
5014                 contained Russian letters)
5015         * src/summaryview.c
5016                 Fix d'n'd of messages to compose
5017
5018 2005-09-22 [paul]       1.9.14cvs48
5019
5020         * src/compose.c
5021                 fix bug where attachments Name entry
5022                 would display Path instead
5023
5024 2005-09-21 [paul]       1.9.14cvs47
5025
5026         * README
5027         * README.jp
5028         * configure.ac
5029         * config/config.rpath
5030         * doc/manual/en/sylpheed-20.html
5031         * doc/manual/es/sylpheed-20.html
5032         * po/bg.po
5033         * po/ca.po
5034         * po/de.po
5035         * po/es.po
5036         * po/fr.po
5037         * po/it.po
5038         * po/pt_BR.po
5039         * po/sk.po
5040         * po/zh_TW.po
5041         * src/account.c
5042         * src/account.h
5043         * src/action.c
5044         * src/action.h
5045         * src/adbookbase.h
5046         * src/addr_compl.c
5047         * src/addr_compl.h
5048         * src/addrbook.c
5049         * src/addrbook.h
5050         * src/addrcache.c
5051         * src/addrcache.h
5052         * src/addrcindex.c
5053         * src/addrcindex.h
5054         * src/addrclip.c
5055         * src/addrclip.h
5056         * src/addrdefs.h
5057         * src/addressadd.c
5058         * src/addressadd.h
5059         * src/addressbook.c
5060         * src/addressbook.h
5061         * src/addressitem.h
5062         * src/addrgather.c
5063         * src/addrgather.h
5064         * src/addrharvest.c
5065         * src/addrharvest.h
5066         * src/addrindex.c
5067         * src/addrindex.h
5068         * src/addritem.c
5069         * src/addritem.h
5070         * src/addrquery.c
5071         * src/addrquery.h
5072         * src/addrselect.c
5073         * src/addrselect.h
5074         * src/alertpanel.c
5075         * src/alertpanel.h
5076         * src/browseldap.c
5077         * src/browseldap.h
5078         * src/codeconv.c
5079         * src/codeconv.h
5080         * src/compose.c
5081         * src/compose.h
5082         * src/crash.c
5083         * src/crash.h
5084         * src/customheader.c
5085         * src/customheader.h
5086         * src/displayheader.c
5087         * src/displayheader.h
5088         * src/editaddress.c
5089         * src/editaddress.h
5090         * src/editbook.c
5091         * src/editbook.h
5092         * src/editgroup.c
5093         * src/editgroup.h
5094         * src/editjpilot.c
5095         * src/editjpilot.h
5096         * src/editldap.c
5097         * src/editldap.h
5098         * src/editldap_basedn.c
5099         * src/editldap_basedn.h
5100         * src/editvcard.c
5101         * src/editvcard.h
5102         * src/enriched.c
5103         * src/enriched.h
5104         * src/exphtmldlg.c
5105         * src/exphtmldlg.h
5106         * src/expldifdlg.c
5107         * src/expldifdlg.h
5108         * src/export.c
5109         * src/export.h
5110         * src/exporthtml.c
5111         * src/exporthtml.h
5112         * src/exportldif.c
5113         * src/exportldif.h
5114         * src/filtering.c
5115         * src/filtering.h
5116         * src/folder.c
5117         * src/folder.h
5118         * src/folder_item_prefs.c
5119         * src/folder_item_prefs.h
5120         * src/foldersel.c
5121         * src/foldersel.h
5122         * src/folderutils.c
5123         * src/folderutils.h
5124         * src/folderview.c
5125         * src/folderview.h
5126         * src/grouplistdialog.c
5127         * src/grouplistdialog.h
5128         * src/headerview.c
5129         * src/headerview.h
5130         * src/html.c
5131         * src/html.h
5132         * src/image_viewer.c
5133         * src/image_viewer.h
5134         * src/imap.c
5135         * src/imap.h
5136         * src/imap_gtk.c
5137         * src/imap_gtk.h
5138         * src/import.c
5139         * src/import.h
5140         * src/importldif.c
5141         * src/importldif.h
5142         * src/importmutt.c
5143         * src/importmutt.h
5144         * src/importpine.c
5145         * src/importpine.h
5146         * src/inc.c
5147         * src/inc.h
5148         * src/jpilot.c
5149         * src/jpilot.h
5150         * src/ldapctrl.c
5151         * src/ldapctrl.h
5152         * src/ldaplocate.c
5153         * src/ldaplocate.h
5154         * src/ldapquery.c
5155         * src/ldapquery.h
5156         * src/ldapserver.c
5157         * src/ldapserver.h
5158         * src/ldaputil.c
5159         * src/ldaputil.h
5160         * src/ldif.c
5161         * src/ldif.h
5162         * src/localfolder.c
5163         * src/localfolder.h
5164         * src/main.c
5165         * src/main.h
5166         * src/mainwindow.c
5167         * src/mainwindow.h
5168         * src/manual.c
5169         * src/manual.h
5170         * src/matcher.c
5171         * src/matcher.h
5172         * src/matcher_parser.h
5173         * src/matcher_parser_lex.l
5174         * src/matcher_parser_parse.y
5175         * src/mbox.c
5176         * src/mbox.h
5177         * src/message_search.c
5178         * src/message_search.h
5179         * src/messageview.c
5180         * src/messageview.h
5181         * src/mh.c
5182         * src/mh.h
5183         * src/mh_gtk.c
5184         * src/mh_gtk.h
5185         * src/mimeview.c
5186         * src/mimeview.h
5187         * src/msgcache.c
5188         * src/msgcache.h
5189         * src/mutt.c
5190         * src/mutt.h
5191         * src/news.c
5192         * src/news.h
5193         * src/news_gtk.c
5194         * src/news_gtk.h
5195         * src/noticeview.c
5196         * src/noticeview.h
5197         * src/partial_download.c
5198         * src/partial_download.h
5199         * src/pine.c
5200         * src/pine.h
5201         * src/pop.c
5202         * src/pop.h
5203         * src/prefs_account.c
5204         * src/prefs_account.h
5205         * src/prefs_actions.c
5206         * src/prefs_actions.h
5207         * src/prefs_common.c
5208         * src/prefs_common.h
5209         * src/prefs_compose_writing.c
5210         * src/prefs_compose_writing.h
5211         * src/prefs_customheader.c
5212         * src/prefs_customheader.h
5213         * src/prefs_display_header.c
5214         * src/prefs_display_header.h
5215         * src/prefs_ext_prog.c
5216         * src/prefs_ext_prog.h
5217         * src/prefs_filtering.c
5218         * src/prefs_filtering.h
5219         * src/prefs_filtering_action.c
5220         * src/prefs_filtering_action.h
5221         * src/prefs_folder_column.c
5222         * src/prefs_folder_column.h
5223         * src/prefs_folder_item.c
5224         * src/prefs_folder_item.h
5225         * src/prefs_fonts.c
5226         * src/prefs_fonts.h
5227         * src/prefs_gtk.c
5228         * src/prefs_gtk.h
5229         * src/prefs_image_viewer.c
5230         * src/prefs_image_viewer.h
5231         * src/prefs_matcher.c
5232         * src/prefs_matcher.h
5233         * src/prefs_message.c
5234         * src/prefs_message.h
5235         * src/prefs_msg_colors.c
5236         * src/prefs_msg_colors.h
5237         * src/prefs_other.c
5238         * src/prefs_other.h
5239         * src/prefs_quote.c
5240         * src/prefs_quote.h
5241         * src/prefs_receive.c
5242         * src/prefs_receive.h
5243         * src/prefs_send.c
5244         * src/prefs_send.h
5245         * src/prefs_spelling.c
5246         * src/prefs_spelling.h
5247         * src/prefs_summaries.c
5248         * src/prefs_summaries.h
5249         * src/prefs_summary_column.c
5250         * src/prefs_summary_column.h
5251         * src/prefs_template.c
5252         * src/prefs_template.h
5253         * src/prefs_themes.c
5254         * src/prefs_themes.h
5255         * src/prefs_toolbar.c
5256         * src/prefs_toolbar.h
5257         * src/prefs_wrapping.c
5258         * src/prefs_wrapping.h
5259         * src/privacy.c
5260         * src/privacy.h
5261         * src/procheader.c
5262         * src/procheader.h
5263         * src/procmime.c
5264         * src/procmime.h
5265         * src/procmsg.c
5266         * src/procmsg.h
5267         * src/quote_fmt.c
5268         * src/quote_fmt_parse.y
5269         * src/recv.c
5270         * src/recv.h
5271         * src/remotefolder.c
5272         * src/remotefolder.h
5273         * src/send_message.c
5274         * src/send_message.h
5275         * src/setup.c
5276         * src/setup.h
5277         * src/simple-gettext.c
5278         * src/sourcewindow.c
5279         * src/sourcewindow.h
5280         * src/ssl_manager.c
5281         * src/ssl_manager.h
5282         * src/statusbar.c
5283         * src/statusbar.h
5284         * src/stock_pixmap.c
5285         * src/stock_pixmap.h
5286         * src/summary_search.c
5287         * src/summary_search.h
5288         * src/summaryview.c
5289         * src/summaryview.h
5290         * src/syldap.c
5291         * src/syldap.h
5292         * src/textview.c
5293         * src/textview.h
5294         * src/toolbar.c
5295         * src/toolbar.h
5296         * src/undo.c
5297         * src/undo.h
5298         * src/unmime.c
5299         * src/unmime.h
5300         * src/vcard.c
5301         * src/vcard.h
5302         * src/wizard.c
5303         * src/wizard.h
5304         * src/common/base64.c
5305         * src/common/base64.h
5306         * src/common/defs.h
5307         * src/common/hooks.c
5308         * src/common/hooks.h
5309         * src/common/log.c
5310         * src/common/log.h
5311         * src/common/md5.c
5312         * src/common/md5.h
5313         * src/common/mgutils.c
5314         * src/common/mgutils.h
5315         * src/common/nntp.c
5316         * src/common/nntp.h
5317         * src/common/passcrypt.c
5318         * src/common/passcrypt.h.in
5319         * src/common/plugin.c
5320         * src/common/plugin.h
5321         * src/common/prefs.c
5322         * src/common/prefs.h
5323         * src/common/progressindicator.c
5324         * src/common/progressindicator.h
5325         * src/common/quoted-printable.c
5326         * src/common/quoted-printable.h
5327         * src/common/session.c
5328         * src/common/session.h
5329         * src/common/smtp.c
5330         * src/common/smtp.h
5331         * src/common/socket.c
5332         * src/common/socket.h
5333         * src/common/ssl.c
5334         * src/common/ssl.h
5335         * src/common/ssl_certificate.c
5336         * src/common/ssl_certificate.h
5337         * src/common/string_match.c
5338         * src/common/string_match.h
5339         * src/common/stringtable.c
5340         * src/common/sylpheed.c
5341         * src/common/sylpheed.h
5342         * src/common/template.c
5343         * src/common/template.h
5344         * src/common/timing.h
5345         * src/common/utils.c
5346         * src/common/utils.h
5347         * src/common/uuencode.c
5348         * src/common/uuencode.h
5349         * src/common/version.h.in
5350         * src/common/xml.c
5351         * src/common/xml.h
5352         * src/common/xmlprops.c
5353         * src/common/xmlprops.h
5354         * src/gtk/about.c
5355         * src/gtk/about.h
5356         * src/gtk/colorlabel.c
5357         * src/gtk/colorlabel.h
5358         * src/gtk/colorsel.c
5359         * src/gtk/colorsel.h
5360         * src/gtk/description_window.c
5361         * src/gtk/description_window.h
5362         * src/gtk/filesel.c
5363         * src/gtk/filesel.h
5364         * src/gtk/foldersort.c
5365         * src/gtk/foldersort.h
5366         * src/gtk/gtkutils.c
5367         * src/gtk/gtkutils.h
5368         * src/gtk/inputdialog.c
5369         * src/gtk/inputdialog.h
5370         * src/gtk/logwindow.c
5371         * src/gtk/logwindow.h
5372         * src/gtk/manage_window.c
5373         * src/gtk/manage_window.h
5374         * src/gtk/menu.c
5375         * src/gtk/menu.h
5376         * src/gtk/pluginwindow.c
5377         * src/gtk/pluginwindow.h
5378         * src/gtk/prefswindow.c
5379         * src/gtk/prefswindow.h
5380         * src/gtk/progressdialog.c
5381         * src/gtk/progressdialog.h
5382         * src/gtk/quicksearch.c
5383         * src/gtk/quicksearch.h
5384         * src/gtk/sslcertwindow.c
5385         * src/gtk/sslcertwindow.h
5386         * src/plugins/clamav/clamav_plugin.c
5387         * src/plugins/clamav/clamav_plugin.h
5388         * src/plugins/clamav/clamav_plugin_gtk.c
5389         * src/plugins/demo/demo.c
5390         * src/plugins/dillo_viewer/dillo_prefs.c
5391         * src/plugins/dillo_viewer/dillo_prefs.h
5392         * src/plugins/dillo_viewer/dillo_viewer.c
5393         * src/plugins/mathml_viewer/mathml_viewer.c
5394         * src/plugins/pgpcore/passphrase.c
5395         * src/plugins/pgpcore/passphrase.h
5396         * src/plugins/pgpcore/plugin.c
5397         * src/plugins/pgpcore/prefs_gpg.c
5398         * src/plugins/pgpcore/prefs_gpg.h
5399         * src/plugins/pgpcore/select-keys.c
5400         * src/plugins/pgpcore/select-keys.h
5401         * src/plugins/pgpcore/sgpgme.c
5402         * src/plugins/pgpcore/sgpgme.h
5403         * src/plugins/pgpinline/pgpinline.c
5404         * src/plugins/pgpinline/pgpinline.h
5405         * src/plugins/pgpinline/plugin.c
5406         * src/plugins/pgpmime/pgpmime.c
5407         * src/plugins/pgpmime/pgpmime.h
5408         * src/plugins/pgpmime/plugin.c
5409         * src/plugins/spamassassin/spamassassin.c
5410         * src/plugins/spamassassin/spamassassin.h
5411         * src/plugins/spamassassin/spamassassin_gtk.c
5412         * src/plugins/trayicon/trayicon.c
5413         * tools/OOo2sylpheed.pl
5414         * tools/acroread2sylpheed.pl
5415         * tools/asus_mailled.sh
5416         * tools/filter_conv.pl
5417         * tools/freshmeat_search.pl
5418         * tools/google_search.pl
5419         * tools/kmail2sylpheed.pl
5420         * tools/kmail2sylpheed_v2.pl
5421         * tools/maildir2sylpheed.pl
5422         * tools/multiwebsearch.pl
5423         * tools/newscache_clean.pl
5424         * tools/outlook2sylpheed.pl
5425         * tools/sylpheed-switcher
5426         * tools/update-po
5427         * tools/vcard2xml.py
5428         * tools/kdeservicemenu/sylpheed-kdeservicemenu.pl
5429                 update FSF address
5430
5431 2005-09-21 [colin]      1.9.14cvs46
5432
5433         * src/gedit-print.c
5434         * src/procmsg.c
5435         * src/procmsg.h
5436         * src/textview.c
5437         * src/summaryview.c
5438                 Remove some printing hacks (deselection/reselection),
5439                 which by the way fix printing the currently 
5440                 displayed mime part (still only text)
5441                 Plus a little optimisation of summary_show
5442
5443
5444 2005-09-20 [colin]      1.9.14cvs45
5445
5446         * src/mainwindow.c
5447         * src/messageview.c
5448                 GUI fixups: add accels, set message
5449                 view title to displayed mail's subject
5450         * src/prefs_spelling.c
5451         * src/gtk/gtkaspell.c
5452                 GUI fixups: allow underlining misspelled
5453                 words instead of coloring them (a11y!)
5454
5455 2005-09-19 [colin]
5456
5457         1.9.15rc3 released
5458
5459 2005-09-19 [colin]      1.9.14cvs44
5460
5461         * src/compose.c
5462                 Fix draft message
5463         * src/gtk/gtkaspell.c
5464                 Fix wrong test ;-)
5465
5466 2005-09-19 [colin]      1.9.14cvs43
5467
5468         * src/addressbook.c
5469                 Fix sensitivity of Delete button
5470         * src/compose.c
5471                 Warn if the requested Privacy system
5472                 is not available
5473         * src/exphtmldlg.c
5474         * src/expldifdlg.c
5475         * src/importldif.c
5476         * src/importmutt.c
5477         * src/importpine.c
5478                 Fix crappy UI
5479         * src/
5480         * src/ssl.h
5481         * src/prefs_account.h
5482         * src/prefs_account.c
5483                 Save SSL prefs even in builds that have
5484                 SSL support disable
5485         * src/imap.c
5486         * src/inc.c
5487         * src/news.c
5488         * src/send_message.c
5489                 Warn if connection should be secure, but
5490                 SSL support isn't compiled in
5491         * src/gtkaspell.c
5492                 Fix word separation on UTF-8 systems
5493                 Fixes bug #812 (Strange inline spellchecking)
5494         * src/compose.c
5495                 Warn if the requested Privacy system
5496                 is not available
5497                 Factorize offline warning
5498         * src/imap.c
5499         * src/imap_gtk.c
5500         * src/imap_gtk.h
5501         * src/inc.h
5502         * src/news_gtk.c
5503         * src/news_gtk.h
5504         * src/messageview.c
5505                 Factorize offline warning
5506
5507 2005-09-19 [paul]
5508
5509         1.9.15-rc2 released
5510
5511 2005-09-18 [colin]      1.9.14cvs42
5512
5513         * src/codeconv.c
5514         * src/codeconv.h
5515         * src/procmime.c
5516                 Add a way to get locale's charset ignoring utf-8,
5517                 and use that as default encoding for broken mails
5518
5519 2005-09-18 [colin]      1.9.14cvs41
5520
5521         * src/gtk/logwindow.c
5522                 Translate string. Patch by Fabien Vantard
5523
5524 2005-09-18 [colin]      1.9.14cvs40
5525
5526         * configure.ac
5527                 Fix bug #803 (IMAP/SSL support breaks with 
5528                 GnuTLS libetpan 0.38)
5529
5530 2005-09-18 [colin]      1.9.14cvs39
5531
5532         * src/codeconv.c
5533         * src/compose.c
5534         * src/procmime.c
5535                 More charsets fixes. Fixes bug #806 (non
5536                 ascii characters in subject line)
5537
5538 2005-09-17 [paul]       1.9.14cvs38
5539
5540         * src/folderview.c
5541         * src/mainwindow.c
5542                 fix gcc-2.95 issues
5543                 Patch by Pawel Pekala
5544
5545 2005-09-17 [colin]      1.9.14cvs37
5546
5547         * src/addrindex.c
5548                 bugfix for NO-USE LDAP compilation, patch 
5549                 by Fabien Vantard
5550
5551 2005-09-17 [colin]      1.9.14cvs36
5552
5553         * src/prefs_actions.c
5554         * src/prefs_customheader.c
5555         * src/prefs_display_header.c
5556         * src/prefs_filtering_action.c
5557         * src/prefs_matcher.c
5558         * src/prefs_toolbar.c
5559                 Fix strange casts (less elegant but
5560                 works better)
5561
5562 2005-09-16 [colin]      1.9.14cvs35
5563
5564         * src/jpilot.c
5565                 Missed that one
5566
5567 2005-09-16 [colin]      1.9.14cvs34
5568
5569         * configure.ac
5570         * src/Makefile.am
5571         * src/addr_compl.c
5572         * src/addrindex.c
5573         * src/browseldap.c
5574         * src/editldap.c
5575         * src/ldaplocate.c
5576         * src/ldapquery.c
5577         * src/ldapquery.h
5578         * src/ldapserver.c
5579         * src/ldapserver.h
5580         * src/main.c
5581         * src/matcher_parser_parse.y
5582         * src/prefs_themes.c
5583         * src/etpan/Makefile.am
5584         * src/gtk/description_window.c
5585         * src/plugins/clamav/Makefile.am
5586         * src/plugins/clamav/clamav_plugin.c
5587         * src/plugins/dillo_viewer/Makefile.am
5588         * src/plugins/pgpcore/Makefile.am
5589         * src/plugins/pgpinline/Makefile.am
5590         * src/plugins/pgpmime/Makefile.am
5591         * src/plugins/trayicon/Makefile.am
5592                 Fix 100% cpu usage in address completion list
5593                 Fix little bugs (return with no values etc)
5594                 Fix all warnings (with common CFLAGS)
5595
5596 2005-09-15 [colin]      1.9.14cvs33
5597
5598         * src/addressbook.c
5599                 Fix bug where sometimes a group's email list is empty,
5600                 force its refresh (probably fixes "Re: how to create a 
5601                 distribution list")
5602         * src/ldapquery.c
5603                 Don't return to the callback in the main thread from the
5604                 fetch thread (or face segs!)
5605
5606 2005-09-15 [paul]       1.9.14cvs32
5607
5608         * src/prefs_matcher.c
5609                 forgotten in last commit
5610
5611 2005-09-15 [paul]       1.9.14cvs31
5612
5613         * src/prefs_actions.c
5614         * src/prefs_filtering_action.c
5615         * src/prefs_quote.c
5616         * src/quote_fmt.c
5617         * src/summaryview.c
5618         * src/gtk/description_window.c
5619         * src/gtk/description_window.h
5620         * src/gtk/quicksearch.c
5621                 allow interaction with the called
5622                 description window
5623                 Patch by Anders Hammar
5624
5625 2005-09-14 [paul]       1.9.14cvs30
5626
5627         * src/compose.c
5628                 fix a little annoyance when pasting with 3rd button 
5629                 with wrap_pastes=0 and wrap_input=1
5630                 Patch by Colin
5631
5632 2005-09-14 [paul]       1.9.14cvs29
5633
5634         * src/prefs_account.c
5635                 disable 'Filter messages on receiving' for
5636                 SMTP-only accounts
5637                 Patch  by Anders Hammar
5638
5639 2005-09-14 [paul]       1.9.14cvs28
5640
5641         * po/sk.po
5642                 fix crash
5643                 updated by Andrej Kacian
5644
5645 2005-09-14 [paul]
5646
5647         1.9.15-rc1 released
5648
5649 2005-09-14 [paul]       1.9.14cvs27
5650
5651         * po/es.po
5652                 updated by Ricardo Mones Lastra
5653         * src/compose.c
5654         * src/compose.h
5655                 associate no_wrap_tags to Compose windows
5656                 instead of using a static one
5657                 Patch by Colin
5658         * src/mbox.c
5659                 fix proc_mbox()
5660                 Patch by wwp
5661         * src/textview.c
5662                 remove unneeded printf()
5663
5664 2005-09-14 [paul]       1.9.14cvs26
5665
5666         * src/addrcache.c
5667         * src/codeconv.h
5668         * src/folder.h
5669         * src/mainwindow.h
5670         * src/mh.c
5671         * src/mimeview.h
5672         * src/partial_download.c
5673         * src/pop.c
5674         * src/prefs_account.c
5675         * src/prefs_account.h
5676         * src/prefs_actions.c
5677         * src/prefs_customheader.c
5678         * src/prefs_display_header.c
5679         * src/prefs_filtering_action.c
5680         * src/prefs_matcher.c
5681         * src/prefs_toolbar.c
5682         * src/privacy.h
5683         * src/procmime.c
5684         * src/procmime.h
5685         * src/procmsg.h
5686         * src/textview.c
5687         * src/undo.h
5688         * src/common/plugin.c
5689         * src/common/session.h
5690         * src/common/socket.c
5691         * src/common/socket.h
5692         * src/common/template.c
5693         * src/gtk/gtkaspell.c
5694         * src/gtk/quicksearch.h
5695         * src/plugins/pgpcore/passphrase.c
5696         * src/plugins/pgpcore/prefs_gpg.h
5697         * src/plugins/pgpcore/select-keys.c
5698         * src/plugins/pgpcore/select-keys.h
5699         * src/plugins/pgpcore/sgpgme.c
5700         * src/plugins/pgpinline/pgpinline.c
5701         * src/plugins/pgpmime/pgpmime.c
5702         * src/plugins/trayicon/trayicon.c
5703                 fix compilation warnings
5704                 Patch by Daniel Gustafson
5705
5706 2005-09-14 [paul]       1.9.14cvs25
5707
5708         * src/addressbook.c
5709                 add missing column header, and other small
5710                 bug fixes
5711                 Patch by Anders Hammar
5712
5713 2005-09-13 [colin]      1.9.14cvs24
5714
5715         * src/gtk/gtkaspell.c
5716                 Fix non-utf8 in menu
5717                 Fix little leaks
5718                 Nullify struct members after free()s
5719
5720 2005-09-13 [colin]      1.9.14cvs23
5721
5722         * src/compose.c
5723                 Test utf8 compliance before inserting to 
5724                 buffer, and try to convert if necessary
5725         * src/procmime.c
5726                 If no charset is present, use the locale 
5727                 one instead of us-ascii
5728         * src/procmsg.c
5729                 Add Sender, List-Post and To in the checked 
5730                 headers for automatic rules creation 
5731                 (thanks to wwp)
5732         * src/prefs_themes.c
5733         * src/gtk/gtkaspell.c
5734                 Remove deprecated functions. 
5735                 patch by Daniel Gustafson
5736
5737 2005-09-12 [colin]      1.9.14cvs22
5738
5739         * src/compose.c
5740                 Fix bug #448 (Scrolling/Redraw issue with 
5741                 address-fields in Header)
5742         * src/mainwindow.c
5743         * src/summaryview.c
5744         * src/summaryview.h
5745                 Fix loss of MSG_MARKED on move/copy
5746                 Fix bug #804 (Quicksearch togglebutton doesn't 
5747                 get depressed after '/' key is pressed)
5748
5749 2005-09-12 [paul]       1.9.14cvs21
5750
5751         * AUTHORS
5752         * src/gtk/logwindow.c
5753                 add 'Clear Log' to popup menu
5754                 Patch by Anders Hammar <anders.hammar@telia.com>
5755
5756 2005-09-12 [paul]       1.9.14cvs20
5757
5758         * src/compose.c
5759                 set correct sensitivity on attachments
5760                 popup menu
5761         * src/folder.c
5762                 fix typo
5763         * src/prefs_spelling.c
5764                 fix crash when no LANG env is set
5765         * src/common/xml.c
5766                 fix crash in wizard
5767                 don't use memeory after free
5768
5769         All patches by Daniel Gustafson
5770
5771 2005-09-12 [paul]       1.9.14cvs19
5772
5773         * src/prefs_themes.c
5774                 make theme info selectable
5775         * src/gtk/description_window.c
5776                 make window non-modal
5777         * tools/README
5778                 add details of asus_mailed.sh
5779         * tools/claws.i18n.status.pl
5780                 update for new zh_TW translator
5781                 widen the output
5782                 create alternate coloured lines
5783                 improve readability
5784
5785 2005-09-10 [colin]      1.9.14cvs18
5786
5787         * src/plugins/pgpcore/select-keys.c
5788                 Better order for the buttons
5789
5790 2005-09-10 [colin]      1.9.14cvs17
5791
5792         * src/compose.c
5793         * src/plugins/pgpcore/select-keys.c
5794         * src/plugins/pgpcore/select-keys.h
5795         * src/plugins/pgpcore/sgpgme.c
5796                 Add a "Don't encrypt" button to the key
5797                 selection dialog. Fixes bug #177 (There should be a 
5798                 'Don't encrypt button in the Select Keys dialog)
5799
5800 2005-09-10 [colin]      1.9.14cvs16
5801
5802         * src/compose.c
5803                 Fix bug #572 (%X option does not work with templates)
5804
5805 2005-09-10 [colin]      1.9.14cvs15
5806
5807         * src/toolbar.c 
5808                 Remove g_print
5809
5810 2005-09-10 [colin]      1.9.14cvs14
5811
5812         * src/imap.c
5813                 Fix a possible crash
5814
5815 2005-09-09 [colin]      1.9.14cvs13
5816
5817         * src/imap.c
5818         * src/etpan/imap-thread.c
5819         * src/etpan/imap-thread.h
5820                 Fix moving from queue or drafts to normal folders
5821                 Fix bug #794 (No way to delete without expunging)
5822                 Take flags unset by other mailers into account
5823                 Take deleted flag set by other mailers into account
5824                 Fix unsetting REPLIED flag
5825                 Fix crash when capabilities can't be retrieved
5826         * src/mainwindow.c
5827         * src/mainwindow.h
5828                 Add M_DELAYED_FLAGS condition, and let the user use
5829                 Execute in order to be able to expunge deleted mails,
5830                 even if he's not in delayed execute mode
5831         * src/prefs_spelling.c
5832                 Use 'en' dictionary by default if LANG is POSIX or C
5833         * src/gtk/prefswindow.c
5834                 Fix bug #767 (Preferences windows expanding) by making
5835                 the window a bit larger when the resolution is greater
5836                 than 640x480, and by putting the prefs in a
5837                 GtkScrolledWindow.
5838
5839 2005-09-09 [paul]       1.9.14cvs12
5840
5841         * AUTHORS
5842         * configure.ac
5843         * po/zh_TW.Big5.po      ** REMOVED **
5844         * po/zh_TW.po           ** ADDED **
5845                 updated by Wei-Lun Chao
5846
5847 2005-09-09 [paul]       1.9.14cvs11
5848
5849         * src/mainwindow.c
5850                 fix asserts
5851         * src/common/xml.c
5852                 delay memory allocation until file is
5853                 opened successfully
5854                 Patch by Daniel Gustafson
5855
5856 2005-09-09 [colin]      1.9.14cvs10
5857
5858         * src/imap.c
5859                 Add guards
5860
5861 2005-09-08 [colin]      1.9.14cvs9
5862
5863         * src/compose.c
5864                 Alert when we can't save draft
5865                 Fix various wrap/color issues
5866                 Add mid-click pasting respecting wrap_paste option
5867         * src/folder.c
5868         * src/folder.h
5869         * src/folder_item_prefs.c
5870         * src/folder_item_prefs.h
5871         * src/imap.c
5872         * src/imap_gtk.c
5873         * src/imap_gtk.h
5874         * src/main.c
5875         * src/mainwindow.c
5876         * src/mainwindow.h
5877         * src/news.c
5878         * src/news_gtk.c
5879         * src/news_gtk.h
5880         * src/prefs_folder_item.c
5881                 Fix the impossibility to synchronise folders for
5882                 offline use (IMAP and NNTP are concerned)
5883
5884 2005-09-08 [colin]      1.9.14cvs8
5885
5886         * configure.ac
5887                 Build LDAP and JPilot by default if available
5888         * src/textview.c
5889                 Fix use after free
5890
5891 2005-09-08 [paul]       1.9.14cvs7
5892
5893         * doc/manual/en/sylpheed-1.html
5894         * doc/manual/en/sylpheed-18.html
5895         * doc/manual/en/sylpheed-19.html
5896         * doc/manual/en/sylpheed-4.html
5897         * doc/manual/en/sylpheed-6.html
5898         * doc/manual/en/sylpheed.html
5899                 a few minor updates, plus include some
5900                 details about plugins and their requirements
5901         * src/mainwindow.c
5902                 minor changes to English in /View/Sort
5903
5904 2005-09-07 [colin]      1.9.14cvs6
5905
5906         * doc/manual/en/sylpheed-1.html
5907         * doc/manual/en/sylpheed-10.html
5908         * doc/manual/en/sylpheed-11.html
5909         * doc/manual/en/sylpheed-12.html
5910         * doc/manual/en/sylpheed-13.html
5911         * doc/manual/en/sylpheed-14.html
5912         * doc/manual/en/sylpheed-15.html
5913         * doc/manual/en/sylpheed-16.html
5914         * doc/manual/en/sylpheed-17.html
5915         * doc/manual/en/sylpheed-18.html
5916         * doc/manual/en/sylpheed-19.html
5917         * doc/manual/en/sylpheed-2.html
5918         * doc/manual/en/sylpheed-20.html
5919         * doc/manual/en/sylpheed-21.html
5920         * doc/manual/en/sylpheed-22.html
5921         * doc/manual/en/sylpheed-3.html
5922         * doc/manual/en/sylpheed-4.html
5923         * doc/manual/en/sylpheed-5.html
5924         * doc/manual/en/sylpheed-6.html
5925         * doc/manual/en/sylpheed-7.html
5926         * doc/manual/en/sylpheed-8.html
5927         * doc/manual/en/sylpheed-9.html
5928         * doc/manual/en/sylpheed.html
5929                 More substitutions (missed Sylpheed -> Sylpheed-Claws)
5930
5931 2005-09-07 [colin]      1.9.14cvs5
5932
5933         * src/mainwindow.c
5934                 Make labels more to-the-point
5935
5936 2005-09-07 [colin]      1.9.14cvs4
5937
5938         * doc/manual/en/sylpheed-1.html
5939         * doc/manual/en/sylpheed-12.html
5940         * doc/manual/en/sylpheed-13.html
5941         * doc/manual/en/sylpheed-14.html
5942         * doc/manual/en/sylpheed-15.html
5943         * doc/manual/en/sylpheed-16.html
5944         * doc/manual/en/sylpheed-17.html
5945         * doc/manual/en/sylpheed-18.html
5946         * doc/manual/en/sylpheed-19.html
5947         * doc/manual/en/sylpheed-2.html
5948         * doc/manual/en/sylpheed-20.html
5949         * doc/manual/en/sylpheed-21.html
5950         * doc/manual/en/sylpheed-22.html
5951         * doc/manual/en/sylpheed-4.html
5952         * doc/manual/en/sylpheed-5.html
5953         * doc/manual/en/sylpheed-6.html
5954         * doc/manual/en/sylpheed-7.html
5955         * doc/manual/en/sylpheed-8.html
5956         * doc/manual/en/sylpheed-9.html
5957         * doc/manual/en/sylpheed.html
5958                 Update manual
5959
5960 2005-09-07 [colin]      1.9.14cvs3
5961
5962         * doc/faq/en/sylpheed-faq-1.html
5963         * doc/faq/en/sylpheed-faq-2.html
5964         * doc/faq/en/sylpheed-faq-3.html
5965         * doc/faq/en/sylpheed-faq.html
5966                 Update FAQ
5967
5968 2005-09-07 [colin]      1.9.14cvs2
5969
5970         * src/folderview.c
5971         * src/procmsg.c
5972         * src/summaryview.c
5973         * src/toolbar.c
5974                 Fix special subfolders:
5975                 - Inherit parent's icon
5976                 - sent contents of queues subfolders
5977                 - empty subfolders of trashes
5978         * src/mainwindow.c
5979                 Remove outdated manual and faq entries
5980         * src/common/utils.c
5981                 Add quotes around %s coming from mailcap
5982
5983 2005-09-07 [colin]      1.9.14cvs1
5984
5985         * src/compose.c
5986                 After saving draft, set modified to FALSE
5987         * src/mimeview.c
5988         * src/common/utils.c
5989         * src/common/utils.h
5990                 Try to open mime parts using what is 
5991                 indicated in ~/.mailcap or /etc/mailcap,
5992                 if possible.
5993
5994 2005-09-05 [paul]       1.9.14
5995
5996         1.9.14 released
5997
5998         * po/sk.po
5999                 updated by Andrej Kacian
6000
6001 2005-09-05 [paul]       1.9.13cvs83
6002
6003         * po/de.po
6004         * po/es.po
6005         * po/fi.po
6006         * po/fr.po
6007         * po/nb.po
6008         * po/pt_BR.po
6009         * po/sr.po
6010                 updated translations by Thomas Gilgin, Ricardo Mones
6011                 Lastra, Tommi Pirinen, Fabien Vantard, Geir Helland,
6012                 Frederico Goncalves Guimaraes, Aleksandar Urosevic
6013
6014 2005-09-04 [paul]       1.9.13cvs82
6015
6016         * src/compose.c
6017                 only warn about exceeded line length limit
6018                 on send
6019
6020 2005-09-04 [paul]       1.9.13cvs81
6021
6022         * src/compose.c
6023                 fix crash in 'line length exceeded' dialogue
6024
6025 2005-09-02 [paul]       1.9.13cvs80
6026
6027         * src/imap.c
6028                 fix bug 795, 'Connection lost IMAP'
6029                 and add statusbar prints
6030                 Patch by Colin
6031
6032 2005-09-02 [paul]       1.9.13cvs79
6033
6034         * src/compose.c
6035                 compose_wrap_paragraph() becomes
6036                 compose_beautify_paragraph()
6037                 Patch by Colin
6038
6039 2005-09-02 [colin]      1.9.13cvs78
6040
6041         * src/folderview.c
6042                 Micro-fix
6043
6044 2005-09-01 [colin]      1.9.13cvs77
6045
6046         * src/imap.c
6047                 Maybe fix bug #795 (Connection lost IMAP)
6048                 Don't try to send logout when we're disconnected.
6049         * src/summaryview.c
6050                 Include locked and marked emails in HRM
6051                 view. Fixes bug #800 (Locked messages no longer 
6052                 show up when hide read messages is used)
6053
6054 2005-09-01 [paul]       1.9.13cvs76
6055
6056         * src/prefs_common.c
6057                 fix bad cutting
6058
6059 2005-08-31 [colin]      1.9.13cvs75
6060
6061         * src/folderview.c
6062         * src/folderview.h
6063         * src/prefs_summaries.c
6064         * src/summaryview.c
6065                 Fix "go to next new", fix preference
6066                 (Open unread/next swapped)
6067
6068 2005-08-31 [paul]       1.9.13cvs74
6069
6070         * src/compose.c
6071         * src/folderview.c
6072         * src/headerview.c
6073         * src/headerview.h
6074         * src/mainwindow.c
6075         * src/prefs_common.c
6076         * src/prefs_common.h
6077         * src/prefs_fonts.c
6078         * src/summaryview.c
6079         * src/textview.c
6080         * src/common/defs.h
6081                 remove obsolete BOLD_FONT setting
6082                 fix font update in headerview and textview
6083                 headers after prefs change
6084                 Patch By Colin
6085
6086 2005-08-31 [paul]
6087
6088         1.9.14-rc4 released
6089
6090 2005-08-30 [colin]      1.9.13cvs73
6091
6092         * src/summaryview.c
6093                 When Hide read messages is selected and we
6094                 refresh the summaryview, don't remove the 
6095                 currently displayed message. Fixes bug #797
6096                 (Summary view reloads when new mail is 
6097                 downloaded in 1.9.14 rc)
6098
6099 2005-08-30 [colin]      1.9.13cvs72
6100
6101         * src/folderview.c
6102                 Fix flickering
6103         * src/mainwindow.c
6104                 Remove useless callback
6105         * src/mimeview.c
6106         * src/gtk/filesel.c
6107         * src/gtk/filesel.h
6108                 Add a filesel_select_file_save_folder() - used by Save All
6109
6110 2005-08-29 [paul]       1.9.13cvs71
6111
6112         * AUTHORS
6113         * src/matcher_parser_parse.y
6114         * src/etpan/imap-thread.c
6115                 fix building on FreeBSD
6116                 Patch by Daniel Gustafson <daniel@hobbit.se>
6117
6118 2005-08-29 [paul]       1.9.13cvs70
6119
6120         * src/plugins/pgpinline/pgpinline.c
6121                 only initialise sig result if it's been handled
6122                 Patch by Colin
6123
6124 2005-08-29 [paul]       1.9.13cvs69
6125         
6126         Patches by Colin:
6127
6128         * src/imap.c
6129         * src/common.utils.c
6130         * src/common/utils.h
6131                 optimisation
6132         * src/stock_pixmap.h
6133                 fix wrong icon reference
6134         * src/pixmaps/trash_btn.xpm
6135                 replace with nicer image
6136
6137 2005-08-28 [colin]      1.9.13cvs68
6138
6139         * src/Makefile.am
6140         * src/stock_pixmap.c
6141         * src/stock_pixmap.h
6142         * src/toolbar.c
6143         * src/pixmaps/trash_btn.xpm
6144                 Add a specific trash xpm for the button
6145
6146 2005-08-28 [colin]      1.9.13cvs67
6147
6148         * src/imap.c
6149                 Fix leak
6150
6151 2005-08-27 [colin]      1.9.13cvs66
6152
6153         * src/imap.c
6154         * src/procmime.c
6155                 Correctly fix "Problem with replies", fixes
6156                 pgpmime encryption too. 
6157
6158 2005-08-27 [colin]      1.9.13cvs65
6159
6160         * src/folder.c
6161         * src/procmsg.c
6162         * src/procmsg.h
6163         * src/summaryview.c
6164                 Fix bug #517 (messages removed from summaryview 
6165                 when moving fails)
6166
6167 2005-08-27 [colin]      1.9.13cvs64
6168
6169         * tools/Makefile.am
6170         * tools/asus_mailled.sh
6171                 Add a script to blink ASUS laptops' mail LED where there
6172                 is unread mail.
6173
6174 2005-08-27 [colin]      1.9.13cvs63
6175
6176         * src/imap.c
6177         * src/etpan/imap-thread.c
6178         * src/etpan/imap-thread.h
6179                 Implement automatic choosing of login method
6180                 Fixes bug #791
6181         * src/gtk/.cvsignore
6182                 Add sylpheed-marshal.[ch]
6183
6184 2005-08-27 [colin]      1.9.13cvs62
6185
6186         * src/common/utils.c
6187                 Fix confusing perror
6188
6189 2005-08-27 [colin]      1.9.13cvs61
6190
6191         * src/toolbar.c
6192         * src/toolbar.h
6193                 Remove A_DELETE, replace it with 
6194                 A_TRASH and A_DELETE_REAL. Automatically
6195                 rewrite config files to replace A_DELETE
6196                 with A_TRASH (no functionality change).
6197                 Fixes half of #794
6198
6199 2005-08-26 [colin]      1.9.13cvs60
6200
6201         * src/procmime.c
6202                 Previous "Problem with replies" fix brought other
6203                 problems, fixing them
6204
6205 2005-08-26 [colin]      1.9.13cvs59
6206
6207         * src/procmime.c
6208                 Fix "Problem with replies". This happened only
6209                 on IMAP...
6210         * src/procmsg.c
6211                 Factorize code a bit
6212         * src/compose.c
6213                 Speed improvement on very long messages (wrapping)
6214                 Fix signature color on Reedit and Redirect
6215                 On Reedit, don't attach pgp-signatures parts, but
6216                 set signing to On.
6217
6218 2005-08-24 [paul]       1.9.13cvs58
6219
6220         * src/compose.c
6221                 don't claim success when clicking
6222                 Cancel on the passphrase box.
6223                 Patch by Colin
6224
6225 2005-08-24 [paul]       1.9.13cvs57
6226
6227         * src/main.c
6228                 fix misplaced sylpheed.log
6229         * src/common/defs.h
6230                 define UIDL_DIR
6231
6232 2005-08-24 [paul]       1.9.13cvs56
6233
6234         * src/imap.c
6235         * src/etpan/imap-thread.c
6236         * src/etpan/imap-thread.h
6237                 fix bug 789 'IMAP CRAM-MD5 and ssl broken in 1.9.13'
6238                 Patch by Colin
6239         * src/gtk/sylpheed-marshal.c    ** REMOVED **
6240         * src/gtk/sylpheed-marshal.h    ** REMOVED **
6241                 remove autogenerated files
6242         * tools/kdeservicemenu/README
6243         * tools/kdeservicemenu/install.sh
6244         * tools/kdeservicemenu/template_sylpheed-attach-files.desktop
6245         * tools/kdeservicemenu/template_sylpheed-compress-attach.desktop
6246                 use Claws icon, use 'Sylpheed-Claws' in menu,
6247                 use kdialog, and other cleanups
6248
6249 2005-08-23 [paul]       1.9.13cvs55
6250
6251         * src/compose.c
6252                 fix paste/wrap crash
6253                 Patch by Colin
6254
6255 2005-08-23 [paul]       1.9.13cvs54
6256
6257         * src/main.c
6258                 fix crash recovery
6259                 Patch by Colin
6260
6261 2005-08-23 [paul]       1.9.13cvs53
6262
6263         * src/addressbook.c
6264         * src/editaddress.c
6265                 view all data of LDAP contacts
6266                 Patch by Colin
6267
6268 2005-08-23 [paul]       1.9.13cvs52
6269
6270         * src/addressbook.c
6271                 fix issues with the Search field
6272                 Patch by Colin
6273
6274 2005-08-22 [paul]       1.9.13cvs51
6275
6276         * src/folderview.c
6277                 put name of folder in processing dialog
6278                 title
6279         * src/prefs_folder_item.c
6280                 improve english usage
6281
6282 2005-08-22 [paul]       1.9.13cvs50
6283
6284         * src/filtering.c
6285         * src/filtering.h
6286         * src/matcher.c
6287         * src/matcher_parser_lex.l
6288         * src/matcher_parser_parse.y
6289         * src/prefs_filtering.c
6290                 add Filtering/Processing rule names feature.
6291                 (the incompatible old matcherrc is saved as
6292                 matcherrc.pre_names).
6293                 Patch by Colin
6294
6295 2005-08-22 [paul]       1.9.13cvs49
6296
6297         * src/procmsg.c
6298                 fix colour labelling
6299                 Patch by Colin
6300
6301 2005-08-22 [paul]       1.9.13cvs48
6302
6303         * src/textview.c
6304                 fix open_image_cb()
6305
6306 2005-08-22 [paul]       1.9.13cvs47
6307
6308         * src/imap.c
6309                 fix bug 789, 'SC crashes with imap (CVS ver)'
6310                 Patch by Colin
6311
6312 2005-08-22 [paul]       1.9.13cvs46
6313
6314         * src/mimeview.c
6315         * src/prefs_common.c
6316         * src/common/defs.h
6317                 define reused defaults in defs.h
6318         * src/textview.c
6319                 add 'Open image' to image popup menu
6320
6321 2005-08-21 [colin]      1.9.13cvs45
6322
6323         * src/summaryview.c
6324                 Fix bug #788 (Bogus "From" address displayed)
6325
6326 2005-08-20 [colin]      1.9.13cvs44
6327
6328         * src/folder.c
6329                 Fix buf #787 (multilevel delete causes SIGSEGV)
6330
6331 2005-08-19 [colin]      1.9.13cvs43
6332
6333         * src/inc.c
6334         * src/prefs_common.c
6335         * src/prefs_common.h
6336                 Add an hidden pref to allow modifying the
6337                 update stepping in incorporation.
6338                 Patch by wwp.
6339
6340 2005-08-19 [colin]      1.9.13cvs42
6341
6342         * src/compose.c
6343         * src/procmime.c
6344                 Workaround for broken MUAs: encode 
6345                 Content-type: name: as ASCII and 
6346                 Content-Disposition: filename: as
6347                 per rfc2231
6348         * src/prefs_account.c
6349                 Fix invisible-ness of SMTP SSL prefs
6350                 in NNTP accounts
6351
6352 2005-08-19 [paul]       1.9.13cvs41
6353
6354         * src/compose.c
6355         * src/prefs_common.c
6356         * src/prefs_common.h
6357         * src/prefs_wrapping.c
6358                 paste with or without wrapping.
6359                 patch by Colin
6360
6361 2005-08-19 [paul]       1.9.13cvs40
6362
6363         * src/prefs_common.c
6364         * src/prefs_common.h
6365         * src/summaryview.c
6366                 reintroduce enable_swap_from as a
6367                 hidden pref. patch by Colin
6368         * src/quote_fmt_parse.y
6369         * src/plugins/clamav/clamav_plugin.c
6370         * src/plugins/dillo_viewer/dillo_viewer.c
6371         * src/plugins/mathml_viewer/mathml_viewer.c
6372         * src/plugins/pgpcore/sgpgme.c
6373         * src/plugins/pgpinline/pgpinline.c
6374         * src/plugins/pgpmime/pgpmime.c
6375                 tidy up. patch by Colin
6376
6377 2005-08-19 [paul]       1.9.13cvs39
6378
6379         * configure.ac
6380                 complete cvs38's sync
6381         * src/editaddress.c
6382         * src/gedit-print.c
6383         * src/mutt.c
6384         * src/etpan/etpan-log.c
6385         * src/etpan/imap-thread.c
6386         * src/gtk/gtksourceprintjob.c
6387                 fix compilation warnings
6388                 (patch by Colin)
6389
6390 2005-08-19 [paul]       1.9.13cvs38
6391
6392         sync with main:
6393
6394         * src/account.c
6395         * src/action.c
6396         * src/addrbook.c
6397         * src/addrcache.c
6398         * src/addrharvest.c
6399         * src/addrindex.c
6400         * src/codeconv.c
6401         * src/compose.c
6402         * src/crash.c
6403         * src/exporthtml.c
6404         * src/exportldif.c
6405         * src/folder.c
6406         * src/image_viewer.c
6407         * src/inc.c
6408         * src/inc.h
6409         * src/jpilot.c
6410         * src/ldif.c
6411         * src/main.c
6412         * src/matcher.c
6413         * src/mbox.c
6414         * src/messageview.c
6415         * src/mh.c
6416         * src/mimeview.c
6417         * src/msgcache.c
6418         * src/mutt.c
6419         * src/news.c
6420         * src/partial_download.c
6421         * src/pine.c
6422         * src/pop.c
6423         * src/prefs_actions.c
6424         * src/prefs_common.c
6425         * src/prefs_customheader.c
6426         * src/prefs_display_header.c
6427         * src/prefs_gtk.c
6428         * src/prefs_themes.c
6429         * src/procheader.c
6430         * src/procmime.c
6431         * src/procmsg.c
6432         * src/recv.c
6433         * src/send_message.c
6434         * src/simple-gettext.c
6435         * src/sourcewindow.c
6436         * src/textview.c
6437         * src/vcard.c
6438         * src/common/defs.h
6439         * src/common/log.c
6440         * src/common/plugin.c
6441         * src/common/prefs.c
6442         * src/common/session.c
6443         * src/common/session.h
6444         * src/common/socket.c
6445         * src/common/socket.h
6446         * src/common/ssl_certificate.c
6447         * src/common/template.c
6448         * src/common/utils.c
6449         * src/common/utils.h
6450         * src/common/xml.c
6451         * src/gtk/about.c
6452         added wrappers for C library function that
6453                 take pathname arguments.
6454                 enabled compilation with MinGW.
6455                 use GDir instead of directly using opendir().
6456                 added rename_force().
6457
6458 2005-08-19 [paul]       1.9.13cvs37
6459         
6460         patches by Colin:
6461         * src/compose.c
6462                 fix privacy settings on re-editing
6463                 a sent message
6464         * src/jpilot.c
6465                 fix encoding bug
6466         * src/folder.c
6467         * src/procmsg.c
6468         * src/procmsg.h
6469         * src/summaryview.c
6470                 flag changing optimisation
6471
6472 2005-08-18 [martin]     1.9.13cvs36
6473
6474         * commitHelper
6475             added my login
6476         * src/addrcache.c
6477         * src/addrharvest.c
6478         * src/addrindex.c
6479         * src/compose.c
6480         * src/grouplistdialog.c
6481         * src/main.c
6482         * src/mainwindow.c
6483         * src/msgcache.c
6484         * src/mutt.c
6485         * src/pine.c
6486         * src/prefs_account.c
6487         * src/prefs_themes.c
6488         * src/stock_pixmap.c
6489         * src/summaryview.c
6490         * src/gtk/about.c
6491         * src/gtk/logwindow.c
6492             removed deprecated glib and gdk stuff
6493         * src/plugins/pgpcore/select-keys.c
6494             convert attributes from locale to utf8
6495
6496 2005-08-17 [paul]       1.9.13cvs35
6497
6498         * src/account.c
6499         * src/addressbook.c
6500                 use new GTK_STOCK_ icons if available
6501         * src/summaryview.c
6502         * src/gtk/gtksctree.c
6503         * src/gtk/gtksctree.h
6504                 faster range select. patch by Colin
6505
6506 2005-08-17 [paul]       1.9.13cvs34
6507
6508         patches by colin:
6509         * src/addressbook.c
6510         * src/addressitem.h
6511                 Add an edit button for contacts, fix selections
6512                 of gtksctree items
6513         * src/editaddress.c
6514                 Change labels, let Save be always possible in the
6515                 email and user atributes tabs
6516         * src/folderview.c
6517                 fix sort issues
6518         * src/summaryview.c
6519                 select next item instead of the displayed one
6520                 after deletion
6521
6522         * src/gtk/progressdialog.c
6523                 use prefs_common.enable_rules_hint
6524
6525 2005-08-13 [hoa]        1.9.13cvs33
6526
6527         * src/etpan/imap-thread.c
6528                 fixed build on Solaris.
6529
6530 2005-08-10 [colin]      1.9.13cvs32
6531
6532         * src/procmsg.c
6533                 Fix cvs31 (missing fclose before reading
6534                 the file)
6535
6536 2005-08-10 [colin]      1.9.13cvs31
6537
6538         * src/procmsg.c
6539                 Fix procmsg_msginfo_new_from_mimeinfo() when
6540                 the MimeInfo isn't stored in memory. This fixes
6541                 replying to an attached message.
6542
6543 2005-08-10 [colin]      1.9.13cvs30
6544
6545         * src/mainwindow.c
6546                 Fix slowness in account changing
6547
6548 2005-08-10 [colin]      1.9.13cvs29
6549
6550         * src/folder.c
6551         * src/folderutils.c
6552         * src/folderview.c
6553         * src/imap_gtk.c
6554         * src/mainwindow.c
6555         * src/mh_gtk.c
6556         * src/procmsg.c
6557         * src/summaryview.c
6558                 Optimize folder_has_parent_of_type
6559                 Prevent moving special sub-folders from contextual menus
6560                 Rework message a bit ("Empty all messages" -> "Delete all
6561                 messages")
6562                 Fix bug #780 (MSexchange IMAP - using IMAP "Sent Items" 
6563                 and "Deleted Items" folders)
6564
6565 2005-08-08 [colin]      1.9.13cvs28
6566
6567         * src/summaryview.c
6568         * src/prefs_summaries.c
6569                 Make "Select first unread|new" more flexible
6570                 (just prioritize new or unread)
6571
6572 2005-08-08 [colin]      1.9.13cvs27
6573
6574         * src/summaryview.c
6575                 If "select first new" is selected and there only
6576                 are unread messages, fallback to "select first
6577                 unread".
6578
6579 2005-08-08 [colin]      1.9.13cvs26
6580
6581         * src/folder.c
6582                 Fix shameful bugs (and bug #779)
6583
6584 2005-08-08 [colin]      1.9.13cvs25
6585
6586         * src/folder.c
6587         * src/folder.h
6588                 Cache parents' type to make folder_has_parent_of_type
6589                 faster
6590         * src/folderview.c
6591                 Forbid DnD of special sub-folders
6592         * src/procmsg.c
6593         * src/procmsg.h
6594                 Add MAIL_POSTFILTERING_HOOK
6595         * src/summaryview.c
6596                 Revert over-zealous deletion of the use_addr_book 
6597                 code
6598
6599 2005-08-07 [colin]      1.9.13cvs24
6600
6601         * src/folder.c
6602                 Fix big mistake (passing MsgInfo instead 
6603                 of FolderItem)
6604
6605 2005-08-07 [colin]      1.9.13cvs23
6606
6607         * src/compose.c
6608         * src/folder.c
6609         * src/folder.h
6610         * src/foldersel.c
6611         * src/folderutils.c
6612         * src/folderview.c
6613         * src/imap.c
6614         * src/mainwindow.c
6615         * src/messageview.c
6616         * src/mh.c
6617         * src/msgcache.c
6618         * src/procmime.c
6619         * src/summaryview.c
6620                 Make subfolders of Drafts, Queue, Outbox, Trash
6621                 work like their parents. 
6622                 Fixes bug #686 (Message view on Drafts/Sent should be the same on Subfolders)
6623
6624 2005-08-07 [colin]      1.9.13cvs22
6625
6626         * src/addressbook.c
6627                 Fix bug #771 (Dragged contacts not saved)
6628
6629 2005-08-07 [paul]       1.9.13cvs21
6630
6631         * src/summaryview.c
6632                 fix bug 32 'Search Doesn't display results
6633                 if "Hide Read Messages" is chosen'
6634                 be more literal in interpreting 'Hide read
6635                 messages'
6636
6637 2005-08-07 [colin]      1.9.13cvs20
6638
6639         * src/folderview.c
6640                 Add debug
6641         * src/summaryview.c
6642                 Faster 'unthread_for_execution'
6643
6644 2005-08-06 [paul]       1.9.13cvs19
6645
6646         * src/mainwindow.c
6647                 add mnemonics to Set displayed columns
6648                 fix bug where msgview_visible option was
6649                 overwritten as TRUE on startup
6650
6651 2005-08-06 [paul]       1.9.13cvs18
6652
6653         * src/mainwindow.c
6654                 refer to 'displayed columns in folder/message
6655                 list' not 'displayed items in summary/message view'
6656         * src/prefs_display_header.c
6657                 replace GTK_STOCK_DELETE with GTK_STOCK_REMOVE to
6658                 be consistent with similar dialogues
6659         * src/prefs_folder_column.c
6660         * src/prefs_summary_column.c
6661                 'columns' not 'items', and folder and message lists,
6662                 instead of folder and summary views;
6663                 Use 'Hidden columns' as list heading not 'Available
6664                 items';
6665                 move the 'Remove' button to the right hand side;
6666                 top-align the buttons;
6667                 remove unneeded vbox
6668         * src/prefs_summaries.c
6669                 put the 2 column prefs buttons in a frame to reduce
6670                 overall width; refer to columns not items &c.
6671
6672 2005-08-05 [colin]      1.9.13cvs17
6673
6674         * src/prefs_common.c
6675         * src/prefs_common.h
6676         * src/mainwindow.c
6677         * src/compose.c
6678         * src/messageview.c
6679                 Add an hidden toolbar_detachable pref, so
6680                 that I can get rid of these painful handles
6681                 in the toolbars. Defaults to TRUE to avoid
6682                 changing the GUI on unsuspecting people...
6683
6684 2005-08-05 [colin]      1.9.13cvs16
6685
6686         * src/Makefile.am
6687         * src/prefs_folder_column.c
6688         * src/prefs_folder_column.h
6689                 Add prefs for folder columns
6690         * src/folderview.c
6691         * src/folderview.h
6692         * src/mainwindow.c
6693         * src/mainwindow.h
6694         * src/prefs_common.c
6695         * src/prefs_common.h
6696         * src/prefs_summaries.c
6697                 Use them
6698         * src/prefs_summary_column.c
6699         * src/summaryview.c
6700         * src/summaryview.h
6701                 Add a To column
6702         * src/textview.c
6703         * src/common/utils.c
6704         * src/common/utils.h
6705                 Move uri colourisation functions
6706                 to utils
6707         * src/compose.c
6708                 Colourise URIs
6709         * src/imap.c
6710                 Fix bug with LIST where we'd try
6711                 to get Folder//////[...]/// 
6712
6713 2005-08-05 [paul]       1.9.13cvs15
6714
6715         * src/prefs_summaries.c
6716                 improve the English usage
6717         * src/summaryview.c
6718                 set font on column change
6719                 thanks to Colin
6720
6721 2005-08-05 [paul]       1.9.13cvs14
6722
6723         * src/prefs_common.c
6724         * src/prefs_common.h
6725         * src/prefs_summaries.c
6726         * src/summaryview.c
6727                 replace 'open_unread_on_enter' option with
6728                 'select_on_entry' option. opening/not opening
6729                 is now exclusively controlled by 'always_show_msg'
6730
6731 2005-08-04 [colin]      1.9.13cvs13
6732
6733         * src/compose.c
6734                 Remove dead code
6735                 Add colourisation of quotes and signatures
6736         * src/folderview.c
6737                 Fix possible crashes
6738         * src/messageview.c
6739                 Change an assert that is no problem
6740         * src/news.c
6741         * src/news_gtk.c
6742         * src/news_gtk.h
6743                 Fix offline mode
6744         * src/gtk/quicksearch.c
6745                 Fix a possible crash
6746
6747 2005-08-03 [colin]      1.9.13cvs12
6748
6749         * src/prefs_account.c
6750                 Fix bug #777 (Sylpheed crash in account configuration)
6751
6752 2005-08-03 [colin]      1.9.13cvs11
6753
6754         * src/addressbook.c
6755         * src/editaddress.c
6756         * src/editgroup.c
6757                 Fixing addressbook, round 2
6758         * src/textview.c
6759                 Fix emphasis color on rechecking 'Colorize messages'
6760
6761 2005-08-03 [paul]       1.9.13cvs10
6762
6763         sync with main
6764
6765         * src/addr_compl.c
6766         * src/compose.c
6767         * src/main.c
6768         * src/pop.c
6769         * src/prefs_account.c
6770         * src/procmime.c
6771         * src/procmsg.c
6772         * src/quote_fmt_parse.y
6773         * src/textview.c
6774         * src/common/quoted-printable.c
6775         * src/common/utils.c
6776         * src/common/utils.h
6777         * src/common/xml.c
6778                 replaced incorrect locale-independent
6779                 ctype functions with GLib's. Corrected
6780                 signedness mismatch.
6781         * src/headerview.c
6782                 headerview_create(): added spacing for vbox.
6783         * src/gtk/about.c
6784                 set focus to the OK button.
6785
6786 2005-08-03 [colin]      1.9.13cvs9
6787
6788         * src/folderview.c
6789                 Fix possible crash
6790
6791 2005-08-02 [colin]      1.9.13cvs8
6792
6793         * src/mainwindow.c
6794                 Fix cast
6795         * src/addressbook.c
6796         * src/addressitem.h
6797                 Fix a cast and more generally, try to make the
6798                 GUI more intuitive and consistent (round 1)
6799
6800 2005-08-02 [paul]       1.9.13cvs7
6801
6802         * src/folder.h
6803                 missing in 1.9.13cvs6
6804
6805 2005-08-02 [colin]      1.9.13cvs6
6806
6807         * src/folder.c
6808                 Fix one more leak
6809
6810 2005-08-02 [colin]      1.9.13cvs5
6811
6812         * src/folder.c
6813         * src/folderview.c
6814         * src/imap.c
6815         * src/main.c
6816         * src/mbox.c
6817         * src/procmsg.c
6818         * src/summaryview.c
6819                 Fix a number of folder_item_get_msg_list()-related
6820                 leaks (missing procmsg_msginfo_free()s)
6821
6822 2005-08-01 [colin]      1.9.13cvs4
6823
6824         * src/folderview.c
6825         * src/folderview.h
6826         * src/mainwindow.c
6827         * src/prefs_fonts.c
6828         * src/prefs_summaries.c
6829         * src/prefs_themes.c
6830         * src/summaryview.c
6831         * src/summaryview.h
6832         * src/textview.c
6833         * src/textview.h
6834                 Fix instant-apply of summary and folderview-related prefs
6835                 Fix erroneous g_free and alertpanels in prefs_theme
6836                 Add instant-apply for fonts
6837                 Defer applying of prefs a little bit so it's done only
6838                 once even if requested by multiples prefs pages
6839
6840 2005-08-01 [paul]       1.9.13cvs3
6841
6842         * src/main.c
6843                 fix bug 776 'S.C. crashes on close'
6844                 thanks to Colin
6845         * src/etpan/etpan-thread-manager-types.h
6846                 add missing include
6847                 thanks to Hoa
6848
6849 2005-07-25 [paul]       1.9.13cvs2
6850
6851         * src/summaryview.c
6852                 fix typos. spotted by Fabien Vantard
6853
6854 2005-07-24 [paul]       1.9.13cvs1
6855
6856         * doc/man/sylpheed.1
6857                 update man page, incorporating fix of
6858                 bug 769 'Typo in manpage'
6859         * src/etpan/imap-thread.c
6860                 fix NetBSD openssl dependencies. patch by
6861                 George Michaelson <ggm@apnic.net>
6862         * po/pt_BR.po
6863                 updated by Frederico Goncalves Guimaraes
6864
6865 2005-07-22 [paul]       1.9.13
6866
6867         1.9.13 release
6868
6869 2005-07-22 [paul]       1.9.12cvs91
6870
6871         * AUTHORS
6872         * INSTALL
6873         * README.claws
6874         * RELEASE_NOTES.claws
6875                 updated for release
6876         * configure.ac
6877         * po/nb.po
6878         * tools/claws.i18n.status.pl
6879                 add Norwegian translation. submiited by
6880                 Geir Helland <pjallabais@users.sourceforge.net>
6881         * po/ca.po
6882         * po/de.po
6883         * po/es.po
6884         * po/fi.po
6885         * po/fr.po
6886         * po/it.po
6887         * po/sk.po
6888         * po/sr.po
6889         * po/zh_CN.po
6890                 updated by Miquel Oliete, Thomas Gilgin, Ricardo
6891                 Mones Lastra, Tommi Pirinen, Fabien Vantard,
6892                 Andrea Spadaccini, Andrej Kacian, Aleksandar Urosevic,
6893                 Yang Guilong
6894         * src/plugins/clamav/clamav_plugin_gtk.c
6895         * src/plugins/spamassassin/spamassassin_gtk.c
6896                 replace outdated description strings
6897
6898 2005-07-21 [colin]      1.9.12cvs90
6899
6900         * src/folder.c
6901                 Set folder to batch mode when scanning it. Makes deletion
6902                 of unread mails on IMAP much faster (due to the UNREAD 
6903                 flag unsetting)
6904
6905 2005-07-21 [darko]      1.9.12cvs89
6906
6907         * configure.ac
6908                 link against libresolv if necessary (patch by Paul)
6909         * src/msgcache.c
6910                 use glib's portable macros to determine endianness
6911
6912 2005-07-21 [paul]       1.9.12cvs88
6913
6914         * src/crash.c
6915         * src/gtk/about.c
6916                 update compiled-in features list
6917
6918 2005-07-20 [colin]      1.9.12cvs87
6919
6920         * src/folder.c
6921         * src/textview.c
6922                 Gcc 2.9x compilation fixes, thanks to Darko
6923         * src/plugins/clamav/clamav_plugin.c
6924                 Little optimisation: load virus database only once
6925         * src/plugins/spamassassin/spamassassin.c
6926                 Big optimisation: filtering one mail took at least 1 second,
6927                 now it takes at least 50ms. Doesn't speed up spamassassin 
6928                 itself, but should already be much more tolerable.
6929
6930 2005-07-20 [colin]      1.9.12cvs86
6931
6932         * src/summaryview.c
6933                 Fix performance issue
6934
6935 2005-07-19 [colin]      1.9.12cvs85
6936
6937         * src/plugins/pgpinline/plugin.c
6938                 Fix warning
6939
6940 2005-07-19 [colin]      1.9.12cvs84
6941
6942         * configure.ac
6943         * src/plugins/Makefile.am
6944         * src/plugins/pgpinline/.cvsignore
6945         * src/plugins/pgpinline/Makefile.am
6946         * src/plugins/pgpinline/pgpinline.c
6947         * src/plugins/pgpinline/pgpinline.deps
6948         * src/plugins/pgpinline/pgpinline.h
6949         * src/plugins/pgpinline/plugin.c
6950                 Put pgpinline in the main tree
6951
6952 2005-07-19 [paul]       1.9.12cvs83
6953
6954         * src/prefs_actions.c
6955                 prevent '//' in menu names, which cause a crash
6956                 thanks to Colin
6957
6958 2005-07-19 [paul]       1.9.12cvs82
6959
6960         * configure.ac
6961                 be generally more informative in configure output.
6962                 OpenSSL: correction: '[ --enable-openssl ...' -> 
6963                 '[ --disable-openssl ...', as --enable-openssl is default
6964                 PGP/MIME: don't check for GPGME again, check for
6965                 pgpcore instead. Therefore prevent the possibility of
6966                 attempting to build pgpmime if pgpcore dependencies are
6967                 not met
6968                 ClamAV: use pkgconfig to check for lib
6969                 libgnomeprint: revert logic on inner test to match
6970                 everything else
6971         * src/plugins/pgpcore/sgpgme.c
6972                 add missing include
6973
6974 2005-07-19 [colin]      1.9.12cvs81
6975
6976         * src/summaryview.c
6977                 Fix slow thread rebuilding in particular
6978                 cases
6979
6980 2005-07-19 [paul]       1.9.12cvs80
6981
6982         * sylpheed-claws.desktop
6983                 fix typo, spotted by Stephan Sachse
6984         * src/account.c
6985                 replace GTK_STOCK_ADD with
6986                 GTK_STOCK_NEW button
6987
6988 2005-07-18 [colin]      1.9.12cvs79
6989
6990         * src/etpan/imap-thread.c
6991                 Fix return value (Thanks Hoa)
6992
6993 2005-07-18 [colin]      1.9.12cvs78
6994
6995         * src/imap.c
6996                 Allow empty passwords
6997                 Create drafts/queue/outbox if necessary
6998         * src/summaryview.c
6999                 Remove old code
7000         * src/etpan/imap-thread.c
7001                 Fix STARTTLS (Thanks to Hoa)
7002
7003 2005-07-18 [paul]       1.9.12cvs77
7004
7005         * ChangeLog-gtk2.jp
7006         * ChangeLog.jp
7007                 removed
7008         * Makefile.am
7009                 updated to reflect additions and removals
7010         * TODO
7011                 updated to be claws-specific
7012         * TODO-gtk2
7013         * TODO-gtk2.jp
7014         * TODO.jp
7015         * sylpheed-128x128.png
7016         * sylpheed-64x64.png
7017                 removed
7018         * sylpheed-claws-128x128.png
7019         * sylpheed-claws-64x64.png
7020         * sylpheed-claws.desktop
7021         * sylpheed-claws.png
7022                 added
7023         * sylpheed.desktop
7024         * sylpheed.png
7025                 removed
7026
7027 2005-07-17 [paul]       1.9.12cvs76
7028
7029         * src/account.c
7030         * src/addressbook.c
7031         * src/alertpanel.c
7032         * src/alertpanel.h
7033         * src/compose.c
7034         * src/exphtmldlg.c
7035         * src/expldifdlg.c
7036         * src/folderview.c
7037         * src/imap_gtk.c
7038         * src/inc.c
7039         * src/message_search.c
7040         * src/messageview.c
7041         * src/mh_gtk.c
7042         * src/news_gtk.c
7043         * src/prefs_actions.c
7044         * src/prefs_filtering.c
7045         * src/prefs_matcher.c
7046         * src/prefs_template.c
7047         * src/prefs_themes.c
7048         * src/ssl_manager.c
7049         * src/summary_search.c
7050         * src/textview.c
7051         * src/toolbar.c
7052         * src/gtk/sslcertwindow.c
7053         * src/plugins/pgpcore/sgpgme.c
7054                 rework alertpanels
7055
7056 2005-07-17 [colin]      1.9.12cvs75
7057
7058         * src/privacy.c
7059                 add a PrivacySystem accessor that checks that
7060                 the system cached in a MimeInfo's privacydata
7061                 is still registered. Use this accessor instead
7062                 of directly using data->system. Fixes crashes
7063                 after unloading pgp plugins.
7064
7065 2005-07-17 [colin]      1.9.12cvs74
7066
7067         * src/alertpanel.c
7068                 Change geometry hints to a simple default size.
7069                 Fixes the certs dialogs.
7070
7071 2005-07-17 [colin]      1.9.12cvs73
7072
7073         * src/gtk/sslcertwindow.c
7074                 Use a gtkExpander
7075
7076 2005-07-17 [colin]      1.9.12cvs72
7077
7078         * src/plugins/pgpcore/Makefile.am
7079         * src/plugins/pgpmime/Makefile.am
7080                 Add gpgme libs
7081
7082 2005-07-17 [paul]       1.9.12cvs71
7083
7084         * configure.ac
7085                 add --disable-gnomeprint option
7086                 modified version of patch by Marius Mauch
7087
7088 2005-07-17 [paul]       1.9.12cvs70
7089
7090         * src/common/defs.h
7091                 update urls
7092         * src/account.c
7093         * src/action.c
7094         * src/addressbook.c
7095         * src/compose.c
7096         * src/foldersel.c
7097         * src/folderview.c
7098         * src/html.c
7099         * src/imap_gtk.c
7100         * src/main.c
7101         * src/mainwindow.c
7102         * src/messageview.c
7103         * src/mh_gtk.c
7104         * src/mimeview.c
7105         * src/news_gtk.c
7106         * src/prefs_account.c
7107         * src/prefs_send.c
7108         * src/prefs_summaries.c
7109         * src/procmsg.c
7110         * src/summaryview.c
7111         * src/common/utils.c
7112         * src/common/xml.c
7113         * src/plugins/pgpcore/passphrase.c
7114         * src/plugins/pgpcore/select-keys.c
7115                 replace inappropriately used backticks
7116                 with single quotes
7117
7118 2005-07-16 [colin]      1.9.12cvs69
7119
7120         * src/image_viewer.c
7121                 Add extra paranoid checks
7122
7123 2005-07-16 [colin]      1.9.12cvs68
7124
7125         * src/plugins/pgpcore/prefs_gpg.c
7126                 Don't auto-check sigs by default, as it
7127                 can be really slow.
7128
7129 2005-07-16 [colin]      1.9.12cvs67
7130
7131         * src/plugins/pgpcore/sgpgme.c
7132                 Make messages a bit better.
7133
7134 2005-07-16 [colin]      1.9.12cvs66
7135
7136         * src/imap.c
7137                 Remove pseudo-log
7138         * src/etpan/imap-thread.c
7139                 Add real log
7140
7141 2005-07-16 [colin]      1.9.12cvs65
7142
7143         * src/main.c
7144         * src/prefs_other.c
7145                 And now, fix build with libetpan :-/
7146
7147 2005-07-15 [colin]      1.9.12cvs64
7148
7149         * src/prefs_other.c
7150                 Continue fixing build without libetpan.
7151
7152 2005-07-15 [colin]      1.9.12cvs63
7153
7154         * src/main.c
7155                 Fix build with --disable-libetpan
7156
7157 2005-07-15 [colin]      1.9.12cvs62
7158
7159         * configure.ac
7160                 Bump libetpan's version
7161
7162 2005-07-15 [colin]      1.9.12cvs61
7163
7164         * src/etpan/imap-thread.c
7165                 Actually stop logging :)
7166
7167 2005-07-15 [colin]      1.9.12cvs60
7168
7169         * src/addressbook.c
7170                 Fix dnd of multiple addresses.
7171
7172 2005-07-15 [hoa]        1.9.12cvs59
7173
7174         * src/etpan/imap-thread.c
7175             disable login of IMAP password in libetpan log file.
7176
7177 2005-07-15 [paul]       1.9.12cvs58
7178
7179         * src/account.c
7180                 don't automatically sort
7181                 do allow drag n drop
7182
7183 2005-07-15 [paul]       1.9.12cvs57
7184
7185         * src/account.c
7186         * src/ssl_manager.c
7187                 alphabetical listing
7188
7189 2005-07-15 [paul]       1.9.12cvs56
7190
7191         * src/gtk/pluginwindow.c
7192                 sort plugin list alphabetically
7193
7194 2005-07-15 [paul]       1.9.12cvs55
7195
7196         * src/prefs_spelling.c
7197         * src/prefs_wrapping.c
7198                 unify English usage
7199
7200 2005-07-15 [colin]      1.9.12cvs54
7201
7202         * src/wizard.c
7203                 Typo fix
7204
7205 2005-07-15 [paul]       1.9.12cvs53
7206
7207         * src/prefs_message.c
7208                 make 'show cursor' a hidden option
7209
7210 2005-07-14 [colin]      1.9.12cvs52
7211
7212         * src/plugins/spamassassin/Makefile.am
7213         * src/plugins/clamav/Makefile.am
7214                 Fix double EXTRA_DISTs
7215
7216 2005-07-14 [colin]      1.9.12cvs51
7217
7218         * src/plugins/clamav/Makefile.am
7219         * src/plugins/clamav/clamav_plugin_gtk.deps
7220         * src/plugins/spamassassin/Makefile.am
7221         * src/plugins/spamassassin/spamassassin_gtk.deps
7222                 Make $plugin_gtk depend on $plugin
7223
7224 2005-07-14 [hoa]        1.9.12cvs50
7225
7226         * src/etpan/imap-thread.c
7227                 enable debug log of libetpan when running with --debug
7228
7229 2005-07-14 [colin]      1.9.12cvs49
7230
7231         * configure.ac
7232         * src/common/Makefile.am
7233         * src/common/plugin.c
7234         * src/common/plugin.h
7235                 Add a little plugin dependancy system.
7236                 Plugins can ship a $plugin_name.deps file
7237                 (near them in PLUGINDIR) so that their
7238                 dependancies are loaded if possible.
7239         * src/plugins/Makefile.am
7240         * src/plugins/pgpcore/Makefile.am
7241         * src/plugins/pgpcore/passphrase.c
7242         * src/plugins/pgpcore/passphrase.h
7243         * src/plugins/pgpcore/plugin.c
7244         * src/plugins/pgpcore/prefs_gpg.c
7245         * src/plugins/pgpcore/prefs_gpg.h
7246         * src/plugins/pgpcore/select-keys.c
7247         * src/plugins/pgpcore/select-keys.h
7248         * src/plugins/pgpcore/sgpgme.c
7249         * src/plugins/pgpcore/sgpgme.h
7250                 Introduce pgpcore, used by pgpmime and
7251                 pgpinline
7252         * src/plugins/pgpmime/Makefile.am
7253         * src/plugins/pgpmime/passphrase.c
7254         * src/plugins/pgpmime/passphrase.h
7255         * src/plugins/pgpmime/pgpmime.c
7256         * src/plugins/pgpmime/pgpmime.deps
7257         * src/plugins/pgpmime/plugin.c
7258         * src/plugins/pgpmime/prefs_gpg.c
7259         * src/plugins/pgpmime/prefs_gpg.h
7260         * src/plugins/pgpmime/select-keys.c
7261         * src/plugins/pgpmime/select-keys.h
7262         * src/plugins/pgpmime/sgpgme.c
7263         * src/plugins/pgpmime/sgpgme.h
7264                 Remove the core from pgpmime and add the
7265                 dependancy to pgpcore.
7266
7267 2005-07-14 [paul]       1.9.12cvs48
7268
7269         * src/stock_pixmap.c
7270                 forgot this in last commit
7271
7272 2005-07-14 [paul]       1.9.12cvs47
7273
7274         * src/account.c
7275         * src/addressbook.c
7276                 add accelerators for the buttons (sync with main)
7277         * src/compose.c
7278         * src/compose.h
7279                 add accelerators for the buttons.
7280                 fix editing with external editor.
7281                 replace gdk_input_*() with GIOChannel;
7282                 (sync with main)
7283         * src/foldersel.c
7284                 display folder names with new/unread
7285                 representation (sync with main)
7286         * src/main.c
7287                 specify default window icon (sync with main)
7288         * src/prefs_common.c
7289                 use_addr_book default to FALSE
7290         * src/summaryview.c
7291         * src/textview.c
7292                 add accelerators for the buttons (sync with main)
7293         * src/gtk/menu.c
7294                 fix typos
7295         * src/pixmaps/sylpheed_icon.xpm
7296                 updated
7297
7298 2005-07-13 [paul]       1.9.12cvs46
7299
7300         * src/plugins/pgpmime/pgpmime.c
7301         * src/plugins/pgpmime/sgpgme.c
7302                 (temporarily) use deprecated gpgme_data_rewind()
7303                 while largefile support is not present
7304                 (as suggested by Colin)
7305
7306 2005-07-13 [paul]       1.9.12cvs45
7307
7308         * configure.ac
7309                 remove large file support (for now):
7310                 it breaks too many things
7311
7312 2005-07-13 [paul]       1.9.12cvs44
7313
7314         * configure.ac
7315                 add large file support
7316         * src/html.c
7317                 fix bug #763 where href attribute was not
7318                 the very first attribute of a link
7319                 patch by Thomas Gilgin
7320
7321 2005-07-13 [colin]      1.9.12cvs43
7322
7323         * src/gtk/pluginwindow.c
7324                 Little portability fix
7325
7326 2005-07-13 [colin]      1.9.12cvs42
7327
7328         * src/plugins/pgpmime/sgpgme.c
7329                 Fix crasher.
7330
7331 2005-07-13 [colin]      1.9.12cvs41
7332
7333         * src/plugins/pgpmime/pgpmime.c
7334         * src/plugins/pgpmime/sgpgme.c
7335                 Use gpgme_data_release_and_get_mem instead
7336                 of gpgme_data_read.
7337
7338 2005-07-13 [colin]      1.9.12cvs40
7339
7340         * configure.ac
7341         * src/plugins/pgpmime/passphrase.c
7342         * src/plugins/pgpmime/passphrase.h
7343         * src/plugins/pgpmime/pgpmime.c
7344         * src/plugins/pgpmime/plugin.c
7345         * src/plugins/pgpmime/select-keys.c
7346         * src/plugins/pgpmime/select-keys.h
7347         * src/plugins/pgpmime/sgpgme.c
7348         * src/plugins/pgpmime/sgpgme.h
7349                 Port pgpmime to gpgme-1.0.
7350
7351 2005-07-12 [paul]       1.9.12cvs39
7352
7353         * AUTHORS
7354         * src/toolbar.c
7355         * src/toolbar.h
7356                 add a 'Go to Prev' button to the toolbar.
7357                 correct tooltip text of go to buttons.
7358                 based on patch by Yang Guilong <bamanzi@gmail.com>
7359
7360 2005-07-12 [colin]      1.9.12cvs38
7361
7362         * src/statusbar.c
7363                 Fix progress bar showing stuff at startup.
7364
7365 2005-07-12 [paul]       1.9.12cvs37
7366
7367         * src/editjpilot.c
7368                 fix building with jpilot support
7369
7370 2005-07-11 [colin]      1.9.12cvs36
7371
7372         * src/inc.c
7373                 Add visual indication that filtering is running
7374         * src/textview.c
7375                 Make {}[] uri delimiters
7376         * src/summaryview.c
7377                 Remove useless (and slow) calls
7378
7379 2005-07-11 [paul]       1.9.12cvs35
7380
7381         * src/plugins/clamav/clamav_plugin_gtk.c
7382         * src/plugins/dillo_viewer/dillo_prefs.c
7383         * src/plugins/pgpmime/prefs_gpg.c
7384         * src/plugins/spamassassin/spamassassin_gtk.c
7385                 gather plugins prefs together under their
7386                 own 'Plugins' heading
7387
7388 2005-07-11 [paul]       1.9.12cvs34
7389
7390         sync with main
7391
7392         * src/account.c
7393                 account_delete(): modified alert dialog
7394         * src/editjpilot.c
7395         * src/editvcard.c
7396                 fixed a crash when cancelling file selection
7397                 dialog by Escape key. Made non-ascii filename
7398                 selectable.
7399         * src/prefs_template.c
7400                 prefs_template_window_create(): make scrolled
7401                 window policy AUTOMATIC
7402
7403 2005-07-10 [hoa]        1.9.12cvs33
7404
7405         * src/etpan/imap-thread.c
7406                 workaround for old Courier IMAP servers.
7407
7408 2005-07-10 [colin]      1.9.12cvs32
7409
7410         * src/folder.c
7411         * src/statusbar.c
7412         * src/statusbar.h
7413                 Add visual progress indicator on filtering/processing
7414                 Factorize the progress bar code
7415         * src/imap.c
7416         * src/imap.h
7417         * src/etpan/imap-thread.c
7418                 Add a reference counter to avoid destroying the Folder
7419                 while it's in use by another callback.
7420
7421 2005-07-09 [hoa]        1.9.12cvs31
7422
7423         * src/imap.c
7424         * src/etpan/imap-thread.c
7425                 fixed deadlock when removing IMAP account.
7426
7427 2005-07-08 [colin]      1.9.12cvs30
7428
7429         * src/textview.c
7430         * src/unmime.c
7431                 Fix again problems decoding broken headers
7432         * src/gtk/inputdialog.c
7433                 Fix local variable shadowing a global one
7434
7435 2005-07-08 [colin]      1.9.12cvs29
7436
7437         * src/msgcache.c
7438                 Make the cache/mark files platform-agnostic by writing
7439                 them in little-endian format. Reading them is also done
7440                 in little-endian format, of course; however, in order
7441                 to avoid trashing mark data on big-endian machines, the
7442                 files are, at first, read from the native format if the
7443                 little-endian one doesn't exist. This is easy to deter-
7444                 mine by trying to open a file with a swapped data_ver
7445                 and seeing if it's the wanted version.
7446                 Little-endian using users should see absolutely no
7447                 difference, Big-endian users may get a very little
7448                 performance drop due to byte-swapping.
7449                 Tested on i386 and ppc32. 
7450                 Fixes bug #159 (The index file, in the mailboxes, is 
7451                 hardware depending).
7452
7453                 To have the cache/mark files updated to the new little-
7454                 endian format, "Check for new messages" or even
7455                 "Rebuild folder tree" aren't enough. Files will be
7456                 updated as soon as a folder has been opened/closed.
7457                 To update everything, just select all folders by
7458                 selecting them one by one.
7459
7460 2005-07-07 [colin]      1.9.12cvs28
7461
7462         * src/imap.c
7463                 Remember the folder separator per IMAPFolder
7464                 instead of globally.
7465                 Revive the Session on noop; fixes bug #761
7466                 (mark a bunch of unread messages as read takes 
7467                 forever)
7468
7469 2005-07-07 [darko]      1.9.12cvs27
7470
7471         * src/common/template.c
7472                 Sort templates alphabetically
7473
7474 2005-07-06 [colin]      1.9.12cvs26
7475
7476         * src/imap.c
7477                 Try to use the correct separator in
7478                 most cases. Possibly fixes bug #759
7479                 (only creates the INBOX folder when 
7480                 setting up new IMAP account) and 
7481                 bug #760 (Can't retrieve messages)
7482
7483 2005-07-06 [colin]      1.9.12cvs25
7484
7485         * src/imap.c
7486                 Use real_path in status command. This will
7487                 help later, when namespaces will be used.
7488
7489 2005-07-06 [colin]      1.9.12cvs24
7490
7491         * configure.ac
7492         * src/account.c
7493         * src/folder.c
7494         * src/imap.c
7495         * src/etpan/etpan-log.c
7496         * src/etpan/etpan-thread-manager.c
7497         * src/etpan/imap-thread.c
7498                 Add a --disable-libetpan parameter. With this,
7499                 users that don't want IMAP4 support can avoid
7500                 the new dependancy (and have no IMAP support).
7501                 Users that have IMAP4 accounts and use this
7502                 parameter won't lose their configuration, their
7503                 IMAP accounts will just be invisible and not
7504                 used.
7505         * src/textview.c
7506                 Make the "Copy ..." contextual menu items 
7507                 copy to both the X clipboard and the gtk 
7508                 clipboard - as most other apps do.
7509         * src/gtk/about.c
7510                 Add a notice about OpenSSL usage, in order to
7511                 comply with OpenSSL's license (point 6):
7512                 http://www.openssl.org/source/license.html
7513
7514 2005-07-06 [colin]      1.9.12cvs23
7515
7516         * src/alertpanel.c
7517                 Fix a minimum size for alertpanels
7518         * src/compose.c
7519                 Show 'No space left on device' type errors
7520                 when queuing/sending
7521         * src/imap_gtk.c
7522         * src/mh_gtk.c
7523                 Rework folder's deletion message (remove 
7524                 extra \n)
7525
7526 2005-07-05 [colin]      1.9.12cvs22
7527
7528         * src/imap.c
7529                 Add an alertpanel on auth error
7530                 Add pseudo-log
7531                 Remove pthread-related stuff
7532
7533 2005-07-05 [colin]      1.9.12cvs21
7534
7535         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
7536                 Fix crash on plugin reloading (with a hack)
7537
7538 2005-07-05 [colin]      1.9.12cvs20
7539
7540         * src/prefs_account.c
7541         * src/prefs_account.h
7542                 Fix typo
7543         * src/gtk/filesel.c
7544         * src/gtk/filesel.h
7545                 Add a way to filter the view
7546         * src/gtk/pluginwindow.c
7547                 Filter loadable stuff
7548         * src/plugins/pgpmime/prefs_gpg.c
7549                 Fix missing unregistration
7550         * .cvsignore
7551         * src/etpan/.cvsignore
7552         * src/plugins/spamassassin/.cvsignore
7553                 Add more stuff to cvs ignored files
7554
7555 2005-07-04 [colin]      1.9.12cvs19
7556
7557         * src/imap.c
7558                 Fix scan_required returning FALSE when it
7559                 shouldn't. Maybe fix #760 (Can't retrieve
7560                 messages)
7561
7562 2005-07-04 [colin]      1.9.12cvs18
7563
7564         * src/summaryview.c
7565                 Fix always_show_msg pref
7566
7567 2005-07-04 [paul]       1.9.12cvs17
7568
7569         sync with main (forgotten in last commit)
7570         
7571         * src/common/utils.c
7572         * src/common/utils.h
7573                 check_line_length(): new.
7574                 is_dir_exist()
7575                 is_file_entry_exist()
7576                 dirent_is_regular_file()
7577                 dirent_is_directory(): use g_file_test() instead of stat().
7578
7579 2005-07-04 [paul]       1.9.12cvs16
7580
7581         sync with main:
7582
7583         * src/compose.c
7584                 compose_write_to_file(): check for line
7585                 length limit and display warning if exceeds
7586         * src/jpilot.c
7587                 use get_home_dir() instead of g_get_home_dir()
7588         * src/procheader.c
7589                 removed warning about invalid date
7590         * src/vcard.c
7591                 use get_home_dir() instead of g_get_home_dir()
7592
7593 2005-07-04 [paul]       1.9.12cvs15
7594
7595         * src/stock_pixmap.c
7596                 fix new pixmap naming errors
7597                 patch by Aleksandar Urosevic <urke.dd@urosevic.net>
7598
7599 2005-07-04 [colin]      1.9.12cvs14
7600
7601         * src/imap.c
7602                 Fix debugging string with a warning
7603
7604 2005-07-04 [colin]      1.9.12cvs13
7605
7606         * configure.ac
7607                 Add a check for libetpan's version (>= 0.37)
7608
7609 2005-07-04 [hoa]        1.9.12cvs12
7610
7611         * commitHelper
7612         * src/imap.c
7613         * src/etpan/imap-thread.c
7614         * src/etpan/imap-thread.h
7615                 fixed IMAP implementation of check of mails.
7616
7617 2005-07-03 [hoa]        1.9.12cvs11
7618
7619         * src/etpan/Makefile.am
7620         * src/etpan/etpan-errors.h
7621         * src/etpan/etpan-log.[ch]
7622         * src/etpan/etpan-thread-manager-types.h
7623         * src/etpan/etpan-thread-manager.[ch]
7624         * src/etpan/imap-thread.[ch]
7625         * src/Makefile.am
7626         * src/imap.c
7627         * src/main.c
7628         * src/prefs_other.c
7629         * configure.ac
7630             merged imap branch.
7631             dependency on libetpan 0.37 is now added.
7632
7633 2005-07-01 [colin]      1.9.12cvs10
7634
7635         * src/Makefile.am
7636         * src/folder.c
7637         * src/folder.h
7638         * src/folderview.c
7639         * src/stock_pixmap.c
7640         * src/stock_pixmap.h
7641         * src/plugins/trayicon/trayicon.c
7642                 Add marked symbol on folders containing
7643                 marked messages
7644         * src/procmsg.c
7645         * src/procmsg.h
7646         * src/toolbar.c
7647         * src/prefs_common.c
7648         * src/prefs_common.h
7649         * src/prefs_send.c
7650                 Add an optional confirmation dialog on queue
7651                 sending. Patch by wwp.
7652         * src/pixmaps/dir_close_mark.xpm        ** ADDED **
7653         * src/pixmaps/dir_open_hrm_mark.xpm     ** ADDED **
7654         * src/pixmaps/dir_open_mark.xpm         ** ADDED **
7655         * src/pixmaps/drafts_close_mark.xpm     ** ADDED **
7656         * src/pixmaps/drafts_open_mark.xpm      ** ADDED **
7657         * src/pixmaps/inbox_hrm_mark.xpm        ** ADDED **
7658         * src/pixmaps/inbox_mark.xpm            ** ADDED **
7659         * src/pixmaps/outbox_hrm_mark.xpm       ** ADDED **
7660         * src/pixmaps/outbox_mark.xpm           ** ADDED **
7661         * src/pixmaps/trash_hrm_mark.xpm        ** ADDED **
7662         * src/pixmaps/trash_mark.xpm            ** ADDED **
7663                 New pixmaps
7664
7665 2005-07-01 [colin]      1.9.12cvs9
7666
7667         * src/summaryview.c
7668                 Fix a little threading bug
7669         * src/addrgather.c
7670         * src/mainwindow.c
7671                 A little bit of HIG normality never hurts
7672
7673 2005-07-01 [colin]      1.9.12cvs8
7674
7675         * src/compose.c
7676         * src/msgcache.c
7677         * src/pop.c
7678         * src/procmime.c
7679         * src/recv.c
7680         * src/common/log.c
7681         * src/common/template.c
7682         * src/common/utils.c
7683         * src/common/utils.h
7684                 Reverted the fwrite_atomic stuff. In fact
7685                 it is already atomic.
7686
7687 2005-06-30 [colin]      1.9.12cvs7
7688
7689         * src/common/utils.c
7690         * src/common/utils.h
7691                 Add an fwrite_atomic() function to make
7692                 sure we write everything: fwrite can make
7693                 short writes.
7694         * src/compose.c
7695         * src/msgcache.c
7696         * src/pop.c
7697         * src/procmime.c
7698         * src/recv.c
7699         * src/common/log.c
7700         * src/common/template.c
7701                 Use that (and fix swapping of size and nmemb).
7702                 Thanks to Rich Coe for the heads up.
7703
7704 2005-06-30 [colin]      1.9.12cvs6
7705
7706         * src/addressbook.c
7707                 Optimize addressbook opening 
7708
7709 2005-06-30 [colin]      1.9.12cvs5
7710
7711         * src/summaryview.c
7712                 Remove calls to summary_step after move/copy
7713
7714 2005-06-28 [paul]       1.9.12cvs4
7715
7716         * src/alertpanel.c
7717                 wrap and make the error msg selectable
7718
7719 2005-06-28 [paul]       1.9.12cvs3
7720
7721         * src/ssl_manager.c
7722                 replace the OK button with a Close button
7723         * src/gtk/foldersort.c
7724                 use GTK_STOCK_ icons/buttons
7725
7726 2005-06-28 [colin]      1.9.12cvs2
7727
7728         * src/gedit-print.c             ** ADDED **
7729         * src/gedit-print.h             ** ADDED **
7730         * src/gtk/gtksourceprintjob.c   ** ADDED **
7731         * src/gtk/gtksourceprintjob.h   ** ADDED **
7732                 I can't believe no one had enough time to tell
7733                 me I forgot the `cvs add`
7734
7735 2005-06-27 [colin]      1.9.12cvs1
7736
7737         * src/Makefile.am
7738         * src/gtk/Makefile.am
7739         * src/messageview.c
7740         * src/procmsg.c
7741         * src/summaryview.c
7742         * configure.ac
7743                 Add optional libgnomeprint-based printing
7744         * src/mainwindow.c
7745         * src/gtk/quicksearch.c
7746                 Add an Edit/Quick search menu item to show
7747                 and focus the quicksearch
7748
7749 2005-06-27 [paul]       1.9.12
7750
7751         1.9.12 release
7752
7753         * po/ca.po
7754         * po/de.po
7755         * po/es.po
7756         * po/fr.po
7757         * po/it.po
7758         * po/ko.po
7759         * po/pt_BR.po
7760         * po/sk.po
7761         * po/zh_CN.po
7762                 updated by Miquel Oliete, Thomas Gilgin, Ricardo
7763                 Mones Lastra, Fabien Vantard, Andrea Spadaccini,
7764                 SungHyun Nam, Frederico Goncalves Guimaraes,
7765                 Andrej Kacian, and Yang Guilong
7766 2005-06-26 [colin]      1.9.11cvs106
7767
7768         * src/imap_gtk.c
7769                 Forgot one file for previous fix
7770
7771 2005-06-26 [colin]      1.9.11cvs105
7772
7773         * src/folder.c
7774         * src/imap.c
7775                 Fix problems with folder operations in no_select
7776                 imap folders. it applies only to mails, and 
7777                 creation/deletion/move/renaming of folders 
7778                 should be possible
7779
7780 2005-06-26 [paul]       1.9.11cvs104
7781
7782         * src/prefs_filtering.c
7783                 replace one more GTK_STOCK_REMOVE
7784                 with GTK_STOCK_DELETE
7785
7786 2005-06-25 [colin]      1.9.11cvs103
7787
7788         * src/imap.c
7789                 Optimize get_seq_set_from_seq_list
7790                 (Patch by Ricardo) 
7791
7792 2005-06-25 [colin]      1.9.11cvs102
7793
7794         * src/mh.c
7795                 If the directory exists, but not in the
7796                 correct encoding, rename it. This should
7797                 handle old-versions-induced bugs.
7798
7799 2005-06-25 [colin]      1.9.11cvs101
7800
7801         * src/mh.c
7802                 Fix path access with extended dir names
7803                 Fixes bug #589 (SC segfaults with wrong locale
7804                 settings)
7805
7806 2005-06-25 [colin]      1.9.11cvs100
7807
7808         * src/prefs_account.c
7809         * src/prefs_account.h
7810         * src/compose.c
7811                 Add an option to encrypt replies to
7812                 encrypted messages
7813
7814 2005-06-25 [colin]      1.9.11cvs99
7815
7816         * src/compose.c
7817         * src/quote_fmt_parse.y
7818                 ... And make it work with pgpinline.
7819
7820 2005-06-25 [colin]      1.9.11cvs98
7821
7822         * src/compose.c
7823         * src/procmime.c
7824         * src/procmime.h
7825         * src/quote_fmt_parse.y
7826                 o Make reedition of encrypted messages possible
7827                   (as long as it is encrypted to self too, no
7828                    magic there)
7829                 o Make replying with quote (and without selecting
7830                   text) possible for encrypted messages.
7831                 Closes bug #550 (Not possible to "reply with quote"
7832                 to gnupg encrypted messages)
7833
7834 2005-06-24 [paul]       1.9.11cvs97
7835
7836         * src/imap.c
7837                 add missing include
7838
7839 2005-06-24 [paul]       1.9.11cvs96
7840
7841         * src/editldap.c
7842                 made bind password entry invisible
7843                 (sync with main)
7844         * src/send_message.c
7845                 send_message_local(): check exit status
7846                 to detect errors (sync with main)
7847         * src/textview.c
7848                 use main's less ambiguous popup menu
7849                 wording
7850
7851 2005-06-24 [paul]       1.9.11cvs95
7852
7853         * src/prefs_actions.c
7854         * src/prefs_customheader.c
7855         * src/prefs_display_header.c
7856         * src/prefs_filtering_action.c
7857         * src/prefs_matcher.c
7858         * src/prefs_template.c
7859         * src/prefs_toolbar.c
7860                 replace GTK_STOCK_REMOVE with GTK_STOCK_DELETE
7861         * src/gtk/description_window.c
7862                 replace GTK_STOCK_OK with GTK_STOCK_CLOSE
7863
7864 2005-06-23 [colin]      1.9.11cvs94
7865
7866         * src/summaryview.c
7867                 Fix rough edges (be sure to call status_show whenever
7868                 necessary).
7869
7870 2005-06-23 [colin]      1.9.11cvs93
7871
7872         * src/summaryview.c
7873                 Optimize Select All
7874                 Before, in a 5K mails folder: 11s
7875                 After, in the same folder: 58000µs
7876                 The joys of locking... gtk_clist_select_all() fires a 
7877                 tree-select-row event for each selected row, which in 
7878                 summaryview, callbacks summary_selected which in turn,
7879                 calls summary_status_show, which walks the selected
7880                 rows. Hence, calling gtk_clist_select_all was 
7881                 exponential. Locking the summaryview makes 
7882                 summary_selected return early.
7883
7884 2005-06-23 [colin]      1.9.11cvs92
7885
7886         * src/imap.c
7887                 Move mutex at the important place to avoid
7888                 deadlocks
7889         * src/summaryview.c
7890                 Fix Del key deleting directly instead of
7891                 moving to trash
7892
7893 2005-06-22 [colin]      1.9.11cvs91
7894
7895         * src/plugins/spamassassin/libspamc.c
7896                 As we do spagetti code with assignations in multiple
7897                 places (see _message_read_raw where out = msg = raw),
7898                 let's be sure we don't free the same pointer twice.
7899                 Should fix bug #683 (Crash in libpam at 
7900                 message_cleanup).
7901
7902 2005-06-22 [colin]      1.9.11cvs90
7903
7904         * src/compose.c
7905         * src/messageview.c
7906         * src/toolbar.c
7907                 Make toolbar's delete use the move to trash stuff;
7908                 Add gtk_widget_realize to be sure pixmaps can get
7909                 created (that may fix an old worksforme bug which
7910                 I can't find back...)
7911
7912 2005-06-22 [colin]      1.9.11cvs89
7913
7914         * src/summaryview.c
7915         * src/summaryview.h
7916         * src/mainwindow.c
7917                 Rename "Message/Delete" to "Message/Move to trash"
7918                 Add "Message/Delete..." that directly destroys the
7919                 selected messages after asking for a confirmation.
7920
7921 2005-06-22 [colin]      1.9.11cvs88
7922
7923         * src/imap.c
7924                 o Fix compilation with non-gnu compiler (thanks Alex S Moore)
7925                 o Fix a deadlock (thanks Darko)
7926
7927 2005-06-22 [colin]      1.9.11cvs87
7928
7929         * src/gtk/foldersort.c
7930                 Add missing include for the i18n;
7931                 patch by Fabien Vantard
7932
7933 2005-06-21 [colin]      1.9.11cvs86
7934
7935         * src/folder.c
7936         * src/folderview.c
7937                 Respect the no_select flag
7938         * src/imap.c
7939                 Fix recursive deletion
7940         * src/imap_gtk.c
7941         * src/mh_gtk.c
7942                 Make the folder deletion's warning
7943                 more explicit
7944
7945 2005-06-21 [colin]      1.9.11cvs85
7946
7947         * src/textview.c
7948                 Prevent email addresses from spanning accross
7949                 lines - fixes bug # 646 (newline-chars in 
7950                 email addresses)
7951
7952 2005-06-20 [colin]      1.9.11cvs84
7953
7954         * src/folder.c
7955                 Be sure not to remove source if copy failed
7956
7957 2005-06-20 [colin]      1.9.11cvs83
7958
7959         * src/folderview.c
7960         * src/imap_gtk.c
7961                 remove summaryview's lock
7962         * src/imap.c
7963                 introduce threads to avoid problems when foreground tasks
7964                 interfere with background tasks
7965         * src/mh.c
7966                 prevent moving to drafts/queue
7967         * src/mimeview.c
7968                 fix leak
7969
7970 2005-06-19 [colin]      1.9.11cvs82
7971
7972         * src/imap_gtk.c
7973                 Remember that the user doesn't want to override
7974                 offline mode, for 3 seconds. It avoid presenting
7975                 him with N popups in a really short time.
7976
7977 2005-06-17 [colin]      1.9.11cvs81
7978
7979         * src/imap.c
7980                 Fix IMAP breaking on folders containing '('
7981                 (Probably won't be enough)
7982
7983 2005-06-17 [colin]      1.9.11cvs80
7984
7985         Forgotten files on 1.9.11cvs79
7986         * src/summaryview.c
7987                 Fix stepping when not immediately executing
7988         * src/imap.c
7989                 Really prevent UID FETCH 0
7990         * src/codeconv.c
7991                 Fix outgoing charset never set to utf-8
7992         * src/mh.c
7993                 Fix leak
7994
7995 2005-06-16 [colin]      1.9.11cvs79
7996
7997         * src/compose.c
7998                 Fix bug #707 (Dash splits rows)
7999                 Only wrap if we're on a line break position and
8000                 the previous one was a "white" (space) char.
8001                 Pango stuff is weird.
8002
8003 2005-06-16 [colin]      1.9.11cvs78
8004
8005         * src/imap_gtk.c
8006                 Lock summaryview while downloading messages
8007                 on user demand
8008         * src/procheader.c
8009         * src/unmime.c
8010         * src/common/utils.c
8011         * src/common/utils.h
8012                 Replace \r and \n with spaces in From and
8013                 Subject headers
8014
8015 2005-06-16 [paul]       1.9.11cvs77
8016
8017         * src/procmime.c
8018                 liberalise the mime parser
8019         * src/gtk/about.c
8020                 add text wrapping
8021
8022 2005-06-16 [paul]       1.9.11cvs76
8023
8024         * src/gtk/about.c
8025                 reworked
8026
8027 2005-06-15 [colin]      1.9.11cvs75
8028
8029         * src/compose.c
8030                 Finish header encoding fix
8031         * src/summaryview.c
8032                 Fix segfault
8033         * src/headerview.c
8034                 Fix compilation (Thanks Stephan
8035                 Sachse)
8036
8037 2005-06-15 [colin]      1.9.11cvs74
8038
8039         * Makefile.am
8040                 Install gnome2 stuff rather than gnome1, 
8041                 if both are present
8042         * src/codeconv.c
8043         * src/codeconv.h
8044         * src/compose.c
8045                 Fix headers encoding
8046         * src/folder.c
8047                 Visual progress when fetching all messages
8048         * src/folderview.c
8049         * src/summaryview.c
8050         * src/summaryview.h
8051                 Prevent changing current message while
8052                 incorporating
8053
8054 2005-06-15 [paul]       1.9.11cvs73
8055
8056         * src/gtk/gtkaspell.c
8057         * src/gtk/gtkaspell.h
8058                 fix build warnings
8059
8060 2005-06-15 [paul]       1.9.11cvs72
8061
8062         * src/prefs_filtering.c
8063                 allow reordering of filter rules by
8064                 drag n drop
8065
8066 2005-06-15 [paul]       1.9.11cvs71
8067
8068         * COPYING
8069                 updated
8070         * src/codeconv.c
8071                 replace deprecated function
8072         * src/inc.c
8073         * src/send_message.c
8074         * src/gtk/progressdialog.c
8075         * src/gtk/progressdialog.h
8076                 salvage and reuse parts of reverted sync
8077
8078 2005-06-15 [paul]       1.9.11cvs70
8079
8080         * src/inc.c
8081         * src/send_message.c
8082         * src/gtk/progressdialog.c
8083         * src/gtk/progressdialog.h
8084                 revert yesterday's sync with main
8085                 it contains deprecated functions
8086
8087 2005-06-15 [colin]      1.9.11cvs69
8088
8089         * src/headerview.c
8090                 Fix bug #670 (multi user to: will corrupt message 
8091                 headers display)
8092
8093 2005-06-15 [colin]      1.9.11cvs68
8094
8095         * src/compose.c
8096                 Fix bug #421 (Fix undo on wrapping)
8097
8098 2005-06-15 [colin]      1.9.11cvs67
8099
8100         * src/folder.c
8101                 Provide visual feedback while processing
8102                 folder's rules.
8103         * src/imap.c
8104                 Provide visual feedback while getting
8105                 short headers (for uncached messages)
8106
8107
8108 2005-06-14 [paul]       1.9.11cvs66
8109
8110         * src/account.c
8111                 change a couple stock icons
8112         * src/inc.c
8113         * src/send_message.c
8114         * src/gtk/progressdialog.c
8115         * src/gtk/progressdialog.h
8116                 sync main's GtkTreeView implementation
8117
8118 2005-06-14 [colin]      1.9.11cvs65
8119
8120         * src/imap.c
8121                 Various little fixes, mainly on error paths
8122
8123 2005-06-13 [colin]      1.9.11cvs64
8124
8125         * matcher.c
8126         * procmsg.c
8127         * procmsg.h
8128                 Add a way to fetch only headers. This speeds
8129                 up filtering on headers for IMAP. Fixes:
8130                 bug #481 extraneous imap commands slow down 
8131                         imap filtering
8132                 bug #522 Sylpheed downloads all messages 
8133                         when opening mailbox (IMAP)
8134                 bug #677 IMAP fetch is soooooooooooooo slow
8135         * src/folder.c
8136         * src/folder.h
8137                 Add a folder set_batch method so that
8138                 implementations can speed up flags changes
8139         * src/folderutils.c
8140         * src/summaryview.c
8141                 Use that in mark as (un)read and mark all read
8142                 Refix bug #679
8143         * src/imap.c
8144                 Implement set_batch - brings back deferred
8145                 flags in a less buggy manner. Fixes:
8146                 bug #729 IMAP immediate expunge of deleted messages
8147                 bug #191 remove list of messages with one command
8148                 Fix login with strange chars
8149                 Implement fetch_msg_full
8150                 Fix copy (wrong counts)
8151
8152 2005-06-12 [colin]      1.9.11cvs63
8153
8154         * src/folder.c
8155                 lock incorporation during long operations.
8156                 Avoids fucking up the IMAP socket.
8157
8158 2005-06-12 [colin]      1.9.11cvs62
8159
8160         * src/imap.c
8161                 Fix harmful typo
8162                 Factorize remove_all_msg
8163                 Thread-ize expunge
8164         * src/summaryview.c
8165                 Don't update partial-download status if unnecessary
8166         * src/folder.c
8167                 Use remove_msgs everywhere possible
8168
8169 2005-06-12 [colin]      1.9.11cvs61
8170
8171         * src/folder.c
8172         * src/folder.h
8173                 Add a remove_msgs function to remove a 
8174                 list of messages
8175         * src/imap.c
8176                 Implement that.
8177
8178 2005-06-12 [colin]      1.9.11cvs60
8179
8180         * src/imap.c
8181                 Remove flags-processing deferring... Too hard
8182                 to get it to work in all cases.
8183
8184 2005-06-11 [colin]      1.9.11cvs59
8185
8186         * src/imap.c
8187                 printf -> debug_print
8188
8189 2005-06-11 [colin]      1.9.11cvs58
8190
8191         * src/imap.c
8192                 o Fix build without USE_PTHREAD
8193                 o Factorize imap_open
8194                 o Alertpanel in case of impossible connection
8195                 o Alertpanel in case of impossible login
8196                 o Fix deferred flags processing to force a 
8197                   flush before adding some more flags to process,
8198                   but in another folder.
8199
8200 2005-06-10 [colin]      1.9.11cvs57
8201
8202         * src/imap.c
8203                 o Fix a format string error
8204                 o init ssl socket outside of the thread 
8205                   (it possibly invokes gtk calls)
8206         * src/procmime.c
8207                 o Put back the buffer to its necessary size
8208                 o Fix changing a file pointer without keeping
8209                   track of it (thanks Valgrind)
8210         * src/common/smtp.c
8211                 o Fix automatic STARTTLS if login should be done
8212                   and the server only allows it after starting TLS
8213         * src/gtk/gtkinputdialog.c
8214                 o Eat GDK_Return so that the combo popup doesn't 
8215                   appear when we press Enter to validate the combo
8216                   input dialog (as seen in the Open with... dialog)
8217
8218 2005-06-10 [colin]      1.9.11cvs56
8219
8220         * src/imap.c
8221                 o A bit less debug
8222                 o Fix a crash on deletion
8223                 o Threadize imap_select (it's called outside of 
8224                   threads)
8225                 o Defer treatment of DELETED flags
8226
8227
8228 2005-06-09 [colin]      1.9.11cvs55
8229
8230         * src/imap.c
8231                 Make sure we check imap_gtk_should_override(), which
8232                 potentially calls gtk stuff, before creating thread.
8233                 That way it should't be called via imap_get_session()
8234                 inside a thread.
8235
8236 2005-06-09 [colin]      1.9.11cvs54
8237
8238         * src/imap.c
8239                 o add a bit of status output
8240                 o remove some dead code
8241                 o threadize get_list_of_uids
8242                 o threadize imap_get_flags
8243                 o defer flag changing by 500ms so that they
8244                   can be batched
8245
8246
8247 2005-06-08 [colin]      1.9.11cvs53
8248
8249         * src/imap.c
8250                 Thread-ize imap_cmd_fetch
8251
8252 2005-06-08 [colin]      1.9.11cvs52
8253
8254         * src/main.c
8255                 Mmh, that broke POP3...
8256
8257 2005-06-08 [colin]      1.9.11cvs51
8258
8259         * src/main.c
8260                 Stabilize IMAP patch (thanks to Hoa)
8261
8262 2005-06-08 [colin]      1.9.11cvs50
8263
8264         * src/imap.c
8265                 Test patch to speed up imap. 
8266
8267 2005-06-08 [colin]      1.9.11cvs49
8268
8269         * src/imap_gtk.c
8270                 Warning fix
8271         * src/procmime.c
8272                 Apply patch from gentoo to use /usr/share/mime/globs if 
8273                 available, after un-breaking it
8274         * src/common/log.c
8275         * src/common/log.h
8276                 Use g_timeout for invoking hooks that possibly use gtk
8277                 calls. This should leave gtk calls in the main thread.
8278
8279 2005-06-08 [paul]       1.9.11cvs48
8280
8281         * src/codeconv.c
8282                 conv_get_outgoing_charset_str(): don't
8283                 use prefs_common setting
8284         * src/compose.c
8285         * src/compose.h
8286                 add /Options/Character encoding/... to
8287                 temporarily change the outgoing encoding
8288
8289         (belated sync with main)
8290
8291 2005-06-08 [paul]       1.9.11cvs47
8292
8293         * src/compose.c
8294                 correction to/completion of last
8295                 sync with main
8296
8297 2005-06-08 [paul]       1.9.11cvs46
8298
8299         sync with main:
8300         
8301         * src/codeconv.c
8302         * src/codeconv.h
8303                 always enabled Japanese auto-detection
8304                 if the first letters of locale string
8305                 is "ja"
8306         * src/compose.c
8307                 don't use "destroy" signal to destroy
8308                 Compose object (fix rare crashes on discard?)
8309         * src/mainwindow.c
8310         * src/messageview.c
8311         * src/prefs_send.c
8312                 added Hebrew encodings
8313         * src/sourcewindow.c
8314                 don't use "destroy" signal to destroy
8315                 objects
8316
8317 2005-06-07 [colin]      1.9.11cvs45
8318
8319         * src/summaryview.c
8320                 Add missing unlocks/locks
8321
8322 2005-06-07 [paul]       1.9.11cvs44
8323
8324         * src/summaryview.c
8325                 restore bug #749 fix
8326
8327 2005-06-06 [colin]      1.9.11cvs43
8328
8329         * src/summaryview.c
8330                 Fix selection bug when prefs_common.open_unread 
8331                 is FALSE
8332
8333 2005-06-06 [colin]      1.9.11cvs42
8334
8335         * src/common/md5.c
8336                 Fix a warning
8337         * src/summaryview.c
8338         * src/folderview.c
8339                 Factorize long operations beginning and end
8340                 (locking, freezing/thawing, cursor, ...)
8341                 Check selection->data member in selection-
8342                 related loops; this avoids dying an awful
8343                 death if the selection changes on us while
8344                 we're marking a whole IMAP folder unread, 
8345                 for example.
8346
8347 2005-06-06 [paul]       1.9.11cvs41
8348
8349         * src/textview.c
8350                 don't g_free() a static gchar buffer
8351
8352 2005-06-05 [colin]      1.9.11cvs40
8353
8354         * src/mainwindow.c
8355         * src/messageview.c
8356         * src/summaryview.c
8357                 Fix bug #749 (Show all headers should be
8358                 sticky as the GUI suggests)
8359
8360 2005-06-03 [paul]       1.9.11cvs39
8361
8362         * src/compose.c
8363                 don't allow editing of mail while sending.
8364                 patch by Colin
8365
8366 2005-06-03 [paul]       1.9.11cvs38
8367
8368         * src/folderview.c
8369                 add a freeze/thaw to speed up 'mark all read'
8370
8371 2005-06-03 [paul]       1.9.11cvs37
8372
8373         * src/prefs_message.c
8374                 reflect changes immediately
8375
8376 2005-06-02 [colin]      1.9.11cvs36
8377
8378         * po/POTFILES.in
8379                 Patch by Fabien Vantard.
8380
8381 2005-06-02 [colin]      1.9.11cvs35
8382
8383         * src/imap.c
8384                 Use a non-blocking imap_getline() if possible.
8385                 This should completely prevent the interface
8386                 from freezin on imap operations, although it
8387                 may do strange stuff in case of folder switching
8388                 while a big imap operation is taking place...
8389
8390                 In addition, fix a leak in the case thread
8391                 creation fails on connection.
8392
8393 2005-06-02 [colin]      1.9.11cvs34
8394
8395         * src/crash.c
8396         * src/prefs_common.h
8397                 Fix build (prefs_common_init() doesn't exist
8398                 anymore)
8399
8400 2005-06-02 [colin]      1.9.11cvs33
8401
8402         * src/prefs_account.c
8403                 Fix bug #245 (filtering rules broken when
8404                 renaming a remote account (imap4 or nntp)
8405
8406 2005-06-02 [colin]      1.9.11cvs32
8407
8408         * src/imap.c
8409                 Try to fix IMAP shortcomings: 
8410                 o Multithread imap_open()
8411                 o allow offline-mode overriding instead of
8412                   just returning NULL
8413         * src/imap_gtk.c
8414         * src/imap_gtk.h
8415                 Add a function to ask whether we want to
8416                 override offline-mode for 10 minutes (one-shot
8417                 asking was painful)
8418         * src/procheader.c
8419                 Fix segfault when imap parser isn't happy about
8420                 a missing {
8421
8422 2005-06-01 [colin]      1.9.11cvs31
8423
8424         * src/addrharvest.c
8425         * src/compose.c
8426         * src/mbox.c
8427         * src/mbox.h
8428         * src/mh.c
8429         * src/msgcache.c
8430         * src/send_message.c
8431         * src/setup.c
8432         * src/undo.c
8433         * src/common/hooks.c
8434         * src/common/prefs.c
8435         * src/common/template.c
8436         * src/common/utils.c
8437         * src/gtk/gtkutils.c
8438         * src/gtk/inputdialog.c
8439         * src/gtk/menu.c
8440         * src/gtk/pluginwindow.c
8441         * src/gtk/prefswindow.c
8442         * src/plugins/pgpmime/passphrase.c
8443         * src/plugins/pgpmime/prefs_gpg.c
8444                 More -Wall fixes
8445
8446         * src/common/Makefile.am
8447         * src/common/timing.h
8448                 Add basic timing code
8449
8450         * src/summaryview.c
8451                 Fix a bug with unread messages when 
8452                 re-sorting folders, and by the way
8453                 fix a big performance hit when 
8454                 re-sorting (10k mails: before 5s,
8455                 after .5s)
8456
8457         * src/prefs_compose_writing.c
8458         * src/prefs_compose_writing.h
8459         * src/prefs_message.c
8460         * src/prefs_message.h
8461         * src/prefs_other.c
8462         * src/prefs_other.h
8463         * src/prefs_quote.c
8464         * src/prefs_quote.h
8465         * src/prefs_receive.c
8466         * src/prefs_receive.h
8467         * src/prefs_send.c
8468         * src/prefs_send.h
8469         * src/prefs_summaries.c
8470         * src/prefs_summaries.h
8471                 Fix copyright banner
8472
8473 2005-06-01 [paul]       1.9.11cvs30
8474
8475         * po/fi.po
8476                 updated by Flammie Pirinen
8477         * src/procmime.c
8478                 fix 'Bad BASE64 content' output
8479
8480 2005-05-31 [colin]      1.9.11cvs29
8481
8482         * src/procmime.c
8483                 Oops, where did my hunk go.
8484
8485 2005-05-31 [colin]      1.9.11cvs28
8486
8487         * src/Makefile.am
8488         * src/account.c
8489         * src/action.c
8490         * src/addr_compl.c
8491         * src/addressbook.c
8492         * src/codeconv.c
8493         * src/compose.c
8494         * src/export.c
8495         * src/folder.c
8496         * src/folderview.c
8497         * src/image_viewer.c
8498         * src/main.c
8499         * src/mainwindow.c
8500         * src/messageview.c
8501         * src/mimeview.c
8502         * src/msgcache.c
8503         * src/prefs_account.c
8504         * src/prefs_actions.c
8505         * src/prefs_common.c
8506         * src/prefs_compose_writing.c
8507         * src/prefs_customheader.c
8508         * src/prefs_ext_prog.c
8509         * src/prefs_filtering.c
8510         * src/prefs_filtering_action.c
8511         * src/prefs_fonts.c
8512         * src/prefs_image_viewer.c
8513         * src/prefs_message.c
8514         * src/prefs_message.h
8515         * src/prefs_msg_colors.c
8516         * src/prefs_other.c
8517         * src/prefs_other.h
8518         * src/prefs_quote.c
8519         * src/prefs_receive.c
8520         * src/prefs_receive.h
8521         * src/prefs_send.c
8522         * src/prefs_send.h
8523         * src/prefs_spelling.c
8524         * src/prefs_summaries.c
8525         * src/prefs_summary_column.c
8526         * src/prefs_template.c
8527         * src/prefs_themes.c
8528         * src/prefs_toolbar.c
8529         * src/prefs_wrapping.c
8530         * src/procmime.c
8531         * src/procmsg.c
8532         * src/send_message.h
8533         * src/ssl_manager.c
8534         * src/summary_search.c
8535         * src/summaryview.c
8536         * src/textview.c
8537         * src/wizard.c
8538         * src/common/smtp.c
8539         * src/common/smtp.h
8540         * src/gtk/gtkutils.h
8541                 o Move the rest of Common prefs to new style
8542                 o Lots of -Wall warning fixes
8543                 o fix FIXME in cache memusage calculation
8544                 o Let return receipts be sent from any account
8545                 o Little cache optimisation (read)
8546                 o Fix bug #746 (don't treat commas as separators
8547                   when inside a quoted string)
8548
8549 2005-05-31 [paul]       1.9.11cvs27
8550
8551         * src/prefs_common.c
8552                 fix 'off-by-one' typo
8553
8554 2005-05-31 [paul]       1.9.11cvs26
8555
8556         * src/account.c
8557         * src/addr_compl.c
8558         * src/compose.c
8559         * src/foldersel.c
8560         * src/prefs_actions.c
8561         * src/prefs_common.c
8562         * src/prefs_common.h
8563         * src/prefs_customheader.c
8564         * src/prefs_display_header.c
8565         * src/prefs_filtering.c
8566         * src/prefs_filtering_action.c
8567         * src/prefs_matcher.c
8568         * src/prefs_summaries.c
8569         * src/prefs_summary_column.c
8570         * src/prefs_template.c
8571         * src/prefs_toolbar.c
8572         * src/ssl_manager.c
8573         * src/gtk/pluginwindow.c
8574         * src/gtk/prefswindow.c
8575         * src/gtk/progressdialog.c
8576                 add hidden prefs 'enable_rules_hint'
8577                 for gtk_tree_view_set_rules_hint()
8578                 (sync with main)
8579                 
8580
8581 2005-05-31 [colin]      1.9.11cvs25
8582
8583         * src/Makefile.am
8584         * src/main.c
8585         * src/prefs_common.c
8586         * src/prefs_summaries.c ** ADDED **
8587         * src/prefs_summaries.h ** ADDED **
8588                 Common/Display -> Display/Summaries
8589
8590 2005-05-31 [colin]      1.9.11cvs24
8591
8592         * src/Makefile.am
8593         * src/main.c
8594         * src/prefs_quote.c ** ADDED **
8595         * src/prefs_quote.h ** ADDED **
8596                 Move Common/Quote to Compose/Quoting
8597         * src/prefs_common.c
8598         * src/prefs_common.h
8599                 Remove old quote stuff, add
8600                 convenience functions for GtkTextView prefs
8601         * src/gtk/prefswindow.c
8602                 Set default height higher
8603
8604 2005-05-30 [colin]      1.9.11cvs23
8605
8606         * src/Makefile.am
8607         * src/main.c
8608         * src/prefs_common.c
8609         * src/prefs_compose_writing.c ** ADDED **
8610         * src/prefs_compose_writing.h ** ADDED **
8611                 Move Common/Compose prefs to Compose/Writing
8612
8613 2005-05-30 [colin]      1.9.11cvs22
8614
8615         * src/common/utils.c
8616                 Fix bug #651 (Confused Attract by Subject)
8617                 Patch by M. Benkmann <haferfrost@web.de>
8618         * AUTHORS
8619
8620 2005-05-30 [colin]      1.9.11cvs21
8621
8622         * src/compose.c
8623                 Fix concatenation of different headers of
8624                 the same type (bug #645)
8625         * src/prefs_folder_item.c
8626                 Fix bug #699 (setting color to black doesn't
8627                 work immediately)
8628         * src/procmime.c
8629                 Print out decoding error only once per
8630                 block
8631
8632 2005-05-30 [paul]       1.9.11cvs20
8633
8634         * src/common/template.c
8635                 fix Bcc
8636
8637 2005-05-30 [paul]       1.9.11cvs19
8638
8639         * doc/src/rfc2368.txt   **NEW FILE**
8640         * src/compose.c
8641                 compose_entries_set(): don't interpret Bcc
8642                 header field (conform to RFC 2368)
8643                 (sync with main)
8644
8645 2005-05-29 [colin]      1.9.11cvs18
8646
8647         * src/prefs_common.c
8648                 Let the default reply format respect
8649                 netiquette by cutting the signature.
8650
8651 2005-05-29 [colin]      1.9.11cvs17
8652
8653         * src/summaryview.c
8654                 Don't let always_show_msg override
8655                 open_unread_on_enter when opening a new
8656                 directory.
8657
8658 2005-05-27 [paul]       1.9.11cvs16
8659
8660         sync with main:
8661
8662         * src/main.c
8663                 app_will_exit(): cleanup tmp directory when exit
8664         * src/message_search.c
8665                 improved the interface and made code cleanup.
8666                 removed Clear button
8667         * src/send_message.c
8668                 send_message_local(): use GSpawn, and detect errors
8669         * src/summary_search.c
8670                 improved the interface and made code cleanup
8671         * src/textview.c
8672                 textview_write_link(): also skip non-ascii space
8673                  at the head of link strings (phishing check
8674                  didn't work at the case)
8675         * src/common/utils.c
8676                 get_command_output(): use g_spawn_command_line_sync()
8677                 instead of popen()
8678
8679 2005-05-26 [colin]      1.9.11cvs15
8680
8681         * src/folder.c
8682                 remove printf
8683
8684 2005-05-26 [colin]      1.9.11cvs14
8685
8686         * src/common/nntp.c
8687                 Fix nntp mode reader (bug #611)
8688                 Patch by Florian Mickler <florian@mickler.org>
8689
8690 2005-05-26 [colin]      1.9.11cvs13
8691
8692         * src/plugins/pgpmime/passphrase.c
8693                 Fix mouse grabbing (bug #557)
8694
8695 2005-05-26 [colin]      1.9.11cvs12
8696
8697         * src/prefs_themes.c
8698                 Fix g_warning (bug #541)
8699
8700 2005-05-26 [colin]      1.9.11cvs11
8701
8702         * src/prefs_actions.c
8703         * src/prefs_template.c
8704                 Fix bug #506 (no warning if action/template
8705                 is not saved)
8706         * src/common/template.c
8707                 Fix a possible crash
8708
8709 2005-05-26 [colin]      1.9.11cvs10
8710
8711         * src/folder.c
8712         * src/folderview.c
8713         * src/procmsg.c
8714         * src/summaryview.c
8715                 Forbid locked messages to be moved or
8716                 deleted. Locked messages in trashes 
8717                 still get deleted, for performance
8718                 reason (mh.c::mh_remove_all_msgs)
8719
8720 2005-05-25 [colin]      1.9.11cvs9
8721
8722         * src/procmime.c
8723                 Use correct encoding when sending mails
8724                 with attachments that have accentued 
8725                 chars in their name
8726
8727 2005-05-24 [colin]      1.9.11cvs8
8728
8729         * src/summaryview.c
8730                 Fix bug #688 f) read/unread marker not
8731                 changed on first click
8732                 Also, optimize summary_status_show()
8733                 calls
8734         * src/folder.c
8735         * src/inc.c
8736         * src/procmime.c
8737                 Fix bug #688 b) and c) wrt message
8738                 attachments and signature
8739         * src/stock_pixmap.c
8740         * src/stock_pixmap.h
8741         * src/stock_pixmap.c
8742         * src/stock_pixmap.h
8743         * src/Makefile.am
8744         * src/pixmaps/clip_gpg_signed.xpm
8745                 Add clip/signed icon
8746
8747 2005-05-24 [colin]      1.9.11cvs7
8748
8749         * src/folder_item_prefs.c
8750                 whitespace fix
8751
8752 2005-05-24 [colin]      1.9.11cvs6
8753
8754         * src/folderview.c
8755         * src/prefs_common.c
8756         * src/prefs_common.h
8757                 Add a confirmation to folder drag and drop
8758                 fixes bug #156
8759         * src/alertpanel.c
8760         * src/alertpanel.h
8761                 fix _with_disable parameters so that
8762                 the buttons labels are specifiable too
8763         * src/plugins/pgpmime/sgpgme.c
8764                 reflect said change
8765                 
8766
8767 2005-05-24 [colin]      1.9.11cvs5
8768
8769         * src/folderview.c
8770                 Uncollapse/collapse folders on double-click
8771                 patch by Torsten Schoenfeld <kaffeetisch@gmx.de>
8772                 closes bug #108
8773
8774 2005-05-23 [colin]      1.9.11cvs4
8775
8776         * src/common/socket.c
8777                 Check another special SSL_peek() error.
8778                 Should help wrt bug #728
8779
8780 2005-05-23 [colin]      1.9.11cvs3
8781
8782         * src/plugins/pgpmime/pgpmime.c
8783                 Change name to "PGP MIME" instead of "PGP/MIME" to avoid
8784                 breaking menu accelerators and stuff. Users will have to
8785                 reselect "PGP MIME" instead of "PGP/MIME" in their 
8786                 account's privacy preferences if needed.
8787
8788 2005-05-22 [paul]
8789
8790         * tools/kdeservicemenu/install.sh
8791                 use kdesu to prompt for root password if doing
8792                 global install/uninstall
8793
8794 2005-05-20 [colin]      1.9.11cvs2
8795
8796         * src/procmsg.c
8797                 Fix another compilation error with gcc-2.9x
8798                 Thanks to Pawel Pekala <c0rn@gazeta.pl>
8799         * src/send_message.c
8800                 Don't send QUIT if we aren't connected
8801
8802 2005-05-19 [colin]      1.9.11cvs1
8803
8804         * src/procmsg.c
8805                 Fix compilation with gcc 2.9x
8806
8807 2005-05-19 [paul]       1.9.11
8808
8809         1.9.11 released
8810
8811 2005-05-19 [paul]       1.9.9cvs14
8812
8813         * src/gtk/inputdialog.c
8814                 prevent gettext warning
8815
8816 2005-05-19 [paul]       1.9.9cvs13
8817
8818         * src/mainwindow.c
8819         * src/prefs_common.c
8820         * src/prefs_common.h
8821         * src/textview.c
8822         * src/textview.h
8823                 add an option to toggle cursor in message
8824                 view (sync with main)
8825
8826 2005-05-18 [colin]      1.9.9cvs12
8827
8828         * src/compose.c
8829                 Dereference freed pointer
8830         * src/gtk/gtkaspell.c
8831                 Fix duplication of dictionaries (is it an aspell issue?)
8832
8833 2005-05-18 [colin]      1.9.9cvs11
8834
8835         * src/gtk/inputdialog.c
8836         * src/gtk/gtkaspell.c
8837                 HIGuify dialogs
8838         * src/alertpanel.c
8839                 Remove a double call
8840
8841 2005-05-17 [colin]      1.9.9cvs10
8842
8843         * src/gtk/gtkaspell.c
8844                 Fix dialogs, Ctrl-Enter accel
8845
8846 2005-05-17 [colin]      1.9.9cvs9
8847
8848         * src/gtk/gtkaspell.c
8849                 Fix some accelerators, escape in replace-window
8850
8851 2005-05-16 [colin]      1.9.9cvs8
8852
8853         * src/gtk/gtkaspell.c
8854                 Revert last commit, it was a mistake.
8855
8856 2005-05-16 [colin]      1.9.9cvs7
8857
8858         * src/gtk/gtkaspell.c
8859                 Remove buggy code while we're at it. It's a 
8860                 dead code path anyway.
8861
8862 2005-05-16 [colin]      1.9.9cvs6
8863
8864         * src/gtk/gtkaspell.c
8865                 Missed some gtk_menu_popup where deactivate
8866                 signal should be handled. Should fix bug
8867                 #629 a bit more.
8868
8869 2005-05-16 [colin]      1.9.9cvs5
8870
8871         * src/gtk/gtkaspell.c
8872                 Remove debug printf()s
8873
8874 2005-05-16 [colin]      1.9.9cvs4
8875
8876         * src/gtk/gtkaspell.c
8877                 Fix a bit aspell problems
8878                 (see bug #629)
8879
8880 2005-05-13 [colin]      1.9.9cvs3
8881
8882         * src/folderview.c
8883                 Fix the + appearing even when no subfolders
8884                 have unread messages. Thanks to wwp for the
8885                 bug report.
8886
8887 2005-05-11 [paul]       1.9.9cvs2
8888
8889         * src/folderview.c
8890                 correction to 1.9.9cvs1, only colour folders that
8891                 have new msgs (not unread msgs)
8892
8893 2005-05-10 [colin]      1.9.9cvs1
8894
8895         * src/folderview.c
8896         * src/summaryview.c
8897                 Try to fix bolding bugs again.
8898
8899 2005-05-09 [paul]
8900
8901         * tools/claws.i18n.status.pl
8902                 add Ricardo Mones Lastra's script that has been providing
8903                 the i18n status page for many months
8904
8905 2005-05-09 [paul]       1.9.9
8906
8907         1.9.9 release
8908
8909 2005-05-09 [paul]       1.9.6cvs58
8910
8911         * AUTHORS
8912         * INSTALL
8913         * README.claws
8914                 updated
8915         * Makefile.am 
8916         * RELEASE_NOTES.claws
8917                 add release notes to cvs to simplify release
8918                 procedure
8919         * configure.ac
8920                 add ca and fi to ALL_LINGUAS
8921         * po/Makefile.in.in
8922                 workaround for missing Makevars
8923         * po/ca.po
8924         * po/fi.po
8925                 add new Catalan and Finnish translations
8926                 submitted by Miquel Oliete and Flammie Pirinen
8927         * po/de.po
8928         * po/es.po
8929         * po/fr.po
8930         * po/it.po
8931         * po/pl.po
8932         * po/ru.po
8933         * po/sk.po
8934         * po/sr.po
8935         * po/zh_CN.po
8936                 updated by Thomas Gilgin, Ricardo Mones Lastra, Fabien Vantard,
8937                 Andrea Spadaccini, Emilian Nowak, Pavlo Bohmat, Andrej Kacian,
8938                 Urke MMI, and Hansom Young
8939         * src/main.c
8940                 Fix drafting when quitting. compose_draft() closes the
8941                 compose windows, which modifies the compose_list GSList.
8942                 We have to refresh this list after echo drafting to avoid a
8943                 segfault
8944         * src/partial_download.c
8945                 fix segfault on exit
8946
8947 2005-05-06 [paul]       1.9.6cvs57
8948
8949         * src/grouplistdialog.c
8950                 quick fix/workaround for unresizeable newsgroup
8951                 name column 
8952
8953 2005-05-06 [paul]       1.9.6cvs56
8954
8955         * src/inc.c
8956         * src/mainwindow.c
8957                 use gettext plural forms
8958         * src/imap_gtk.c
8959         * src/mh_gtk.c
8960         * src/toolbar.c
8961                 small improvement to english usage
8962
8963 2005-05-05 [thorsten]   1.9.6cvs55
8964
8965         * src/folder.c
8966                 fix possible crash
8967
8968 2005-05-05 [paul]       1.9.6cvs54
8969         
8970         sync with HEAD
8971
8972         * AUTHORS
8973         * src/compose.c
8974                 fix bug 713 'Resent-To and Resent-Cc headers are garbled'
8975                 patch by Tim Mann
8976
8977 2005-05-05 [paul]       1.9.6cvs53
8978
8979         * src/mainwindow.c
8980                 fix resizing of separate message and
8981                 folder views
8982
8983 2005-05-05 [paul]       1.9.6cvs52
8984
8985         * src/account.c
8986         * src/addrgather.c
8987         * src/browseldap.c
8988         * src/exphtmldlg.c
8989         * src/expldifdlg.c
8990         * src/importmutt.c
8991         * src/importpine.c
8992         * src/main.c
8993         * src/mainwindow.c
8994         * src/noticeview.c
8995         * src/prefs_filtering.c
8996         * src/prefs_filtering_action.c
8997         * src/prefs_matcher.c
8998         * src/prefs_spelling.c
8999         * src/prefs_toolbar.c
9000         * src/toolbar.c
9001         * src/wizard.c
9002         * src/gtk/description_window.c
9003         * src/gtk/gtkvscrollbutton.c
9004         * src/gtk/progressdialog.c
9005         * src/gtk/quicksearch.c
9006         * src/plugins/pgpmime/prefs_gpg.c
9007         * src/plugins/spamassassin/spamassassin_gtk.c
9008                 replace deprecated gtk_widget_set_usize
9009
9010 2005-05-04 [colin]      1.9.6cvs51
9011
9012         * src/common/utils.c
9013                 Fix crash when subst_for_filename is called
9014                 with a NULL parameter
9015
9016 2005-05-04 [colin]      1.9.6cvs50
9017
9018         * src/partial_download.c
9019         * src/pop.c
9020                 Escape login when writing uidl file
9021                 fixes bug #736
9022
9023 2005-05-03 [colin]      1.9.6cvs49
9024
9025         * src/procmime.c
9026                 Fix possible DOS in mime parser
9027                 (see bug #634)
9028
9029 2005-05-02 [colin]      1.9.6cvs48
9030
9031         * src/compose.c
9032                 Try to fix the copy/paste mess once again.
9033
9034
9035 2005-04-30 [colin]      1.9.6cvs47
9036
9037         * src/prefs_account.h
9038         * src/procmsg.c
9039         * src/send_message.c
9040         * src/common/smtp.c
9041         * src/common/smtp.h
9042                 Try to batch sending mails (per account) instead of
9043                 reconnecting to server every time.
9044
9045 2005-04-29 [colin]      1.9.6cvs46
9046
9047         * src/messageview.c
9048                 Fix window resizing that refused to size down
9049         * src/prefs_common.c
9050         * src/prefs_common.h
9051         * src/prefs_filtering.c
9052                 Save Filtering's window size
9053
9054 2005-04-21 [paul]       1.9.6cvs45
9055
9056         * ChangeLog-gtk2.claws
9057         * src/setup.c
9058                 correction to sync
9059
9060 2005-04-21 [paul]       1.9.6cvs44
9061
9062         sync with main:
9063
9064         * src/setup.c
9065         * src/statusbar.c
9066         * src/statusbar.h
9067                 use gtkut_widget_draw_now(). Improved performance
9068                 of the update of statusbar
9069         * src/textview.c
9070                 textview_smooth_scroll_do(): redraw it after scroll
9071                 is done (fixed incorrect display when a part of the
9072                 view is hidden).
9073         * src/gtk/gtkutils.c
9074         * src/gtk/gtkutils.h
9075                 gtkut_widget_draw_now(): use gdk_window_process_updates()
9076                 to force update of widgets.
9077                 Removed gtkut_widget_wait_for_draw() which had a big
9078                 overhead  because of waiting for all events processed 
9079
9080 2005-04-20 [paul]       1.9.6cvs43
9081
9082         * src/codeconv.c
9083                 complete 1.9.6cvs42's sync:
9084                 Fallback to GBK if "X-GBK" is passed (thanks to SuperMMX)
9085
9086 2005-04-19 [paul]       1.9.6cvs42
9087
9088         sync with main:
9089
9090         * src/action.c
9091                 catch_output(): correctly select the insert text
9092                 (fix invalid iterator warnings).
9093         * src/codeconv.c
9094         * src/codeconv.h
9095         * src/mainwindow.c
9096         * src/messageview.c
9097         * src/prefs_common.c
9098                 support GBK encoding.
9099         * src/common/session.c
9100         * src/common/session.h
9101                 use separate buffer for large data to be sent,
9102                 and don't duplicate it (reduces memory usage) (thanks to Dirk).
9103
9104 2005-04-18 [paul]       1.9.6cvs41
9105
9106         * src/jpilot.c
9107                 convert unsigned long into guint32
9108                 patch by Paul LeoNerd Evans 
9109
9110 2005-04-17 [colin]      1.9.6cvs40
9111
9112         * src/compose.c
9113                 Fix 'Request return receipt' from folder
9114                 properties (bug #708)
9115
9116 2005-04-17 [colin]      1.9.6cvs39
9117
9118         * src/mainwindow.c
9119                 Fix duplicate hotkeys in Mainwindow's menu
9120
9121 2005-04-17 [colin]      1.9.6cvs38
9122
9123         * src/folderview.c
9124                 Fix duplicate hotkeys in Folderview's contextual
9125                 menu
9126
9127 2005-04-15 [colin]      1.9.6cvs37
9128
9129         * src/summaryview.c
9130                 Fix 'Save as...' with non-ascii filenames
9131
9132 2005-04-15 [colin]      1.9.6cvs36
9133
9134         * src/plugins/pgpmime/pgpmime.c
9135                 Fix bus error on 64bit. Spotted by 
9136                 macallan1888@gmail.com
9137
9138 2005-04-15 [colin]      1.9.6cvs35
9139
9140         * src/prefs_account.c
9141                 Fix cvs34.
9142
9143 2005-04-12 [colin]      1.9.6cvs34
9144
9145         * src/prefs_account.c
9146                 Fix smtp auth type off-by-one. We forgot to
9147                 add PLAIN in the prefs-to-gui setter func and
9148                 as a result, the selected auth when opening
9149                 account prefs was not the correct one.
9150
9151 2005-04-12 [paul]       1.9.6cvs33
9152
9153         * src/inc.c
9154                 if the recv dialog is visible, Cancel only
9155                 cancels the current account
9156
9157
9158 2005-04-10 [colin]      1.9.6cvs32
9159
9160         * src/filtering.c
9161                 Copy score when copying FilteringActions
9162                 Fix bug #674
9163
9164 2005-04-10 [colin]      1.9.6cvs31
9165
9166         * src/inc.c
9167                 Make Message -> Receive -> Cancel cancel 
9168                 incorporation on all accounts. Fixes
9169                 bug #693
9170
9171 2005-04-10 [colin]      1.9.6cvs30
9172
9173         * src/prefs_account.c
9174                 Update Privacy checkbuttons status based
9175                 on the selected privacy system
9176         * src/compose.c
9177                 Always connect the "None" privacy system; the
9178                 static boolean was probably there to avoid
9179                 reconnecting twice in the same compose window,
9180                 but as the parent function is only called once
9181                 per compose, it's only a bug - as a static is
9182                 initialized once per application instance.
9183                 Also, don't uncheck Sign and Encrypt when
9184                 selecting None as privacy system; just ignore
9185                 them when sending/queuing.
9186                 Should fix bug #695
9187
9188 2005-04-08 [colin]      1.9.6cvs29
9189
9190         * src/account.c
9191         * src/prefs_account.c
9192         * src/prefs_account.h
9193                 Add account preference to queue message in a certain
9194                 folder.
9195
9196 2005-04-06 [colin]      1.9.6cvs28
9197
9198         * src/prefs_account.c
9199                 Update old inbox path syntax
9200
9201 2005-04-06 [paul]       1.9.6cvs27
9202
9203         sync with main:
9204
9205         * configure.ac
9206                 changed -traditional-cpp to -no-cpp-precomp for newer
9207                 Mac OS X support
9208         * src/foldersel.c
9209                 made column resize automatically
9210         * src/send_message.c
9211                 send_message_smtp(): consider EOF right after QUIT
9212                 successful (workaround for Gmail SMTP server)
9213         * src/common/socket.c
9214                 ssl_read(), ssl_peek(): check EOF which violates the
9215                 SSL protocol
9216         * src/gtk/colorlabel.c
9217                 removed warnings when displaying colorlabel menu
9218                 (don't use GtkAlignment)
9219
9220 2005-04-05 [paul]       1.9.6cvs26
9221
9222         * src/plugins/trayicon/trayicon.c
9223                 fix clipping of icon under KDE3 
9224
9225 2005-04-05 [paul]       1.9.6cvs25
9226
9227         * src/summaryview.c
9228                 hide display of threading
9229                 patch by Alfons
9230
9231 2005-04-04 [thorsten]   1.9.6cvs24
9232
9233         * src/mh.c
9234                 marks lost on filesystems with different stat() results on
9235                 summer-/wintertime
9236
9237 2005-04-03 [colin]      1.9.6cvs23
9238
9239         * src/summaryview.c
9240                 Don't handle up/down. Patch by Alfons
9241
9242 2005-04-02 [colin]      1.9.6cvs22
9243
9244         * src/summaryview.c
9245                 Make scrolling faster. Patch by Alfons.
9246
9247 2005-04-01 [colin]      1.9.6cvs21
9248
9249         * src/Makefile.am
9250         * src/stock_pixmap.c
9251         * src/pixmaps/dir-noselect.xpm ** REMOVED **
9252         * src/pixmaps/dir_noselect.xpm ** ADDED **
9253                 Fix pixmap name mismatch (Thanks Stephan Sachse)
9254
9255 2005-04-01 [colin]      1.9.6cvs20
9256
9257         * src/image_viewer.c
9258         * src/image_viewer.h
9259         * src/procmime.c
9260         * src/procmime.h
9261         * src/textview.c
9262         * src/textview.h
9263                 Implement inline image resizing and right-clicking
9264
9265 2005-04-01 [paul]       1.9.6cvs19
9266
9267         * AUTHORS
9268         * Makefile.am
9269         * configure.ac
9270                 check for gnome2
9271                 patch by Luca Cavalli <loopback<AT>slackit.org>
9272         * po/ru.po
9273                 updated by Pavlo Bohmat
9274
9275 2005-03-31 [colin]      1.9.6cvs18
9276
9277         * src/news.c
9278                 Fix parsing references
9279         * src/msgcache.c
9280                 don't put nulls in the references list
9281         * src/procheader.c
9282                 commit that forgotten file in 1.9.6cvs14
9283
9284 2005-03-31 [colin]      1.9.6cvs17
9285
9286         * src/compose.c
9287                 Fix joining of signature separator again. 
9288                 Maybe Hiro could put it in main too...
9289
9290 2005-03-31 [colin]      1.9.6cvs16
9291
9292         * src/Makefile.am
9293         * src/foldersel.c
9294         * src/stock_pixmap.c
9295         * src/stock_pixmap.h
9296         * src/pixmaps/dir-noselect.xpm
9297                 Update foldersel.c (sync from main, patch by Alfons)
9298
9299 2005-03-30 [colin]      1.9.6cvs15
9300
9301         * src/imap.c
9302                 Fix handling of imap folders containing [] in 
9303                 their name. Thanks to Nahuel Angelinetti for
9304                 the detailed bugreport.
9305
9306 2005-03-30 [colin]      1.9.6cvs14
9307
9308         * src/common/utils.h
9309         * src/common/utils.c
9310         * src/common/defs.h
9311         * src/matcher.c
9312         * src/msgcache.c
9313         * src/news.c
9314         * src/procmsg.c
9315         * src/procmsg.h
9316         * src/quote_fmt_parse.y
9317         * src/summaryview.c
9318                 Update references system. Patch by Alfons
9319
9320 2005-03-30 [colin]      1.9.6cvs13
9321
9322         * src/common/socket.c
9323                 Force the glibc to read resolv.conf again when 
9324                 it has changed. Should fix issues when changing
9325                 networks on a laptop and not restarting sylpheed. 
9326
9327 2005-03-30 [paul]       1.9.6cvs12
9328
9329         partial sync with main:
9330
9331         * src/action.c
9332                 create_io_dialog(): use user-defined text font
9333                 (thanks to Alfons), and modified its appearance.
9334         * src/addrgather.c
9335         * src/addrharvest.c
9336         * src/browseldap.c
9337                 replace old code
9338         * src/compose.c
9339                 don't join (presumably) itemized lines on line-wrapping
9340                 fixed wrapping of quote when auto-wrapping is enabled
9341                 compose_destroy(): destroy paned only if it's not
9342                 attached to window. Fixed memory leak of popup menu.
9343         * src/exphtmldlg.c
9344         * src/expldifdlg.c
9345                 replace old code
9346         * src/html.c
9347         * src/html.h
9348         * src/importmutt.c
9349         * src/importpine.c
9350                 replace old code
9351         * src/main.c
9352                 removed redundant code
9353         * src/mainwindow.c
9354                 changed 'Code set' (which is rather incorrect)
9355                 in the menu to 'Character encoding'
9356                 main_window_set_widgets(): request size first
9357                 to prevent window size becoming wrong
9358                 fixed remembering of the state of the visibility
9359                 of MessageView
9360         * src/messageview.c
9361                 changed 'Code set' (which is rather incorrect)
9362                 in the menu to 'Character encoding'
9363         * src/prefs_common.c
9364         * src/prefs_common.h
9365                 added an option whether to render HTML as text or not
9366                 added separators to outgoing encoding menu
9367         * src/procheader.c
9368                 procheader_scan_date_string(): support header
9369                 like: "[Tue,] 01 Feb 2005 09:57[:00]"
9370         * src/summaryview.c
9371         * src/summaryview.h
9372                 minor code cleanup
9373         * src/textview.c
9374                 textview_show_html(): force output of newline
9375                 added an option whether to render HTML as text or not
9376         * src/common/utils.c
9377                 strncpy2(): optimized based on Alfons' code
9378         * src/gtk/gtkutils.c
9379         * src/gtk/gtkutils.h
9380                 removed non-used code
9381         * src/plugins/pgpmime/passphrase.c
9382                 partially fixed grab input of passphrase dialog
9383                 Confine pointer to window
9384
9385 2005-03-30 [colin]      1.9.6cvs11
9386
9387         * src/msgcache.c
9388         * src/msgcache.h
9389                 Read/write 32bit ints from cache & marks
9390                 From main.
9391
9392 2005-03-29 [paul]       1.9.6cvs10
9393
9394         * AUTHORS
9395         * ChangeLog.claws
9396         * src/compose.c
9397         * src/gtk/gtkaspell.c
9398                 sync with HEAD (don't pass NULL pointers) 
9399
9400 2005-03-24 [paul]
9401
9402         * tools/Makefile.am
9403         * tools/README
9404         * tools/acroread2sylpheed.pl
9405                 sync with HEAD (add script to send pdfs as
9406                 attachments from Adobe Reader 7)
9407
9408 2005-03-21 [paul]       1.9.6cvs9
9409
9410         * configure.ac
9411         * po/POTFILES.in
9412         * src/Makefile.am
9413         * src/crash.c
9414         * src/image_viewer.c ** ADDED **
9415         * src/image_viewer.h ** ADDED **
9416         * src/main.c
9417         * src/prefs_common.c
9418         * src/prefs_common.h
9419         * src/prefs_image_viewer.c ** ADDED **
9420         * src/prefs_image_viewer.h ** ADDED **
9421         * src/textview.c
9422         * src/gtk/about.c
9423         * src/pixmaps/sylpheed_logo.xpm
9424         * src/plugins/Makefile.am
9425         * src/plugins/image_viewer/.cvsignore ** REMOVED **
9426         * src/plugins/image_viewer/Makefile.am ** REMOVED **
9427         * src/plugins/image_viewer/plugin.c ** REMOVED **
9428         * src/plugins/image_viewer/viewer.c ** REMOVED **
9429         * src/plugins/image_viewer/viewer.glade ** REMOVED **
9430         * src/plugins/image_viewer/viewer.h ** REMOVED ** 
9431         * src/plugins/image_viewer/viewerprefs.c ** REMOVED **
9432         * src/plugins/image_viewer/viewerprefs.glade ** REMOVED **
9433         * src/plugins/image_viewer/viewerprefs.h ** REMOVED **
9434                 as gdk-pixbuf is now built-in
9435                 remove image_viewer plugin and put code back into
9436                 main codebase
9437                 implement inline image display (sync with main)
9438
9439                 replace logo with newer, nicer, larger version  
9440
9441 2005-03-21 [paul]       1.9.6cvs8
9442
9443         * src/gtk/about.c
9444                 cosmetic improvement
9445
9446 2005-03-21 [holger]     1.9.6cvs7
9447
9448         * src/plugins/spamassassin/spamassassin.c
9449                 Sync with HEAD
9450                 (unregister hook on failed plugin init)
9451
9452 2005-03-20 [colin]      1.9.6cvs6
9453
9454         * src/common/plugin.c
9455                 Check that plugin isn't already loaded
9456                 Patch by Alfons
9457
9458 2005-03-20 [thorsten]   1.9.6cvs5
9459
9460         * src/compose.c
9461                 use a more compatible syntax
9462
9463 2005-03-20 [thorsten]   1.9.6cvs4
9464
9465         * src/prefs_toolbar.c
9466                 fix crash when selecting toolbar item (uninitialized pointer)
9467
9468 2005-03-20 [thorsten]   1.9.6cvs3
9469
9470         * src/procmime.c
9471                 fix mimetype detection (referenced free()d string)
9472
9473 2005-03-20 [paul]       1.9.6cvs2
9474
9475         * src/compose.c
9476                 sync with HEAD (1.0.3cvs5)
9477                 neglect Reply-To header if empty
9478                 Patch by Alfons 
9479
9480 2005-03-19 [holger]     1.9.6cvs1
9481
9482         * src/summaryview.c
9483         * src/summaryview.h
9484                 Sync with HEAD
9485
9486 2005-03-18 [paul]       1.9.6
9487
9488         initial GTK2 release
9489
9490 2005-03-18 [paul]       1.0.3cvs3.1
9491
9492         * AUTHORS
9493         * ChangeLog.claws
9494         * configure.ac
9495         * src/gtk/about.c
9496         * src/pixmaps/sylpheed_logo.xpm
9497                 sync with HEAD
9498
9499 2005-03-18 [colin]      1.0.3cvs2.6
9500
9501         * src/summaryview.c
9502                 Remove call to summary_step in summary_copy_selected_to
9503                 Can't see its purpose, and this causes bug when copying
9504                 a message if the next one is unread: it reads it.
9505
9506 2005-03-18 [paul]       1.0.3cvs2.5
9507
9508         * src/foldersel.c
9509                 fix bug 694 'Enter doesn't trigger OK in "Move" window'
9510
9511 2005-03-18 [paul]       1.0.3cvs2.4
9512
9513         * src/addrharvest.c
9514         * src/codeconv.c
9515         * src/codeconv.h
9516         * src/compose.c
9517         * src/news.c
9518         * src/procheader.c
9519         * src/procmime.c
9520         * src/unmime.c
9521         * src/unmime.h
9522                 fix buffer overflow, CAN-2005-0667, see
9523                 http://secunia.com/advisories/14491/
9524                 Patch by Alfons
9525
9526 2005-03-17 [colin]      1.0.3cvs2.3
9527
9528         * src/prefs_fonts.c
9529         * src/summaryview.c
9530                 Fix font bugs (both lists now officialy share 
9531                 the same font)
9532                 
9533
9534 2005-03-17 [paul]       1.0.3cvs2.2
9535
9536         * src/gtk/pluginwindow.c
9537                 make plugin descriptions uneditable
9538
9539 2005-03-11 [paul]       1.0.3cvs2.1
9540
9541         * ChangeLog.claws
9542         * configure.ac
9543         * po/POTFILES.in
9544         * src/plugins/trayicon/trayicon.c
9545                 sync with HEAD
9546                 add src/wizard.c to POTFILES.in
9547
9548 2005-03-11 [paul]       1.0.3cvs1.1
9549
9550         * ChangeLog
9551         * ChangeLog.claws
9552         * configure.ac
9553         * po/de.po
9554         * po/es.po
9555         * po/fr.po
9556         * po/it.po
9557         * po/pt_BR.po
9558         * po/ru.po
9559         * po/sk.po
9560         * po/sr.po
9561         * po/zh_CN.po
9562                 sync with HEAD
9563
9564 2005-03-04 [colin]      1.0.1cvs22.2
9565
9566         * src/compose.c
9567                 Fix signatures with accentued chars in it
9568
9569 2005-03-04 [colin]      1.0.1cvs22.1
9570
9571         * src/common/smtp.c
9572         * src/common/smtp.h
9573                 Don't use SIZE param in MAIL FROM: if server 
9574                 doesn't support it. Patch by Eugen Freiter
9575                 <eugen_f@users.sf.net>
9576
9577 2005-02-27 [paul]       1.0.1cvs20.1
9578
9579         * ChangeLog.claws
9580         * configure.ac
9581         * src/messageview.c
9582                 sync with HEAD
9583
9584 2005-02-27 [colin]      1.0.1cvs19.4
9585
9586         * src/procheader.c
9587         * src/procheader.h
9588                 Fix prototypes. Patch by Alfons
9589
9590 2005-02-27 [colin]      1.0.1cvs19.3
9591
9592         * src/compose.c
9593                 Don't auto-join the signature separator.
9594
9595 2005-02-26 [colin]      1.0.1cvs19.2
9596
9597         * src/summaryview.c
9598                 Fix 'mark all read' with collapsed threads.
9599                 Patch by Alfons.
9600
9601 2005-02-25 [paul]       1.0.1cvs19.1
9602
9603         * ChangeLog.claws
9604         * configure.ac
9605         * src/prefs_account.c
9606         * src/prefs_folder_item.c
9607         * src/gtk/prefswindow.c
9608         * src/gtk/prefswindow.h
9609                 sync with HEAD
9610
9611 2005-02-25 [paul]       1.0.1cvs15.12
9612
9613         * src/alertpanel.c
9614         * src/codeconv.c
9615         * src/compose.c
9616         * src/textview.c
9617         * src/gtk/gtkutils.c
9618         * src/gtk/gtkutils.h
9619         * src/gtk/logwindow.c
9620         * src/gtk/progressdialog.c
9621                 sync with main (revision 127)
9622                 and fix logwindow clipping
9623
9624 2005-02-24 [colin]      1.0.1cvs15.11
9625
9626         * src/plugins/pgpmime/passphrase.c
9627                 Disable input grabbing; it doesn't work yet.
9628
9629 2005-02-24 [colin]      1.0.1cvs15.10
9630
9631         * src/messageview.c
9632                 Don't send out receipts if offline. Ask.
9633
9634 2005-02-23 [colin]      1.0.1cvs15.9
9635
9636         * src/summaryview.c     
9637                 Fix expanding
9638
9639 2005-02-23 [colin]      1.0.1cvs15.8
9640
9641         * src/summaryview.c
9642                 Really fix Bug 568 by removing useless
9643                 calls. summary_thread_init() now called
9644                 in summary_sort(). This should please
9645                 Alfons as it should be faster than 
9646                 previously.
9647
9648 2005-02-23 [colin]      1.0.1cvs15.7
9649
9650         * src/compose.c
9651                 Encode parts as QP or B64 if signing
9652
9653 2005-02-23 [colin]      1.0.1cvs15.6
9654
9655         * src/compose.c
9656                 Fix Mimeinfo leakage (including tmp files)
9657         * src/procmsg.c
9658                 Fix tmp file leakage (spotted by Ivan Rayner)
9659
9660 2005-02-22 [colin]      1.0.1cvs15.5
9661
9662         * src/expldifdlg.c
9663                 Fix keyboard input. Patch by Alfons.
9664
9665 2005-02-21 [colin]      1.0.1cvs15.4
9666
9667         * src/compose.c
9668                 Fix Sign/Encrypt when unselecting privacy
9669                 system
9670         * src/prefs_common.c
9671                 Change default message font to Monospace
9672         * src/summaryview.c
9673                 More freezing during potentially large operations
9674
9675 2005-02-21 [paul]       1.0.1cvs15.3
9676
9677         * src/main.c
9678                 fix --help output
9679
9680 2005-02-21 [paul]       1.0.1cvs15.2
9681
9682         * po/Makefile.in.in
9683         * src/compose.c
9684         * src/summaryview.c
9685         * src/textview.c
9686         * src/common/utils.c
9687         * src/common/utils.h
9688                 sync with main (revision 117)
9689
9690 2005-02-20 [colin]      1.0.1cvs15.1
9691
9692         * src/common/defs.h
9693                 Change cache file to .sylpheed_claws_cache, as
9694                 suggested by Alfons. Allows people to switch
9695                 between Sylpheed and Sylpheed-Claws. it is
9696                 a good idea to "Check for new messages" at next
9697                 startup.
9698
9699
9700 2005-02-18 [colin]      1.0.1cvs14.1
9701
9702         * src/quote_fmt_lex.l
9703         * src/quote_fmt_parse.y
9704                 Fix parser initialisation. Patch by Ivan.
9705
9706 2005-02-18 [colin]      1.0.1cvs11.6
9707
9708         * src/folderview.c
9709                 Fix scrolldown (bug 662)
9710
9711 2005-02-17 [colin]      1.0.1cvs11.5
9712
9713         * src/codeconv.c
9714                 conv_filename_to_utf8: return clean 7bit instead
9715                 of broken utf8 if needed
9716         * src/mimeview.c
9717                 Fix display of parts with unclean 8bit names
9718
9719 2005-02-17 [paul]       1.0.1cvs11.4
9720
9721         * src/compose.c
9722         * src/exportldif.c
9723         * src/matcher_parser_parse.y
9724         * src/procmime.c
9725         * src/sourcewindow.c
9726         * src/common/Makefile.am
9727         * src/common/intl.h             ** REMOVED **
9728         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
9729                 sync with main (revision 109)
9730                 and clean up
9731
9732 2005-02-16 [colin]      1.0.1cvs11.3
9733
9734         * src/summaryview.c
9735                 Fix collapsed thread not highlighting when new
9736                 messages in it (Bug 568) Patch by Stephan Sachse.
9737                 Fix messed up selection when reaching bounds (Bug 632)
9738         * src/prefs_themes.c
9739                 Fix theme installing (Bug 684)
9740
9741 2005-02-16 [colin]      1.0.1cvs11.2
9742
9743         * src/messageview.c
9744                 Fix messageview_select_all
9745
9746 2005-02-16 [colin]      1.0.1cvs11.1
9747
9748         * src/mh.c
9749                 Sync with HEAD (MH scan required function)
9750
9751 2005-02-15 [colin]      1.0.1cvs8.1
9752
9753         * src/mimeview.c
9754         * src/common/utils.c
9755                 Sync with HEAD (filename chars substitution)
9756
9757 2005-02-15 [colin]      1.0.1cvs7.3
9758
9759         * src/gtk/pluginwindow.c
9760                 Fix button spacing
9761
9762 2005-02-15 [colin]      1.0.1cvs7.2
9763
9764         * src/mimeview.c
9765                 Fix mime icons not reset across message when
9766                 scrolled down
9767
9768 2005-02-15 [colin]      1.0.1cvs7.1
9769
9770         * src/compose.c
9771         * src/procmime.c
9772                 Sync with HEAD (optimisation of cvs6)
9773
9774 2005-02-14 [colin]      1.0.1cvs6.1
9775
9776         * src/compose.c
9777         * src/procmime.c
9778                 Sync with HEAD (encode "From " at line beginning)
9779
9780 2005-02-14 [colin]      1.0.1cvs5.3
9781
9782         * src/compose.c
9783                 Fix wrapping with accentued chars.
9784
9785 2005-02-13 [colin]      1.0.1cvs5.2
9786
9787         * src/textview.c
9788                 Fix email informative part parsing with
9789                 accentued chars in it. ispunct() returns
9790                 true for them in utf8...
9791
9792 2005-02-12 [colin]      1.0.1cvs5.1
9793
9794         * src/filtering.c
9795                 Sync with HEAD (remove wrong use of compose after send)
9796
9797 2005-02-12 [paul]       1.0.1cvs4.5
9798
9799         * src/textview.c
9800                 remove unnecessary code (thanks to Alfons)
9801
9802 2005-02-12 [paul]       1.0.1cvs4.4
9803
9804         * src/textview.c
9805                 add 'Copy' to contextual menu on emails
9806
9807 2005-02-11 [colin]      1.0.1cvs4.3
9808
9809         * src/compose.c
9810                 revert 1.0.0cvs28.2, it doesn't work that well.
9811
9812 2005-02-11 [paul]       1.0.1cvs4.2
9813
9814         * po/Makefile.in.in
9815                 fix 'make release'
9816
9817 2005-02-10 [paul]       1.0.1cvs4.1
9818
9819         * ChangeLog
9820         * ChangeLog.claws
9821         * ChangeLog.jp
9822         * configure.ac
9823         * src/compose.c
9824                 sync with HEAD (sync with main)
9825
9826 2005-02-10 [paul]       1.0.1cvs3.2
9827
9828         * AUTHORS
9829         * Makefile.am
9830         * autogen.sh
9831         * configure.ac
9832         * config/mkinstalldirs
9833         * intl/.cvsignore
9834         * intl/ChangeLog
9835         * intl/VERSION
9836         * intl/bindtextdom.c
9837         * intl/config.charset
9838         * intl/dcgettext.c
9839         * intl/dcigettext.c
9840         * intl/dcngettext.c
9841         * intl/dgettext.c
9842         * intl/dngettext.c
9843         * intl/eval-plural.h
9844         * intl/explodename.c
9845         * intl/finddomain.c
9846         * intl/gettext.c
9847         * intl/gettextP.h
9848         * intl/gmo.h
9849         * intl/hash-string.h
9850         * intl/intl-compat.c
9851         * intl/l10nflist.c
9852         * intl/libgnuintl.h.in
9853         * intl/loadinfo.h
9854         * intl/loadmsgcat.c
9855         * intl/localcharset.c
9856         * intl/localcharset.h
9857         * intl/locale.alias
9858         * intl/localealias.c
9859         * intl/localename.c
9860         * intl/log.c
9861         * intl/ngettext.c
9862         * intl/os2compat.c
9863         * intl/os2compat.h
9864         * intl/osdep.c
9865         * intl/plural-exp.c
9866         * intl/plural-exp.h
9867         * intl/plural.c
9868         * intl/plural.y
9869         * intl/ref-add.sin
9870         * intl/ref-del.sin
9871         * intl/relocatable.c
9872         * intl/relocatable.h
9873         * intl/textdomain.c
9874         * m4/Makefile.am
9875         * po/Makefile.in.in
9876         * src/Makefile.am
9877         * src/account.c
9878         * src/action.c
9879         * src/addr_compl.c
9880         * src/addressadd.c
9881         * src/addressbook.c
9882         * src/addrgather.c
9883         * src/addrindex.c
9884         * src/alertpanel.c
9885         * src/browseldap.c
9886         * src/codeconv.c
9887         * src/codeconv.h
9888         * src/compose.c
9889         * src/compose.h
9890         * src/crash.c
9891         * src/editaddress.c
9892         * src/editbook.c
9893         * src/editgroup.c
9894         * src/editjpilot.c
9895         * src/editldap.c
9896         * src/editldap_basedn.c
9897         * src/editvcard.c
9898         * src/exphtmldlg.c
9899         * src/expldifdlg.c
9900         * src/export.c
9901         * src/exporthtml.c
9902         * src/filtering.c
9903         * src/folder.c
9904         * src/folder_item_prefs.c
9905         * src/foldersel.c
9906         * src/folderview.c
9907         * src/grouplistdialog.c
9908         * src/headerview.c
9909         * src/imap.c
9910         * src/imap_gtk.c
9911         * src/import.c
9912         * src/importldif.c
9913         * src/importmutt.c
9914         * src/importpine.c
9915         * src/inc.c
9916         * src/ldif.c
9917         * src/main.c
9918         * src/mainwindow.c
9919         * src/matcher.c
9920         * src/mbox.c
9921         * src/message_search.c
9922         * src/messageview.c
9923         * src/mh.c
9924         * src/mh_gtk.c
9925         * src/mimeview.c
9926         * src/msgcache.c
9927         * src/news.c
9928         * src/news_gtk.c
9929         * src/noticeview.c
9930         * src/partial_download.c
9931         * src/pop.c
9932         * src/prefs_account.c
9933         * src/prefs_actions.c
9934         * src/prefs_common.c
9935         * src/prefs_customheader.c
9936         * src/prefs_display_header.c
9937         * src/prefs_ext_prog.c
9938         * src/prefs_filtering.c
9939         * src/prefs_filtering_action.c
9940         * src/prefs_folder_item.c
9941         * src/prefs_fonts.c
9942         * src/prefs_gtk.c
9943         * src/prefs_matcher.c
9944         * src/prefs_msg_colors.c
9945         * src/prefs_spelling.c
9946         * src/prefs_summary_column.c
9947         * src/prefs_template.c
9948         * src/prefs_themes.c
9949         * src/prefs_toolbar.c
9950         * src/prefs_wrapping.c
9951         * src/privacy.c
9952         * src/procheader.c
9953         * src/procmime.c
9954         * src/procmsg.c
9955         * src/quote_fmt.c
9956         * src/recv.c
9957         * src/send_message.c
9958         * src/setup.c
9959         * src/sourcewindow.c
9960         * src/ssl_manager.c
9961         * src/statusbar.c
9962         * src/summary_search.c
9963         * src/summaryview.c
9964         * src/textview.c
9965         * src/toolbar.c
9966         * src/wizard.c
9967         * src/common/nntp.c
9968         * src/common/plugin.c
9969         * src/common/smtp.c
9970         * src/common/ssl.c
9971         * src/common/ssl_certificate.c
9972         * src/common/string_match.c
9973         * src/common/sylpheed.c
9974         * src/common/template.c
9975         * src/common/utils.c
9976         * src/gtk/about.c
9977         * src/gtk/colorlabel.c
9978         * src/gtk/description_window.c
9979         * src/gtk/filesel.c
9980         * src/gtk/foldersort.c
9981         * src/gtk/gtkaspell.c
9982         * src/gtk/gtkutils.c
9983         * src/gtk/inputdialog.c
9984         * src/gtk/logwindow.c
9985         * src/gtk/menu.c
9986         * src/gtk/pluginwindow.c
9987         * src/gtk/prefswindow.c
9988         * src/gtk/progressdialog.c
9989         * src/gtk/quicksearch.c
9990         * src/gtk/sslcertwindow.c
9991         * src/plugins/clamav/clamav_plugin.c
9992         * src/plugins/clamav/clamav_plugin_gtk.c
9993         * src/plugins/demo/demo.c
9994         * src/plugins/dillo_viewer/dillo_prefs.c
9995         * src/plugins/dillo_viewer/dillo_viewer.c
9996         * src/plugins/image_viewer/plugin.c
9997         * src/plugins/image_viewer/viewer.c
9998         * src/plugins/image_viewer/viewerprefs.c
9999         * src/plugins/mathml_viewer/mathml_viewer.c
10000         * src/plugins/pgpmime/passphrase.c
10001         * src/plugins/pgpmime/plugin.c
10002         * src/plugins/pgpmime/prefs_gpg.c
10003         * src/plugins/pgpmime/select-keys.c
10004         * src/plugins/pgpmime/sgpgme.c
10005         * src/plugins/spamassassin/spamassassin.c
10006         * src/plugins/spamassassin/spamassassin_gtk.c
10007         * src/plugins/trayicon/trayicon.c
10008                 sync with main (revision 104)
10009
10010 2005-02-10 [colin]      1.0.1cvs3.1
10011
10012         * src/mainwindow.c
10013                 Sync with HEAD (fix occasional crasher)
10014
10015 2005-02-10 [colin]      1.0.1cvs2.1
10016
10017         * src/messageview.c
10018                 Synw with HEAD (don't automatically display html)
10019
10020 2005-02-09 [colin]      1.0.1cvs1.3
10021
10022         * src/textview.c
10023         * src/textview.h
10024                 Add contextual menu on emails
10025
10026 2005-02-09 [colin]      1.0.1cvs1.2
10027
10028         * src/codeconv.c
10029                 Fix converting from broken headers and 
10030                 put back the _ in missing places
10031                 (feature broke with cvs24.2 sync, main 
10032                  possibly affected?)
10033
10034 2005-02-09 [colin]      1.0.1cvs1.1
10035
10036         * src/messageview.c
10037         * src/mimeview.c
10038         * src/mimeview.h
10039                 Sync with HEAD (display non text/plain mails with plugin)
10040
10041 2005-02-08 [colin]      1.0.1.1
10042
10043         * ChangeLog.claws
10044         * po/pt_BR.po
10045                 Sync with HEAD
10046         * configure.ac
10047                 Make default configuration directory 
10048                 be .sylpheed-gtk2
10049
10050 2005-02-08 [colin]      1.0.0cvs29.1
10051
10052         * po/de.po
10053         * po/es.po
10054         * po/fr.po
10055         * po/it.po
10056         * po/sk.po
10057         * po/sr.po
10058                 Sync translations with HEAD
10059
10060 2005-02-06 [colin]      1.0.0cvs28.3
10061
10062         * src/compose.c
10063                 Make compose a bit faster - patch by Alfons.
10064
10065 2005-02-06 [colin]      1.0.0cvs28.2
10066
10067         * src/compose.c
10068                 Make pasting via middle-click more reliable
10069
10070 2005-02-05 [paul]       1.0.0cvs28.1
10071
10072         * ChangeLog
10073         * ChangeLog.claws
10074         * ChangeLog.jp
10075         * configure.ac
10076         * src/compose.c
10077                 sync with HEAD
10078                 (fix bug 682 'redirect is broken'
10079
10080 2005-02-05 [torte]      1.0.0cvs27.1
10081
10082         * ChangeLog.claws
10083         * configure.ac
10084         * src/partial_download.c
10085                 Sync with HEAD (fix buf overflow)
10086
10087 2005-02-03 [colin]      1.0.0cvs26.1
10088
10089         * src/common/plugin.c
10090                 Sync with HEAD (avoid plugin mismatches)
10091
10092 2005-02-03 [paul]       1.0.0cvs25.3
10093
10094         * src/folderview.c
10095         * src/headerview.c
10096         * src/summaryview.c
10097         * src/textview.c
10098         * src/gtk/colorlabel.c
10099                 third and final part of initial sync with main-gtk2
10100
10101 2005-02-03 [paul]       1.0.0cvs25.2
10102
10103         * src/jpilot.c
10104                 fix building with jpilot support
10105
10106 2005-02-02 [colin]      1.0.0cvs25.1
10107
10108         * src/messageview.c
10109                 Sync with HEAD (fix dangerous typo)
10110
10111 2005-02-01 [colin]      1.0.0cvs24.3
10112
10113         * src/common/xml.c
10114                 Write file as advertised (UTF-8)
10115
10116 2005-02-01 [paul]       1.0.0cvs24.2
10117
10118         * src/addrbook.c
10119         * src/addrindex.c
10120         * src/alertpanel.h
10121         * src/codeconv.c
10122         * src/codeconv.h
10123         * src/compose.c
10124         * src/export.c
10125         * src/folder_item_prefs.c
10126         * src/html.c
10127         * src/imap.c
10128         * src/import.c
10129         * src/jpilot.c
10130         * src/mainwindow.c
10131         * src/matcher_parser_lex.l
10132         * src/messageview.c
10133         * src/mh.c
10134         * src/prefs_account.c
10135         * src/prefs_actions.c
10136         * src/prefs_common.c
10137         * src/prefs_gtk.c
10138         * src/prefs_gtk.h
10139         * src/prefs_themes.c
10140         * src/procheader.c
10141         * src/procmime.c
10142         * src/sourcewindow.c
10143         * src/statusbar.c
10144         * src/summaryview.c
10145         * src/textview.c
10146         * src/toolbar.c
10147         * src/unmime.c
10148         * src/common/template.c
10149         * src/common/utils.c
10150         * src/common/xml.c
10151         * src/common/xml.h
10152         * src/gtk/gtkaspell.c
10153         * src/plugins/clamav/clamav_plugin.c
10154         * src/plugins/dillo_viewer/dillo_prefs.c
10155         * src/plugins/image_viewer/viewerprefs.c
10156         * src/plugins/pgpmime/passphrase.c
10157         * src/plugins/pgpmime/prefs_gpg.c
10158         * src/plugins/pgpmime/select-keys.c
10159         * src/plugins/spamassassin/spamassassin.c
10160                 second part of initial sync with main-gtk2
10161                 (more to follow)
10162
10163 2005-01-31 [colin]      1.0.0cvs24.1
10164
10165         * src/compose.c
10166                 Sync with HEAD
10167
10168 2005-01-29 [paul]       1.0.0cvs23.2
10169
10170         * src/account.c
10171         * src/action.c
10172         * src/addressadd.c
10173         * src/addressbook.c
10174         * src/alertpanel.c
10175         * src/compose.c
10176         * src/editaddress.c
10177         * src/editbook.c
10178         * src/editgroup.c
10179         * src/editjpilot.c
10180         * src/editldap.c
10181         * src/editldap_basedn.c
10182         * src/editvcard.c
10183         * src/export.c
10184         * src/foldersel.c
10185         * src/grouplistdialog.c
10186         * src/import.c
10187         * src/importldif.c
10188         * src/inc.c
10189         * src/main.c
10190         * src/mainwindow.c
10191         * src/message_search.c
10192         * src/messageview.c
10193         * src/mimeview.c
10194         * src/prefs_actions.c
10195         * src/prefs_common.c
10196         * src/prefs_common.h
10197         * src/prefs_customheader.c
10198         * src/prefs_display_header.c
10199         * src/prefs_filtering.c
10200         * src/prefs_filtering_action.c
10201         * src/prefs_gtk.c
10202         * src/prefs_matcher.c
10203         * src/prefs_summary_column.c
10204         * src/prefs_template.c
10205         * src/sourcewindow.c
10206         * src/summary_search.c
10207         * src/summaryview.c
10208         * src/textview.c
10209         * src/gtk/about.c
10210         * src/gtk/description_window.c
10211         * src/gtk/gtkshruler.c
10212         * src/gtk/gtkutils.c
10213         * src/gtk/gtkutils.h
10214         * src/gtk/inputdialog.c
10215         * src/gtk/logwindow.c
10216         * src/gtk/prefswindow.c
10217         * src/gtk/progressdialog.c
10218         * src/gtk/progressdialog.h
10219                 first part of initial sync with main-gtk2
10220                 (more to follow)
10221
10222 2005-01-28 [colin]      1.0.0cvs23.1
10223
10224         * src/folderview.c
10225                 Sync with HEAD
10226
10227 2005-01-27 [colin]      1.0.0cvs21.1
10228
10229         * src/folder.c
10230         * src/folderview.c
10231                 Sync with HEAD
10232
10233 2005-01-27 [colin]      1.0.0cvs19.1
10234
10235         * src/procmime.c
10236                 Sync with HEAD
10237
10238 2005-01-27 [colin]      1.0.0cvs18.1
10239
10240         * src/messageview.c
10241         * src/summaryview.c
10242         * src/mainwindow.c
10243         * src/compose.c
10244         * src/compose.h
10245         * src/procmsg.c
10246         * src/procmsg.h
10247         * src/toolbar.c
10248                 Sync with HEAD
10249
10250 2005-01-26 [paul]       1.0.0cvs15.2
10251
10252         * src/compose.c
10253                 compose_entries_set(): convert subject and body to
10254                 utf8 if necessary. patch by Felix Eckhofer
10255
10256 2005-01-26 [paul]       1.0.0cvs15.1
10257
10258         * configure.ac
10259         * src/common/template.c
10260                 sync with HEAD (fix memory leak)
10261
10262 2005-01-25 [paul]       1.0.0cvs14.1
10263
10264         * configure.ac
10265         * src/compose.c
10266                 sync with HEAD
10267
10268 2005-01-24 [colin]      1.0.0cvs13.1
10269
10270         * src/summaryview.c
10271                 Sync with HEAD
10272
10273 2005-01-24 [paul]       1.0.0cvs12.1
10274
10275         * configure.ac
10276         * src/messageview.c
10277         * src/mh.c
10278         * src/common/utils.c
10279                 sync with HEAD
10280
10281 2005-01-24 [colin]      1.0.0cvs11.1
10282
10283         * src/procheader.c
10284                 Sync with HEAD
10285
10286 2005-01-24 [colin]      1.0.0cvs10.1
10287
10288         * src/folderview.c
10289                 Sync with HEAD
10290
10291 2005-01-23 [colin]      1.0.0cvs9.1
10292
10293         * src/crash.c
10294                 Sync with HEAD
10295
10296 2005-01-22 [colin]      1.0.0cvs8.1
10297
10298         * src/summaryview.c
10299         * src/gtk/quicksearch.c
10300                 Sync with HEAD
10301
10302 2005-01-21 [colin]      1.0.0cvs7.1
10303
10304         * src/summaryview.c
10305                 Sync with HEAD
10306
10307 2005-01-21 [colin]      1.0.0cvs6.1
10308
10309         * src/summaryview.c
10310                 Sync with HEAD
10311
10312 2005-01-21 [colin]      1.0.0cvs5.1
10313
10314         * src/gtk/quicksearch.c
10315         * src/prefs_common.c
10316         * src/prefs_common.h
10317                 Sync with HEAD (recurse option)
10318
10319 2005-01-21 [colin]      1.0.0cvs4.1
10320
10321         * src/folder.h
10322         * src/folderview.c
10323         * src/folderview.h
10324         * src/summaryview.c
10325         * src/gtk/quicksearch.c
10326         * src/gtk/quicksearch.h
10327                 Sync with HEAD (recursive quicksearch)
10328
10329 2005-01-20 [colin]      1.0.0cvs3.4
10330
10331         * src/ssl_manager.c
10332                 Remove useless code
10333
10334 2005-01-20 [colin]      1.0.0cvs3.3
10335
10336         * src/ssl_manager.c
10337                 Fix leak, thanks to Alfons.
10338
10339 2005-01-20 [colin]      1.0.0cvs3.2
10340
10341         * src/ssl_manager.c
10342                 Port SSL certificate window to GTK2.
10343
10344 2005-01-20 [paul]       1.0.0cvs3.1
10345
10346         * ChangeLog.claws
10347         * configure.ac
10348         * src/addrindex.c
10349         * src/addrindex.h
10350                 sync with HEAD
10351
10352 2005-01-19 [colin]      1.0.0cvs2.2
10353
10354         * src/plugins/trayicon/trayicon.c
10355                 Fix freeze with gtk-2.6, the easy way
10356                 (signal blocking helpless there...)
10357                 Closes bug #668.
10358
10359 2005-01-19 [colin]      1.0.0cvs2.1
10360
10361         * src/mbox.c
10362         * src/mbox.h
10363         * src/mainwindow.c
10364         * src/summaryview.c
10365         * src/summaryview.h
10366                 Sync with HEAD
10367
10368 2005-01-19 [paul]       1.0.0cvs1.1
10369
10370         * configure.ac
10371         * po/de.po
10372         * po/es.po
10373         * po/fr.po
10374         * po/hr.po
10375         * po/it.po
10376         * po/ja.po
10377         * po/ko.po
10378         * po/pt_BR.po
10379         * po/ru.po
10380         * po/sk.po
10381         * po/sr.po
10382                 sync with HEAD (update translations)
10383
10384 2005-01-18 [colin]      1.0.0cvs0.1
10385
10386         * src/foldersel.c
10387                 Specify search column - patch by Alfons
10388
10389 2005-01-18 [colin]      0.9.13cvs36.3
10390
10391         * src/prefs_toolbar.c
10392                 Change Delete to Remove
10393         * src/prefs_fonts.c
10394                 GTK2 version and leak fixes
10395         * src/prefs_actions.c
10396                 Add stock buttons.
10397                 All patches by Alfons
10398
10399 2005-01-17 [colin]      0.9.13cvs36.2
10400
10401         * src/compose.c
10402                 Fix DnD inserting twice. While at it,
10403                 add DnD support for text/plain in the
10404                 body, and add support in the headers.
10405
10406 2005-01-16 [colin]      0.9.13cvs36.1
10407
10408         * ChangeLog
10409         * ChangeLog.jp
10410         * ChangeLog.claws
10411                 Sync with HEAD (nothing applicable)
10412
10413 2005-01-16 [colin]      0.9.13cvs33.2
10414
10415         * src/prefs_toolbar.c
10416                 GTK2ize prefs_toolbar, by Alfons.
10417
10418 2005-01-14 [colin]      0.9.13cvs33.1
10419
10420         * src/html.c
10421         * src/msgcache.c
10422                 Sync with HEAD
10423
10424 2005-01-14 [colin]      0.9.13cvs32.1
10425
10426         * src/html.c
10427         * src/html.h
10428         * src/msgcache.c
10429         * AUTHORS
10430         * tools/calypso_convert.pl
10431                 Sync with HEAD
10432
10433 2005-01-08 [colin]      0.9.13cvs29.2
10434
10435         * src/prefs_filtering_action.c
10436         * src/prefs_filtering.c
10437                 2 more gtk2 patches by Alfons
10438
10439 2005-01-07 [paul]       0.9.13cvs29.1
10440
10441         * ChangeLog
10442         * ChangeLog.claws
10443         * ChangeLog.jp
10444         * configure.ac
10445         * src/pop.c
10446         * src/pop.h
10447                 sync with HEAD
10448
10449 2005-01-07 [colin]      0.9.13cvs28.3
10450
10451         * src/gtk/progressdialog.c
10452         * src/gtk/progressdialog.h
10453         * src/inc.c
10454         * src/send_message.c
10455                 GTK2 for the incorporation dialog. The CList isn't dead
10456                 yet, for a more smooth migration. Patch by Alfons.
10457
10458 2005-01-06 [colin]      0.9.13cvs28.2
10459
10460         * src/prefs_display_header.c
10461                 GTK2 conversion by Alfons
10462         * src/prefs_actions.c
10463         * src/prefs_matcher.c
10464                 Fix 2 leaks - patch by Alfons
10465
10466 2005-01-06 [colin]      0.9.13cvs28.1
10467
10468         * src/prefs_matcher.c
10469                 Sync with HEAD
10470
10471 2005-01-06 [colin]      0.9.13cvs27.4
10472
10473         * src/prefs_matcher.c
10474                 Fix double-free. Patch by Alfons
10475
10476 2005-01-06 [colin]      0.9.13cvs27.3
10477
10478         * src/prefs_matcher.c
10479                 GTK2 widgets + memleak
10480                 Patch by Alfons
10481
10482 2005-01-05 [colin]      0.9.13cvs27.2
10483
10484         * src/account.c
10485         * src/addr_compl.c
10486         * src/foldersel.c
10487         * src/stock_pixmap.c
10488         * src/stock_pixmap.h
10489                 3 more GTK2 patches by Alfons.
10490
10491 2005-01-04 [colin]      0.9.13cvs27.1
10492
10493         * src/folderview.c
10494         * src/imap_gtk.c
10495         * src/news_gtk.c
10496                 Sync with HEAD
10497
10498 2005-01-04 [colin]      0.9.13cvs25.9
10499
10500         * src/compose.c
10501                 Fix Show Ruler menuitem
10502         * src/prefs_template.c
10503                 Convert to GTK2
10504         * src/common/utils.c
10505                 Make auto pointer stuff handles NULLs
10506                 Patches by Alfons.
10507
10508 2005-01-04 [colin]      0.9.13cvs25.8
10509
10510         * src/compose.c
10511                 Move the attachment list to gtk2
10512                 Patch by Alfons.
10513
10514 2005-01-04 [colin]      0.9.13cvs25.7
10515
10516         * src/textview.c
10517                 Make some keys work again
10518                 Patch by SungHyun Nam <namsh@kldp.org>
10519
10520 2005-01-04 [colin]      0.9.13cvs25.6
10521
10522         * src/gtk/gtkshruler.c
10523                 Move the ruler to GTK2
10524                 Patch by Alfons
10525
10526 2005-01-03 [colin]      0.9.13cvs25.5
10527
10528         * src/compose.c
10529                 Fix my broken patch apply 
10530
10531 2005-01-03 [colin]      0.9.13cvs25.4
10532
10533         * src/common/utils.c
10534         * src/common/utils.h
10535         * src/gtk/prefswindow.c
10536                 Move auto pointer stuff to utils.c
10537                 Patch by Alfons again :)
10538
10539 2005-01-03 [colin]      0.9.13cvs25.3
10540
10541         * src/compose.c
10542         * src/prefs_gtk.c
10543         * src/prefs_template.c
10544         * src/textview.c
10545                 Empty text widgets with empty strings, not NULL char
10546                 Patch by SungHyun Nam <namsh@kldp_org>
10547
10548 2005-01-03 [colin]      0.9.13cvs25.2
10549
10550         * src/main.c
10551         * AUTHORS
10552                 Sync with HEAD
10553
10554 2005-01-03 [colin]      0.9.13cvs25.1
10555
10556         * src/pop.c
10557         * src/pop.h
10558                 Sync with HEAD
10559
10560 2005-01-03 [colin]      0.9.13cvs24.3
10561
10562         * src/account.c
10563                 Two patches from Alfons and Alex S Moore:
10564                 fix images, fix return value.
10565
10566 2005-01-01 [colin]      0.9.13cvs24.2
10567
10568         * src/prefs_actions.c
10569                 Fix over-zealous assertion. Patch by Alfons
10570
10571 2005-01-01 [colin]      0.9.13cvs24.1
10572
10573         * src/procmime.c
10574                 Sync with HEAD (leak fix)
10575
10576 2004-12-31 [colin]      0.9.13cvs23.2
10577
10578         * src/prefs_common.c
10579                 GTK2 widgets + stock buttons - patch by Alfons
10580
10581 2004-12-31 [paul]       0.9.13cvs23.1
10582
10583         * configure.ac
10584                 bump up EXTRA_VERSION to match (sync'ed) HEAD
10585         * src/gtk/pluginwindow.c
10586                 use GTK2 widgets and plug memory leaks,
10587                 patches by Alfons
10588
10589 2004-12-30 [colin]      0.9.13cvs22.4
10590
10591         * src/account.c
10592         * src/action.c
10593         * src/export.c
10594         * src/foldersel.c
10595         * src/import.c
10596         * src/message_search.c
10597         * src/prefs_actions.c
10598         * src/prefs_common.c
10599         * src/prefs_customheader.c
10600         * src/prefs_filtering.c
10601         * src/prefs_summary_column.c
10602         * src/summary_search.c
10603         * src/gtk/about.c
10604         * src/gtk/description_window.c
10605         * src/gtk/gtkutils.c
10606         * src/gtk/gtkutils.h
10607         * src/gtk/inputdialog.c
10608         * src/gtk/prefswindow.c
10609                 Use GTK2 stock buttons. Patches by Alfons.
10610
10611 2004-12-30 [colin]      0.9.13cvs22.3
10612
10613         * src/account.c
10614                 Sync with HEAD
10615         * src/prefs_actions.c
10616         * src/prefs_customheader.c
10617         * src/prefs_filtering.c
10618         * src/prefs_msg_colors.c
10619         * src/prefs_summary_column.c
10620         * src/gtk/prefswindow.c
10621                 Use GtkTreeView instead of deprecated 
10622                 widgets. Patches by Alfons.
10623
10624 2004-12-30 [paul]       0.9.13cvs22.2
10625
10626         * src/foldersel.c
10627                 use GTK 2 Tree View
10628                 patch by Alfons, with root folder sorting fix
10629                 by Stephan Sachse
10630
10631 2004-12-30 [paul]       0.9.13cvs22.1
10632
10633         * ChangeLog
10634         * ChangeLog.claws
10635         * ChangeLog.jp
10636         * NEWS
10637         * configure.ac
10638         * src/account.c
10639                 sync with HEAD
10640
10641 2004-12-22 [martin]     0.9.13cvs21.2
10642
10643         * src/action.c
10644                 free the command line after its use
10645
10646 2004-12-18 [paul]       0.9.13cvs21.1
10647
10648         * AUTHORS
10649         * ChangeLog
10650         * ChangeLog.claws
10651         * ChangeLog.jp
10652         * NEWS
10653         * configure.ac
10654         * src/action.c
10655         * src/compose.c
10656         * src/syldap.c
10657                 sync with HEAD
10658
10659 2004-12-17 [martin]     0.9.13cvs17.2
10660
10661         * src/action.c
10662                 convert actions input to locale
10663         * src/inc.c
10664                 convert notification command to locale
10665         * src/plugins/pgpmime/select-keys.c
10666                 convert attributes to utf8
10667
10668 2004-12-14 [colin]      0.9.13cvs17.1
10669
10670         * ChangeLog
10671         * ChangeLog.jp
10672         * ChangeLog.claws
10673         * src/action.c
10674         * src/common/utils.c
10675         * src/gtk/prefswindow.c
10676         * src/gtk/gtkutils.c
10677         * src/gtk/gtkutils.h
10678         * src/plugins/spamassassin/libspamc.c
10679                 Sync with HEAD
10680
10681 2004-12-13 [colin]      0.9.13cvs14.1
10682
10683         * src/quote_fmt_parse.y
10684                 Sync with HEAD
10685
10686 2004-12-10 [colin]      0.9.13cvs12.1
10687
10688         * src/prefs_themes.c
10689         * src/mainwindow.c
10690         * src/messageview.c
10691                 Sync with HEAD
10692
10693 2004-12-09 [colin]      0.9.13cvs10.1
10694
10695         * src/procmime.c
10696                 Sync with HEAD (fix B64 encoding from memory)
10697
10698 2004-12-08 [colin]      0.9.13cvs9.1
10699
10700         * src/gtk/colorlabel.c
10701                 Sync with HEAD
10702
10703 2004-12-08 [paul]       0.9.13cvs8.2
10704
10705         * src/gtk/pluginwindow.c
10706                 fix window resizing oddities
10707
10708 2004-12-08 [colin]      0.9.13cvs8.1
10709
10710         * src/quote_fmt_parse.y
10711                 Sync with HEAD
10712
10713 2004-12-08 [colin]      0.9.13cvs7.1
10714
10715         * src/matcher_parser_parse.y
10716         * src/msgcache.c
10717         * src/prefs_matcher.c
10718         * src/procheader.c
10719         * src/matcher.c
10720         * src/common/defs.h
10721         * po/sr.po
10722                 Sync with HEAD
10723
10724 2004-12-08 [colin]      0.9.13cvs6.1
10725
10726         * src/quote_fmt_parse.y
10727         * src/textview.c
10728                 Sync with HEAD
10729         * src/gtk/prefswindow.c
10730         * src/gtk/pluginwindow.c
10731                 Fix G_CALLBACKS protos (thanks to Alfons)
10732
10733 2004-12-07 [torte]      0.9.13cvs2.2
10734
10735         * src/procmime.c
10736                 [Bug 650] reply button causes crash
10737                 Thanks to David Relson and Christoph
10738
10739 2004-12-07 [colin]      0.9.13cvs2.1
10740
10741         * ChangeLog.claws
10742         * AUTHORS
10743         * po/sk.po
10744         * src/procmime.c
10745         * src/prefs_account.c
10746         * src/common/smtp.c
10747         * src/common/smtp.h
10748                 Sync with HEAD
10749
10750 2004-12-06 [colin]      0.9.12cvs187.1
10751
10752         * ChangeLog.claws
10753         * INSTALL
10754         * Makefile.am
10755         * README.claws
10756         * TODO.claws
10757         * configure.ac
10758         * po/bg.po
10759         * po/cs.po
10760         * po/el.po
10761         * po/en_GB.po
10762         * po/es.po
10763         * po/fr.po
10764         * po/hr.po
10765         * po/hu.po
10766         * po/it.po
10767         * po/ja.po
10768         * po/ko.po
10769         * po/nl.po
10770         * po/pl.po
10771         * po/pt_BR.po
10772         * po/ru.po
10773         * po/sk.po
10774         * po/sr.po
10775         * po/sv.po
10776         * po/zh_CN.po
10777         * po/zh_TW.Big5.po
10778         * src/compose.c
10779         * tools/Makefile.am
10780         * tools/README
10781         * tools/filter_conv.pl
10782         * tools/kdeservicemenu/README
10783         * tools/kdeservicemenu/template_sylpheed-attach-files.desktop
10784         * tools/kdeservicemenu/template_sylpheed-compress-attach.desktop
10785                 Sync with HEAD
10786
10787 2004-12-04 [colin]      0.9.12cvs183.1
10788
10789         * src/compose.c
10790                 Sync with HEAD (compose window position saving)
10791
10792 2004-12-04 [paul]       0.9.12cvs182.3
10793
10794         * src/messageview.c
10795         * src/mimeview.c
10796         * src/prefs_customheader.c
10797         * src/gtk/quicksearch.c
10798                 replace some forgotten GTK_SIGNAL_FUNCs
10799
10800 2004-12-04 [paul]       0.9.12cvs182.2
10801
10802         * src/Makefile.am
10803                 remove 'pixmaps/dir_noselect.xpm'. from local patch,
10804                 committed in error      
10805
10806 2004-12-04 [paul]       0.9.12cvs182.1
10807
10808         * ChangeLog
10809         * ChangeLog.claws
10810         * ChangeLog.jp
10811         * INSTALL
10812         * NEWS
10813         * README
10814         * README.jp
10815         * configure.ac
10816         * doc/manual/ja/Makefile.am
10817         * doc/manual/ja/sylpheed-1.html
10818         * doc/manual/ja/sylpheed-10.html
10819         * doc/manual/ja/sylpheed-11.html
10820         * doc/manual/ja/sylpheed-12.html
10821         * doc/manual/ja/sylpheed-13.html
10822         * doc/manual/ja/sylpheed-14.html
10823         * doc/manual/ja/sylpheed-15.html
10824         * doc/manual/ja/sylpheed-16.html
10825         * doc/manual/ja/sylpheed-17.html
10826         * doc/manual/ja/sylpheed-18.html
10827         * doc/manual/ja/sylpheed-19.html
10828         * doc/manual/ja/sylpheed-2.html
10829         * doc/manual/ja/sylpheed-20.html
10830         * doc/manual/ja/sylpheed-3.html
10831         * doc/manual/ja/sylpheed-4.html
10832         * doc/manual/ja/sylpheed-5.html
10833         * doc/manual/ja/sylpheed-6.html
10834         * doc/manual/ja/sylpheed-7.html
10835         * doc/manual/ja/sylpheed-8.html
10836         * doc/manual/ja/sylpheed-9.html
10837         * doc/manual/ja/sylpheed.html
10838         * doc/manual/ja/sylpheed.sgml
10839         * po/de.po
10840         * src/Makefile.am
10841         * src/compose.c
10842         * src/procmime.c
10843         * src/pixmaps/regular.xpm **REMOVED**
10844         * src/plugins/pgpmime/pgpmime.c
10845         * src/plugins/pgpmime/plugin.c
10846         * src/plugins/pgpmime/prefs_gpg.c
10847                 sync with HEAD
10848
10849 2004-12-03 [paul]       0.9.12cvs180.1
10850
10851         * ChangeLog
10852         * ChangeLog.claws
10853         * ChangeLog.jp
10854         * configure.ac
10855         * src/Makefile.am
10856         * src/pop.c
10857         * src/common/utils.c
10858         * src/common/utils.h
10859         * src/pixmaps/continue.xpm
10860         * src/pixmaps/dir_close.xpm
10861         * src/pixmaps/dir_open.xpm
10862         * src/pixmaps/drafts_close.xpm
10863         * src/pixmaps/drafts_open.xpm
10864         * src/pixmaps/folder.xpm **REMOVED**
10865         * src/pixmaps/group.xpm
10866         * src/pixmaps/unread.xpm
10867                 sync with HEAD
10868
10869 2004-12-02 [colin]      0.9.12cvs179.1
10870
10871         * src/compose.c
10872                 Sync with HEAD (non-duplicated reedition)
10873
10874 2004-12-02 [colin]      0.9.12cvs178.1
10875
10876         * src/compose.c
10877                 Sync with HEAD (linewrap_quote fix)
10878
10879 2004-12-01 [colin]      0.9.12cvs177.3
10880
10881         * src/addrharvest.c
10882                 Replace sizeof with strlen
10883
10884 2004-12-01 [paul]       0.9.12cvs177.2
10885
10886         * src/addrharvest.c
10887                 fix 'harvest addresses'
10888
10889 2004-11-30 [colin]      0.9.12cvs177.1
10890
10891         * src/gtk/prefswindow.c
10892         * src/gtk/pluginwindow.c
10893                 Sync with HEAD
10894
10895 2004-11-29 [colin]      0.9.12cvs176.1
10896
10897         * src/folderview.c
10898                 sync with HEAD (Fix disappearing separators in folderview's popup)
10899
10900 2004-11-29 [colin]      0.9.12cvs175.1
10901
10902         * src/procmime.c
10903                 Sync with head (another format fix)
10904
10905 2004-11-29 [colin]      0.9.12cvs174.1
10906
10907         * src/pop.c
10908                 Sync with HEAD (format string fix)
10909
10910 2004-11-26 [colin]      0.9.12cvs173.1
10911
10912         * src/common/smtp.c
10913         * src/common/smtp.h
10914                 Sync with HEAD
10915
10916 2004-11-24 [colin]      0.9.12cvs172.1
10917
10918         * src/plugins/pgpmime/pgpmime.c
10919                 Sync with HEAD
10920
10921 2004-11-24 [colin]      0.9.12cvs171.1
10922
10923         * src/plugins/pgpmime/pgpmime.c
10924                 Sync with head (gpgmectx leaks)
10925
10926 2004-11-24 [colin]      0.9.12cvs169.1
10927
10928         * src/plugins/pgpmime/plugin.c
10929         * src/plugins/trayicon/Makefile.am
10930         * src/plugins/trayicon/newmarkedmail.xpm
10931         * src/plugins/trayicon/trayicon.c
10932         * src/plugins/trayicon/unreadmarkedmail.xpm
10933                 Sync with HEAD
10934
10935 2004-11-23 [colin]      0.9.12cvs168.1
10936
10937         * src/partial_download.c
10938         * src/partial_download.h
10939         * src/plugins/pgpmime/plugin.c
10940                 Sync with HEAD
10941
10942 2004-11-23 [colin]      0.9.12cvs166.1
10943
10944         * src/Makefile.am
10945         * src/codeconv.c
10946         * src/compose.c
10947         * src/folderview.c
10948         * src/main.c
10949         * src/partial_download.c
10950         * src/partial_download.h
10951         * src/prefs_account.c
10952         * src/prefs_account.h
10953         * src/privacy.c
10954         * src/privacy.h
10955         * src/procmime.c
10956         * src/common/Makefile.am
10957         * src/common/base64.h
10958         * src/common/partial_download.c
10959         * src/common/partial_download.h
10960         * src/gtk/prefswindow.c
10961         * src/gtk/prefswindow.h
10962         * src/plugins/pgpmime/pgpmime.c
10963         * src/plugins/pgpmime/prefs_gpg.c
10964         * src/plugins/pgpmime/prefs_gpg.h
10965         * src/plugins/pgpmime/sgpgme.c
10966         * src/plugins/pgpmime/sgpgme.h
10967                 Sync with HEAD
10968
10969 2004-11-23 [colin]      0.9.12cvs163.1
10970
10971         * src/main.c
10972                 Sync with HEAD (cursor optimization)
10973
10974 2004-11-23 [colin]      0.9.12cvs162.1
10975
10976         * src/prefs_common.c
10977         * src/prefs_themes.c
10978         * src/procmsg.c
10979                 Sync with HEAD
10980
10981 2004-11-23 [colin]      0.9.12cvs158.9
10982
10983         * src/compose.c
10984                 Fix double-free when forwarding
10985         * src/msgcache.c
10986                 Fix leak on error path
10987                 
10988
10989 2004-11-23 [colin]      0.9.12cvs158.8
10990
10991         * src/compose.c
10992                 Fix possible double-free
10993                 Spotted by Alfons
10994
10995 2004-11-23 [colin]      0.9.12cvs158.7
10996
10997         * src/compose.c
10998                 Fix some signal handlers' prototypes
10999                 Spotted by Alfons
11000
11001 2004-11-22 [colin]      0.9.12cvs158.6
11002
11003         * src/compose.c
11004                 Remove unneeded code and duplicated
11005                 wrapping - patch by Alfons
11006
11007 2004-11-22 [colin]      0.9.12cvs158.5
11008
11009         * src/prefs_themes.c
11010                 Fix oversized selector
11011
11012 2004-11-22 [colin]      0.9.12cvs158.4
11013
11014         * src/compose.c
11015                 fix dump_text()
11016                 patch by Alfons
11017
11018 2004-11-19 [colin]      0.9.12cvs158.3
11019
11020         * src/textview.c
11021                 Add a context menu on links (open, copy)
11022
11023 2004-11-18 [paul]       0.9.12cvs158.2
11024
11025         * src/addrgather.c
11026         * src/exphtmldlg.c
11027         * src/expldifdlg.c
11028         * src/mimeview.c
11029         * src/prefs_common.c
11030         * src/plugins/image_viewer/viewer.c
11031         * src/plugins/spamassassin/spamassassin_gtk.c
11032                 replace deprecated gtk_notebook_set_page
11033                 and gtk_notebook_current_page
11034
11035 2004-11-18 [paul]       0.9.12cvs158.1
11036
11037         * configure.ac
11038         * src/compose.c
11039         * src/mainwindow.c
11040         * src/messageview.c
11041         * src/prefs_common.c
11042         * src/common/utils.c
11043         * src/common/utils.h
11044                 sync with HEAD
11045
11046 2004-11-17 [colin]      0.9.12cvs156.1
11047
11048         * src/prefs_account.c
11049         * src/prefs_account.h
11050         * src/procmsg.c
11051                 Sync with HEAD (add pref to store encrypted mails encrypted)
11052
11053 2004-11-17 [paul]       0.9.12cvs155.1
11054
11055         * ChangeLog
11056         * ChangeLog.claws
11057         * ChangeLog.jp
11058         * NEWS
11059         * configure.ac
11060         * src/compose.c
11061         * src/jpilot.c
11062         * src/privacy.c
11063         * src/procmime.c
11064         * src/procmime.h
11065         * src/procmsg.c
11066         * src/toolbar.c
11067         * src/pixmaps/error.xpm
11068                 sync with HEAD
11069
11070 2004-11-17 [colin]      0.9.12cvs151.1
11071
11072         * src/plugins/pgpmime/pgpmime.c
11073                 Sync with HEAD (remove debug printf)
11074
11075 2004-11-17 [colin]      0.9.12cvs150.1
11076
11077         * src/plugins/pgpmime/pgpmime.c
11078                 Sync with HEAD (off-by-one fix)
11079
11080 2004-11-17 [colin]      0.9.12cvs149.1
11081
11082         * src/procmsg.c
11083                 Sync with HEAD (coding style fixes)
11084
11085 2004-11-16 [colin]      0.9.12cvs148.1
11086
11087         * src/procmsg.c
11088                 Sync with head (Fix the fix)
11089
11090 2004-11-16 [colin]      0.9.12cvs147.1
11091
11092         * src/procmsg.c
11093                 Sync with Main (leak fix)
11094
11095 2004-11-16 [colin]      0.9.12cvs146.14
11096
11097         * src/compose.c
11098                 Remove useless chunk of code
11099                 Patch by Alfons
11100
11101 2004-11-15 [colin]      0.9.12cvs146.13
11102
11103         * src/compose.c
11104                 Fix drafting after insertion
11105                 Patch by Alfons
11106
11107 2004-11-15 [colin]      0.9.12cvs146.12
11108
11109         * src/compose.c
11110         * src/prefs_filtering.c
11111         * src/prefs_filtering_action.c
11112         * src/prefs_toolbar.c
11113                 Fix some const-correctness
11114
11115 2004-11-15 [colin]      0.9.12cvs146.11
11116
11117         * src/summaryview.c
11118         * src/prefs_themes.c
11119         * src/messageview.c
11120                 Fix some leaks
11121
11122 2004-11-15 [colin]      0.9.12cvs146.10
11123
11124         * src/codeconv.c
11125                 More unreadable locale fixes
11126
11127 2004-11-14 [colin]      0.9.12cvs146.9
11128
11129         * src/textview.c
11130                 Fix uri_security_check
11131                 Patch by Alfons
11132
11133 2004-11-13 [paul]       0.9.12cvs146.8
11134
11135         * src/folder.c
11136         * src/procmime.c
11137                 fix 2 bugs introduced in last commit
11138
11139 2004-11-13 [paul]       0.9.12cvs146.7
11140
11141         * src/compose.c
11142         * src/exporthtml.c
11143         * src/exportldif.c
11144         * src/folder.c
11145         * src/imap.c
11146         * src/imap_gtk.c
11147         * src/main.c
11148         * src/mainwindow.c
11149         * src/messageview.c
11150         * src/mh_gtk.c
11151         * src/prefs_themes.c
11152         * src/procmime.c
11153         * src/setup.c
11154         * src/summaryview.c
11155                 replace deprecated g_basename
11156
11157 2004-11-13 [paul]       0.9.12cvs146.6
11158
11159         * src/compose.c
11160         * src/imap.c
11161         * src/matcher_parser.h
11162         * src/matcher_parser_parse.y
11163         * src/prefs_filtering.c
11164         * src/prefs_filtering_action.c
11165         * src/prefs_themes.c
11166         * src/prefs_toolbar.c
11167         * src/common/utils.c
11168                 various small fixes/cleanups
11169
11170 2004-11-12 [colin]      0.9.12cvs146.5
11171
11172         * src/textview.c
11173                 Validate event's origin on visibility notify
11174                 Patch by Alfons.
11175
11176 2004-11-12 [paul]       0.9.12cvs146.4
11177
11178         * src/exporthtml.c
11179         * src/exportldif.c
11180         * src/imap.c
11181         * src/mh.c
11182         * src/mimeview.c
11183         * src/prefs_spelling.c
11184         * src/prefs_themes.c
11185                 replace deprecated g_dirname    
11186
11187 2004-11-12 [colin]      0.9.12cvs146.3
11188
11189         * src/textview.c
11190                 Some coding style fixes
11191
11192 2004-11-12 [colin]      0.9.12cvs146.2
11193
11194         * src/codeconv.c
11195                 We want to replace _all_ extended chars in
11196                 conv_unreadable_*, because any string containing
11197                 extended chars not parsing as UTF8 is 
11198                 undisplayed on gtk2.
11199
11200 2004-11-12 [paul]       0.9.12cvs146.1
11201
11202         * ChangeLog
11203         * ChangeLog.claws
11204         * ChangeLog.jp
11205         * NEWS
11206         * configure.ac
11207         * src/account.c
11208         * src/folderview.c
11209         * src/folderview.h
11210         * src/imap.c
11211         * src/imap_gtk.c
11212         * src/inc.c
11213         * src/mainwindow.c
11214         * src/mh_gtk.c
11215         * src/news_gtk.c
11216         * src/pop.c
11217         * src/prefs_account.c
11218         * src/prefs_account.h
11219         * src/prefs_ext_prog.c
11220         * src/procmime.c
11221         * src/procmime.h
11222         * src/procmsg.c
11223         * src/procmsg.h
11224         * src/summary_search.c
11225         * src/summaryview.c
11226         * src/textview.c
11227         * src/common/defs.h
11228         * src/common/utils.c
11229         * src/common/utils.h
11230         * src/gtk/menu.c
11231         * src/gtk/menu.h
11232                 sync with HEAD
11233
11234 2004-11-11 [colin]      0.9.12cvs144.2
11235
11236         * src/textview.c
11237                 Fix URI range selection (patch by Alfons)
11238
11239 2004-11-09 [colin]      0.9.12cvs144.1
11240
11241         * ChangeLog.claws
11242         * src/compose.c
11243         * src/folder.c
11244         * src/folder_item_prefs.c
11245         * src/prefs_account.c
11246         * src/prefs_account.h
11247         * src/plugins/pgpmime/pgpmime.c
11248                 Sync with HEAD
11249
11250 2004-11-08 [colin]      0.9.12cvs143.1
11251
11252         * src/summaryview.c
11253                 Sync with HEAD (optimize quicksearch)
11254
11255 2004-11-08 [colin]      0.9.12cvs142.2
11256
11257         * src/compose.c
11258                 Don't wrap when Edit/Auto wrapping is disabled
11259
11260 2004-11-08 [colin]      0.9.12cvs142.1
11261
11262         * src/textview.c
11263                 Sync with HEAD
11264
11265 2004-11-08 [colin]      0.9.12cvs141.1
11266
11267         * src/textview.c
11268                 Sync with HEAD (fix some mail URIs)
11269
11270 2004-11-08 [colin]      0.9.12cvs140.3
11271
11272         * src/textview.c
11273                 o Use text cursor instead of arrow when
11274                   not on a link
11275                 o Fix handling of contiguous links (as in
11276                   "colin@colino.net" <colin@colino.net>)
11277                   This one unveils a bug in get_email_part()
11278
11279 2004-11-07 [colin]      0.9.12cvs140.2
11280
11281         * src/textview.c
11282                 Fix memleak. Patch by Alfons.
11283
11284 2004-11-06 [colin]      0.9.12cvs140.1
11285
11286         * src/compose.c
11287                 Sync with HEAD (don't ask passphrase
11288                 when drafting)
11289
11290 2004-11-06 [paul]       0.9.12cvs139.2
11291
11292         * AUTHORS
11293         * src/textview.c
11294         * src/textview.h
11295                 textview URI handling. hovering over a 
11296                 link displays it in the status bar,
11297                 and changes the mouse pointer to a hand 
11298                 cursor. a link is activated with a single 
11299                 click. (Modified from the) patch by Jean-Yves 
11300                 Lefort <jylefort@users.sourceforge.net>
11301                 
11302
11303 2004-11-05 [colin]      0.9.12cvs139.1
11304
11305         * src/compose.c
11306         * src/procmime.c
11307                 Sync with HEAD again ^^
11308
11309 2004-11-05 [colin]      0.9.12cvs139.1
11310
11311         * src/compose.c
11312         * src/procmime.c
11313                 Sync with HEAD
11314
11315 2004-11-03 [paul]       0.9.12cvs138.1
11316
11317         * ChangeLog.claws
11318         * configure.ac
11319         * po/POTFILES.in
11320         * src/prefs_ext_prog.c
11321         * src/procmime.c
11322         * tools/kdeservicemenu/README
11323         * tools/kdeservicemenu/template_sylpheed-attach-files.desktop
11324         * tools/kdeservicemenu/template_sylpheed-compress-attach.desktop
11325                 sync with HEAD
11326
11327 2004-11-01 [christoph]  0.9.12cvs136.2
11328
11329         * src/procmime.c
11330                 convert MIME parameters to UTF-8
11331
11332 2004-10-29 [colin]      0.9.12cvs136.1
11333
11334         * src/common/utils.c
11335                 Sync with HEAD (don't use '=' in mime boundary)
11336
11337 2004-10-29 [paul]       0.9.12cvs135.1
11338
11339         * configure.ac
11340         * doc/src/rfc2231.txt
11341         * src/procmime.c
11342         * src/common/quoted-printable.c
11343         * src/common/utils.c
11344         * src/common/utils.h
11345                 sync with HEAD
11346
11347 2004-10-27 [paul]       0.9.12cvs134.1
11348
11349         * configure.ac
11350         * src/main.c
11351         * src/procmime.c
11352         * src/plugins/pgpmime/pgpmime.c
11353                 sync with HEAD
11354
11355 2004-10-26 [paul]       0.9.12cvs132.3
11356
11357         * src/account.c
11358         * src/addressbook.c
11359         * src/addrgather.c
11360         * src/addrharvest.c
11361         * src/codeconv.c
11362         * src/compose.c
11363         * src/customheader.c
11364         * src/editaddress.c
11365         * src/editgroup.c
11366         * src/enriched.c
11367         * src/expldifdlg.c
11368         * src/exporthtml.c
11369         * src/exportldif.c
11370         * src/folder.c
11371         * src/foldersel.c
11372         * src/folderview.c
11373         * src/grouplistdialog.c
11374         * src/html.c
11375         * src/imap.c
11376         * src/jpilot.c
11377         * src/ldapserver.c
11378         * src/ldif.c
11379         * src/mimeview.c
11380         * src/news.c
11381         * src/news_gtk.c
11382         * src/pop.c
11383         * src/prefs_display_header.c
11384         * src/prefs_gtk.c
11385         * src/prefs_msg_colors.c
11386         * src/prefs_toolbar.c
11387         * src/procheader.c
11388         * src/procmime.c
11389         * src/summaryview.c
11390         * src/textview.c
11391         * src/toolbar.c
11392         * src/vcard.c
11393         * src/common/mgutils.c
11394         * src/common/nntp.c
11395         * src/common/smtp.c
11396         * src/common/template.c
11397         * src/common/utils.c
11398         * src/common/xmlprops.c
11399         * src/plugins/pgpmime/pgpmime.c
11400         * src/plugins/pgpmime/select-keys.c
11401         * src/plugins/pgpmime/sgpgme.c
11402                 replace deprecated g_strcasecmp(), g_strncasecmp(),
11403                 g_string_sprintfa(), gtk_notebook_current_page()
11404
11405 2004-10-26 [colin]      0.9.12cvs132.2
11406
11407         * src/prefs_folder_item.c
11408                 Fix default-account selection
11409
11410 2004-10-21 [colin]      0.9.12cvs133
11411
11412         * src/compose.c
11413                 Sync with HEAD (Remove extra separator in compose's Options)
11414         * src/textview.c
11415                 Set wrapping to char
11416
11417 2004-10-21 [paul]       0.9.12cvs131.2
11418
11419         * src/compose.c
11420         * src/sourcewindow.c
11421                 fix wrapping
11422                 fix window shrinking 
11423
11424 2004-10-21 [colin]      0.9.12cvs131.1
11425
11426         * ChangeLog.claws
11427         * src/compose.c
11428                 Sync with HEAD
11429
11430 2004-10-21 [paul]       0.9.12cvs130.2
11431
11432         * src/prefs_folder_item.c
11433                 sync with HEAD (Apply to subfolders)
11434
11435 2004-10-19 [colin]      0.9.12cvs130.1
11436
11437         * ChangeLog.claws
11438         * src/compose.c
11439         * src/common/utils.c
11440         * src/gtk/menu.c
11441                 Sync with HEAD
11442
11443 2004-10-19 [colin]      0.9.12cvs128.1
11444
11445         * src/addrbook.c
11446         * src/addrcache.c
11447         * src/addressbook.c
11448         * src/codeconv.c
11449         * src/compose.c
11450         * src/customheader.c
11451         * src/editaddress.c
11452         * src/editgroup.c
11453         * src/exporthtml.c
11454         * src/folder.c
11455         * src/folderview.c
11456         * src/imap.c
11457         * src/jpilot.c
11458         * src/main.c
11459         * src/matcher_parser_parse.y
11460         * src/mbox.c
11461         * src/pop.c
11462         * src/prefs_account.c
11463         * src/prefs_gtk.c
11464         * src/prefs_msg_colors.c
11465         * src/procheader.c
11466         * src/procmime.c
11467         * src/procmime.h
11468         * src/procmsg.c
11469         * src/summaryview.c
11470         * src/textview.c
11471         * src/common/base64.c
11472         * src/common/partial_download.c
11473         * src/common/socket.c
11474         * src/common/sylpheed.c
11475         * src/common/utils.c
11476         * src/common/utils.h
11477         * src/gtk/pluginwindow.c
11478         * src/gtk/quicksearch.c
11479         * src/plugins/clamav/clamav_plugin.c
11480         * src/plugins/clamav/clamav_plugin.h
11481         * src/plugins/clamav/clamav_plugin_gtk.c
11482         * src/plugins/pgpmime/passphrase.c
11483         * src/plugins/pgpmime/pgpmime.c
11484         * src/plugins/pgpmime/plugin.c
11485         * src/plugins/pgpmime/prefs_gpg.c
11486         * src/plugins/pgpmime/prefs_gpg.h
11487         * src/plugins/pgpmime/select-keys.c
11488         * src/plugins/pgpmime/sgpgme.c
11489         * src/plugins/spamassassin/libspamc.c
11490         * src/plugins/spamassassin/spamassassin.c
11491         * src/plugins/spamassassin/spamassassin.h
11492         * src/plugins/spamassassin/spamassassin_gtk.c
11493         * src/plugins/trayicon/trayicon.c
11494         * src/plugins/trayicon/libeggtrayicon/gtkplugxembed.c
11495                 Sync with HEAD
11496
11497 2004-10-14 [colin]      0.9.12cvs126.2
11498
11499         * src/codeconv.c
11500         * src/textview.c
11501                 Fix conv_unreadable_locale
11502
11503 2004-10-13 [colin]      0.9.12cvs126.1
11504
11505         * src/compose.c
11506                 Sync with HEAD (don't convert charset for 
11507                 drafted messages, minor cleanup)
11508
11509 2004-10-13 [colin]      0.9.12cvs125.1
11510
11511         * po/POTFILES.in
11512                 Sync with HEAD (POTFILES fix)
11513
11514 2004-10-12 [colin]      0.9.12cvs124.3
11515
11516         * src/compose.c
11517                 Fix encoding bug from latest sync
11518
11519 2004-10-12 [paul]       0.9.12cvs124.2
11520
11521         * src/plugins/pgpmime/prefs_gpg.c
11522         * src/plugins/pgpmime/prefs_gpg.h
11523                 forgotten in last commit        
11524
11525 2004-10-12 [paul]       0.9.12cvs124.1
11526
11527         * ChangeLog.claws
11528         * configure.ac
11529         * m4/spamassassin.m4
11530         * src/Makefile.am
11531         * src/account.c
11532         * src/compose.c
11533         * src/compose.h
11534         * src/crash.c
11535         * src/main.c
11536         * src/mimeview.c
11537         * src/passphrase.c
11538         * src/passphrase.h
11539         * src/prefs_account.c
11540         * src/prefs_account.h
11541         * src/prefs_common.c
11542         * src/privacy.c
11543         * src/privacy.h
11544         * src/procmime.c
11545         * src/procmime.h
11546         * src/procmsg.c
11547         * src/rfc2015.c
11548         * src/rfc2015.h
11549         * src/select-keys.c
11550         * src/select-keys.h
11551         * src/textview.c
11552         * src/common/utils.c
11553         * src/common/utils.h
11554         * src/gtk/about.c
11555         * src/plugins/pgpmime/Makefile.am
11556         * src/plugins/pgpmime/passphrase.c
11557         * src/plugins/pgpmime/passphrase.h
11558         * src/plugins/pgpmime/pgpmime.c
11559         * src/plugins/pgpmime/plugin.c
11560         * src/plugins/pgpmime/select-keys.c
11561         * src/plugins/pgpmime/select-keys.h
11562         * src/plugins/pgpmime/sgpgme.c
11563         * src/plugins/pgpmime/sgpgme.h
11564                 sync with HEAD
11565
11566 2004-10-04 [colin]      0.9.12cvs122.1
11567
11568         * src/mainwindow.c
11569         * src/messageview.c
11570         * src/messageview.h
11571         * src/textview.c
11572                 Sync with HEAD
11573
11574 2004-10-04 [colin]      0.9.12cvs121.1
11575
11576         * src/summaryview.c
11577                 Sync with HEAD
11578
11579 2004-10-04 [paul]       0.9.12cvs120.1
11580
11581         * configure.ac
11582                 sync with HEAD [don't try to build 
11583                 pgpmime plugin when gpgme is disabled]
11584
11585 2004-10-03 [colin]      0.9.12cvs119.3
11586
11587         * src/gtk/gtksctree.c
11588                 Lots of side effects. Put back as before 117.2.
11589         * src/summaryview.c
11590                 Fix bug #602
11591
11592 2004-10-03 [colin]      0.9.12cvs119.2
11593
11594         * src/gtk/gtksctree.c
11595                 Revert 608 fix that doesn't work that good
11596
11597 2004-10-02 [colin]      0.9.12cvs119.1
11598
11599         * src/mainwindow.c
11600         * src/messageview.c
11601         * src/prefs_common.h
11602         * src/procmime.c
11603         * src/procmime.h
11604         * src/textview.c
11605                 Sync with HEAD
11606         * src/gtk/gtksctree.c
11607                 Close bug #608
11608
11609 2004-10-01 [colin]      0.9.12cvs118.1
11610
11611         * src/mimeview.c
11612                 Sync with HEAD (better Save All fix)
11613
11614 2004-10-01 [colin]      0.9.12cvs117.2
11615
11616         * src/gtk/gtksctree.c
11617                 Faster on selection
11618
11619 2004-10-01 [colin]      0.9.12cvs117.1
11620
11621         * src/mimeview.c
11622                 Sync with HEAD (Save All: only attachments)
11623
11624 2004-10-01 [paul]       0.9.12cvs116.1
11625
11626         * ChangeLog.claws
11627         * configure.ac
11628         * src/account.c
11629         * src/prefs_common.c
11630         * src/gtk/colorlabel.c
11631                 sync with HEAD
11632
11633 2004-09-30 [colin]      0.9.12cvs115.1
11634
11635         * src/stock_pixmap.c
11636         * src/stock_pixmap.h
11637         * src/folderview.c
11638         * src/Makefile.am
11639         * src/pixmaps/read.xpm
11640                 Sync with HEAD (new pixmap)
11641
11642 2004-09-29 [colin]      0.9.12cvs114.1
11643
11644         * src/compose.c
11645                 Sync with HEAD
11646                 Fix focus handling in headers
11647
11648 2004-09-29 [paul]       0.9.12cvs113.1
11649
11650         * src/quote_fmt_parse.y
11651                 sync with HEAD
11652  
11653
11654 2004-09-28 [colin]      0.9.12cvs112.1
11655
11656         * src/folderview.c
11657         * src/mainwindow.c
11658                 Sync with HEAD
11659
11660 2004-09-28 [colin]      0.9.12cvs110.1
11661
11662         * src/folderview.c
11663                 Sync with HEAD (Contextual Empty trash menu)
11664
11665 2004-09-28 [colin]      0.9.12cvs108.1
11666
11667         * src/addressbook.c
11668                 Sync with HEAD (addressbook edit on double-click)
11669
11670 2004-09-28 [colin]      0.9.12cvs106.1
11671
11672         * src/inc.c
11673                 Sync with HEAD (folder_item freeze on inc)
11674
11675 2004-09-27 [colin]      0.9.12cvs105.1
11676
11677         * src/folderview.c
11678                 Sync with HEAD (right-align new and unread column)
11679
11680 2004-09-27 [colin]      0.9.12cvs104.1
11681
11682         * src/main.c
11683                 Sync with HEAD (revert 0.9.12cvs101)
11684
11685 2004-09-24 [colin]      0.9.12cvs103.2
11686
11687         * src/wizard.c
11688                 Fix gtk warnings and use domain part of the email address 
11689                 when domain detection fails (no dot in domain name)
11690
11691 2004-09-23 [colin]      0.9.12cvs103.1
11692
11693         * src/plugins/spamassassin/libspamc.c
11694         * src/plugins/spamassassin/libspamc.h
11695         * src/plugins/spamassassin/utils.c
11696         * src/plugins/spamassassin/utils.h
11697                 Sync with HEAD (Update spamassassin to 3.0)
11698
11699 2004-09-21 [colin]      0.9.12cvs102.3
11700
11701         * src/action.c
11702                 Add horizontal scrollbar in action io dialog as needed
11703                 Patch by Alfons.
11704
11705 2004-09-20 [colin]      0.9.12cvs102.2
11706
11707         * src/plugins/image_viewer/viewer.c
11708                 Remove imlib stuff
11709                 use gtk_pixmap_set when clearing
11710                 (would be better to use gtkImages, but causes size-allocate 
11711                 signals storm)
11712
11713 2004-09-17 [paul]       0.9.12cvs102.1
11714
11715         * ChangeLog
11716         * ChangeLog.claws
11717         * ChangeLog.jp
11718         * configure.ac
11719         * src/inc.c
11720                 sync with HEAD
11721
11722
11723 2004-09-17 [colin]      0.9.12cvs101.1
11724
11725         * ChangeLog.claws
11726         * src/main.c
11727                 Sync with HEAD (fix segs at exit)
11728
11729 2004-09-14 [colin]      0.9.12cvs99.5
11730
11731         * src/common/socket.c
11732         * AUTHORS
11733                 Fix send error on 64bit platforms
11734                 Patch by Guy Rouillier <guy-rouillier@speakeasy.net>
11735
11736 2004-09-14 [colin]      0.9.12cvs99.4
11737
11738         * src/action.c
11739                 Fix action output with utf8 
11740                 Patch by Alfons.
11741
11742 2004-09-14 [colin]      0.9.12cvs99.3
11743
11744         * ChangeLog.claws
11745         * src/folder.c
11746                 Sync with HEAD
11747
11748 2004-09-09 [colin]      0.9.12cvs99.2
11749
11750         * src/action.c
11751                 Fix progress bar (displaying "Completed %v/%u")
11752                 Patch by Alfons.
11753
11754 2004-09-08 [colin]      0.9.12cvs99.1
11755
11756         * src/account.c
11757         * src/folder.c
11758         * src/procmsg.c
11759         * src/procmsg.h
11760         * src/plugins/pgpmime/pgpmime.c
11761                 Sync with HEAD
11762
11763 2004-09-08 [colin]      0.9.12cvs97.2
11764
11765         * src/summaryview.c
11766                 Don't select mails in collapsed threads 
11767                 when navigating with up/down
11768
11769 2004-09-07 [colin]      0.9.12cvs97.1
11770
11771         * src/inc.c
11772                 Sync with HEAD (meaningful error messages)
11773
11774 2004-09-06 [colin]      0.9.12cvs96.1
11775
11776         * src/toolbar.c
11777                 Sync with HEAD (fix Redirect graying out)
11778
11779 2004-09-06 [colin]      0.9.12cvs95.1
11780
11781         * src/summaryview.c
11782         * src/mimeview.c
11783                 Sync with HEAD (fix dropped URIs)
11784
11785 2004-09-06 [colin]      0.9.12cvs94.1
11786
11787         * src/addressbook.c
11788         * src/addressitem.h
11789         * src/addritem.c
11790         * src/addritem.h
11791                 Sync with HEAD (addressbook DnD)
11792
11793 2004-09-03 [colin]      0.9.12cvs93.1
11794
11795         * src/summaryview.c
11796                 Sync with HEAD (next/prev unread)
11797
11798 2004-09-03 [colin]      0.9.12cvs92.1
11799
11800         * src/prefs_common.c
11801         * src/prefs_common.h
11802         * src/summaryview.c
11803                 Sync with HEAD ('mark_as_read_delay' pref)
11804
11805 2004-09-02 [colin]      0.9.12cvs91.2
11806
11807         * src/common/xml.c
11808                 Fix leak
11809
11810 2004-09-02 [colin]      0.9.12cvs91.1
11811
11812         * src/gtk/menu.c
11813                 Sync with HEAD (menu accel don't work, but whatever)
11814
11815 2004-09-02 [colin]      0.9.12cvs90.1
11816
11817         * src/account.c
11818                 Sync with HEAD (fix bug 582)
11819
11820 2004-09-02 [colin]      0.9.12cvs89.1
11821
11822         * src/addrindex.c
11823                 Sync with HEAD (free deleted queries)
11824
11825 2004-09-02 [colin]      0.9.12cvs88.1
11826
11827         * src/ldapquery.c
11828                 Sync with HEAD (fix LDAP freezes)
11829
11830 2004-09-02 [colin]      0.9.12cvs87.1
11831
11832         * src/prefs_spelling.c
11833                 Sync with HEAD (add default dictionary)
11834
11835 2004-09-01 [colin]      0.9.12cvs86.1
11836
11837         * src/filtering.c
11838         * src/folderview.c
11839         * src/imap.c
11840         * src/prefs_matcher.c
11841         * src/stock_pixmap.c
11842         * src/summary_search.c
11843         * src/summaryview.c
11844         * src/wizard.c
11845         * src/wizard.h
11846                 Sync with HEAD (uninitialized vars fixes)
11847                 + gtk2 specific warning fixes
11848
11849 2004-08-31 [colin]      0.9.12cvs85.1
11850
11851         * src/folder.c
11852                 Sync with HEAD (Fix memory corruption due to 
11853                 uninitialized var)
11854
11855 2004-08-31 [colin]      0.9.12cvs84.4
11856
11857         * src/summary_search.c
11858                 Fix segfaults when searching in folders with broken headers
11859
11860 2004-08-31 [colin]      0.9.12cvs84.3
11861
11862         * src/compose.c
11863         * src/textview.c
11864                 Fix some more encoding/decoding issues
11865
11866 2004-08-30 [colin]      0.9.12cvs84.2
11867
11868         * src/mimeview.c
11869         * src/prefs_themes.c
11870         * src/gtk/filesel.c
11871         * src/gtk/filesel.h
11872                 Add a folder-mode selection (fixes mimeview's "Save all")
11873
11874 2004-08-29 [colin]      0.9.12cvs84.1
11875
11876         * src/mimeview.c
11877                 Sync with HEAD (don't escape saved filenames)
11878
11879 2004-08-27 [colin]      0.9.12cvs83.1
11880
11881         * ChangeLog
11882         * ChangeLog.claws
11883         * ChangeLog.jp
11884         * src/mh.c
11885         * src/procheader.c
11886         * src/procmsg.c
11887         * src/procmsg.h
11888         * src/common/utils.c
11889         * src/gtk/menu.h
11890         * po/
11891                 Sync with HEAD 0.9.12cvs83 (sync with main)
11892
11893 2004-08-26 [colin]      0.9.12cvs82.4
11894
11895         * src/codeconv.c
11896                 Fix strange stack corruption
11897                 Convert to utf8 after unmime, not before
11898
11899 2004-08-26 [colin]      0.9.12cvs82.3
11900
11901         * src/main.c
11902         * src/wizard.c
11903                 Fix account folders duplication
11904
11905 2004-08-25 [colin]      0.9.12cvs82.2
11906
11907         * src/wizard.c
11908                 Remove ports
11909                 Add SSL selection
11910                 Use login@server as account name
11911
11912 2004-08-25 [colin]      0.9.12cvs82.1
11913
11914         * src/plugins/pgpmime/pgpmime.c
11915                 Sync with HEAD (leak fix).
11916
11917 2004-08-25 [colin]      0.9.12cvs81.1
11918
11919         * src/plugins/pgpmime/pgpmime.c
11920         * src/plugins/pgpmime/sgpgme.c
11921         * src/plugins/pgpmime/sgpgme.h
11922                 Sync with HEAD (Handle combined messages).
11923
11924 2004-08-24 [colin]      0.9.12cvs80.3
11925
11926         * src/wizard.c
11927                 Fix full name, ports, and imap
11928
11929 2004-08-24 [colin]      0.9.12cvs80.2
11930
11931         * src/Makefile.am
11932         * src/main.c
11933         * src/setup.c
11934         * src/setup.h
11935         * src/stock_pixmap.c
11936         * src/stock_pixmap.h
11937         * src/wizard.c ** ADDED **
11938         * src/wizard.h ** ADDED ** 
11939         * src/pixmaps/sylpheed_icon.xpm ** ADDED **
11940                 Add a setup wizard 
11941
11942 2004-08-24 [colin]      0.9.12cvs80.1
11943
11944         * src/folder.c
11945                 Sync with HEAD (set mimeflags on all messages)
11946
11947 2004-08-24 [colin]      0.9.12cvs79.3
11948
11949         * src/matcher_parser_lex.l
11950                 Fix 8bits strings not in utf8
11951
11952 2004-08-24 [colin]      0.9.12cvs79.2
11953
11954         * src/compose.c
11955                 Check conversion result before replacing buffer
11956
11957 2004-08-23 [colin]      0.9.12cvs79.1
11958
11959         * src/compose.c
11960                 Sync with HEAD (create message header in memory)
11961
11962 2004-08-23 [colin]      0.9.12cvs78.1
11963
11964         * src/rfc2015.c
11965         * src/rfc2015.h
11966                 Sync with HEAD (fix bug 197 again)
11967
11968 2004-08-23 [colin]      0.9.12cvs77.3
11969
11970         * src/compose.c
11971                 Fix again inline gpg signing (which outputs utf8
11972                 in gtk2). Not syncing this fix to HEAD as this 
11973                 code is meant to die.
11974
11975 2004-08-23 [colin]      0.9.12cvs77.2
11976
11977         * src/prefs_account.h
11978                 Remove useless include
11979
11980 2004-08-23 [colin]      0.9.12cvs77.1
11981
11982         * src/imap.c
11983         * po/es.po
11984         * po/fr.po
11985         * po/it.po
11986         * po/pl.po
11987         * po/pt_BR.po
11988         * po/sk.po
11989         * po/sr.po
11990                 Sync with HEAD (fix bug 577)
11991
11992 2004-08-22 [colin]      0.9.12cvs76.1
11993
11994         * src/plugins/trayicon/trayicon.c
11995                 Sync with HEAD (fix formatting bug)
11996
11997 2004-08-21 [colin]      0.9.12cvs74.2
11998
11999         * src/gtk/colorsel.c
12000                 Fix bug 564 (Folder color selection window exits on any
12001                 keypress)
12002
12003 2004-08-21 [colin]      0.9.12cvs74.1
12004
12005         * ChangeLog.claws
12006         * src/compose.c
12007         * src/summaryview.c
12008         * src/toolbar.c
12009                 Sync with HEAD (fix bug 576)
12010
12011 2004-08-21 [colin]      0.9.12cvs70.1
12012
12013         * src/compose.c
12014         * src/mainwindow.c
12015                 Sync with HEAD
12016                 
12017
12018 2004-08-21 [paul]       0.9.12cvs66.4
12019
12020         * src/mainwindow.c
12021         * src/messageview.c
12022         * src/gtk/menu.c
12023         * src/plugins/spamassassin/spamassassin_gtk.c
12024                 remove some deprecated gtk1 functions
12025
12026
12027 2004-08-21 [colin]      0.9.12cvs66.3
12028
12029         * src/compose.c
12030         * src/codeconv.c
12031                 Fix warnings
12032                 Remove encoding hacks
12033                 Fix bug 575 (Strange character messes up message)
12034                 Don't display conversion error when drafting
12035
12036 2004-08-21 [paul]       0.9.12cvs66.2
12037
12038         * src/prefs_account.c
12039                 fix GnuPG mode bugs
12040
12041
12042 2004-08-20 [colin]      0.9.12cvs66.1
12043
12044         * src/codeconv.c
12045                 Sync with HEAD 0.9.12cvs66
12046
12047 2004-08-20 [paul]
12048
12049         * src/plugins/pgpmime/plugin.c
12050                 modify PGP/MIME plugin's description
12051
12052 2004-08-17 [colin]      0.9.12cvs65.1
12053
12054         * src/common/ssl.c
12055         * src/plugins/pgpmime/plugin.c
12056                 Sync with HEAD
12057
12058 2004-08-14 [colin]      0.9.12cvs60.3
12059
12060         * src/plugins/trayicon/trayicon.c
12061                 Put back resize callback, on size-request signal
12062                 rather than size-allocate to avoid infinite 
12063                 callback loop
12064
12065 2004-08-13 [colin]      0.9.12cvs60.2
12066
12067         * src/common/defs.h
12068                 Cache versions have been fixed
12069
12070 2004-08-13 [colin]      0.9.12cvs60.1
12071
12072         * src/folderutils.c
12073                 Sync with HEAD
12074
12075 2004-08-12 [colin]      0.9.12cvs59.1
12076
12077         * src/plugins/trayicon/trayicon.c
12078                 Sync with HEAD
12079
12080 2004-08-12 [colin]      0.9.12cvs57.5
12081
12082         * sylpheed.desktop
12083         * configure.ac
12084         * src/Makefile.am
12085         * src/main.c
12086                 Add support for Freedesktop.org's startup notification
12087
12088 2004-08-11 [colin]      0.9.12cvs57.4
12089
12090         * src/textview.c
12091                 Fix off-by-one
12092
12093 2004-08-11 [colin]      0.9.12cvs57.3
12094
12095         * src/message_search.c
12096         * src/summary_search.c
12097                 Make searches case insensitive by default
12098         * src/textview.c
12099                 Fix case-insensitive search in message
12100
12101 2004-08-11 [colin]      0.9.12cvs57.2
12102
12103         * src/summary_search.c
12104                 Let case-sensitive be specified
12105
12106 2004-08-10 [colin]      0.9.12cvs55.4
12107
12108         * src/common/socket.c
12109                 Fix the possible race condition
12110
12111 2004-08-09 [paul]       0.9.12cvs55.3
12112
12113         * configure.ac
12114         * src/Makefile.am
12115         * src/common/Makefile.am
12116                 sync with HEAD
12117
12118
12119 2004-08-09 [paul]       0.9.12cvs55.2
12120
12121         * autogen.sh
12122         * po/poconv.sh
12123                 remove unneeded script
12124
12125         * configure.ac
12126                 add forgotten USE_LDAP_TLS (sync with HEAD)
12127
12128
12129 2004-08-09 [colin]      0.9.12cvs55.1
12130
12131         * src/main.c
12132         * src/common/ssl.c
12133         * src/common/sylpheed.c
12134         * src/common/sylpheed.h
12135                 Sync from 0.9.12cvs55 HEAD (nonblocking SSL_connect)
12136
12137 2004-08-09 [paul]       0.9.12cvs54.1
12138
12139         * ChangeLog
12140         * ChangeLog.claws
12141         * ChangeLog.jp
12142         * configure.ac
12143         * po/POTFILES.in
12144         * src/Makefile.am
12145         * src/folderutils.c
12146         * src/main.c
12147         * src/pgpmime.c
12148         * src/pgpmime.h
12149         * src/sgpgme.c
12150         * src/sgpgme.h
12151         * src/plugins/Makefile.am
12152         * src/plugins/pgpmime/.cvsignore
12153         * src/plugins/pgpmime/Makefile.am
12154         * src/plugins/pgpmime/pgpmime.c
12155         * src/plugins/pgpmime/pgpmime.h
12156         * src/plugins/pgpmime/plugin.c
12157         * src/plugins/pgpmime/sgpgme.c
12158         * src/plugins/pgpmime/sgpgme.h
12159                 sync with HEAD
12160
12161 2004-08-08 [paul]       0.9.12cvs51.1
12162
12163         * configure.ac
12164         * src/folder.c
12165                 sync with HEAD
12166
12167 2004-08-07 [colin]      0.9.12cvs50.1
12168
12169         * src/pop.c
12170         * src/common/partial_download.c
12171                 fix warnings (sync from HEAD)
12172
12173 2004-08-07 [colin]      0.9.12cvs48.1
12174
12175         * src/prefs_folder_item.c
12176                 sync with HEAD 0.9.12cvs48
12177
12178 2004-08-06 [colin]      0.9.12cvs47.1
12179
12180         * src/compose.c
12181                 Sync with HEAD
12182
12183 2004-08-06 [christoph]  0.9.12cvs46.2
12184
12185         * src/main.c
12186         * src/plugins/clamav/clamav_plugin_gtk.c
12187         * src/plugins/dillo_viewer/dillo_viewer.c
12188         * src/plugins/image_viewer/plugin.c
12189         * src/plugins/mathml_viewer/mathml_viewer.c
12190         * src/plugins/spamassassin/spamassassin_gtk.c
12191         * src/plugins/trayicon/trayicon.c
12192                 don't mix GTK1.2 plugin with GTK2 plugins
12193
12194 2004-08-06 [colin]      0.9.12cvs46.1
12195
12196         * ChangeLog
12197         * ChangeLog.claws
12198         * ChangeLog.jp
12199         * configure.ac
12200         * sylpheed-claws.pc.in
12201         * src/folder.c
12202         * src/imap.c
12203         * src/localfolder.c
12204         * src/messageview.c
12205         * src/mimeview.c
12206         * src/mimeview.h
12207         * src/msgcache.c
12208         * src/news.c
12209         * src/prefs_ext_prog.c
12210         * src/prefs_folder_item.c
12211         * src/prefs_fonts.c
12212         * src/prefs_msg_colors.c
12213         * src/prefs_spelling.c
12214         * src/prefs_themes.c
12215         * src/prefs_toolbar.c
12216         * src/prefs_wrapping.c
12217         * src/procmime.h
12218         * src/common/defs.h
12219         * src/common/nntp.c
12220         * src/common/session.c
12221         * src/common/session.h
12222         * src/common/socket.c
12223         * src/common/utils.h
12224         * src/common/xml.c
12225         * src/common/xml.h
12226         * src/gtk/prefswindow.c
12227         * src/gtk/prefswindow.h
12228         * src/plugins/clamav/clamav_plugin_gtk.c
12229         * src/plugins/dillo_viewer/dillo_prefs.c
12230         * src/plugins/image_viewer/viewerprefs.c
12231         * src/plugins/spamassassin/spamassassin_gtk.c
12232         * m4/openssl.m4 *** REMOVED ***
12233                 Sync with HEAD 0.9.12cvs46
12234
12235 2004-08-03 [paul]       0.9.12cvs40.2
12236
12237         * src/action.c
12238         * src/addressadd.c
12239         * src/addressbook.c
12240         * src/addrgather.c
12241         * src/browseldap.c
12242         * src/compose.c
12243         * src/crash.c
12244         * src/editaddress.c
12245         * src/editgroup.c
12246         * src/editldap_basedn.c
12247         * src/foldersel.c
12248         * src/importldif.c
12249         * src/mimeview.c
12250         * src/prefs_common.c
12251         * src/prefs_template.c
12252         * src/sourcewindow.c
12253         * src/summaryview.c
12254         * src/gtk/about.c
12255         * src/gtk/foldersort.c
12256         * src/gtk/logwindow.c
12257         * src/gtk/pluginwindow.c
12258         * src/gtk/prefswindow.c
12259                 change all gtk_scrolled_window_set_policy from 
12260                 GTK_POLICY_ALWAYS to GTK_POLICY_AUTOMATIC
12261
12262 2004-08-02 [paul]       0.9.12cvs40.1
12263
12264         * AUTHORS
12265                 update translation team section
12266         * po/pt_BR.po
12267                 updated by Frederico Goncalves Guimaraes
12268                 <fggdebian@yahoo.com.br>
12269
12270 2004-07-31 [colin]      0.9.12cvs39.9
12271
12272         * src/exphtmldlg.c
12273                 Fix compilation
12274
12275 2004-07-31 [colin]      0.9.12cvs39.8
12276
12277         * src/exphtmldlg.c
12278                 Fix an alertpanel type
12279
12280 2004-07-30 [colin]      0.9.12cvs39.7
12281
12282         * src/alertpanel.c
12283                 Fix alertpanel_error_log's icon
12284
12285 2004-07-30 [colin]      0.9.12cvs39.6
12286
12287         * src/pop.c
12288                 Two of them should still be warnings
12289
12290 2004-07-30 [colin]      0.9.12cvs39.5
12291
12292         * src/pop.c
12293                 More warning -> error
12294 2004-07-29 [colin]      0.9.12cvs39.4
12295
12296         * src/pop.c
12297                 Warning -> error
12298
12299 2004-07-29 [colin]      0.9.12cvs39.3
12300
12301         * src/prefs_matcher.c
12302                 Fix segfault
12303
12304 2004-07-29 [colin]      0.9.12cvs39.2
12305
12306         * src/alertpanel.c
12307                 More nice-looking alertpanels
12308
12309 2004-07-29 [colin]      0.9.12cvs39.1
12310
12311         * src/messageview.c
12312                 sync with head
12313                 (inform user when partial mail is deleted on server)
12314
12315 2004-07-29 [colin]      0.9.12cvs38.1
12316
12317         * src/messageview.c
12318                 sync with head
12319
12320 2004-07-28 [paul]       0.9.12cvs37.7
12321
12322         * src/mainwindow.c
12323                 complete the replacement of deprecated gtk_progress_*
12324
12325 2004-07-28 [paul]       0.9.12cvs37.6
12326
12327         * src/action.c
12328         * src/inc.c
12329         * src/mainwindow.c
12330         * src/send_message.c
12331         * src/gtk/progressdialog.c
12332         * src/gtk/progressdialog.h
12333                 replace deprecated gtk_progress_*
12334
12335 2004-07-28 [paul]       0.9.12cvs37.5
12336
12337         * src/gtk/filesel.c
12338                 remove gtk_window_set_wmclass()
12339 2004-07-28 [paul]       0.9.12cvs37.4
12340
12341         * src/addressbook.c
12342         * src/compose.c
12343         * src/foldersel.c
12344         * src/mainwindow.c
12345         * src/messageview.c
12346         * src/sourcewindow.c
12347         * src/gtk/logwindow.c
12348                 remove gtk_window_set_wmclass()
12349                 
12350         * src/prefs_filtering.c
12351         * src/prefs_filtering_action.c
12352         * src/prefs_fonts.c
12353         * src/prefs_gtk.c
12354         * src/prefs_matcher.c
12355         * src/ssl_manager.c
12356         * src/gtk/prefswindow.c
12357                 replace gtk_window_position()
12358
12359 2004-07-28 [colin]      0.9.12cvs37.3
12360
12361         * src/alertpanel.c
12362         * src/alertpanel.h
12363                 Add a way to specify panel type for specific
12364                 panels (alertpanel())
12365         * src/account.c
12366         * src/addressbook.c
12367         * src/compose.c
12368         * src/expldifdlg.c
12369         * src/main.c
12370         * src/messageview.c
12371         * src/summaryview.c
12372         * src/textview.c
12373         * src/gtk/sslcertwindow.c
12374                 Fix alertpanel()s so that their icon match
12375                 their real type
12376
12377 2004-07-28 [paul]       0.9.12cvs37.2
12378
12379         * src/addr_compl.c
12380         * src/addressbook.c
12381         * src/alertpanel.c
12382         * src/compose.c
12383         * src/export.c
12384         * src/foldersel.c
12385         * src/folderview.c
12386         * src/grouplistdialog.c
12387         * src/import.c
12388         * src/mainwindow.c
12389         * src/message_search.c
12390         * src/messageview.c
12391         * src/passphrase.c
12392         * src/prefs_actions.c
12393         * src/prefs_common.c
12394         * src/prefs_customheader.c
12395         * src/prefs_display_header.c
12396         * src/prefs_filtering.c
12397         * src/prefs_filtering_action.c
12398         * src/prefs_gtk.c
12399         * src/prefs_matcher.c
12400         * src/prefs_msg_colors.c
12401         * src/prefs_summary_column.c
12402         * src/prefs_template.c
12403         * src/sourcewindow.c
12404         * src/ssl_manager.c
12405         * src/summary_search.c
12406         * src/gtk/colorsel.c
12407         * src/gtk/description_window.c
12408         * src/gtk/gtkaspell.c
12409         * src/gtk/inputdialog.c
12410         * src/gtk/logwindow.c
12411         * src/gtk/prefswindow.c
12412         * src/gtk/progressdialog.c
12413                 replace deprecated gtk_window_set_policy
12414
12415 2004-07-27 [colin]      0.9.12cvs37.1
12416
12417         * src/msgcache.c
12418                 More fixes (synced for head again)
12419
12420 2004-07-27 [colin]      0.9.12cvs35.3
12421
12422         * src/msgcache.c
12423                 Fix wrong test
12424
12425 2004-07-27 [colin]      0.9.12cvs35.2
12426
12427         * src/mimeview.c
12428                 Fix width a bit (by Paul)
12429         * src/alertpanel.c
12430         * src/alertpanel.h
12431                 Specialize icons, make alertpanel_message()
12432                 private
12433         * src/message_search.c
12434         * src/sgpgme.c
12435         * src/summary_search.c
12436                 Suit alertpanel changes
12437
12438 2004-07-27 [colin]      0.9.12cvs35.1
12439
12440         * src/alertpanel.c
12441                 Add an icon
12442         * src/passphrase.c
12443                 Add debug output - maybe someone will
12444                 want to look at the problem with Grab
12445                 Input :)
12446         Bump version as we're synced with HEAD
12447
12448 2004-07-26 [colin]      0.9.12cvs33.26
12449
12450         * src/pop.c
12451                 Fix uidl-file parsing when not in new
12452                 format
12453
12454 2004-07-26 [colin]      0.9.12cvs33.25
12455
12456         * src/gtk/menu.c
12457                 Move popup menu up if necessary (fixes 
12458                 account selector)
12459         * src/mainwindow.c
12460                 Set account selector's button height to
12461                 minimum
12462
12463 2004-07-26 [colin]      0.9.12cvs33.24
12464
12465         * src/alertpanel.c
12466                 Maybe fix 551 (Truncated font in alert window)
12467
12468 2004-07-26 [colin]      0.9.12cvs33.23
12469
12470         * po/de.po
12471         * po/es.po
12472         * po/fr.po
12473         * po/it.po
12474         * po/ja.po
12475         * po/pl.po
12476         * po/ru.po
12477         * po/sk.po
12478         * po/sr.po
12479         * po/zh_CN.po
12480                 Sync po files with HEAD
12481
12482 2004-07-26 [paul]       0.9.12cvs33.22
12483
12484         * src/compose.c
12485                 fix Bug 556 'Organisation-header is sent even if empty'
12486
12487 2004-07-24 [colin]      0.9.12cvs33.21
12488
12489         * src/compose.c
12490         * src/gtk/gtkaspell.c
12491         * src/gtk/gtkaspell.h
12492                 Fix speller accelerators (require hack)
12493
12494 2004-07-24 [colin]      0.9.12cvs33.20
12495
12496         * src/gtk/gtkaspell.c
12497                 Fix over-eager code deletion breaking
12498                 Check while typing
12499
12500 2004-07-24 [colin]      0.9.12cvs33.19
12501
12502         * src/browseldap.c
12503         * src/ldapctrl.c
12504         * src/ldapctrl.h
12505         * src/ldapserver.h
12506                 Sync ldap with HEAD
12507         (Fixes 546 LDAP completely broken)
12508
12509 2004-07-24 [colin]      0.9.12cvs33.18
12510
12511         * src/prefs_msg_colors.c
12512                 Fix prototype mismatch
12513         (Fixes 547 void function cannot return value)
12514
12515 2004-07-24 [colin]      0.9.12cvs33.17
12516
12517         * src/mainwindow.c
12518                 Fix sort going back to previous sort key
12519                 when changing sort direction
12520
12521 2004-07-24 [colin]      0.9.12cvs33.16
12522
12523         * src/compose.c
12524                 Fix space insertion when re-wrapping at 
12525                 cursor point
12526
12527 2004-07-24 [colin]      0.9.12cvs33.15
12528
12529         * src/gtk/gtkaspell.c
12530                 Don't change cursor position in insert-text
12531                 callback
12532         (Fixes 539 Word wrapping on input transposes letters)
12533
12534 2004-07-24 [colin]      0.9.12cvs33.14
12535
12536         * src/gtk/gtkaspell.c
12537                 Reencode non-ascii chars to dictionary's
12538                 encoding
12539         (Fixes 544 Spell check broken non english locale)
12540
12541 2004-07-24 [colin]      0.9.12cvs33.13
12542
12543         * src/summaryview.c
12544                 Fix Shift+Down, add Home/End/PgUp/PgDown
12545
12546 2004-07-21 [colin]      0.9.12cvs33.12
12547
12548         * src/prefs_common.c
12549                 Fix a gtk warning (Patch by Andrej Kacian)
12550
12551 2004-07-21 [colin]      0.9.12cvs33.11
12552
12553         * src/gtk/filesel.c
12554                 More check
12555
12556 2004-07-21 [colin]      0.9.12cvs33.10
12557
12558         * src/compose.c
12559         * src/crash.c
12560         * src/export.c
12561         * src/import.c
12562         * src/messageview.c
12563         * src/mimeview.c
12564         * src/prefs_spelling.c
12565         * src/prefs_themes.c
12566         * src/summaryview.c
12567         * src/gtk/filesel.c
12568         * src/gtk/filesel.h
12569         * src/gtk/pluginwindow.c
12570                 Untwist open/save mode guessing logic, make
12571                 it explicit
12572
12573 2004-07-20 [colin]      0.9.12cvs33.9
12574
12575         * src/codeconv.c
12576                 conv_encode_header: src_charset is UTF-8 on
12577                 gtk2
12578         * src/compose.c
12579                 Remove double encoding of the headers
12580
12581 2004-07-20 [colin]      0.9.12cvs33.8
12582
12583         * src/codeconv.c
12584                 Fix typo
12585
12586 2004-07-20 [colin]      0.9.12cvs33.7
12587
12588         * src/mainwindow.c
12589                 Set the separated messageview to the saved
12590                 size of Claws' messageview (Patch by Alfons)
12591                 Fix a callback prototype (me)
12592
12593 2004-07-20 [colin]      0.9.12cvs33.6
12594
12595         * src/codeconv.h
12596                 Forgot one hunk in 0.9.12cvs33.4
12597
12598 2004-07-19 [colin]      0.9.12cvs33.5
12599
12600         * src/action.c
12601                 Action output fix
12602                 Patch by Alfons
12603
12604 2004-07-19 [colin]      0.9.12cvs33.4
12605
12606         * src/compose.c
12607                 Fix outgoing charset bug in headers
12608         * src/codeconv.c
12609                 Clean for glib2 - Patch by Alfons
12610
12611 2004-07-19 [colin]      0.9.12cvs33.3
12612
12613         * src/statusbar.c
12614                 Remove grip from the statusbar
12615                 Patch by Alfons
12616
12617 2004-07-19 [colin]      0.9.12cvs33.2
12618
12619         * src/messageview.c
12620         * src/textview.c
12621                 Fix messageview remembering the previous
12622                 scroll position when loading a new message
12623                 Patch by Alfons
12624
12625 2004-07-19 [colin]      0.9.12cvs33.1
12626
12627         * src/folder.h
12628         * src/folderview.c
12629         * src/summaryview.c
12630                 Sync with HEAD
12631
12632 2004-07-18 [colin]      0.9.12cvs32.7
12633
12634         * configure.ac
12635                 Remove useless check for XIM - noticed
12636                 by Alfons
12637
12638 2004-07-18 [colin]      0.9.12cvs32.6
12639
12640         * src/summaryview.c
12641                 Remove non-modified and shift-modified
12642                 accelerators in summaryview's popup
12643                 menu, as that doesn't get catched by
12644                 the accel-activate signal catcher...
12645
12646 2004-07-18 [colin]      0.9.12cvs32.5
12647
12648         * src/prefs_common.c
12649                 Define sensible default prefs for 
12650                 wrapping
12651
12652 2004-07-18 [colin]      0.9.12cvs32.4
12653
12654         * src/compose.c
12655         * src/prefs_common.c
12656         * src/prefs_common.h
12657         * src/prefs_wrapping.c
12658                 Remove Smart Wrapping pref, which does
12659                 nothing on gtk2 branch
12660
12661 2004-07-18 [colin]      0.9.12cvs32.3
12662
12663         * src/sourcewindow.c
12664                 Proper utf8
12665
12666 2004-07-18 [colin]      0.9.12cvs32.2
12667
12668         * src/compose.c
12669                 Save attachment status when drafting
12670
12671 2004-07-18 [colin]      0.9.12cvs32.1
12672
12673         * src/gtk/filesel.c
12674                 Fix erratic folder selection in open mode
12675
12676 2004-07-18 [colin]      0.9.12cvs31.11
12677
12678         * src/pop.c
12679                 Don't let partial messages get deleted
12680                 even with "dowload all"
12681                 (0.9.12cvs31.8 fix extension)
12682 2004-07-18 [colin]      0.9.12cvs31.10
12683
12684         * src/gtk/logwindow.c
12685                 Fix log scrolling
12686
12687 2004-07-18 [colin]      0.9.12cvs31.9
12688
12689         * src/common/utils.c
12690                 Fix non-utf8 strings coming from commands
12691                 and files
12692
12693 2004-07-18 [colin]      0.9.12cvs31.8
12694
12695         * src/pop.c
12696                 Fix partial download bug with Download all
12697                 messages option
12698
12699 2004-07-18 [colin]      0.9.12cvs31.7
12700
12701         * src/textview.c
12702                 Fix bug introduced in 0.9.12cvs31.2
12703                 (blocked in select mode after double click)
12704
12705 2004-07-18 [colin]      0.9.12cvs31.6
12706
12707         * src/compose.c
12708         * src/gtk/menu.c
12709                 More glib-warning fixes
12710
12711 2004-07-18 [colin]      0.9.12cvs31.5
12712
12713         * src/compose.c
12714                 Fix trashing the primary clipboard when moving 
12715                 around with tab
12716         (Fix Bug 536 Unintuitive: "To:" copied to clipboard)
12717
12718 2004-07-18 [colin]      0.9.12cvs31.4
12719
12720         * src/codeconv.c
12721                 convert unencoded iso headers to utf8
12722         (Fix Bug 538 Unencoded local characters in subject make it 
12723          disappear)
12724
12725 2004-07-18 [colin]      0.9.12cvs31.3
12726
12727         * src/compose.c
12728                 Fix tab char handling in wrapping
12729         (Fix Bug 537 Line wrap problem - TAB character treated as 
12730          one character instead of 8)
12731
12732 2004-07-18 [colin]      0.9.12cvs31.2
12733
12734         * src/textview.c
12735                 return FALSE on GDK_MOTION_NOTIFY
12736         (Fix Bug 535 Hyperlinks/addresses are not selectable 
12737          (unable to highlight))
12738
12739 2004-07-18 [colin]      0.9.12cvs31.1
12740
12741         * src/folderview.c
12742                 Sync with 0.9.12cvs31
12743
12744 2004-07-18 [colin]      0.9.12cvs30.4
12745
12746         * src/compose.c
12747                 Also block text_inserted when inserting a file
12748
12749 2004-07-18 [colin]      0.9.12cvs30.3
12750
12751         * src/compose.c
12752                 Fix smart wrapping (block text_inserted handler
12753                 while putting quotation to avoid wrap on input,
12754                 don't join lines if next is sig separator)
12755
12756 2004-07-17 [colin]      0.9.12cvs30.2
12757
12758         * src/folderview.c
12759         * src/mainwindow.c
12760         * src/mimeview.c
12761         * src/summaryview.c
12762         * src/gtk/quicksearch.c
12763         * src/gtk/quicksearch.h
12764                 Block key events handlers *and* accels while
12765                 quicksearch is focused
12766         (Fixes Bug 534 quick-search bar not accepting certain letters)
12767
12768 2004-07-17 [colin]      0.9.12cvs30.1
12769
12770         * src/folder.h
12771         * src/folderview.c
12772         * src/summaryview.c
12773                 Sync with 0.9.12cvs30
12774
12775 2004-07-17 [colin]      0.9.12cvs28.2
12776
12777         * src/mimeview.c
12778         * src/procmime.c
12779         * src/summaryview.c
12780         * src/gtk/menu.c
12781                 Squash some compile and glib warnings
12782
12783 2004-07-17 [paul]       0.9.12cvs28.1
12784
12785         * src/mimeview.c
12786                 sync with 0.9.12cvs28 HEAD
12787
12788 2004-07-16 [paul]       0.9.12cvs26.1
12789         
12790         * src/gtk/quicksearch.c
12791         * src/account.c
12792         * src/account.h
12793         * src/compose.c
12794         * src/customheader.c
12795         * src/folder_item_prefs.c
12796         * src/main.c
12797         * src/mainwindow.c
12798         * src/messageview.c
12799         * src/mimeview.c
12800         * src/news.c
12801         * src/pgpmime.c
12802         * src/pop.c
12803         * src/pop.h
12804         * src/prefs_account.c
12805         * src/prefs_account.h
12806         * src/prefs_common.c
12807         * src/prefs_common.h
12808         * src/prefs_display_header.c
12809         * src/prefs_gtk.c
12810         * src/prefs_gtk.h
12811         * src/procheader.c
12812         * src/procmime.c
12813                 sync with 0.9.12cvs26 HEAD      
12814
12815 2004-07-15 [colin]      0.9.12cvs18.14
12816
12817         * src/folder.c
12818                 Disable GPG signature check during
12819                 folder move and scan
12820         (Closes Bug 521 Signature checking slows down Folder-Move)
12821
12822 2004-07-14 [colin]      0.9.12cvs18.13
12823
12824         * src/common/partial_download.c
12825                 update includes
12826
12827 2004-07-14 [colin]      0.9.12cvs18.12
12828
12829         * src/common/partial_download.c
12830         * src/common/partial_download.h
12831                 Move doc at top, add correct copyright
12832
12833 2004-07-14 [colin]      0.9.12cvs18.11
12834
12835         * src/folder.c
12836         * src/messageview.c
12837         * src/pop.c
12838         * src/pop.h
12839         * src/procmsg.c
12840         * src/summaryview.c
12841         * src/common/Makefile.am
12842         * src/common/partial_download.c ** NEW FILES **
12843         * src/common/partial_download.h ** NEW FILES **
12844                 Move partial-download related stuff to its
12845                 own file
12846
12847 2004-07-14 [colin]      0.9.12cvs18.10
12848
12849         * src/send_message.c
12850                 Fix smtp auth when user is null or empty
12851
12852 2004-07-13 [colin]      0.9.12cvs18.9
12853
12854         * src/gtk/quicksearch.c
12855                 Use alphabetic order
12856
12857 2004-07-13 [colin]      0.9.12cvs18.8
12858
12859         * src/pop.c
12860                 Be paranoid on the checks
12861
12862 2004-07-13 [colin]      0.9.12cvs18.7
12863
12864         * src/gtk/quicksearch.c
12865                 Fix Engrish once again
12866
12867 2004-07-13 [colin]      0.9.12cvs18.6
12868
12869         * src/procmsg.c
12870         * src/summaryview.c
12871                 Mark messages for deletion when they are about to
12872                 be removed from trash
12873
12874 2004-07-13 [colin]      0.9.12cvs18.5
12875
12876         * src/matcher.c
12877         * src/matcher.h
12878         * src/matcher_parser_parse.y
12879         * src/prefs_matcher.c
12880         * src/gtk/quicksearch.c
12881                 Add 'partial' ('p') match string to find partially
12882                 downloaded messages
12883
12884 2004-07-13 [colin]      0.9.12cvs18.4
12885
12886         * src/pop.c
12887                 Fix misplaced block
12888
12889 2004-07-13 [colin]      0.9.12cvs18.3
12890
12891         * src/pop.c
12892         * src/pop.h
12893         * src/messageview.c
12894                 Refactor API (to avoid passing 5+ params and code
12895                 duplication)
12896         * src/folder.c
12897         * src/msgcache.c
12898         * src/procheader.c
12899         * src/common/defs.h
12900                 Add planned_download to cache
12901                 Don't mess uidl file when moving partially downloaded
12902                 mails (they change folder, we should change it in the
12903                 uidl list too or we'll remove an incorrect message)
12904                 (this also helps removing hacks when changing 
12905                 planned_download in messageview.c)
12906
12907 2004-07-12 [colin]      0.9.12cvs18.2
12908
12909         * src/gtk/quicksearch.c
12910                 Fix missing status update in quicksearch
12911
12912 2004-07-12 [paul]       0.9.12cvs18.1
12913
12914         * po/POTFILES.in
12915         * src/Makefile.am
12916         * src/account.c
12917         * src/codeconv.c
12918         * src/compose.c
12919         * src/inc.c
12920         * src/main.c
12921         * src/prefs_common.c
12922         * src/procmsg.h
12923         * src/toolbar.c
12924         * src/prefs_msg_colors.[ch]     ** NEW FILES **
12925         * src/prefs_wrapping.[ch]       ** NEW FILES **
12926         * src/common/intl.h
12927         * src/common/utils.[ch]
12928         * src/gtk/quicksearch.[ch]
12929                 sync with 0.9.12cvs18 HEAD
12930
12931 2004-07-12 [colin]      0.9.11cvs17.25
12932
12933         * src/folder.c
12934         * src/folder.h
12935                 Remove unused function added by me in 0.9.11cvs17.10
12936
12937 2004-07-11 [colin]      0.9.11cvs17.24
12938
12939         * src/inc.c
12940         * src/messageview.c
12941         * src/pop.c
12942         * src/pop.h
12943                 Use folderitem and msgnum instead of filename to
12944                 know which mail to delete
12945                 Move old partial mail deletion to pop.c
12946
12947 2004-07-10 [colin]      0.9.11cvs17.23
12948
12949         * src/inc.c
12950                 Add debug
12951         * src/pop.c
12952         * src/pop.h
12953                 Don't re-use same enums for unrelated stuff: it's 
12954                 completely misleading !
12955                 Document a bit
12956
12957 2004-07-09 [colin]      0.9.11cvs17.22
12958
12959         * src/inc.c
12960                 Remove folder-type check and do
12961                 more tests to be sure everything's
12962                 ok
12963         * src/messageview.c
12964                 Punctuation update, remove useless
12965                 code, fix two warnings
12966         * src/noticeview.c
12967                 Layout cleaning, reset 2nd button
12968                 when specifying one
12969
12970 2004-07-09 [colin]      0.9.11cvs17.21
12971
12972         * src/messageview.c
12973         * src/pop.c
12974         * src/pop.h
12975                 Allow user to change his mind
12976                 and postpone decision (by
12977                 unmarking the mail)
12978
12979 2004-07-09 [colin]      0.9.11cvs17.20
12980
12981         * src/messageview.c
12982                 Fix bug with delete state
12983         * src/pop.c
12984         * src/pop.h
12985                 Fix buffer leak (fread doesn't 
12986                 terminate buffers with \0)
12987                 Refactoring (remove magic 
12988                 numbers)
12989
12990 2004-07-09 [colin]      0.9.11cvs17.19
12991
12992         * src/pop.c
12993                 Don't log "Skipping message" if 
12994                 we're going to TOP it two lines
12995                 later
12996
12997 2004-07-09 [colin]      0.9.11cvs17.18
12998
12999         * src/messageview.c
13000                 Fix Engrish
13001
13002 2004-07-09 [colin]      0.9.11cvs17.17
13003
13004         * src/pop.c
13005                 strlen checking...
13006         * src/messageview.c
13007                 refactoring a bit
13008
13009 2004-07-08 [colin]      0.9.11cvs17.16
13010
13011         * src/noticeview.c
13012         * src/noticeview.h
13013                 Add an optional second button
13014         * src/messageview.c
13015         * src/pop.c
13016         * src/pop.h
13017                 Don't delete partially received mails after a certain
13018                 time; rather, let the user decide.
13019
13020 2004-07-08 [colin]      0.9.11cvs17.15
13021
13022         * src/common/smtp.h
13023                 Sync with HEAD
13024
13025 2004-07-08 [colin]      0.9.11cvs17.14
13026
13027         * src/messageview.c
13028         * src/common/smtp.c
13029                 Use to_human_readable() for sizes
13030
13031 2004-07-08 [colin]      0.9.11cvs17.13
13032
13033         * src/inc.c
13034         * src/messageview.c
13035         * src/pop.c
13036         * src/pop.h
13037         * src/procmsg.c
13038                 Fix partial-downloading issues:
13039                         catch unsupported TOP
13040                         don't delete partially downloaded mails before 5 days
13041                         don't update existing with non-MH folders; that'll
13042                         make dups, but it's better than trashing the folder
13043                         free new msginfo parts
13044                 Fix indentation ;-)
13045
13046 2004-07-08 [colin]      0.9.11cvs17.12
13047
13048         * src/common/smtp.c
13049         * src/common/smtp.h
13050                 Sync smtp size verification with HEAD
13051
13052 2004-07-08 [colin]      0.9.11cvs17.11
13053
13054         * src/summaryview.c
13055         * src/prefs_common.c
13056         * src/prefs_common.h
13057         * src/gtk/quicksearch.c
13058         * src/gtk/quicksearch.h
13059                 Sync sticky pref with HEAD
13060
13061 2004-07-08 [colin]      0.9.11cvs17.10
13062
13063         * src/folder.c [1.213.2.6]
13064         * src/folder.h [1.87.2.6]
13065         * src/inc.c [1.149.2.7]
13066         * src/messageview.c [1.94.2.8]
13067         * src/procheader.c [1.47.2.6]
13068         * src/procmsg.c [1.150.2.4]
13069         * src/procmsg.h [1.60.2.5]
13070         * src/pop.c [1.56.2.4]
13071         * src/pop.h [1.17.2.3]
13072                 Let too big messages get downloaded, but truncated
13073                 Add a button to download them completely
13074                 
13075 2004-07-06 [colin]      0.9.11cvs17.9
13076
13077         * src/gtk/quicksearch.c [1.1.2.3]
13078                 Add a Clear button
13079         * commitHelper
13080         * PATCHSETS
13081                 Add a script to help with cvs
13082
13083 2004-07-03 [colin]      0.9.11cvs17.8
13084
13085         * src/plugins/imageviewer/viewer.c
13086                 fix imageviewer (which was staying on the first
13087                 displayed image)
13088
13089 2004-07-03 [colin]      0.9.11cvs17.7
13090
13091         Removed FIXME_GTK2 warnings
13092         * src/gtk/gtkutils.c
13093                 useless #warnings
13094         * src/gtk/menu.c
13095                 useless #warnings (no need to mess with menu rc)
13096         * src/gtk/menu.h
13097                 unused functions
13098         
13099
13100 2004-07-03 [colin]      0.9.11cvs17.6
13101
13102         Removed FIXME_GTK2 warnings
13103         * src/codeconv.c
13104                 useless #warnings (rewrite needed)
13105         * src/compose.c
13106                 useless #warnings (rewrite needed)
13107                 useless #warnings (gtk2 is like that)
13108                 useless #warnings (previously fixed)
13109         * src/main.c
13110                 useless #warnings (previously fixed)
13111         * src/message_search.c
13112                 useless #warnings (gtk2 is like that)
13113                 Made apparent that search is case-sensitive
13114         * src/mimeview.c
13115                 useless #warnings (rewrite needed)
13116                 useless #warnings (gtk2 is like that)
13117                 reimplemented real warnings
13118         * src/prefs_common.c
13119                 Removed block cursor option (not it gtk2)
13120         * src/prefs_gtk.c
13121                 useless #warnings (rewrite needed)
13122         * src/procheader.c
13123                 useless #warnings (rewrite needed)
13124         * src/sourcewindow.c
13125                 useless #warnings (incorrect placing)
13126         * src/summary_search.c
13127                 useless #warnings (gtk2 is like that)
13128                 Made apparent that search is case-sensitive
13129         * src/action.c
13130                 useless #warnings (gtk2 is like that)
13131         * src/textview.c
13132                 useless #warnings (rewrite needed)
13133         * src/toolbar.c
13134                 useless #warnings (rewrite needed)
13135
13136 2004-07-03 [colin]      0.9.11cvs17.5
13137
13138         * src/textview.c
13139                 Fix mismerge which broke URI opening
13140                 
13141 2004-07-01 [colin]      0.9.11cvs17.4
13142
13143         * src/gtk/filesel.c
13144                 Fill filename when saving
13145                 
13146 2004-06-27 [colin]      0.9.11cvs17.3
13147
13148         * src/gtk/filesel.[ch]
13149                 Use the new GTK file selector
13150                 Update prototype to match the reality: multiple file
13151                 selection is open-only          
13152         * src/compose.c
13153                 Match the new prototypes        
13154         * configure.ac
13155                 Match the new requirements (gtk 2.4.0)
13156                         
13157 2004-06-26 [colin]      0.9.11cvs17.2
13158
13159         * src/plugins/trayicon/trayicon.c
13160                 Remove useless signal handler on resize, which causes
13161                 an infinite "loop"
13162         
13163 2004-06-26 [colin]      0.9.11cvs17.1
13164         
13165         * tools/Makefile.am
13166                 remove launch_firebird and add nautilus2sylpheed.sh
13167         * src/quicksearch.c
13168           src/summaryview.c
13169                 Fix show/hide "Extended symbols" button problem
13170                 Fix apparition at startup
13171                 Fix const warnings
13172         * src/plugins/image_viewer/Makefile.am
13173                 Fix configure 
13174         * common/ssl.c
13175                 Re-enable certificate check, as it doesn't seem to
13176                 cause Xlib errors anymore
13177
13178 2004-06-25 [paul]       0.9.11cvs17
13179
13180         * sync with 0.9.11cvs17 HEAD
13181         
13182         NOTE: QuickSearch is broken
13183
13184 2004-06-07 [colin]      0.9.10claws67.10
13185         * src/plugins/trayicon/trayicon.c
13186           src/plugins/trayicon/libeggtrayicon/Makefile.am
13187           src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
13188                 Fix gettextization in trayicon plugin
13189
13190 2004-06-07 [colin]      0.9.10claws67.9
13191         
13192         * src/summaryview.c
13193           src/gtk/gtksctree.[ch]
13194                 Let Shift+{Up,Down} work in summaryview
13195                 (well, Down "works" and Up works)
13196                 Let the list scroll when using these keys
13197
13198 2004-06-06 [colin]      0.9.10claws67.8
13199
13200         * src/plugins/trayicon/trayicon.c
13201                 Fix pixmap update
13202
13203 2004-06-06 [colin]      0.9.10claws67.7
13204
13205         * src/addressbook.c
13206                 Fix signal handling causing system-wide focus grab
13207
13208 2004-05-25 [paul]       0.9.10claws67.6
13209
13210         * Makefile.am
13211           src/Makefile.am
13212                 clean up
13213
13214 2004-05-25 [paul]       0.9.10claws67.5
13215
13216         * replace deprecated gtk_signal... functions
13217
13218 2004-05-23 [colin]      0.9.10claws67.4
13219
13220         * src/compose.c
13221                 Fix wrapping
13222
13223 2004-05-22 [colin]      0.9.10claws67.3
13224
13225         * src/compose.c
13226                 Re-fix [Edited] in compose.c::compose_reedit()
13227
13228 2004-05-22 [colin]      0.9.10claws67.2
13229
13230         * src/procmime.c
13231                 Fix parsing of multiparts mails
13232
13233 2004-05-22 [colin]      0.9.10claws67.1
13234
13235         * src/summaryview.c
13236                 Fix quicksearch
13237
13238 2004-05-22 [paul]       0.9.10claws67
13239
13240         * sync with 0.9.10claws67 HEAD
13241
13242 2004-05-14 [alfons]
13243
13244         * src/procmime.h
13245                 add forgotton prototype
13246
13247 2004-05-10 [paul]       0.9.10claws57
13248
13249         * sync with 0.9.10claws57 HEAD
13250
13251 2004-05-05 [paul]       0.9.9.claws1
13252
13253         * ChangeLog-gtk2        ** REMOVED **
13254           ChangeLog-gtk2.claws  ** ADDED **
13255                 rename and adopt the normal claws format
13256                 
13257         * configure.ac
13258                 require gtkmathview >= 0.5
13259
13260         * ac/*                          ** REMOVED **
13261           ac/                           ** REMOVED **
13262           intl/Makefile.in              ** REMOVED **
13263           m4/                           ** ADDED **
13264           m4/missing                    ** ADDED **
13265           m4/missing/gdk-pixbuf.m4      ** ADDED **
13266           m4/missing/gettext.m4         ** ADDED **
13267           m4/missing/gpgme.m4           ** ADDED **
13268           m4/missing/imlib.m4           ** ADDED **
13269           m4/.cvsignore                 ** ADDED **
13270           m4/Makefile.am                ** ADDED **
13271           m4/README                     ** ADDED **
13272           m4/aclocal-include.m4         ** ADDED **
13273           m4/aspell.m4                  ** ADDED **
13274           m4/check-type.m4              ** ADDED **
13275           m4/gnupg-check-typedef.m4     ** ADDED **
13276           m4/openssl.m4                 ** ADDED **
13277           m4/spamassassin.m4            ** ADDED **
13278           po/ChangeLog                  ** REMOVED **
13279           po/Makefile.in.in             ** REMOVED **
13280           po/Rules-quot                 ** REMOVED **
13281           po/boldquot.sed               ** REMOVED **
13282           po/en@boldquot.header         ** REMOVED **
13283           po/en@quot.header             ** REMOVED **
13284           po/insert-header.sin          ** REMOVED **
13285           po/quot.sed                   ** REMOVED **
13286           po/remove-potcdate.sed        ** REMOVED **
13287           po/remove-potcdate.sin        ** REMOVED **
13288           po/stamp-po                   ** REMOVED **
13289           Makefile.am
13290           autogen.sh
13291           configure.ac
13292                 enable building with automake 1.8.x
13293                 add 'autopoint --force' to autogen.sh and remove all
13294                 auto-generated files, remove ac/ directory and use
13295                 m4/ directory instead
13296                 
13297         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
13298                 fix gettextization
13299
13300 2004-02-28 Colin Leroy <colin@colino.net>
13301         * src/prefs_matcher.c
13302           src/prefs_filtering.c
13303           src/prefs_filtering_action.c
13304                 Fix non-editable GtkEntries
13305
13306 2004-02-22 Thorsten Maerz <torte@netztorte.de>
13307         * src/prefs_themes.c
13308                 utf8 conversion for theme info
13309
13310 2004-02-21 Thorsten Maerz <torte@netztorte.de>
13311         * sync 0.9.9claws
13312
13313 2004-02-14 Thorsten Maerz <torte@netztorte.de>
13314         * src/grouplistdialog.c
13315                 allow multiple selections without ctrl key
13316
13317 2004-02-09 Thorsten Maerz <torte@netztorte.de>
13318         * src/main.c
13319                 enable customizable accelerators
13320
13321 2004-02-08 Thorsten Maerz <torte@netztorte.de>
13322         * src/prefs_common.c
13323                 re-enable different font settings for gtk1/2
13324         * src/prefs_folder_item.c
13325                 fix folder prefs displayed wrong
13326         * src/textview.c
13327                 set 'sunken' shadow type
13328
13329 2004-02-07 Colin Leroy <colin@colino.net>
13330         * src/compose.c
13331                 Fix message being always [Edited]
13332                 Encode headers correctly (utf8 buf)
13333
13334 2004-01-27 Thorsten Maerz <torte@netztorte.de>
13335         * src/socket.c
13336                 remove double g_source_attach()
13337                 (Thanks to Colin Leroy)
13338
13339 2004-01-27 Thorsten Maerz <torte@netztorte.de>
13340         * src/gtk/gtksctree.c
13341                 Fix SSL certificate list not shown
13342         * src/mimeview.c
13343                 Fix clicks in mime tree
13344
13345 2004-01-27 Thorsten Maerz <torte@netztorte.de>
13346         * src/common/socket.c
13347                 Fix SSL receive
13348         * src/compose.c
13349                 Fix clipboard menu hotkeys
13350
13351 2004-01-25 Thorsten Maerz <torte@netztorte.de>
13352         * src/gtk/gtkaspell.[ch]
13353           src/compose.c
13354                 reimplement spellchecker
13355
13356 2004-01-25 Thorsten Maerz <torte@netztorte.de>
13357         * src/gtk/filesel.c
13358                 crash when inserting file in compose window
13359                 (TODO: keep old selection on clicks)
13360         * src/main.c
13361                 use gtkrc-2.0 instead of gtkrc
13362
13363 2004-01-25 Thorsten Maerz <torte@netztorte.de>
13364         * src/messageview.c
13365                 remove orphaned mimeview unref()
13366
13367 2004-01-20 Thorsten Maerz <torte@netztorte.de>
13368         * src/grouplistdialog.c
13369                 expand nodes containing subscribed groups
13370
13371 2004-01-19 Thorsten Maerz <torte@netztorte.de>
13372         * src/textview.c
13373                 textview: hide cursor, restore old click behaviour
13374
13375 2004-01-18 Thorsten Maerz <torte@netztorte.de>
13376         * src/textview.c
13377                 variable names messed up
13378
13379 2004-01-17 Colin Leroy <colin@colino.net>
13380         * src/addr_compl.c
13381                 Fix completion address too thin
13382         * src/compose.c
13383                 Fix tab-to-subject behaviour
13384         * src/summaryview.c
13385                 Implement key up & down in summaryview
13386
13387 2004-01-12 Thorsten Maerz <torte@netztorte.de>
13388
13389         * sync 098claws
13390
13391 2004-01-08 Thorsten Maerz <torte@netztorte.de>
13392         * configure.ac
13393           Makefile.am
13394           doc/.cvsignore
13395           doc/Makefile.am
13396                 faq, man, manual moved to doc/
13397         * ac/aspell.m4
13398           ac/check-type.m4
13399           ac/gnupg-check-typedef.m4
13400           ac/openssl.m4
13401           ac/spamassassin.m4
13402           ac/missing/gdk-pixbuf.m4
13403           ac/missing/gpgme.m4
13404           ac/missing/imlib.m4
13405                 fix automake warnings
13406
13407 2003-12-06 Colin Leroy <colin@colino.net>
13408         * src/summaryview.c
13409                 Fix quicksearch
13410
13411 2003-12-05 Colin Leroy <colin@colino.net>
13412         * src/summaryview.c
13413                 Fix going to next unread folder
13414
13415 2003-12-05 Colin Leroy <colin@colino.net>
13416         * src/crash.c
13417                 Fix gtk2 compilation
13418         * src/session.c
13419                 Remove iotag source handler at disconnection
13420         * src/socket.[ch] 
13421                 Remove source handler when closing socket 
13422                 (fixes another seg)
13423
13424 2003-12-04 Colin Leroy <colin@colino.net>
13425         * src/compose.c
13426           src/prefs_account.c
13427           src/prefs_common.c
13428                 Fix some dropdown menus
13429
13430 2003-12-04 Colin Leroy <colin@colino.net>
13431         * src/compose.c
13432                 Fix event handlers on header fields
13433         * src/common/socket.c
13434           src/common/session.c
13435                 Fix segfault with callback (SSL)
13436                 Fix end of session 
13437
13438 2003-10-06 Thorsten Maerz <torte@netztorte.de>
13439
13440         * Fix compile bug in src/compose.c
13441         * removed src/gtk/gtkstext.[ch]
13442
13443 2003-09-17 Takuro Ashie <ashie@homa.ne.jp>
13444
13445         * Convert character set and escape "text" attributes in toolbar setting
13446         files.
13447         * Fixed bug in button-press-event handling.
13448
13449 2003-09-16 Thorsten Maerz <torte@netztorte.de>
13450
13451         * Fixed bug in key-press-event handling.
13452
13453 2003-09-16 Takuro Ashie <ashie@homa.ne.jp>
13454
13455         * Enabled to compile tray-icon plugin (Ad-hoc).
13456         * Avoid hang up bug of icon list in mime view (Ad-hoc).
13457
13458 2003-09-14 Takuro Ashie <ashie@homa.ne.jp>
13459
13460         * Enabled to compile on sylpheed-claws.
13461         (tray-icon plugin still cannot compile yet.)
13462
13463 2003-09-06 Takuro Ashie <ashie@homa.ne.jp>
13464
13465         * Updated to 0.9.5.
13466
13467 2003-08-02 Takuro Ashie <ashie@homa.ne.jp>
13468
13469         * Updated to 0.9.4.
13470         * Ported monitoring SSL mechanism to GSource of GLib2
13471         (I don't confirm it)
13472         * Added _gtk2 suffix to key name of font preference to avoid
13473         ovverwriting preference of Gtk+-1.2 version.
13474
13475 2003-06-09 Takuro Ashie <ashie@homa.ne.jp>
13476
13477         * Updated to 0.9.2.
13478
13479 2003-05-30 Takuro Ashie <ashie@homa.ne.jp>
13480
13481         * Updated to 0.9.1.
13482         * Translate po files into UTF-8 when execute autogen.sh.
13483
13484 2003-05-28 Takuro Ashie <ashie@homa.ne.jp>
13485
13486         * Updated to 0.9.0.
13487
13488 2003-04-29 Takuro Ashie <ashie@homa.ne.jp>
13489
13490         * Plugged GError related memory leaks.
13491
13492 2003-04-28 Takuro Ashie <ashie@homa.ne.jp>
13493
13494         * Changed default size of fonts.
13495         * Enabled to set titile font size of warning dialog.
13496
13497 2003-04-23 Takuro Ashie <ashie@homa.ne.jp>
13498
13499         * Embed a sylpheed icon into executable binary on Windows.
13500
13501 2003-04-21 Takuro Ashie <ashie@homa.ne.jp>
13502
13503         * I forgot to traslate character set of element string in src/xml.c.
13504
13505 2003-04-18 Takuro Ashie <ashie@homa.ne.jp>
13506
13507         * Fixed detecting bind_textdomain_codeset in configure.in.
13508         * The bug in which "Example" of "Date fromat" preference isn't displayed
13509         correctly has been fixed.
13510
13511 2003-04-04 Takuro Ashie <ashie@homa.ne.jp>
13512
13513         * Added bind_textdomain_codeset into AC_CHECK_FUNCS.
13514           Replaced AM_GLIB_GNU_GETTEXT to AM_GNU_GETTEXT.
13515           glib-gettextize
13516           Removed intl directory.
13517           Translated po files into UTF-8.
13518           (Thanks! Ryuji Abe)
13519
13520 2003-03-28 Takuro Ashie <ashie@homa.ne.jp>
13521
13522         * The bug which doesn't unscape string in xml.c has been fixed.
13523
13524 2003-03-27 Takuro Ashie <ashie@homa.ne.jp>
13525
13526         * The bug which is failed to translate encoding of file name thorough
13527         file dialog has been fixed.
13528
13529 2003-03-25 Takuro Ashie <ashie@homa.ne.jp>
13530
13531         * Modified to translate file names which is used in inporting/expoting
13532         mbox feature and "Save as" feature into locale encoding.
13533         * Translate file names into locale encoding when "Attache file" and
13534         "Insert file".
13535         * Force set G_BROKEN_FILENAMES environment variable.
13536         * Other minor fixes.
13537
13538 2003-03-17 Takuro Ashie <ashie@homa.ne.jp>
13539
13540         * Modified to treat MH folder's name as locale encoding.
13541
13542 2003-03-16 Takuro Ashie <ashie@homa.ne.jp>
13543
13544         * The bug which clash on switching candidates of auto completion of
13545         addresses, cannot use auto completion in Japanesse is fixed
13546         (Thanks! Tokunaga-san)¡¥
13547
13548 2003-03-14 Takuro Ashie <ashie@homa.ne.jp>
13549
13550         * The bug which cannot switch key accelerator preference has been fixed
13551         (Thanks! smbd-san)¡¥
13552
13553 2003-03-14 Takuro Ashie <ashie@homa.ne.jp>
13554
13555         * version 0.8.11-gtk2-20030314
13556
13557 2003-03-14 Takuro Ashie <ashie@homa.ne.jp>
13558
13559         * The bug in which character set conversion of filtering messages has
13560         been fixed.(Thanks! COCOA-san).
13561
13562 2003-03-13 Takuro Ashie <ashie@homa.ne.jp>
13563
13564         * Revived "Leave space on head" preference in "Message" category.
13565         * A bug which clash when put the cursor to end of buffer and execute
13566         "Wrap current paragraph" was fixed.(Thanks! Tokunaga-san)
13567
13568 2003-03-12 Takuro Ashie <ashie@homa.ne.jp>
13569
13570         * version 0.8.11-gtk2-20030312
13571
13572 2003-03-12 Takuro Ashie <ashie@homa.ne.jp>
13573
13574         * Fixed position of  switching account popup (Thanks! Ikezoe-san)¡¥
13575         * Modified to use Pango's API directly for font preference.
13576         * Integrated GtkTextView of textview to one widget.
13577         * Set fonts of header title in textview by "header_title" tag.
13578         * Removed some deprecated codes.
13579
13580 2003-03-11 Takuro Ashie <ashie@homa.ne.jp>
13581
13582         * Updated to 0.8.11.
13583         * Merged cygwin patch(Thanks! Sakai-san).
13584
13585 2003-03-09 Takuro Ashie <ashie@homa.ne.jp>
13586
13587         * version 0.8.10-gtk2-20030309