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