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