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