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