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