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