2006-08-25 [mones] 2.4.0cvs88
[claws.git] / ChangeLog
1 2006-08-25 [mones]      2.4.0cvs88
2
3         * manual/ack.xml
4                 Reformatted, changed email address
5         * manual/glossary.xml
6                 Reformatted, fixed MANUAL-TODO items:
7                 8.2. + add ROT-13 to glossary
8                 8.4. + add URL to glossary
9         * manual/es/advanced.xml
10                 Fixed <literal>s
11
12 2006-08-25 [paul]       2.4.0cvs87
13
14         * src/gtk/icon_legend.c
15                 add 'marked for deletion' icon
16                 arrange icons by containing column
17                 wrap long label text
18
19 2006-08-25 [colin]      2.4.0cvs86
20
21         * src/common/utils.c
22         * src/common/utils.h
23                 Add the sc_g_*list_bigger functions in
24                 a place everyone can use it
25         * src/summaryview.c
26                 Only freeze/thaw the list when working
27                 on the selection, if it's bigger than 1
28         * src/gtk/gtksctree.c
29                 Only freeze/thaw the list when unselec-
30                 ting 'all' if ('all' != 1)
31                 This avoids some flickering
32
33 2006-08-24 [colin]      2.4.0cvs85
34
35         * src/addressbook.c
36                 Fix strange list selection
37                 Fix random seg (Invalid read of freed memory)
38
39 2006-08-24 [colin]      2.4.0cvs84
40
41         * src/alertpanel.c
42         * src/gtk/inputdialog.c
43         * src/plugins/pgpcore/passphrase.c
44                 Revert minimal width patch of 2.4.0cvs67,
45                 as it is also a maximal width. Use 
46                 gtk_window_set_default_size instead.
47
48 2006-08-24 [colin]      2.4.0cvs83
49
50         * src/msgcache.c
51                 Write cache/mark to temp files before
52                 overwriting old ones (avoids metadata
53                 loss if writing the new files fail).
54                 Use mmap() to read cache/mark file, as
55                 this makes cache reading faster. Dis-
56                 abled for big-endian machines until it
57                 can be tested. (Big-endian users: set
58                 msgcache_use_mmap = TRUE in the relevant
59                 #if).
60         * src/procmsg.h
61                 Move rarely used fields of MsgInfo in 
62                 another structure, which will only be
63                 allocated if needed. Face, X-Face,
64                 Return receipt headers and List-*
65                 headers are moved. Mails having none
66                 of these occupy 52 bytes less with
67                 this patch, which makes 2.5MB of RAM
68                 saved on a 50k folder).
69         * src/headerview.c
70         * src/mainwindow.c
71         * src/messageview.c
72         * src/partial_download.c
73         * src/procheader.c
74         * src/procmsg.c
75         * src/textview.c
76                 Follow this structure change.
77
78 2006-08-24 [wwp]        2.4.0cvs82
79
80         * manual/es/.cvsignore
81         * manual/es/dist/.cvsignore
82         * manual/es/dist/html/.cvsignore
83         * manual/es/dist/pdf/.cvsignore
84         * manual/es/dist/ps/.cvsignore
85         * manual/es/dist/txt/.cvsignore
86                 more (generated) files to ignore.
87
88 2006-08-24 [colin]      2.4.0cvs81
89
90         * src/folder.c
91         * src/mh.c
92                 Fix possible problems with local delivery. Check the folder doesn't
93                 need scan before setting its mtime when saving cache (which can be
94                 done long after the folder's been modified by an external process);
95                 Check that the stored item's mtime didn't change in mh functions.
96
97 2006-08-24 [mones]      2.4.0cvs80
98
99         * manual/advanced.xml
100                 Rewrapping, some fixes and MANUAL-TODO items:
101                 8.1. = change "" to <quote></quote>
102                 8.3. = quote menu items
103                 8.5. - deploying -> new user ... ideally a new user (redundant)
104
105 2006-08-23 [colin]      2.4.0cvs79
106
107         * src/gtk/gtksctree.c
108                 When selecting or deselecting range, only
109                 freeze/thaw when selection is bigger than 10
110
111 2006-08-23 [colin]      2.4.0cvs78
112
113         * src/messageview.c
114         * src/mimeview.c
115         * src/mimeview.h
116         * src/plugins/dillo_viewer/dillo_viewer.c
117                 Provide an API for MimeViewer plugins to
118                 return a text selection for replying
119
120 2006-08-23 [colin]      2.4.0cvs77
121
122         * src/image_viewer.c
123         * src/textview.c
124                 Use gtk_pixbuf_new_from_file_at_scale(), which
125                 is faster than getting the pixbuf then resizing
126                 it.
127
128 2006-08-23 [colin]      2.4.0cvs76
129
130         * src/procmime.c
131                 UTF-8 should be sent Quoted-printable
132
133 2006-08-22 [colin]      2.4.0cvs75
134
135         * src/mh.c
136                 Check if scan is required before touching
137                 the folder (or it'll be required every time)
138
139 2006-08-22 [colin]      2.4.0cvs74
140
141         * configure.ac
142                 Require libetpan 0.46 (crasher fix when built
143                 against gnutls)
144
145 2006-08-22 [colin]      2.4.0cvs73
146
147         * src/folder.c
148                 Set folder's mtime after writing its
149                 cache
150         * src/folderview.c
151                 Add some timing
152         * src/procmsg.c
153                 Don't do useless stuff if we don't 
154                 thread by subject
155         * src/summaryview.c
156                 Add some timing, don't deselect prior
157                 to selecting (gtksctree does it itself),
158                 remove crash avoidance hacks as it's been
159                 properly fixed since a while
160         * src/common/utils.c
161                 Optimize to_human_readable(): _() is slow,
162                 do it only once, and avoid %f format for KB
163                 (the most common in a summaryview)
164         * src/gtk/gtksctree.c
165                 Don't uselessly freeze/thaw (fixes flicker
166                 on next unread and friends), reduce number
167                 of g_list_nth/g_list_position where possible
168         * src/gtk/gtkutils.c
169         * src/gtk/gtkutils.h
170                 Reduce number of g_list_nth/g_list_position
171                 where possible.
172                 All of this makes loading as 70k folder 2.1
173                 seconds instead of 3.2 (with hot FS caches).
174                 (1.3 seconds without Date and Size columns...)
175
176 2006-08-22 [paul]       2.4.0cvs72
177
178         wrap documents and do some items from mones' MANUAL-TODO:
179
180         * manual/account.xml
181                 4.1. = fix tabname references to <quote>tabname</quote>
182                 4.2. = fix "xxx" and 'xxx' items to <quote>xxx</quote>
183         * manual/faq.xml
184                 1.1. = mentioned options don't match UI
185                 Add information about the 'Never send Return Receipts'
186                 option
187         * manual/handling.xml
188                 6.2. = Mentions Extended symbols button, but now is
189                 named Information
190                 6.3. = Mentions ... button, which is now Edit
191
192 2006-08-22 [colin]      2.4.0cvs71
193
194         * src/gtk/pluginwindow.c
195                 Fix layout in verbose translations (such
196                 as french)
197
198 2006-08-22 [paul]       2.4.0cvs70
199
200         * manual/Makefile.am
201                 build manuals in alphabetical order
202         * src/addressbook.c
203         * src/prefs_themes.c
204                 replace/remove deprecated symbols
205         * src/gtk/gtkutils.c
206                 fix a warning
207         * src/gtk/pluginwindow.c
208                 replace deprecated symbol
209                 replace label text and move it
210         * src/plugins/pgpcore/prefs_gpg.c
211                 move the 'Generate...' button out of the
212                 Sign Key frame, replace the English used
213         * src/plugins/pgpcore/sgpgme.c
214                 fixes to the English
215
216 2006-08-21 [colin]      2.4.0cvs69
217
218         * src/plugins/trayicon/trayicon.c
219                 Add more strings for translation; patch
220                 by Pawel
221
222 2006-08-21 [colin]      2.4.0cvs68
223
224         * src/compose.c
225                 fix replied flag not set after drafting
226         * src/matcher.c
227                 fix body quicksearch in non-encoded bodies
228                 containing '='
229         * src/msgcache.c
230                 Get rid of the g_malloc workaround for
231                 corrupted caches, use g_try_malloc
232
233 2006-08-21 [colin]      2.4.0cvs67
234
235         * src/alertpanel.c
236         * src/gtk/inputdialog.c
237         * src/plugins/pgpcore/passphrase.c
238                 Set minimal width to 375
239         * src/mainwindow.c
240                 Fix switching to offline, asking if it 
241                 should be overriden for synchronising
242         * src/mimeview.c
243                 Don't offer to remember command on Open 
244                 with for text parts, as the browser or 
245                 text editor command isn't changed from 
246                 there
247
248 2006-08-20 [paul]       2.4.0cvs66
249
250         * po/ko.po
251         * po/zh_CN.po
252                 fix plural form errors. revealed by stricter
253                 checking of gettext 0.15
254
255 2006-08-18 [paul]       2.4.0cvs65
256
257         * src/stock_pixmap.c
258                 fix the fix of 2.4.0cvs64
259                 Thanks to Colin
260
261 2006-08-18 [paul]       2.4.0cvs64
262
263         * src/stock_pixmap.c
264                 fix leaks
265                 Thanks to Colin
266
267 2006-08-18 [paul]       2.4.0cvs63
268
269         * src/compose.c
270         * src/procmsg.c
271                 fix occasional IMAP bug where large msgs
272                 were left in the queue folder after sending
273                 Thanks to Colin
274
275 2006-08-18 [paul]       2.4.0cvs62
276
277         * src/folderview.c
278                 freeze the summaryview while quicksearch results
279                 are displayed
280                 (fixes bug 456 'current message is hidden when the
281                 view is refreshed and extended search is "unread 
282                 messages"')
283                 Thanks to Colin
284         * src/textview.c
285                 add missing #include "inputdialog.h"
286         * src/common/utils.h
287                 add missing mailcap_update_default() and improve
288                 readability
289
290 2006-08-17 [colin]      2.4.0cvs61
291
292         * src/plugins/pgpcore/select-keys.c
293                 Fix warnings :)
294
295 2006-08-17 [colin]      2.4.0cvs60
296
297         * src/compose.c
298                 Don't continue queuing if Cancel is clicked
299                 in select-keys
300
301 2006-08-17 [colin]      2.4.0cvs59
302
303         * src/plugins/pgpcore/select-keys.c
304                 When encrypting, if only one key matches and it 
305                 matches exactly, automatically use it.
306
307 2006-08-17 [colin]      2.4.0cvs58
308
309         * src/mimeview.c
310         * src/prefs_common.c
311         * src/prefs_common.h
312         * src/prefs_ext_prog.c
313         * src/textview.c
314                 Fix issues with previous patch (text/html)
315                 Remove outdated prefs
316
317 2006-08-17 [colin]      2.4.0cvs57
318
319         * src/imap.c
320                 Add View Log button on auth error
321         * src/procmsg.c
322                 Fix encrypted mail marked as new when
323                 saved in normal folders
324         * src/plugins/pgpinline/pgpinline.c
325                 Fix encrypt bug on IMAP
326         * src/mimeview.c
327         * src/common/utils.c
328         * src/common/utils.h
329         * src/gtk/inputdialog.c
330         * src/gtk/inputdialog.h
331                 Get rid of metamail stuff, simplify
332                 opening, and allow remembering of user's
333                 choices (by updating ~/.mailcap). There's
334                 still to drop "Audio player" and "Image
335                 viewer" preferences.
336
337 2006-08-17 [mones]      2.4.0cvs56
338
339         * manual/es/sylpheed-claws-manual.xml
340                 fix DTD path
341
342 2006-08-17 [mones]      2.4.0cvs55
343
344         * configure.ac
345         * manual/Makefile.am
346         * manual/es/Makefile.am
347         * manual/es/account.xml
348         * manual/es/ack.xml
349         * manual/es/addrbook.xml
350         * manual/es/advanced.xml
351         * manual/es/faq.xml
352         * manual/es/glossary.xml
353         * manual/es/gpl.xml
354         * manual/es/handling.xml
355         * manual/es/intro.xml
356         * manual/es/keyboard.xml
357         * manual/es/plugins.xml
358         * manual/es/starting.xml
359         * manual/es/sylpheed-claws-manual.xml
360         * manual/es/dist/Makefile.am
361         * manual/es/dist/html/Makefile.am
362         * manual/es/dist/pdf/Makefile.am
363         * manual/es/dist/ps/Makefile.am
364         * manual/es/dist/txt/Makefile.am
365                 Spanish translation for the manual
366
367 2006-08-16 [colin]      2.4.0cvs54
368
369         * src/compose.c
370         * src/main.c
371         * src/mainwindow.c
372                 Fix send button sensitivity at startup
373                 Set send menu sensitivity (patch by Fabien)
374         * src/ssl_manager.c
375                 Enable closing with esc (patch by Fabien)
376         * src/gtk/foldersort.c
377                 Enable closing with esc (patch by Fabien)
378         * src/procmime.c
379                 Optimisation (no need to copy to tempfile to
380                 "decode" 7bit and 8bit)
381         * src/summaryview.c
382                 Fix cruft in swap_from case
383         * src/textview.c
384                 Fix missing last line in some mail cases 
385                 (Fixes debian #381872)
386         * src/plugins/pgpcore/prefs_gpg.c
387         * src/plugins/pgpcore/sgpgme.c
388         * src/plugins/pgpcore/sgpgme.h
389                 Don't show "no key found" when user explicitely
390                 wants to create a key
391
392 2006-08-16 [paul]       2.4.0cvs53
393
394         * configure.ac
395         * src/account.c
396         * src/addressbook.c
397         * src/headerview.c
398         * src/prefs_account.c
399         * src/prefs_message.c
400         * src/gtk/gtkutils.c
401                 bump up minimum required versions of GTK+ and
402                 GLIB to 2.6.0
403
404 2006-08-16 [paul]       2.4.0cvs52
405
406         * src/toolbar.c
407                 workaround GTK+ Bug 351600 - 'Can't re-click
408                 on button after sensitivity update'
409                 http://bugzilla.gnome.org/show_bug.cgi?id=351600
410                 Thanks to Colin
411
412 2006-08-15 [colin]      2.4.0cvs51
413
414         * src/plugins/pgpcore/prefs_gpg.c
415                 Set options sensitivity according to
416                 key existence
417         * src/plugins/pgpcore/sgpgme.c
418                 Allow to create key with no passphrase
419
420 2006-08-14 [cleroy]     2.4.0cvs50
421
422         * src/gtk/pluginwindow.c
423                 New layout (maybe to be changed?)
424         * src/gtk/gtkutils.c
425                 Fix a bit label_window
426         * src/plugins/pgpcore/passphrase.c
427         * src/plugins/pgpcore/passphrase.h
428         * src/plugins/pgpcore/plugin.c
429         * src/plugins/pgpcore/prefs_gpg.c
430         * src/plugins/pgpcore/prefs_gpg.h
431         * src/plugins/pgpcore/sgpgme.c
432         * src/plugins/pgpcore/sgpgme.h
433                 Allow to create a PGP private key via the GUI
434
435 2006-08-14 [wwp]        2.4.0cvs49
436
437         * src/addressbook_foldersel.c
438                 fix strict ISO C90 compliance.
439
440 2006-08-14 [paul]       2.4.0cvs48
441
442         * src/gtk/prefswindow.c
443                 re-set scrolled window on opening
444                 Patch by Ticho
445
446 2006-08-14 [paul]
447
448         2.5.0-rc1 released
449
450 2006-08-14 [paul]       2.4.0cvs47
451
452         * src/prefs_display_header.c
453                 re-enable user-defined Displayed Headers
454
455 2006-08-14 [paul]       2.4.0cvs46
456
457         * src/prefs_account.c
458                 use GTK_STOCK_EDIT
459
460 2006-08-13 [colin]      2.4.0cvs45
461
462         * src/common/utils.c
463                 Fix "a" in quote when the original message is empty,
464                 by using \0 instead of 'a' to test writability of
465                 temp files.
466
467 2006-08-13 [wwp]        2.4.0cvs44
468
469         * src/plugins/spamassassin/spamassassin.c
470                 fix capitalization of "SpamAssassin" in some debug, log and
471                 dialog messages.
472
473 2006-08-13 [paul]       2.4.0cvs43
474
475         * src/editldap.c
476                 fix overlapping widgets
477         * src/prefs_account.c
478                 fix translation of protocol_names[]
479                 fix label disappearing off the edge of the
480                 visible area
481
482 2006-08-12 [paul]       2.4.0cvs42
483
484         * manual/plugins.xml
485                 update IRC channel info before it gets forgotten
486                 about
487
488 2006-08-11 [colin]      2.4.0cvs41
489
490         * src/compose.c
491         * src/mainwindow.c
492         * src/mainwindow.h
493         * src/procmsg.c
494         * src/procmsg.h
495         * src/summaryview.c
496         * src/toolbar.c
497                 Grey out the Send button if
498                 - Queue folders are empty, or
499                 - We're sending already
500
501 2006-08-11 [wwp]        2.4.0cvs40
502
503         * src/main.c
504                 fix a logic issue when quitting while a compose window is
505                 still open, thanks to Colin.
506
507 2006-08-10 [colin]      2.4.0cvs39
508
509         * src/main.c
510                 Fix default font size setting after wizard run
511         * src/imap.c
512         * src/etpan/imap-thread.c
513         * src/etpan/imap-thread.h
514                 Fix bug #999 (Timing out on TSL cert validation 
515                 dialog makes ugly things happen). Also, STARTTLS
516                 unconditionnaly if initial capabilities contain
517                 LOGINDISABLED and STARTTLS.
518
519 2006-08-09 [colin]      2.4.0cvs38
520
521         * src/mainwindow.c
522         * src/mainwindow.h
523                 Fix Tools/Actions sensitivity when there are
524                 no actions
525
526 2006-08-09 [colin]      2.4.0cvs37
527
528         * src/prefs_filtering.c
529                 Warning fix, patch by Paul
530         * src/messageview.c
531         * src/prefs_actions.c
532         * src/prefs_filtering_action.c
533         * src/prefs_matcher.c
534                 Uniformisation of "Info ..." to "Info..." (for
535                 old gtk), patch by Fabien
536         * src/plugins/clamav/clamav_plugin_gtk.c
537                 Sensitivity fix by Fabien
538
539 2006-08-09 [colin]      2.4.0cvs36
540
541         * src/main.c
542         * src/main.h
543                 Add a function to know whether we're exiting
544         * src/plugins/trayicon/trayicon.c
545                 If exiting, don't do anything. Faster, and
546                 avoids gtk_main_iteration reentracy causing
547                 segfaults at exit
548
549 2006-08-09 [colin]      2.4.0cvs35
550
551         * src/messageview.c
552         * src/mimeview.c
553         * src/mimeview.h
554                 Fix lack of part selection when automatically 
555                 jumping to a specific part
556         * src/msgcache.c
557                 Little optimisation in cache reading
558
559 2006-08-09 [colin]      2.4.0cvs34
560
561         * src/compose.c
562                 Fix crash setting the priority on reedit
563                 (Accessing compose before creating it!)
564
565 2006-08-08 [colin]      2.4.0cvs33
566
567         * src/procmime.c
568                 Fix bug #998 (last attachment is not accessible)
569                 Bad RFC interpretation on multipart close-delimiters
570         * src/mimeview.c
571         * src/mimeview.h
572         * src/gtk/gtkvscrollbutton.c
573         * src/gtk/gtkvscrollbutton.h
574                 Make attachments list wheel-scrollable
575
576 2006-08-07 [colin]      2.4.0cvs32
577
578         * src/gtk/gtkaspell.c
579                 Fix bug #973 (Unicode punctation characters 
580                 are not recognized as separators by the
581                 spell checker); fix unsigned stuff
582
583 2006-08-07 [colin]      2.4.0cvs31
584
585         * src/compose.c
586                 Fix bug #956 (DnD text with accents in compose 
587                 text entry); fix gccc's signed/unsigned fuss
588
589 2006-08-06 [colin]      2.4.0cvs30
590
591         * src/main.c
592                 Fix bug #979 (Plugin crashes when exiting 
593                 sylpheed-claws) : handle exit request only 
594                 once
595
596 2006-08-05 [colin]      2.4.0cvs29
597
598         * src/news.c
599                 Just make sure we have a msgid.
600
601 2006-08-05 [colin]      2.4.0cvs28
602
603         * src/news.c
604         * src/summaryview.c
605                 Fix bug #995 ("Mark cross-posted as read" doesn't work)
606                 by reimplementing it
607         * src/textview.c
608                 Fix bug when hiding quotes with level > 3 and quote
609                 colors are recycled
610
611 2006-08-04 [colin]      2.4.0cvs27
612
613         * src/compose.c
614         * src/undo.c
615         * src/undo.h
616                 Fix a bit replace-by-pasting undo
617         * src/mainwindow.c
618         * src/messageview.c
619                 Fix Fold quotes menu synchro in
620                 mainwindow when it changes in 
621                 messageview
622         * src/textview.c
623                 Fix right-click on quotes blocks
624         * src/common/utils.c
625                 Verify that the file created by
626                 my_tmpfile() is writable. Fixes
627                 bug #988 (very specific filesystem
628                 issue)
629         * src/plugins/pgpcore/sgpgme.c
630                 Fix file descriptor leak
631         * src/plugins/spamassassin/spamassassin.c
632                 Warn once if spamd isn't reachable
633
634 2006-08-04 [colin]      2.4.0cvs26
635
636         * src/toolbar.c
637                 i18n context patch by Fabien
638
639 2006-08-03 [colin]      2.4.0cvs25
640
641         * src/mainwindow.c
642         * src/messageview.c
643                 Rename "Hide quotes" to "Fold quotes"
644         * src/textview.c
645                 Don't use hand cursor on quotes. "all 
646                 the bonuses of the feature and none of 
647                 unwelcome side-effects"
648
649 2006-08-03 [colin]      2.4.0cvs24
650
651         * AUTHORS
652         * sylpheed-claws.desktop
653         * src/gtk/authors.h
654                 Bring the desktop file to XDG compliance
655                 Patch by Charles A. Edwards
656
657 2006-08-03 [colin]      2.4.0cvs23
658
659         * src/textview.c
660                 Fix links offset when they are preceded
661                 by accentued chars (g_utf8_strlen!)
662         * src/mainwindow.c
663                 Fix wrong status when starting offline
664
665
666 2006-08-03 [wwp]        2.4.0cvs22
667
668         * src/prefs_common.h
669                 ask what to do w/ filtering rules that belong to an account when
670                 applying filtering rules manually from the main window (skip,
671                 apply regardless of the account, use current account). This dialog
672                 can be skipped and the last reply used.
673                 (forgot that file)
674
675 2006-08-03 [wwp]        2.4.0cvs21
676
677         * src/filtering.c
678         * src/filtering.h
679         * src/prefs_common.c
680         * src/summaryview.c
681         * src/alertpanel.c
682         * src/alertpanel.h
683         * src/messageview.c
684                 ask what to do w/ filtering rules that belong to an account when
685                 applying filtering rules manually from the main window (skip,
686                 apply regardless of the account, use current account). This dialog
687                 can be skipped and the last reply used.
688
689
690 2006-08-03 [colin]      2.4.0cvs20
691
692         * src/textview.c
693                 Optimize previous patch
694
695 2006-08-03 [cleroy]     2.4.0cvs19
696
697         * src/textview.c
698                 Fix quotes getting toggled back when the
699                 mail has an even number of text parts
700
701 2006-08-02 [colin]      2.4.0cvs18
702
703         * src/messageview.c
704                 Add Hide quotes menu
705
706 2006-08-02 [colin]      2.4.0cvs17
707
708         * src/mainwindow.c
709         * src/prefs_common.c
710         * src/textview.c
711         * src/textview.h
712         * src/gtk/about.c
713                 Allow per-level quote hiding,
714                 Allow toggling quotes by double-clicking them
715                 Rename RemoteURI to ClickableText to reflect
716                 the fact it's used for a variety of things
717
718 2006-08-02 [wwp]        2.4.0cvs16
719
720         * src/mainwindow.c
721                 fix "View/Hide quotes" menu item status initialization.
722
723 2006-08-02 [wwp]        2.4.0cvs15
724
725         * src/matcher_parser_parse.y
726                 remove a debug trace.
727
728 2006-08-02 [paul]       2.4.0cvs14
729
730         * src/plugins/pgpcore/passphrase.c
731                 don't set initial dialog size
732                 make it resizable
733
734 2006-08-02 [paul]       2.4.0cvs13
735
736         * src/noticeview.c
737                 remove the rogue '/' character
738
739 2006-08-02 [paul]       2.4.0cvs12
740
741         * src/noticeview.c
742                 allow buttons to resize as necessary
743
744 2006-08-01 [wwp]        2.4.0cvs11
745
746         * src/mbox.c
747                 fix strict ISO C90 compliance.
748
749 2006-08-01 [wwp]        2.4.0cvs10
750
751         * tools/update-po
752                 updated update-po tool to work w/ context-dependent translations.
753                 Patch by Fabien Vantard <fzzzzz@gmail.com>.
754
755 2006-08-01 [wwp]        2.4.0cvs9
756
757         * src/matcher.c
758         * src/prefs_filtering.c
759         * src/prefs_matcher.c
760                 allow context-dependent translations for "All",
761                 patch by Fabien Vantard <fzzzzz@gmail.com>.
762
763 2006-07-31 [colin]      2.4.0cvs8
764
765         * AUTHORS
766         * src/gtk/authors.h
767                 Add Rafal to authors
768
769 2006-07-31 [colin]      2.4.0cvs7
770
771         * src/compose.c
772         * src/mainwindow.c
773         * src/messageview.h
774         * src/prefs_common.c
775         * src/prefs_common.h
776         * src/textview.c
777                 Add 'View/Hide quotes'. Patch based on a patch
778                 by Rafal Weglarz
779
780 2006-07-31 [colin]      2.4.0cvs6
781
782         * src/action.c
783                 Fix problem with "> stuff >" actions
784
785 2006-07-31 [paul]       2.4.0cvs5
786
787         * po/nb.po
788                 updated by Geir Helland
789
790 2006-07-31 [wwp]        2.4.0cvs4
791
792         * src/mainwindow.c
793         * src/summaryview.c
794         * src/summaryview.h
795                 add "View/Go to/Parent message" and "View/Go to/Last read message",
796                 thanks to Colin.
797
798 2006-07-31 [wwp]        2.4.0cvs3
799
800         * src/Makefile.am
801         * src/addr_compl.c
802         * src/addr_compl.h
803         * src/addressbook.c
804         * src/addressbook.h
805         * src/addressbook_foldersel.c
806         * src/addressbook_foldersel.h
807         * src/addrindex.c
808         * src/addrindex.h
809         * src/matcher.c
810         * src/matcher.h
811         * src/matcher_parser_lex.l
812         * src/matcher_parser_parse.y
813         * src/prefs_common.c
814         * src/prefs_common.h
815         * src/prefs_filtering.c
816         * src/prefs_matcher.c
817         * src/prefs_matcher.h
818         * src/summaryview.c
819                 introduce filtering against the address book. It's now possible to add
820                 matched conditions to determine if any email address in a message matches
821                 or doesn't match any or all books or folders in the address book.
822
823 2006-07-31 [wwp]        2.4.0cvs2
824
825         * src/account.c
826         * src/filtering.c
827         * src/filtering.h
828         * src/folder.c
829         * src/folderview.c
830         * src/inc.c
831         * src/mainwindow.c
832         * src/matcher.c
833         * src/matcher_parser_lex.l
834         * src/matcher_parser_parse.y
835         * src/mbox.c
836         * src/prefs_filtering.c
837         * src/prefs_filtering.h
838         * src/procmsg.c
839         * src/procmsg.h
840         * src/summaryview.c
841                 introduce per-account filtering rules. Each filtering rule can now be assigned
842                 to a specific account (by default it's "All"), works w/ POP3/IMAP. Take care
843                 when applying filtering rules manually, as all rules will apply - even the ones
844                 assigned to an account. This issue will be addressed soon.
845  
846
847
848 2006-07-31 [wwp]        2.4.0cvs1
849
850         * src/quote_fmt.c
851                 make more strings translatable.
852
853 2006-07-31 [paul]       2.4.0
854
855         2.4.0 released
856
857 2006-07-31 [paul]       2.3.1cvs91
858
859         * po/ca.po
860                 updated by Miquel Oliete
861
862 2006-07-31 [paul]       2.3.1cvs90
863
864         * po/de.po
865         * po/el.po
866         * po/fr.po
867         * po/it.po
868         * po/pl.po
869         * po/pt_BR.po
870         * po/sr.po
871         * po/zh_CN.po
872                 updated by Stephan Sachse, Stavros Giannouris, Fabien Vantard,
873                 Andrea Spadaccini, Emil Nowak, Frederico Goncalves Guimaraes,
874                 Aleksandar Urosevic, and Ralgh Young
875
876 2006-07-31 [paul]       2.3.1cvs89
877
878         * src/account.c
879         * src/main.c
880         * src/mainwindow.c
881         * src/mainwindow.h
882                 Fix a race condition when, after an SC crash, rescanning
883                 folders took more than 0.5 seconds
884                 Thanks to Colin
885
886 2006-07-31 [paul]       2.3.1cvs88
887
888         * src/folderview.c
889                 don't translate separator strings
890
891 2006-07-30 [mones]      2.3.1cvs87
892
893         * doc/man/sylpheed-claws.1
894                 Fixed non-ASCII chars in Hoa's name
895         * po/es.po
896                 Updated for release
897
898 2006-07-27 [colin]      2.3.1cvs86
899
900         * src/textview.c
901                 Don't include the leading \n in links
902                 Patch by Fabien
903
904 2006-07-25 [colin]      2.3.1cvs85
905
906         * src/mainwindow.c
907         * src/common/socket.h
908         * src/etpan/imap-thread.c
909                 Refresh resolvers before connecting
910                 to IMAP servers, and after switching
911                 to online. Thanks to Paul.
912
913 2006-07-18 [colin]
914
915         * 2.4.0-rc4 released
916
917 2006-07-17 [colin]      2.3.1cvs84
918
919         * src/inc.c
920                 Show connection attempt in statusbar before
921                 connecting (previously first message was
922                 "Retrieving messages from ..." after the
923                 connection succeeded.
924
925 2006-07-16 [wwp]        2.3.1cvs83
926
927         * sylpheed-claws.ico
928                 Added .ico file (windows multi-size icon file, generated).
929
930 2006-07-12 [wwp]        2.3.1cvs82
931
932         * src/messageview.c
933                 remove Message/Re-edit menu entry from messageview window,
934                 as sent/draft/queued messages are opened in compose window when
935                 re-edited and it's not possible to re-edit other msgs.
936
937 2006-07-12 [paul]       2.3.1cvs81
938
939         * AUTHORS
940         * src/mainwindow.c
941         * src/gtk/authors.h
942                 check online state before resetting
943                 mailcheck timer. Useful if some program
944                 verifies connection state and updates
945                 Claws.
946                 Patch by  Leonid Evdokimov <darkk@users.sf.net>
947
948 2006-07-12 [paul]       2.3.1cvs80
949
950         * sylpheed-claws-128x128.png
951         * sylpheed-claws-64x64.png
952         * sylpheed-claws.png
953         * src/Makefile.am
954         * src/main.c
955         * src/prefs_toolbar.c
956         * src/stock_pixmap.c
957         * src/stock_pixmap.h
958         * src/wizard.c
959         * src/gtk/about.c
960         * src/gtk/gtkutils.c
961         * src/pixmaps/sylpheed-claws.xpm        ** ADDED **
962         * src/pixmaps/sylpheed-claws_icon.xpm   ** ADDED **
963         * src/pixmaps/sylpheed-claws_logo.xpm   ** ADDED **
964         * src/pixmaps/sylpheed.xpm              ** REMOVED **
965         * src/pixmaps/sylpheed_icon.xpm         ** REMOVED **
966         * src/pixmaps/sylpheed_logo.xpm         ** REMOVED **
967                 updated and renamed logo/icon files and related
968                 logo by Jesper Schultz
969
970 2006-07-11 [paul]       2.3.1cvs79
971
972         * src/main.c
973                 fix the labels a smidgin
974
975 2006-07-09 [colin]      2.3.1cvs78
976
977         * src/textview.c
978                 Show errors in textviewer's command
979                 Patch by H. Merijn Brand
980
981 2006-07-09 [colin]      2.3.1cvs77
982
983         * src/compose.c
984                 Save FMID in drafts too
985
986 2006-07-08 [colin]      2.3.1cvs76
987
988         * src/compose.c
989                 Svae RMID in drafted mails too
990                 Save quote_fmt vars for whole mails,
991                 don't reset at each quote_fmt_init:
992                 allows to use the same |i{var} in
993                 various template fields
994         * src/prefs_template.c
995         * src/quote_fmt.h
996         * src/quote_fmt_parse.y
997                 Same
998
999 2006-07-08 [colin]      2.3.1cvs75
1000
1001         * src/textview.c
1002                 Fix highlighting of attached parts URIs
1003
1004 2006-07-08 [colin]      2.3.1cvs74
1005
1006         * src/main.c
1007                 Prevent bug #981 (sc 2.3.1 segfaults with 
1008                 gtk+ 2.10) from being reported again:
1009                 if Sylpheed-Claws has been compiled against
1010                 GTK+ < 2.9.0 and we're running with GTK+ >= 2.9.0, 
1011                 of if Sylpheed-Claws has been compiled against
1012                 GTK+ >= 2.9.0 and we're running with GTK+ < 2.9.0,
1013                 error out.
1014
1015 2006-07-07 [colin]      2.3.1cvs73
1016
1017         * src/prefs_actions.c
1018                 Fix label
1019
1020 2006-07-07 [colin]      2.3.1cvs72
1021
1022         * src/prefs_actions.c
1023                 Fix compile on gtk < 2.8. argh :)
1024
1025 2006-07-07 [paul]       2.3.1cvs71
1026
1027         * src/common/defs.h
1028                 update DONATE_URI
1029
1030 2006-07-07 [colin]      2.3.1cvs70
1031
1032         * po/POTFILES.in
1033         * src/quote_fmt.c
1034         * src/quote_fmt_lex.l
1035         * src/quote_fmt_parse.y
1036                 Add |i{var}, a way to insert user-entered
1037                 text in a template
1038
1039 2006-07-07 [colin]
1040
1041         * 2.4.0-rc3 released
1042
1043 2006-07-07 [colin]      2.3.1cvs69
1044
1045         * src/folder.c
1046                 Don't consider inboxes of UNKNOWN folder 
1047                 classes to be useable as default inboxes
1048
1049 2006-07-07 [paul]       2.3.1cvs68
1050
1051         * src/textview.c
1052                 add missing #include <errno.h>
1053                 Thanks to René J. Blokland
1054
1055 2006-07-07 [paul]       2.3.1cvs67
1056
1057         * src/action.c
1058                 Return now Closes dialog
1059         * src/mimeview.c
1060         * src/mimeview.h
1061         * src/textview.c
1062                 add contextual menu to mime parts listed
1063                 in the textview
1064                 Thanks to Colin
1065         * src/common/utils.c
1066                 reversal: ' is a valid character in URLs
1067
1068 2006-07-06 [colin]      2.3.1cvs66
1069
1070         * src/remotefolder.h
1071                 Forgotten in previous commit
1072
1073 2006-07-06 [colin]      2.3.1cvs65
1074
1075         * src/folder.c
1076                 Set summary update flag whenever
1077                 totals changed
1078         * src/imap.c
1079         * src/prefs_account.c
1080         * src/common/utils.h
1081         * src/etpan/imap-thread.c
1082                 Fix warnings, thanks to Fabien and
1083                 Ricardo
1084
1085 2006-07-06 [wwp]        2.3.1cvs64
1086
1087         * src/gtk/gtkutils.c
1088                 GTK_STOCK_HELP exists in GTK+ 2.4.x.
1089
1090 2006-07-06 [wwp]        2.3.1cvs63
1091
1092         * src/account.c
1093         * src/addressbook.c
1094         * src/addressitem.h
1095         * src/folderview.c
1096         * src/mainwindow.c
1097         * src/manual.c
1098         * src/manual.h
1099         * src/message_search.c
1100         * src/prefs_actions.c
1101         * src/prefs_filtering.c
1102         * src/prefs_filtering.h
1103         * src/prefs_template.c
1104         * src/summary_search.c
1105         * src/summaryview.c
1106         * src/gtk/gtkutils.c
1107         * src/gtk/gtkutils.h
1108         * src/gtk/pluginwindow.c
1109                 add help buttons to some dialogs. Clicking such buttons opens a
1110                 relevant manual page. Patch by Fabien Vantard <fzzzzz@gmail.com>.
1111
1112 2006-07-06 [paul]       2.3.1cvs62
1113
1114         * src/textview.c
1115                 fix attachments contextual menu
1116                 Thanks to Colin
1117
1118 2006-07-05 [colin]      2.3.1cvs61
1119
1120         * src/textview.c
1121         * src/compose.c
1122                 Handle sftp:// links
1123
1124 2006-07-05 [paul]       2.3.1cvs60
1125
1126         * src/gtk/filesel.c
1127                 grab save button by default
1128                 Thanks to Colin
1129
1130 2006-07-05 [wwp]        2.3.1cvs59
1131
1132         * manual/xml2pdf
1133                 use JAVA and SAXON (or SAXONJAR) env. vars is there's defined.
1134
1135 2006-07-04 [colin]      2.3.1cvs58
1136
1137         * src/mimeview.c
1138         * src/textview.c
1139                 Use left click to select, middle click to open
1140                 on mimeparts links
1141         * src/common/utils.c
1142                 Fix segfault
1143
1144 2006-07-04 [colin]      2.3.1cvs57
1145
1146         * src/mainwindow.c
1147         * src/news.c
1148                 Warning fixes, thanks to Fabien
1149
1150 2006-07-04 [colin]      2.3.1cvs56
1151
1152         * src/mimeview.c
1153         * src/mimeview.h
1154         * src/textview.c
1155                 Allow parts to be selected via their text label
1156                 in textview
1157
1158 2006-07-04 [colin]      2.3.1cvs55
1159
1160         * src/folderview.c
1161                 Feedback when closing (for big folders)
1162         * src/prefs_actions.c
1163         * src/prefs_filtering.c
1164         * src/prefs_matcher.c
1165         * src/prefs_template.c
1166                 Fix default button when closing without
1167                 having saved
1168
1169 2006-07-04 [colin]      2.3.1cvs54
1170
1171         * src/news.c
1172                 Delete local file on deletion
1173
1174 2006-07-03 [colin]      2.3.1cvs53
1175
1176         * src/folderview.c
1177         * src/main.c
1178                 Don't freeze when rescanning after crash
1179
1180 2006-07-03 [wwp]        2.3.1cvs52
1181
1182         * src/compose.c
1183         * src/privacy.c
1184         * src/privacy.h
1185         * src/plugins/pgpinline/pgpinline.c
1186         * src/plugins/pgpmime/pgpmime.c
1187                 don't report an error when the user cancels the passphrase dialog.
1188
1189 2006-07-02 [colin]      2.3.1cvs51
1190
1191         * src/folderview.c
1192                 Open message when crossing folders with Space,
1193                 goto next unread and friends
1194
1195 2006-07-01 [colin]      2.3.1cvs50
1196
1197         * src/prefs_account.c
1198                 Typographic rules varying from language
1199                 to language (in french "Protocole :"),
1200                 we have to do that :)
1201
1202 2006-07-01 [ticho]      2.3.1cvs49
1203
1204         * src/prefs_account.c
1205                 Only use one temporary gchar* variable in
1206                 prefs_account_protocol_set_optmenu().
1207
1208 2006-07-01 [ticho]      2.3.1cvs48
1209
1210         * src/prefs_account.c
1211         * src/prefs_account.h
1212                 Use GtkLabel for existing account protocol name.
1213                 Created an array for protocol names and populate the
1214                 combobox from it in a for() cycle.
1215
1216 2006-06-30 [colin]      2.3.1cvs47
1217
1218         * src/compose.c
1219                 Block undo when changing signature (by changing
1220                 account)
1221
1222 2006-06-30 [paul]       2.3.1cvs46
1223
1224         * src/send_message.c
1225                 when editing From in the Compose window, use that address
1226                 in the Return-Path: header
1227                 Thanks to Colin
1228
1229 2006-06-30 [colin]      2.3.1cvs45
1230
1231         * src/compose.c
1232                 Fix signature replacement:
1233                 - when no newline before separator
1234                 - when reediting
1235
1236 2006-06-29 [colin]      2.3.1cvs44
1237
1238         * src/folderview.c
1239         * src/folderview.h
1240         * src/mainwindow.c
1241         * src/summaryview.c
1242                 Let 'View/Go to/Next marked' work like
1243                 Next new & Next unread: across folders
1244                 Change the select_on_entry pref to do
1245                 what we want when changing folder
1246         * src/common/utils.c
1247                 Fix single-quoted links 
1248
1249 2006-06-29 [colin]      2.3.1cvs43
1250
1251         * src/gtk/gtkaspell.c
1252                 "Sylpheed" and "Sylpheed-Claws" do exist !
1253
1254 2006-06-29 [colin]      2.3.1cvs42
1255
1256         * src/imap.c
1257                 Forgot to remove debug
1258
1259 2006-06-29 [colin]      2.3.1cvs41
1260
1261         * src/imap.c
1262         * src/imap.h
1263         * src/mainwindow.c
1264                 Disconnect from IMAP servers when going
1265                 offline. Fixes bug #978 (going to offline-mode 
1266                 won't close connections)
1267
1268 2006-06-29 [colin]      2.3.1cvs40
1269
1270         * src/main.c
1271                 Fix transient setting on failing plugins
1272                 Patch by Fabien
1273         * src/plugins/pgpcore/sgpgme.c
1274                 Only warn for OpenPGP. Most people don't
1275                 have CMS available.
1276
1277 2006-06-29 [colin]      2.3.1cvs39
1278
1279         * src/compose.c
1280                 Fix Spelling menu (discrepancy between context menu
1281                 and top menu when folder's dictionary isn't the 
1282                 default one)
1283         * src/plugins/pgpcore/sgpgme.c
1284                 More error reporting about why gpgme can fail
1285
1286 2006-06-29 [wwp]        2.3.1cvs38
1287
1288         * src/mainwindow.c
1289                 honor the display-header-pane setting even when the message view
1290                 is a separate window.
1291
1292 2006-06-29 [wwp]        2.3.1cvs37
1293
1294         * src/prefs_actions.c
1295                 forgot to commit that one (use of GTK_STOCK_INFO).
1296
1297 2006-06-29 [colin]      2.3.1cvs36
1298
1299         * src/imap.c
1300                 Better handling of login errors (ask the password
1301                 again once), alert in case of error. Fix three
1302                 signedness warnings.
1303
1304 2006-06-28 [wwp]        2.3.1cvs35
1305
1306         * src/prefs_template.c
1307         * src/prefs_matcher.c
1308         * src/prefs_filtering_action.c
1309         * src/prefs_quote.c
1310                 unify info/help/symbols.. buttons to use GTK_STOCK_INFO,
1311                 patch by Fabien Vantard, slightly modified.
1312
1313 2006-06-28 [paul]
1314
1315         2.4.0-rc2 released
1316
1317 2006-06-28 [colin]      2.3.1cvs34
1318
1319         * src/prefs_account.c
1320                 Fix bug #977 (Can't add or edit imap accounts)
1321
1322 2006-06-28 [colin]      2.3.1cvs33
1323
1324         * src/mimeview.c
1325                 Fix previous
1326
1327 2006-06-28 [colin]      2.3.1cvs32
1328
1329         * src/mimeview.c
1330                 Save named inlined attachments with "Save all"
1331         * src/main.c
1332         * src/mbox.c
1333         * src/common/plugin.c
1334         * src/common/plugin.h
1335         * src/common/sylpheed.c
1336         * src/common/utils.c
1337         * src/plugins/pgpcore/sylpheed.def
1338         * src/plugins/pgpinline/sylpheed.def
1339         * src/plugins/pgpmime/sylpheed.def
1340                 Win32 compatibility patch, by
1341                 Werner Koch
1342
1343 2006-06-28 [wwp]        2.3.1cvs31
1344
1345         * src/imap.c
1346         * src/prefs_folder_item.c
1347                 less compilation warnings (thanks to Fabien Vantard), less typos.
1348
1349 2006-06-28 [paul]       2.3.1cvs30
1350
1351         * src/gtk/gtkutils.c
1352                 gtk_combo_box_set_focus_on_click() is only
1353                 available since gtk 2.6.0
1354
1355 2006-06-28 [paul]       2.3.1cvs29
1356
1357         * src/prefs_ext_prog.c
1358                 fix engrish and add a tooltip for the
1359                 'command for 'Display as text' option
1360
1361 2006-06-28 [paul]
1362
1363         2.4.0-rc1 released
1364
1365 2006-06-28 [paul]       2.3.1cvs28
1366
1367         * ChangeLog
1368         * tools/Makefile.am
1369                 include textviewer.pl in releases
1370
1371 2006-06-28 [paul]       2.3.1cvs27
1372
1373         * src/prefs_ext_prog.c
1374                 hide Print command option if libgnomeprint
1375                 support is present
1376
1377 2006-06-27 [colin]      2.3.1cvs26
1378
1379         * src/compose.c
1380                 Fix Esc handling in insert/attach dialog
1381                 Don't show this dialog if dragging something
1382                 else than text/uri-list
1383                 Thanks to Fabien Vantard
1384         * tools/textviewer.pl
1385                 Filter script to display stuff as text
1386                 by H. Merijn Brand
1387
1388 2006-06-27 [wwp]        2.3.1cvs25
1389
1390         * src/messageview.c
1391                 use the exact product name (message view title), patch
1392                 by Fabien Vantard.
1393
1394 2006-06-27 [ticho]      2.3.1cvs24
1395
1396         * src/prefs_account.c
1397         * src/prefs_common.c
1398         * src/prefs_common.h
1399         * src/prefs_ext_prog.c
1400         * src/textview.c
1401                 Add a preference (Preferences/External programs)
1402                 to allow "Display as text" to be done via a script
1403                 (patch by H.Merijn Brand).
1404                 Use GtkComboBox for protocol selection in account
1405                 preferences.
1406                 Only include current choice for existing accounts, and
1407                 insensitivize the combobox.
1408
1409 2006-06-27 [paul]       2.3.1cvs23
1410
1411         * src/mbox.c
1412                 fix crasher introduced in cvs21.
1413                 Thanks to Colin
1414
1415 2006-06-26 [colin]      2.3.1cvs22
1416
1417         * src/mbox.c
1418                 Fix double-frees when leaving folders
1419                 after exporting to mbox
1420
1421 2006-06-26 [colin]      2.3.1cvs21
1422
1423         * src/mbox.c
1424                 More feedback (and optimisation)
1425                 on import/export
1426         * src/common/utils.c
1427                 Fix case when looking for mail addresses
1428         * src/gtk/gtkutils.c
1429                 Extra check for (X-)Face
1430
1431 2006-06-25 [ticho]      2.3.1cvs20
1432
1433         * src/compose.c
1434         * src/exphtmldlg.c
1435         * src/gtk/gtkutils.c
1436         * src/gtk/gtkutils.h
1437                 Added second argument to gtkut_sc_combobox_create() to
1438                 control focus-on-click for the widget.
1439                 Migrated the only GtkOptionMenu in exphtmldlg.c to GtkComboBox.
1440
1441 2006-06-25 [ticho]      2.3.1cvs19
1442
1443         * src/compose.c
1444         * src/gtk/Makefile.am
1445         * src/gtk/combobox.c
1446         * src/gtk/combobox.h
1447         * src/gtk/gtkutils.c
1448         * src/gtk/gtkutils.h
1449                 Use GtkComboBox instead of deprecated GtkOptionMenu
1450                 for account selector in compose window and for encoding
1451                 selector in attachment properties.
1452                 Also factorise working with the new GtkComboBox somewhat.
1453
1454 2006-06-24 [paul]       2.3.1cvs18
1455
1456         * src/prefs_common.c
1457                 use the correct default value
1458
1459 2006-06-24 [paul]       2.3.1cvs17
1460
1461         * src/compose.c
1462         * src/prefs_common.c
1463         * src/prefs_common.h
1464         * src/prefs_compose_writing.c
1465                 enable setting of default action when
1466                 dnd'ing files in the compose window.
1467                 (Collaborative effort with wwp)
1468
1469 2006-06-23 [wwp]        2.3.1cvs16
1470
1471         * src/compose.c
1472                 i18n fix (thanks to Fabien Vantard)
1473
1474 2006-06-22 [colin]      2.3.1cvs15
1475
1476         * src/prefs_customheader.c
1477                 Don't use filters in custom headers' file 
1478                 selector. Remember, extensions mean nothing :)
1479
1480 2006-06-22 [paul]       2.3.1cvs14
1481
1482         * configure.ac
1483                 allow setting of man directory location
1484
1485 2006-06-22 [colin]      2.3.1cvs13
1486
1487         * src/mainwindow.c
1488                 Add 'View/Go to/Next unread folder'.
1489                 I missed that :)
1490
1491 2006-06-22 [colin]      2.3.1cvs12
1492
1493         * src/common/utils.c
1494                 Add some subject prefixes
1495                 Patch by Bjorn T Johansen <btj@havleik.no>
1496
1497 2006-06-22 [colin]      2.3.1cvs11
1498
1499         * manual/advanced.xml
1500                 Forgotten hidden pref
1501
1502 2006-06-21 [paul]       2.3.1cvs10
1503
1504         * src/prefs_account.c
1505                 complete the removal of 'Add date header' option
1506
1507 2006-06-21 [paul]       2.3.1cvs9
1508
1509         * src/account.c
1510         * src/compose.c
1511         * src/prefs_account.c
1512         * src/prefs_account.h
1513                 remove option to add date header - always
1514                 add date header
1515         * src/etpan/imap-thread.c
1516                 fix warnings (Thanks to Colin)
1517
1518 2006-06-21 [wwp]        2.3.1cvs8
1519
1520         * src/folder.c
1521                 set the attachment flag when inline text part are (file)named. This is more convenient
1522                 when receiving (for instance) inline source files or patches sent using thunderbird.
1523
1524 2006-06-21 [paul]       2.3.1cvs7
1525
1526         * src/inc.c
1527                 fix off-by-one count of current msg in
1528                 statusbar filtering progressbar
1529
1530 2006-06-21 [paul]       2.3.1cvs6
1531
1532         * src/folder.c
1533                 Show attachment icon even if the part is 'inline'
1534                 if the following conditions are met:
1535                 - content-type != 'text/plain'
1536                 - content-type != '*/pgp-signature'
1537                 - either 'name' or 'filename' parameter is not NULL
1538                 
1539                 Thanks to Colin
1540
1541 2006-06-21 [paul]       2.3.1cvs5
1542
1543         * src/messageview.c
1544         * src/prefs_common.c
1545         * src/prefs_common.h
1546         * src/prefs_other.c
1547                 add an option to 'Never send Return
1548                 Receipts'
1549                 Thanks to Colin
1550
1551 2006-06-20 [mones]      2.3.1cvs4
1552
1553         * po/es.po
1554                 updated
1555         * src/compose.c
1556                 typo fixed (space after comma)
1557         * tools/make.themes.project
1558                 remove exec mode from tarball files
1559
1560 2006-06-20 [colin]      2.3.1cvs3
1561
1562         * src/news.c
1563         * src/procheader.c
1564         * src/unmime.c
1565                 Better fix for \n's in headers (don't 
1566                 break Received: and others)
1567
1568 2006-06-20 [paul]       2.3.1cvs2
1569
1570         * src/alertpanel.c
1571         * src/textview.c
1572                 improve legibility of phishing attempt
1573                 dialog
1574
1575 2006-06-20 [paul]       2.3.1cvs1
1576
1577         * NEWS
1578         * README
1579         * configure.ac
1580                 Update version number following
1581                 stable release
1582
1583 2006-06-20 [colin]      2.3.0cvs26
1584
1585         * src/compose.c
1586                 When dragging a file to the text of the compose
1587                 window, ask whether we want to insert or attach
1588                 (I know lots of people who do that to attach)
1589
1590 2006-06-20 [colin]      2.3.0cvs25
1591
1592         * src/etpan/imap-thread.c
1593                 Fix threshold (the append command is often > 32 bytes)
1594
1595 2006-06-19 [colin]      2.3.0cvs24
1596
1597         * src/imap.c
1598         * src/etpan/imap-thread.c
1599                 Workaround Rockliffe IMAP server bug: replace
1600                 "x UID SEARCH (ANSWERED UID 1:*)" with
1601                 "x UID SEARCH ANSWERED"
1602                 (Rockliffe doesn't handle the parenthesis)
1603
1604 2006-06-19 [colin]      2.3.0cvs23
1605
1606         * src/compose.c
1607         * src/imap.c
1608         * src/etpan/imap-thread.c
1609                 Probably fix bug #972 (Freezes when adding 
1610                 an attachment to the message)
1611         * src/common/defs.h
1612                 Modernize Firefox cmd
1613
1614
1615 2006-06-18 [colin]      2.3.0cvs22
1616
1617         * src/prefs_customheader.c
1618                 Only allow correct filenames for various
1619                 custom headers
1620
1621 2006-06-18 [colin]      2.3.0cvs21
1622
1623         * src/prefs_customheader.c
1624                 Add a 'From File...' button in custom headers prefs, which
1625                 try to do the right thing: 
1626                 for normal headers, use file as plaintext,
1627                 for X-Face, calls compface,
1628                 for Face, encode to b64.
1629
1630 2006-06-17 [colin]      2.3.0cvs20
1631
1632         * src/mh.c
1633                 Warning fix
1634
1635 2006-06-16 [colin]      2.3.0cvs19
1636
1637         * src/summaryview.c
1638                 Recursive quicksearch: show message list
1639                 in current folder, *then* search children
1640                 in the background.
1641
1642 2006-06-16 [colin]      2.3.0cvs18
1643
1644         * src/main.c
1645                 Instead of ignoring SIGPIPE, save caches
1646                 when getting one. Will fix the fact that
1647                 hot caches are out-of-date when logging 
1648                 out of Xorg.
1649         * src/compose.c
1650         * src/prefs_compose_writing.c
1651                 Only save text (not attachments) when 
1652                 auto-saving to drafts
1653         * src/unmime.c
1654                 Always replace \n, \r and \t with spaces
1655                 in headers
1656         * manual/dist/html/Makefile.am
1657         * manual/dist/pdf/Makefile.am
1658         * manual/dist/ps/Makefile.am
1659         * manual/dist/txt/Makefile.am
1660         * manual/fr/dist/html/Makefile.am
1661         * manual/fr/dist/pdf/Makefile.am
1662         * manual/fr/dist/ps/Makefile.am
1663         * manual/fr/dist/txt/Makefile.am
1664         * manual/pl/dist/html/Makefile.am
1665         * manual/pl/dist/pdf/Makefile.am
1666         * manual/pl/dist/ps/Makefile.am
1667         * manual/pl/dist/txt/Makefile.am
1668                 Fix make clean removing pregenerated manuals
1669
1670
1671 2006-06-16 [colin]      2.3.0cvs17
1672
1673         * src/plugins/pgpcore/sgpgme.c
1674         * src/plugins/pgpmime/pgpmime.c
1675         * src/plugins/pgpinline/pgpinline.c
1676                 Better error reporting in setup_signers.
1677                 Don't fallback to default key if specified
1678                 key isn't found.
1679                 Don't allow signing if more than one secret
1680                 key matches the one specified in prefs.
1681
1682 2006-06-15 [colin]      2.3.0cvs16
1683
1684         * src/folderview.c
1685                 Add "Send queue" in the folder's contextual
1686                 menu
1687         * src/compose.c
1688         * src/messageview.c
1689         * src/privacy.c
1690         * src/privacy.h
1691         * src/procmime.c
1692         * src/procmsg.c
1693         * src/plugins/pgpcore/passphrase.c
1694         * src/plugins/pgpcore/sgpgme.c
1695         * src/plugins/pgpinline/pgpinline.c
1696         * src/plugins/pgpmime/pgpmime.c
1697                 Better error reporting
1698         * src/mbox.c
1699                 Probably fix bug #971 (2.2.3 cannot read mail 
1700                 from local mbox)
1701
1702
1703 2006-06-15 [mones]      2.3.0cvs15
1704
1705         * tools/make.themes.project
1706                 creates the themes project from the web page
1707
1708 2006-06-15 [colin]      2.3.0cvs14
1709
1710         * src/folder.c
1711                 Better fix (avoid losing the folder if scan_tree 
1712                 fails)
1713
1714 2006-06-15 [cleroy]     2.3.0cvs13
1715
1716         * src/folder.c
1717                 Probably fix Bug #969 (crash on rebuilding 
1718                 imap folder)
1719
1720 2006-06-14 [colin]      2.3.0cvs12
1721
1722         * manual/dtd/manual.xsl
1723         * manual/sylpheed-claws-manual.xml
1724         * manual/fr/sylpheed-claws-manual.xml
1725         * manual/pl/sylpheed-claws-manual.xml
1726                 Insert pagebreaks between sections
1727
1728 2006-06-14 [paul]       2.3.0cvs11
1729
1730         * configure.ac
1731                 better fix than 2.3.0cvs10
1732
1733 2006-06-14 [paul]       2.3.0cvs10
1734
1735         * configure.ac
1736                 fix setting of PACKAGE_DATA_DIR with newer autoconf
1737                 (backwards compatible)
1738
1739 2006-06-13 [colin]      2.3.0cvs9
1740
1741         * src/messageview.c
1742                 Fix sending of return receipt with the new queue folders
1743
1744 2006-06-13 [wwp]        2.3.0cvs8
1745
1746         * src/quote_fmt_lex.l
1747                 fix wrong tokens returned in quote_fmt lexer, query not().
1748
1749 2006-06-13 [wwp]        2.3.0cvs7
1750
1751         * src/folder.c
1752         * src/prefs_folder_item.c
1753                 allow changing folder type even when folder is not a top-level one,
1754                 thanks to Colin.
1755
1756 2006-06-12 [colin]      2.3.0cvs6
1757
1758         * src/folderview.c
1759                 Fix double-ask of "Do you want to mark all
1760                 as read"
1761
1762 2006-06-12 [colin]      2.3.0cvs5
1763
1764         * src/compose.c
1765         * src/compose.h
1766         * src/folder.c
1767         * src/folder.h
1768         * src/imap.c
1769         * src/inc.c
1770         * src/main.c
1771         * src/messageview.c
1772         * src/mh.c
1773         * src/prefs_folder_item.c
1774         * src/procheader.c
1775         * src/procmime.c
1776         * src/procmsg.c
1777         * src/procmsg.h
1778         * src/send_message.c
1779         * src/summaryview.c
1780         * src/toolbar.c
1781                 Apply bug #964's patch (Queue and drafts aren't normal)
1782                 The Drafts and Queue folder now contain RFC-822 files,
1783                 allowing to move and copy mails from and to these 
1784                 folders. Moving from Drafts to Queue will prepare the
1785                 mail for sending (PGP signature, encryption, etc).
1786                 This patch also rework sending errors handling to try
1787                 to be more helpful.
1788                 Also, allow redefining folder types via the GUI 
1789                 (Folder type in its Properties)
1790
1791 2006-06-12 [colin]      2.3.0cvs4
1792
1793         * src/summaryview.c
1794         * src/prefs_common.c
1795         * src/prefs_common.h
1796         * src/gedit-print.c
1797                 Allow to define a specific print font - patch
1798                 by Bernhard Walle <bernhard.walle@gmx.de>
1799         * src/prefs_fonts.c
1800         * manual/advanced.xml
1801         * manual/fr/advanced.xml
1802                 Add a hidden pref to allow deletion without
1803                 confirmation
1804
1805 2006-06-12 [wwp]        2.3.0cvs3
1806
1807         * .cvsignore
1808                 more files to ignore.
1809
1810 2006-06-12 [wwp]        2.3.0cvs2
1811
1812         * src/quote_fmt.c
1813         * src/quote_fmt_lex.l
1814         * src/quote_fmt_parse.y
1815                 extend the quote_fmt parser (templates and quotes):
1816                 - allow limited sub-expressions in |p{} and |f{} expressions,
1817                 - add !x{expr} (evaluate and insert 'expr' if 'x' is not set) and \! symbols,
1818                 - implemented/fixed missing implementation of query_references and show_references,
1819                 - completed, fixed contents and format of the symbols help dialog,
1820                 - fix some compilation warnings.
1821
1822 2006-06-12 [wwp]        2.3.0cvs1
1823
1824         * manual/advanced.xml
1825         * manual/fr/advanced.xml
1826                 updates in the "templates" section of the manual (eng/fr):
1827                  - be more precise (both versions)
1828                  - completed to match the english reference (fr version)
1829                  - touchups (both versions)
1830
1831 2006-06-12 [paul]       2.3.0
1832
1833         2.3.0 released
1834
1835 2006-06-12 [paul]       2.2.3cvs14
1836
1837         * po/ca.po
1838         * po/cs.po
1839         * po/de.po
1840         * po/el.po
1841         * po/fr.po
1842         * po/it.po
1843         * po/pt_BR.po
1844         * po/sr.po
1845         * po/zh_CN.po
1846                 updated by Miquel Oliete, Tim, Stephan Sachse,
1847                 Stavros Giannouris, Fabien Vantard, Andrea
1848                 Spadaccini, Frederico Goncalves Guimaraes,
1849                 Aleksandar Urosevic, and Ralgh Young
1850
1851 2006-06-12 [colin]      2.2.3cvs13
1852
1853         * src/mbox.c
1854                 Add missing header
1855
1856 2006-06-11 [colin]      2.2.3cvs12
1857
1858         * src/msgcache.c
1859                 Verify that g_malloc() succeeded
1860
1861 2006-06-11 [colin]      2.2.3cvs11
1862
1863         * src/wizard.c
1864                 Add Face header to welcome mail
1865
1866 2006-06-10 [colin]      2.2.3cvs10
1867
1868         * src/textview.c
1869                 Revert previous (Forgot it changes the
1870                 margin on the whole mail)
1871
1872 2006-06-10 [colin]      2.2.3cvs9
1873
1874         * src/textview.c
1875                 Don't overlap long headers under (X-)Face
1876
1877 2006-06-10 [mones]      2.2.3cvs8
1878
1879         * manual/xml2pdf
1880                 allow generation of manual on systems lacking saxon binary
1881                 but with java and the saxon library installed
1882
1883         * po/es.po
1884                 updated for release
1885
1886 2006-06-09 [colin]      2.2.3cvs7
1887
1888         * src/summaryview.c
1889                 Fix leak when using Display Sender using Addressbook
1890
1891 2006-06-09 [colin]      2.2.3cvs6
1892
1893         * src/compose.c
1894         * src/folder.c
1895         * src/folderview.c
1896         * src/mimeview.c
1897         * src/summaryview.c
1898                 More leaks fixes
1899
1900 2006-06-09 [paul]       2.2.3cvs5
1901
1902         * AUTHORS
1903         * src/gtk/authors.h
1904         * tools/claws.i18n.status.pl
1905                 updated with new info
1906
1907 2006-06-09 [paul]       2.2.3cvs4
1908
1909         * README
1910                 updated
1911         * manual/ack.xml
1912                 add wwp to authors list
1913         * src/gtk/authors.h
1914                 update mine and Colin's addresses
1915
1916 2006-06-08 [colin]      2.2.3cvs3
1917
1918         * src/etpan/imap-thread.c
1919                 Fix leak on SSL cert check
1920
1921 2006-06-08 [colin]      2.2.3cvs2
1922
1923         * src/common/utils.c
1924                 Fix leak
1925
1926 2006-06-08 [paul]       2.2.3cvs1
1927
1928         * configure.ac
1929                 Update version number following
1930                 stable release
1931
1932 2006-06-07 [colin]      2.2.2cvs3
1933
1934         * src/msgcache.c
1935                 Fix catching cache read errors (guint instead of gint)
1936                 Prevent malloc'ing more than 8MB (means cache corruption)
1937
1938 2006-06-07 [paul]       2.2.2cvs2
1939
1940         * src/exporthtml.c
1941         * src/exportldif.c
1942         * src/mh.c
1943         * src/mutt.c
1944         * src/pine.c
1945         * src/common/utils.c
1946                 fix Debian bug #370257, 'sylpheed-claws-gtk2 does not
1947                 obey $HOME'
1948                 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=370257
1949                 Thanks to Colin
1950
1951 2006-06-06 [paul]       2.2.2cvs1
1952
1953         * configure.ac
1954                 Update version number following
1955                 stable release
1956
1957 2006-06-06 [paul]       2.2.1cvs6
1958
1959         * src/matcher.c
1960                 fix  implicit declaration of
1961                 sylpheed_do_idle()
1962                 Patch by Fabien Vantard
1963
1964 2006-06-06 [paul]       2.2.1cvs5
1965
1966         * src/matcher.c
1967                 fix age_greater and age_lower so that they
1968                 mean what say and not '...or equal to'
1969                 Thanks to Colin
1970
1971 2006-06-06 [paul]       2.2.1cvs4
1972
1973         * src/textview.c
1974         * src/common/utils.c
1975                 fix URI check
1976                 Thanks to Colin
1977
1978 2006-06-05 [wwp]        2.2.1cvs3
1979
1980         * manual/fr/account.xml
1981                 minor language fixes (thanks to Fabien Vantard).
1982
1983 2006-06-05 [colin]      2.2.1cvs2
1984
1985         * src/prefs_folder_item.c
1986         * src/folderview.c
1987                 Allow recursive setting of properties 
1988                 for whole mailboxes
1989         * src/matcher.c
1990                 Don't freeze on 'test' filtering rule
1991
1992 2006-06-05 [colin]      2.2.1cvs1
1993
1994         * configure.ac
1995                 Update version number following
1996                 stable release
1997
1998 2006-06-04 [wwp]        2.2.0cvs82
1999
2000         * manual/glossary.xml
2001         * manual/account.xml
2002         * manual/fr/glossary.xml
2003         * manual/fr/account.xml
2004                 added glossary section and references/links related to the Face custom header.
2005
2006 2006-06-04 [colin]      2.2.0cvs81
2007
2008         * src/summaryview.c
2009                 Skip to next message on move with no
2010                 immediate execution
2011
2012 2006-06-04 [wwp]        2.2.0cvs80
2013
2014         * manual/xml2pdf
2015                 added sanity checks, exit when needed.
2016
2017 2006-06-03 [paul]       2.2.0cvs79
2018
2019         * src/prefs_receive.c
2020                 page name is now 'Receiving'
2021         * src/prefs_send.c
2022                 page name is now 'Sending'
2023
2024 2006-06-03 [colin]      2.2.0cvs78
2025
2026         * src/plugins/spamassassin/spamassassin_gtk.c
2027                 Autoswitch to Localhost if transport was previously
2028                 disabled. Else people had to check [] Enable, then
2029                 *reselect* transport.
2030
2031 2006-06-03 [colin]      2.2.0cvs77
2032
2033         * src/plugins/pgpinline/pgpinline.c
2034         * src/plugins/pgpmime/pgpmime.c
2035                 Check that gpg_data_release_and_get_mem 
2036                 didn't fail (now, why this happens...)
2037
2038 2006-06-03 [colin]      2.2.0cvs76
2039
2040         * src/mbox.c
2041                 Fix bug #962 (Manual and/or UI should 
2042                 warn about incompatible locking 
2043                 causing dataloss)
2044
2045 2006-06-02 [cleroy]     2.2.0cvs75
2046
2047         * src/filtering.c
2048         * src/folder.c
2049         * src/procmsg.c
2050         * src/summaryview.c
2051                 Fix a few leaks
2052
2053 2006-06-02 [colin]      2.2.0cvs74
2054
2055         * src/main.c
2056                 On exit, free caches after writing them
2057                 Shuts up some valgrind false positives
2058         * src/procmsg.c
2059         * src/send_message.c
2060                 Fix races when reusing existing SMTP connections
2061                 Fix inexistant session timeout
2062         * src/toolbar.c
2063                 Display alertpanel after all queues have
2064                 been processed, not after each
2065
2066 2006-06-02 [wwp]        2.2.0cvs73
2067
2068         * manual/fr/glossary.xml
2069         * manual/fr/ack.xml
2070         * manual/ack.xml
2071                 one fix (thanks to Fabien Vantard), one update (thanks to Norman Walsh).
2072
2073 2006-06-02 [wwp]        2.2.0cvs72
2074
2075         * manual/xml2pdf
2076         * manual/dist/pdf/Makefile.am
2077         * manual/dtd/manual.xsl
2078         * manual/fr/dist/pdf/Makefile.am
2079         * manual/pl/dist/pdf/Makefile.am
2080                 we changed the procedure to generate the .pdf version of the manual.
2081                 The procedure is more modern and the .pdf we get now has a valid index.
2082                 Here are the new pre-requisites:
2083
2084                 - JRE 1.x (1.4 here): there must be one from your distro
2085                 - Saxon 6.5.5: http://prdownloads.sourceforge.net/saxon/saxon6-5-5.zip
2086                 - FOP 0.92: http://apache.crihan.fr/dist/xmlgraphics/fop/fop-0.92beta-bin-jdk1.4.tar.gz
2087                 - DocBook XSL 1.70.x: http://prdownloads.sourceforge.net/docbook/docbook-xsl-1.70.1.tar.bz2?download
2088
2089                 See my posts for further info about the installation of this toolchain:
2090
2091                 Date: Fri, 19 May 2006 19:40:06 +0200
2092                 From: wwp <subscript@free.fr>
2093                 To: sylpheed-claws-devel@lists.sourceforge.net
2094                 Subject: [Sylpheed-claws-devel] Generating the manual .pdf
2095
2096                 and
2097
2098                 Date: Wed, 24 May 2006 12:58:49 +0200
2099                 From: wwp <subscript@free.fr>
2100                 To: sylpheed-claws-devel@lists.sourceforge.net
2101                 Subject: Re: [Sylpheed-claws-devel] Generating the manual .pdf
2102
2103 2006-06-01 [colin]      2.2.0cvs71
2104
2105         * src/compose.c
2106                 Better guards against IMAP races
2107         * src/main.c
2108         * src/prefs_common.c
2109         * src/prefs_common.h
2110         * src/common/ssl_certificate.c
2111         * src/etpan/imap-thread.c
2112         * src/etpan/imap-thread.h
2113         * src/gtk/sslcertwindow.c
2114                 New hidden option ssl_skip_cert_check to 
2115                 avoid dups of bug #959 (libetpan linked
2116                 against gnutls and gnutls buggy on 64bit)
2117                 Present expired warning only once per
2118                 session/server.
2119         * manual/advanced.xml
2120         * manual/fr/advanced.xml
2121                 Document new option
2122
2123 2006-06-01 [wwp]        2.2.0cvs70
2124
2125         * src/messageview.c
2126                 fix for bug #961 (return receipt dialog 
2127                 complains incorrectly about return-path 
2128                 email adress being different), thanks 
2129                 to Colin.
2130
2131 2006-05-31 [cleroy]     2.2.0cvs69
2132
2133         * src/common/ssl.c
2134                 Guard against NULLs, although this
2135                 should never be an issue
2136
2137 2006-05-31 [colin]      2.2.0cvs68
2138
2139         * src/filtering.c
2140                 Use g_slist_prepend
2141         * src/imap.c
2142                 Don't remove caches when destroying folder, it
2143                 could (should) be done at exit
2144         * src/inc.c
2145                 free processing cache after incorporation
2146         * src/etpan/imap-thread.c
2147                 Maybe fix bug #959 (Crash on moving to emails 
2148                 to a imap account per ssl with a expired 
2149                 certificate.)
2150
2151 2006-05-30 [colin]      2.2.0cvs67
2152
2153         * src/summaryview.c
2154                 Put back event flush when displaying message
2155                 It avoids reading a bunch of messages just
2156                 by hitting shift-n for too long ;)
2157
2158 2006-05-29 [colin]      2.2.0cvs66
2159
2160         * src/summaryview.c
2161                 Remove useless g_warnings
2162
2163 2006-05-29 [colin]      2.2.0cvs65
2164
2165         * src/imap.c
2166                 Fix g_slist_append()s for performance
2167
2168 2006-05-29 [colin]      2.2.0cvs64
2169
2170         * src/compose.c
2171         * src/common/utils.c
2172                 Fix extraneous tab at start of addresses
2173         * src/mainwindow.c
2174                 Fix warnings (thanks to Fabien)
2175                 Fix crash at exit when composing messages 
2176                 exist
2177         * src/pop.c
2178                 Fix progress bar when deleting expired mails
2179                 Thanks to Hiro
2180         * src/summaryview.c
2181         * src/gtk/gtksctree.c
2182                 Fix re-sorting slowness
2183
2184 2006-05-29 [paul]       2.2.0cvs63
2185
2186         * src/mh.c
2187                 fetch full message when moving mails
2188                 from another mailbox, (fixed data loss
2189                 when filtering from IMAP to MH, introduced
2190                 in 2.2.0cvs57).
2191                 Thanks to Colin
2192
2193 2006-05-29 [mones]      2.2.0cvs62
2194
2195         * src/gtk/gtksctree.c
2196                 Unselect faster (patch by Colin)        
2197
2198 2006-05-26 [colin]      2.2.0cvs61
2199
2200         * src/summaryview.c
2201                 Unplug MSGINFO_UPDATE callback on delete too.
2202
2203 2006-05-26 [colin]      2.2.0cvs60
2204
2205         * src/foldersel.c
2206                 Fix bold in folder selection window with glib2.10
2207                 thanks Hiro
2208
2209 2006-05-26 [colin]      2.2.0cvs59
2210
2211         * src/procheader.c
2212                 Convert date only if necessary (and don't
2213                 try to convert from utf8 to utf8, too)
2214         * src/summaryview.c
2215                 Only set column's text if the column's 
2216                 displayed
2217
2218 2006-05-26 [colin]      2.2.0cvs58
2219
2220         * src/summaryview.c
2221         * src/gtk/gtkutils.c
2222                 Fix useless warning
2223
2224 2006-05-26 [colin]      2.2.0cvs57
2225
2226         * src/mainwindow.c
2227                 Make summaryview selectable as long as 
2228                 no message has focus
2229         * src/mh.c
2230                 Faster deletion (by implementing mh_remove_msgs)
2231                 Faster copy (avoid using mh_fetch_msg just to get
2232                 the filename)
2233                 Faster move (using move_file instead of copy_file
2234                 if MSG_IS_MOVE)
2235                 No progressbar if total number of mails to cp/mv 
2236                 is less than 100
2237         * src/summaryview.c
2238                 Fix removal from subject_table when mail gets moved
2239                 Faster deletion (g_slist_prepend instead of append)
2240         * src/gtk/gtksctree.c
2241                 Remove useless code
2242
2243 2006-05-25 [colin]      2.2.0cvs56
2244
2245         * src/common/ssl_certificate.c
2246                 Fix leak in expired cert check
2247
2248 2006-05-25 [colin]      2.2.0cvs55
2249
2250         * src/mh.c
2251                 Disable flags syncing on .mh_sequences - it
2252                 is buggy and marks mails read under unknown
2253                 conditions.
2254
2255 2006-05-25 [paul]
2256
2257         * 2.3.0-rc4 released
2258
2259 2006-05-24 [colin]      2.2.0cvs54
2260
2261         attention cvs users: if you manage to crash
2262         Sylpheed-Claws while moving, copying or deleting
2263         mails, we *are* interested in stack traces and
2264         valgrind logs. It looks stable, but one never
2265         knows...
2266
2267         * src/folder.c
2268                 Add progressbar for cache updates
2269         * src/folderutils.c
2270                 Optimize Mark all read in the current
2271                 folder
2272         * src/mh.c
2273                 Add progressbar for copy/move
2274         * src/procmsg.c
2275                 Optimize O(n^2) in copy/move
2276         * src/summaryview.c
2277         * src/gtk/gtksctree.c
2278                 Optimize O(n^2) algos
2279         * src/common/timing.h
2280                 Display ms instead of us
2281
2282 2006-05-24 [wwp]        2.2.0cvs53
2283
2284         * manual/fr/advanced.xml
2285                 updates to the French manual.
2286
2287 2006-05-24 [wwp]        2.2.0cvs52
2288
2289         * src/common/utils.c
2290                 MB translates to a 4-char string in Russian (thanks to Maxim Britov <maxim.britov@gmail.com>).
2291
2292 2006-05-24 [wwp]        2.2.0cvs51
2293
2294         * src/folderutils.c
2295                 fixed "mark all read" in MH folders (thanks to Colin).
2296
2297 2006-05-24 [paul]       2.2.0cvs50
2298
2299         * doc/man/sylpheed-claws.1
2300                 updated the man page
2301
2302 2006-05-23 [colin]      2.2.0cvs49
2303
2304         * src/folderview.c
2305         * src/imap.c
2306         * src/inc.c
2307         * src/mbox.c
2308         * src/messageview.c
2309         * src/news.c
2310         * src/send_message.c
2311         * src/summaryview.c
2312         * src/gtk/sslcertwindow.c
2313                 alertpanel fixes, by Fabien
2314
2315 2006-05-23 [colin]      2.2.0cvs48
2316
2317         * src/folder.c
2318         * src/folderview.c
2319         * src/msgcache.c
2320         * src/summaryview.c
2321         * src/gtk/gtksctree.c
2322         * src/gtk/gtksctree.h
2323                 More timings
2324                 Fix slow loading problem, which was caused by the
2325                 use of some gtk_ctree funcs and their use of
2326                 g_list_position while gtk_ctree_(un)link'ing.
2327                 Reap more functions from gtkctree.c to be sure we
2328                 use our (fast) version instead of theirs.
2329         * src/mh.c
2330                 Fix copy of unread mails
2331
2332
2333 2006-05-22 [wwp]        2.2.0cvs47
2334
2335         * manual/fr/advanced.xml
2336                 updated.
2337
2338 2006-05-22 [colin]      2.2.0cvs46
2339
2340         * src/filtering.c
2341                 Fix possible infinite loop. 'copy' is not a 
2342                 final action, so when encountering a 'copy',
2343                 we have to check if a previous one was set
2344                 and do it. In the same way, if we encounter
2345                 a 'move' we have to perform a possibly 
2346                 pending 'copy'. This will slow down filtering
2347                 on IMAP if move+copy or multiple copy actions
2348                 are to be done, but handling it via the batch
2349                 would be really too convoluted.
2350
2351 2006-05-22 [wwp]        2.2.0cvs45
2352
2353         * manual/fr/advanced.xml
2354         * manual/fr/faq.xml
2355         * manual/fr/glossary.xml
2356         * manual/fr/handling.xml
2357         * manual/fr/intro.xml
2358         * manual/fr/plugins.xml
2359         * manual/fr/sylpheed-claws-manual.xml
2360                 sync w/ the english manual: updates URIs, documented mailing-list
2361                 support, better explanation about the enabled/disabled feature
2362                 in filtering/processing rules by Paul.
2363
2364 2006-05-21 [colin]      2.2.0cvs44
2365
2366         * src/summaryview.c
2367                 Don't expand after building threads, but during
2368
2369 2006-05-21 [colin]      2.2.0cvs43
2370
2371         * src/procmsg.c
2372         * src/summaryview.c
2373                 More timing possibilities... For next time I have 
2374                 to find out how the hell some 3GHz computer takes
2375                 one minute to open a 30k folder...
2376
2377 2006-05-21 [colin]      2.2.0cvs42
2378
2379         * manual/pl/advanced.xml
2380         * manual/pl/faq.xml
2381         * manual/pl/glossary.xml
2382         * manual/pl/handling.xml
2383         * manual/pl/intro.xml
2384         * manual/pl/plugins.xml
2385         * manual/pl/sylpheed-claws-manual.xml
2386                 Polish manual updated by Pawel
2387
2388 2006-05-20 [colin]
2389
2390         * 2.3.0-rc3 released
2391
2392 2006-05-20 [colin]      2.2.0cvs41
2393
2394         * src/imap.c
2395                 Fix -rc2 problems:
2396                 - remove cache of moved messages from original folder
2397                 - apply new flags to messages even if they aren't appliable
2398                   via IMAP.
2399
2400 2006-05-20 [colin]
2401
2402         * 2.3.0-rc2 released
2403
2404 2006-05-19 [colin]      2.2.0cvs40
2405
2406         * src/imap.c
2407                 Don't issue SELECT in imap_change_flags
2408                 before having checked that we indeed have
2409                 some flags to change. MSG_POSTFILTERED for
2410                 example can't be used on IMAP.
2411                 Fixes bug #955 (copying messages between 
2412                 imap folders is extremely slow), which was
2413                 a regression.
2414
2415 2006-05-19 [colin]      2.2.0cvs39
2416
2417         * src/folder.c
2418         * src/folder.h
2419         * src/folderview.c
2420                 Try to fix bug #830 (Some unread messages 
2421                 get marked read in IMAP inbox):
2422                 - Prevent scanning a folder if it's being 
2423                   opened via the GUI
2424                 - Postpone opening via the GUI of a folder
2425                   currently scanned.
2426
2427
2428 2006-05-19 [wwp]        2.2.0cvs38
2429
2430         * manual/advanced.xml
2431                 fix English+typo (thanks to Paul).
2432
2433 2006-05-19 [wwp]        2.2.0cvs37
2434
2435         * manual/advanced.xml
2436         * manual/fr/advanced.xml
2437         * src/gtk/logwindow.c
2438         * src/prefs_common.c
2439         * src/prefs_common.h
2440                 added hidden prefs to allow customization of colors used in
2441                 protocol log window (useful for dark gtk+ themes).
2442
2443 2006-05-19 [wwp]        2.2.0cvs36
2444
2445         * ChangeLog
2446                 fix an old erroneous changelog entry (thanks to Fabien Vantard).
2447
2448 2006-05-19 [paul]       2.2.0cvs35
2449
2450         * src/textview.c
2451                 make Reply-To fully clickable
2452         * src/gtk/logwindow.c
2453                 more colouring (SMTP ESMTP)
2454         Both patches by Pawel Pekala
2455
2456 2006-05-19 [cleroy]     2.2.0cvs34
2457
2458         * src/mh.c
2459                 Don't update flags from current folder
2460                 Probably fixes bug #935 (Read Messages 
2461                 Revert to Being Marked as Unread)
2462
2463 2006-05-18 [colin]      2.2.0cvs33
2464
2465         * src/imap.c
2466                 Warning fix
2467         * src/compose.c
2468         * src/mainwindow.c
2469         * src/summaryview.c
2470         * src/toolbar.c
2471                 Allow replying to multiple emails
2472                 in multiple windows
2473         * src/mimeview.c
2474         * src/etpan/imap-thread.c
2475                 Leak fixes
2476
2477 2006-05-18 [paul]       2.2.0cvs32
2478
2479         * src/summaryview.c
2480                 keep Mailing-List menu refreshed
2481                 Thanks to Colin
2482
2483 2006-05-18 [paul]       2.2.0cvs31
2484
2485         * manual/advanced.xml
2486         * manual/faq.xml
2487         * manual/glossary.xml
2488         * manual/handling.xml
2489         * manual/intro.xml
2490         * manual/plugins.xml
2491         * manual/sylpheed-claws-manual.xml
2492                 update URLs
2493                 add info about mailing-list support
2494                 edit filtering info
2495         * src/wizard.c
2496         * src/common/defs.h
2497         * src/gtk/about.c
2498         * src/plugins/dillo_viewer/README
2499                 update URLs
2500
2501 2006-05-17 [wwp]        2.2.0cvs30
2502
2503         * manual/handling.xml
2504         * manual/fr/handling.xml
2505                 documented the ability to enabled/disable filtering/processing rules.
2506
2507 2006-05-17 [colin]      2.2.0cvs29
2508
2509         * src/main.c
2510                 Don't initialize g_thread subsystem if it's 
2511                 already done (thanks to Hiro)
2512         * src/mimeview.c
2513                 Fix saving of parts when there name can't be
2514                 converted from UTF-8.
2515
2516 2006-05-17 [paul]       2.2.0cvs28
2517
2518         * po/Makefile.in.in
2519                 fix config.status warning with autoconf 2.60
2520
2521 2006-05-17 [paul]       2.2.0cvs27
2522
2523         * po/POTFILES.in
2524                 add src/mbox.c
2525
2526 2006-05-17 [wwp]        2.2.0cvs26
2527
2528         * src/mainwindow.c
2529                 fix useless and potentially dangerous buffer walking (thanks to Colin).
2530
2531 2006-05-17 [wwp]        2.2.0cvs25
2532
2533         * src/plugins/demo/demo.c
2534                 updated product name in plugin demo (many plugins need to be
2535                 sync'ed w/ that change).
2536
2537 2006-05-17 [colin]      2.2.0cvs24
2538
2539         * src/mh.c
2540                 Fix leak
2541
2542 2006-05-16 [colin]      2.2.0cvs23
2543
2544         * src/mainwindow.c
2545                 Stupid me hit again. Fix cvs22.
2546
2547 2006-05-16 [colin]      2.2.0cvs22
2548
2549         * src/mainwindow.c
2550                 Fix bug #922 (sylpheed-claws crashed after 
2551                 pushing on Inbox folder)
2552
2553 2006-05-16 [colin]      2.2.0cvs21
2554
2555         * src/compose.c
2556                 Make From header be copy/paste/select-able
2557
2558 2006-05-16 [wwp]        2.2.0cvs20
2559
2560         * src/export.c
2561         * src/matcher.c
2562         * src/summaryview.c
2563         * src/etpan/imap-thread.c
2564                 fix some compiler warnings (thanks to Colin).
2565
2566 2006-05-16 [wwp]        2.2.0cvs19
2567
2568         * src/action.c
2569         * src/gedit-print.c
2570         * src/inc.c
2571         * src/mainwindow.c
2572         * src/mh.c
2573         * src/statusbar.c
2574         * src/send_message.c
2575         * src/summaryview.c
2576                 get rid of some gtk warning/errors at runtime (and avoid divide-by-0).
2577
2578 2006-05-15 [colin]      2.2.0cvs18
2579
2580         * src/procmsg.c
2581                 Fix automatic rule creation with List-Post
2582
2583 2006-05-15 [paul]       2.2.0cvs17
2584
2585         * tools/filter_conv_new.pl
2586                 updated for rule enabling/disabling
2587                 claws version >= 2.3.x required
2588
2589 2006-05-15 [cleroy]     2.2.0cvs16
2590
2591         * src/main.c
2592                 Revert test
2593
2594 2006-05-15 [cleroy]     2.2.0cvs15
2595
2596         * src/main.c
2597                 test
2598
2599 2006-05-15 [wwp]        2.2.0cvs14
2600
2601         * manual/pl/.cvsignore
2602                 ignore generated files.
2603
2604 2006-05-14 [wwp]        2.3.0-rc1
2605
2606         * 2.3.0-rc1 released
2607
2608 2006-05-13 [wwp]        2.2.0cvs13
2609
2610         * src/filtering.c
2611         * src/filtering.h
2612         * src/matcher.c
2613         * src/matcher_parser_lex.l
2614         * src/matcher_parser_parse.y
2615         * src/prefs_filtering.c
2616                 new feature: provide the ability to disable filtering and processing
2617                 rules. Patch by Fabien Vantard <fzzzzz@gmail.com>, w/ some minor
2618                 adaptations.
2619
2620 2006-05-13 [colin]      2.2.0cvs12
2621
2622         * src/compose.c
2623                 Remove useless if (a) b; else b;
2624                 Thanks to wwp
2625
2626 2006-05-13 [wwp]        2.2.0cvs11
2627
2628         * src/export.c
2629         * src/import.c
2630         * src/mainwindow.c
2631         * src/mbox.c
2632         * src/summaryview.c
2633         * src/summaryview.h
2634                 no more silent failures (or at least less ones) when importing
2635                 or exporting from/to mbox. Also start importing/exporting if
2636                 the necessary info is set.
2637
2638 2006-05-13 [wwp]        2.2.0cvs10
2639
2640         * RELEASE_NOTES
2641                 restored up-to-date release notes.
2642
2643 2006-05-13 [paul]       2.2.0cvs9
2644
2645         * po/nl.po
2646         * po/ru.po
2647                 updated by Tim Dijkstra and Pavlo Bohmat
2648
2649 2006-05-12 [colin]      2.2.0cvs8
2650
2651         * src/gtk/quicksearch.c
2652                 Add "k" as shortcut for "colorlabel". Patch
2653                 by ath42@users.sf.net.
2654
2655 2006-05-12 [paul]       2.2.0cvs7
2656
2657         * src/prefs_common.h
2658         * src/prefs_summaries.c
2659         * src/summaryview.c
2660                 when entering a folder also allow
2661                 going directly to first Marked message
2662
2663 2006-05-12 [paul]       2.2.0cvs6
2664
2665         * src/summaryview.c
2666                 always obey 'confirm before marking all
2667                 mails read' option
2668
2669 2006-05-12 [paul]       2.2.0cvs5
2670
2671         * src/textview.c
2672                 make Sender fully clickable
2673
2674 2006-05-12 [colin]      2.2.0cvs4
2675
2676         * src/compose.c
2677         * src/compose.h
2678                 Let From be editable
2679         * src/main.c
2680         * src/mh.c
2681                 Full support of .mh_sequences' Unseen seq
2682
2683 2006-05-12 [colin]      2.2.0cvs3
2684
2685         * src/folder.c
2686         * src/mainwindow.c
2687         * src/mainwindow.h
2688         * src/messageview.c
2689         * src/prefs_spelling.c
2690         * src/procheader.c
2691         * src/procmsg.c
2692         * src/procmsg.h
2693         * src/summaryview.c
2694         * src/toolbar.c
2695         * src/toolbar.h
2696                 Add contextual menu on Compose toolbar
2697                 button. Fixes bug #944 (Automatic
2698                 addresses not applied when changing account
2699                 from compose window)
2700                 add Mailing List support
2701                 based on the old 0.6.5claws25 patch by
2702                 Melvin Hadasht, with finishing touches
2703                 by Colin
2704                 Fix "ignore thread" when mails are threaded by
2705                 subject (and weren't ignored although appearing
2706                 in the thread).
2707                 GUI rework.
2708                 Both patches by Pawel.
2709
2710 2006-05-08 [paul]       2.2.0cvs2
2711
2712         * src/mainwindow.c
2713         * src/mainwindow.h
2714         * src/messageview.c
2715         * src/procheader.c
2716         * src/procmsg.c
2717         * src/procmsg.h
2718         * src/summaryview.c
2719                 add Mailing List support
2720                 based on the old 0.6.5claws25 patch by 
2721                 Melvin Hadasht, with finishing touches
2722                 by Colin
2723
2724 2006-05-08 [colin]      2.2.0cvs1
2725
2726         * src/mainwindow.c
2727         * src/toolbar.c
2728         * src/toolbar.h
2729                 Add contextual menu on Compose toolbar 
2730                 button. Fixes bug #944 (Automatic 
2731                 addresses not applied when changing account 
2732                 from compose window)
2733
2734 2006-05-08 [paul]       2.2.0
2735
2736         2.2.0 released
2737
2738 2006-05-08 [paul]       2.1.1cvs51
2739
2740         * po/cs.po
2741         * po/de.po
2742         * po/en_GB.po
2743         * po/fi.po
2744         * po/fr.po
2745         * po/pt_BR.po
2746         * po/sr.po
2747         * po/zh_CN.po
2748                 updated by Tim, Stephan Sachse, me, Flammie Pirinen,
2749                 Fabien Vantard, Frederico Goncalves Guimaraes,
2750                 Aleksandar Urosevic, and Ralgh Young
2751
2752 2006-05-12 [colin]      2.1.1cvs50
2753
2754         * po/cs.po
2755         * po/de.po
2756         * po/en_GB.po
2757         * po/es.po
2758         * po/fi.po
2759         * po/fr.po
2760         * po/pt_BR.po
2761         * po/sr.po
2762         * po/zh_CN.po
2763                 updated by Tim, Stephan Sachse, me, Flammie Pirinen,
2764                 Fabien Vantard, Frederico Goncalves Guimaraes,
2765                 Aleksandar Urosevic, Ricardo Mones, and Ralgh Young
2766
2767 2006-05-05 [colin]      2.1.1cvs49
2768
2769         * manual/Makefile.am
2770         * manual/pl/Makefile.am
2771         * manual/pl/account.xml
2772         * manual/pl/ack.xml
2773         * manual/pl/addrbook.xml
2774         * manual/pl/advanced.xml
2775         * manual/pl/faq.xml
2776         * manual/pl/glossary.xml
2777         * manual/pl/gpl.xml
2778         * manual/pl/handling.xml
2779         * manual/pl/intro.xml
2780         * manual/pl/keyboard.xml
2781         * manual/pl/plugins.xml
2782         * manual/pl/starting.xml
2783         * manual/pl/sylpheed-claws-manual.xml
2784         * manual/pl/dist/.cvsignore
2785         * manual/pl/dist/Makefile.am
2786         * manual/pl/dist/html/.cvsignore
2787         * manual/pl/dist/html/Makefile.am
2788         * manual/pl/dist/pdf/.cvsignore
2789         * manual/pl/dist/pdf/Makefile.am
2790         * manual/pl/dist/ps/.cvsignore
2791         * manual/pl/dist/ps/Makefile.am
2792         * manual/pl/dist/txt/.cvsignore
2793         * manual/pl/dist/txt/Makefile.am
2794                 Add the polish translation of the manual,
2795                 Authored by Pawel Pekala.
2796
2797 2006-05-05 [cleroy]     2.1.1cvs48
2798
2799         * src/main.c
2800                 Re-read matcherrc after loading plugins 
2801                 if some of them add folders.
2802
2803 2006-05-03 [colin]      2.1.1cvs47
2804
2805         * src/imap.c
2806                 I'm idiot
2807
2808 2006-05-03 [colin]      2.1.1cvs46
2809
2810         * src/imap.c
2811                 Be sure to have a session when
2812                 getting separator
2813
2814 2006-05-03 [colin]      2.1.1cvs45
2815
2816         * src/imap.c
2817         * src/imap.h
2818         * src/imap_gtk.c
2819                 Fix preventing renaming with namespace 
2820                 separator.
2821
2822 2006-05-01 [colin]      2.1.1cvs44
2823
2824         * src/action.c
2825                 Don't reload messageview when result of
2826                 action is piped.
2827
2828 2006-04-29 [colin]      2.1.1cvs43
2829
2830         * src/prefs_receive.c
2831         * src/plugins/spamassassin/spamassassin_gtk.c
2832         * src/plugins/clamav/clamav_plugin_gtk.c
2833                 GUI fixes by Pawel
2834
2835 2006-04-29 [colin]      2.1.1cvs42
2836
2837         * src/prefs_compose_writing.c
2838         * src/prefs_quote.c
2839                 Cleanups. Patch by Pawel
2840
2841 2006-04-28 [paul]       2.1.1cvs41
2842
2843         * src/matcher.c
2844                 fix returned quick search results when search
2845                 term contains an underscore.
2846                 Thanks to Colin
2847
2848 2006-04-28 [paul]       2.1.1cvs40
2849
2850         * src/prefs_message.c
2851         * src/prefs_receive.c
2852                 GUI cleanups
2853                 Patches by Pawel Pekala
2854
2855 2006-04-27 [colin]      2.1.1cvs39
2856
2857         * src/wizard.c
2858                 Differentiate subject Welcome from
2859                 window's title Welcome
2860
2861 2006-04-27 [paul]
2862
2863         2.2.0-rc1 released
2864
2865 2006-04-27 [paul]       2.1.1cvs38
2866
2867         * manual/advanced.xml
2868         * manual/fr/advanced.xml
2869                 add info about compose_no_markup hidden pref
2870
2871 2006-04-27 [paul]       2.1.1cvs37
2872
2873         * src/prefs_account.c
2874                 improve privacy labels
2875         * src/prefs_msg_colors.c
2876                 change some strings for translators' convenience
2877         * src/gtk/gtkutils.c
2878                 don't underline the link button text
2879
2880 2006-04-25 [colin]      2.1.1cvs36
2881
2882         * src/folder.c
2883                 Complete 2.1.1cvs33 (once more ;)
2884
2885 2006-04-25 [colin]      2.1.1cvs35
2886
2887         * src/editldap.c
2888                 Fix tooltip
2889
2890 2006-04-25 [cleroy]     2.1.1cvs34
2891
2892         * src/compose.c
2893         * src/gtk/gtkaspell.c
2894                 Fix crash on redirect (related to the return 
2895                 of the aspell menu in compose's toolbar)
2896         * src/prefs_msg_colors.c
2897                 Fix sensitivity widgets
2898         * src/image_viewer.c
2899         * src/gtk/pluginwindow.c
2900         * src/gtk/prefswindow.c
2901                 Change released signals to clicked (Fabien)
2902         * po/POTFILES.in
2903         * src/common/socket.c
2904         * src/plugins/spamassassin/spamassassin.c
2905                 Translate strings (Fabien)
2906
2907 2006-04-25 [paul]       2.1.1cvs33
2908
2909         * src/folder.c
2910         * src/folder.h
2911         * src/folderview.c
2912                 complete the fix of bug #912
2913                 Thanks to Colin
2914
2915 2006-04-25 [colin]      2.1.1cvs32
2916
2917         * src/news.c
2918                 Better progress bar
2919         * src/mimeview.c
2920         * src/summaryview.c
2921         * src/summaryview.h
2922                 Fix focus chain
2923                 Patches by Pawel Pekala
2924
2925 2006-04-24 [colin]      2.1.1cvs31
2926
2927         * src/compose.c
2928                 Fix compilation warnings (Fabien)
2929
2930 2006-04-24 [colin]      2.1.1cvs30
2931
2932         * src/addrindex.c
2933         * src/editldap.c
2934         * src/editldap_basedn.c
2935         * src/editldap_basedn.h
2936         * src/ldapctrl.c
2937         * src/ldapctrl.h
2938         * src/ldapquery.c
2939         * src/ldaputil.c
2940         * src/ldaputil.h
2941                 Fix bug #901 (LDAPS support)
2942
2943 2006-04-24 [colin]      2.1.1cvs29
2944
2945         * src/compose.c
2946                 Fix logic on error with send dialog on
2947         * src/imap.c
2948                 Fix compilation without libetpan, thanks
2949                 to Fabien
2950         * src/summaryview.c
2951                 Fix 'context-menu' key
2952
2953 2006-04-23 [colin]      2.1.1cvs28
2954
2955         * src/folder.c
2956                 Never free current's cache to free up 
2957                 memory. Fixes bug #912 (new count 
2958                 randomly set to message count)
2959
2960 2006-04-23 [colin]      2.1.1cvs27
2961
2962         * src/gtk/quicksearch.c
2963                 And remove printf...
2964
2965 2006-04-23 [colin]      2.1.1cvs26
2966
2967         * src/gtk/quicksearch.c
2968                 Fix replacing in quicksearch, and fix inserting
2969                 in the middle of the string. (introduced at 2.1.0cvs22)
2970
2971 2006-04-23 [colin]      2.1.1cvs25
2972
2973         * src/imap.c
2974                 Make sure uidnext is initialized in get_num_list
2975                 (not for stable, related to 2.1.1cvs8 and friends)
2976
2977 2006-04-23 [colin]      2.1.1cvs24
2978
2979         * src/imap.c
2980                 Output something when login is successful
2981                 too
2982
2983 2006-04-23 [colin]      2.1.1cvs23
2984
2985         * src/etpan/imap-thread.c
2986                 Better logging (line-per-line, hide data in fetch)
2987                 Fix a const warning
2988         * src/gtk/logwindow.c
2989         * src/gtk/logwindow.h
2990                 Better logging (color for input/output)
2991
2992 2006-04-21 [colin]      2.1.1cvs22
2993
2994         * src/gtk/quicksearch.c
2995                 On gtk+-2.8, use stock buttons in quicksearch
2996                 Based on a patch by Fabien and a design by Paul
2997
2998 2006-04-21 [colin]      2.1.1cvs21
2999
3000         * src/folderview.c
3001         * src/mainwindow.c
3002                 Fix occasional flicker in folderview
3003         * src/common/utils.c
3004                 Fix bug #943 (Incorrectly parsed email address 
3005                 list in short headers on message view and in 
3006                 printouts)
3007
3008 2006-04-20 [colin]      2.1.1cvs20
3009
3010         * src/imap.c
3011         * src/imap.h
3012         * src/prefs_account.c
3013                 Add ANONYMOUS auth for IMAP
3014
3015 2006-04-20 [paul]       2.1.1cvs19
3016
3017         * src/main.c
3018                 proper fix for 2.1.1cvs18
3019                 Thanks to Colin
3020
3021 2006-04-20 [paul]       2.1.1cvs18
3022
3023         * src/main.c
3024                 fix build warnings
3025
3026 2006-04-20 [paul]       2.1.1cvs17
3027
3028         * src/gtk/quicksearch.c
3029                 fix standard, non-extended Quick search,
3030                 was broken in 2.1.1cvs15.
3031                 Thanks to Colin.
3032
3033 2006-04-20 [colin]      2.1.1cvs16
3034
3035         * src/prefs_matcher.c
3036                 Fix values when reselecting a ~test
3037                 rule
3038
3039 2006-04-19 [colin]      2.1.1cvs15
3040
3041         * src/compose.c
3042         * src/compose.h
3043         * src/gtk/gtkaspell.c
3044         * src/gtk/gtkaspell.h
3045                 Put back Options menu in Spelling/
3046         * src/gtk/quicksearch.c
3047                 Don't search, and show error, if the
3048                 advanced search has a syntax error
3049
3050 2006-04-18 [colin]      2.1.1cvs14
3051
3052         * src/textview.c
3053                 Fix gdk warnings on set_cursor when textview
3054                 isn't visible
3055
3056 2006-04-18 [colin]      2.1.1cvs13
3057
3058         * src/gtk/gtksctree.c
3059                 Remove seemingly useless refresh that causes
3060                 flicker - watch this commit in case of 
3061                 problems before planned backport to stable
3062
3063 2006-04-18 [colin]      2.1.1cvs12
3064
3065         * src/imap.c
3066                 Factorize get/set_xml code
3067         * src/compose.c
3068         * src/prefs_account.c
3069         * src/prefs_account.h
3070         * src/procmsg.c
3071                 Add Encrypt to self option
3072
3073 2006-04-17 [colin]      2.1.1cvs11
3074
3075         * configure.ac
3076                 Fix search on encrpyt function on dragonfly
3077                 Patch by Jonathan Buschmann <jonthn@agmact.com>
3078
3079 2006-04-17 [colin]      2.1.1cvs10
3080
3081         * src/prefs_account.c
3082                 Be safe by default: remove mails from POP3
3083                 after 7 days, not immediately
3084
3085 2006-04-17 [colin]      2.1.1cvs9
3086
3087         * src/etpan/imap-thread.c
3088                 Fix build on DragonFly - patch by 
3089                 Jonathan Buschmann <jonthn@agmact.com>
3090
3091 2006-04-17 [colin]      2.1.1cvs8
3092
3093         * src/imap.c
3094                 Save uidnext between sessions
3095
3096 2006-04-17 [colin]      2.1.1cvs7
3097
3098         * src/imap.c
3099                 scan is required when uid validity changes
3100
3101 2006-04-17 [colin]      2.1.1cvs6
3102
3103         * src/folderview.c
3104                 Don't scan if not necessary, apart in current
3105                 folder and INBOX to fetch flags.
3106         * src/imap.c
3107                 Scan is necessary if unread count changes
3108
3109 2006-04-17 [colin]      2.1.1cvs5
3110
3111         * src/imap.c
3112                 ...But always fetch ANSWERED and DELETED flags for
3113                 INBOX, as filtering can happen on these flags.
3114
3115 2006-04-17 [colin]      2.1.1cvs4
3116
3117         * src/imap.c
3118                 Don't fetch REPLIED and DELETED flags when synchronising
3119                 flags with a closed folder. We only need UNSEEN and FLAGGED
3120                 to update the folderview.
3121
3122 2006-04-17 [colin]      2.1.1cvs3
3123
3124         * src/imap.c
3125                 Faster flag search when there are new mails 
3126                 in a folder. We can do a full search if the 
3127                 folder contains less messages than the new
3128                 list.
3129
3130 2006-04-17 [colin]      2.1.1cvs2
3131
3132         * po/cs.po
3133         * po/de.po
3134         * po/fr.po
3135         * po/nl.po
3136         * po/pt_BR.po
3137                 Update translations from stable branch
3138
3139 2006-04-17 [colin]      2.1.1cvs1
3140
3141         * configure.ac
3142                 Bump version to follow stable release
3143
3144 2006-04-16 [mones]      2.1.0cvs50
3145
3146         * po/es.po
3147                 Updated for release
3148
3149 2006-04-16 [colin]      2.1.0cvs49
3150
3151         * src/textview.c
3152                 Fix bgcolor not unset on gtk 2.8, while preventing warnings 
3153                 with gtk < 2.8. Thanks to Fabien Vantard.
3154
3155 2006-04-15 [colin]      2.1.0cvs48
3156
3157         * src/etpan/imap-thread.c
3158                 Fix bug #919 (libetpan: SEGV when connecting 
3159                 using command)
3160
3161 2006-04-14 [colin]      2.1.0cvs47
3162
3163         * src/main.c
3164                 Fix race on --select (should be done better)
3165
3166 2006-04-14 [wwp]        2.1.0cvs46
3167
3168         * src/send_message.c
3169                 enforce a check for domain in account prefs (a sending
3170                 error could be faced if domain was checked but no value set),
3171                 thanks to Colin.
3172
3173 2006-04-14 [colin]      2.1.0cvs45
3174
3175         * src/codeconv.c
3176                 when converting from unknown to unknown, if the
3177                 string is UTF8, don't convert it to the locale
3178                 (which breaks it)
3179
3180 2006-04-14 [colin]      2.1.0cvs44
3181
3182         * src/compose.c
3183                 Don't try to use ASCII for converting headers
3184                 (as done in body)
3185
3186 2006-04-14 [paul]       2.1.0cvs43
3187
3188         * src/crash.c
3189                 add locale/charset info to crash report
3190         * src/gtk/about.c
3191                 add wwp to doc team
3192                 replace 'e-mail' with preferred 'email'
3193         * src/gtk/authors.h
3194                 ensure contributors list is in alphabetical
3195                 order
3196
3197 2006-04-13 [colin]      2.1.0cvs42
3198
3199         * src/textview.c
3200                 Prevent gdk warnings
3201
3202 2006-04-13 [colin]      2.1.0cvs41
3203
3204         * src/common/ssl_certificate.c
3205         * src/common/ssl_certificate.h
3206         * src/gtk/sslcertwindow.c
3207                 Warn on expired certs, and display the expiration date
3208
3209 2006-04-13 [colin]      2.1.0cvs40
3210
3211         * src/plugins/spamassassin/spamassassin_gtk.c
3212                 Fix missing set_text on unix socket
3213
3214 2006-04-13 [wwp]        2.1.0cvs39
3215
3216         * manual/fr/advanced.xml
3217         * manual/fr/glossary.xml
3218                 applied new spam/ham/email lexicon (pourriel, courriel)
3219
3220 2006-04-13 [paul]       2.1.0cvs38
3221
3222         * src/plugins/pgpmime/plugin.c
3223                 remove the mention of S/MIME from the
3224                 description. This is now handled by the
3225                 S/MIME plugin.
3226
3227 2006-04-13 [paul]       2.1.0cvs37
3228
3229         * src/prefs_msg_colors.c
3230                 rework dialog
3231         * src/prefs_folder_item.c
3232         * src/prefs_spelling.c
3233                 add a tooltip to the colour selector buttons
3234
3235 2006-04-13 [wwp]        2.1.0cvs36
3236
3237         * manual/advanced.xml
3238         * manual/glossary.xml
3239         * manual/handling.xml
3240         * manual/keyboard.xml
3241         * manual/plugins.xml
3242         * manual/starting.xml
3243         * manual/fr/account.xml
3244         * manual/fr/ack.xml
3245         * manual/fr/addrbook.xml
3246         * manual/fr/advanced.xml
3247         * manual/fr/faq.xml
3248         * manual/fr/glossary.xml
3249         * manual/fr/gpl.xml
3250         * manual/fr/handling.xml
3251         * manual/fr/intro.xml
3252         * manual/fr/keyboard.xml
3253         * manual/fr/plugins.xml
3254         * manual/fr/starting.xml
3255         * manual/fr/sylpheed-claws-manual.xml
3256                 fixes to the manuals:
3257                  - summaryview -> Message List (same in French)
3258                  - translate key names
3259                  - fix French punctuation, use non-breakable spaces when
3260                    necessary, don't use &thinsp; which is not portable
3261                  - tell what maildir and mbox formats we support
3262
3263 2006-04-12 [wwp]        2.1.0cvs35
3264
3265         * src/prefs_toolbar.c
3266                 unified a replace button more,
3267                 patch by Fabien Vantard <fzzzzz@gmail.com>.
3268
3269 2006-04-12 [wwp]        2.1.0cvs34
3270
3271         * src/prefs_common.c
3272         * src/prefs_msg_colors.c
3273                 make default color labels translatable,
3274                 patch from Fabien Vantard <fzzzzz@gmail.com>,
3275                 thanks to Tim <timbrain@post.cz> for reporting.
3276
3277 2006-04-12 [wwp]        2.1.0cvs33
3278
3279         * manual/glossary.xml
3280         * manual/intro.xml
3281         * manual/plugins.xml
3282         * manual/starting.xml
3283         * manual/sylpheed-claws-manual.xml
3284         * manual/fr/.cvsignore
3285         * manual/fr/account.xml
3286         * manual/fr/ack.xml
3287         * manual/fr/addrbook.xml
3288         * manual/fr/advanced.xml
3289         * manual/fr/faq.xml
3290         * manual/fr/glossary.xml
3291         * manual/fr/handling.xml
3292         * manual/fr/intro.xml
3293         * manual/fr/keyboard.xml
3294         * manual/fr/plugins.xml
3295         * manual/fr/starting.xml
3296         * manual/fr/sylpheed-claws-manual.xml
3297                 various fixes: typos, missing .fr translations, punctuation,
3298                 capitalization, links, accents and some bad French more.
3299
3300 2006-04-12 [wwp]        2.1.0cvs32
3301
3302         * src/prefs_gtk.c
3303                 fix for bug #935: always store prefs files in UTF-8 (thanks
3304                 to Colin).
3305
3306 2006-04-11 [colin]      2.1.0cvs31
3307
3308         * src/compose.c
3309                 Fix inserting files not in utf8 when locale is utf8
3310
3311 2006-04-11 [colin]      2.1.0cvs30
3312
3313         * src/inc.c
3314                 Don't show error dialog when cancelling connection
3315                 Patch by Pawel
3316
3317 2006-04-11 [cleroy]     2.1.0cvs29
3318
3319         * src/compose.c
3320                 Implement multiple quote levels
3321         * src/prefs_common.c
3322                 Change a little bit the quote bgcolor for 2nd level
3323
3324 2006-04-11 [colin]      2.1.0cvs28
3325
3326         * src/gtk/about.c
3327                 Add locale and charset in the label
3328
3329 2006-04-10 [colin]      2.1.0cvs27
3330
3331         * src/compose.c
3332         * src/prefs_common.c
3333         * src/prefs_common.h
3334         * src/prefs_msg_colors.c
3335         * src/textview.c
3336                 Allow optional background color in quotes
3337                 Patch by Rafal Weglarz <tokoloshe@users.sf.net>
3338                 GTK+-2.8.x feature
3339
3340 2006-04-10 [colin]      2.1.0cvs26
3341
3342         * src/main.c
3343         * src/mainwindow.c
3344         * src/mainwindow.h
3345                 Implement --select
3346
3347 2006-04-10 [colin]      2.1.0cvs25
3348
3349         * manual/plugins.xml
3350         * manual/fr/plugins.xml
3351                 Document libcurl's proxy variables
3352
3353 2006-04-09 [colin]      2.1.0cvs24
3354
3355         * src/prefs_common.c
3356                 gettext() returns statically allocated stuff. We have
3357                 to strdup it in order to be able to free it.
3358
3359 2006-04-09 [colin]      2.1.0cvs23
3360
3361         * AUTHORS
3362         * src/gtk/authors.h
3363                 Add Alexei
3364
3365 2006-04-09 [colin]      2.1.0cvs22
3366
3367         * src/mainwindow.c
3368         * src/gtk/quicksearch.c
3369                 Fix bug #859 (problems with cyrilic input in 
3370                 search panel) - Patch by Alexey Illarionov 
3371                 <littlesavage@rambler.ru>
3372
3373 2006-04-09 [colin]      2.1.0cvs21
3374
3375         * src/prefs_customheader.c
3376                 I prefer removing then freeing rather than the contrary
3377                 (even if it doesn't change anything ;-)
3378         * src/prefs_account.c
3379                 Fix bug #933 (Crash re-entering the custom headers list 
3380                 dialog in accounts prefs)
3381                 The problem happened when cancelling the Account 
3382                 Preferences' dialogs - in which case we didn't do 
3383                 anything to the PrefsAccount * struct. In case of applying,
3384                 the old ac_prefs was replaced with the tmp_ac_prefs we were
3385                 working with in this dialog. The problem is that 
3386                 prefs_customheader.c, working on this tmp_ac_prefs, always
3387                 changes the ->customhdr_list pointer, even when cancelled. 
3388                 So in case of cancelling the prefs_account dialog, we still
3389                 have to update ->customhdr_list in the real account.
3390
3391 2006-04-08 [colin]      2.1.0cvs20
3392
3393         * manual/fr/glossary.xml
3394         * manual/fr/keyboard.xml
3395                 Forgot some headers :)
3396
3397 2006-04-08 [colin]      2.1.0cvs19
3398
3399         * manual/Makefile.am
3400         * manual/fr/Makefile.am
3401         * manual/fr/account.xml
3402         * manual/fr/ack.xml
3403         * manual/fr/addrbook.xml
3404         * manual/fr/advanced.xml
3405         * manual/fr/faq.xml
3406         * manual/fr/glossary.xml
3407         * manual/fr/gpl.xml
3408         * manual/fr/handling.xml
3409         * manual/fr/intro.xml
3410         * manual/fr/keyboard.xml
3411         * manual/fr/plugins.xml
3412         * manual/fr/starting.xml
3413         * manual/fr/sylpheed-claws-manual.xml
3414         * manual/fr/dist/.cvsignore
3415         * manual/fr/dist/Makefile.am
3416         * manual/fr/dist/html/.cvsignore
3417         * manual/fr/dist/html/Makefile.am
3418         * manual/fr/dist/pdf/.cvsignore
3419         * manual/fr/dist/pdf/Makefile.am
3420         * manual/fr/dist/ps/.cvsignore
3421         * manual/fr/dist/ps/Makefile.am
3422         * manual/fr/dist/txt/.cvsignore
3423         * manual/fr/dist/txt/Makefile.am
3424                 Add the french translation of the manual. Thanks to
3425                 Olivier Delhomme <olivier.delhomme@free.fr> for 
3426                 account.xml, ack.xml, addrbook.xml and advanced.xml
3427
3428 2006-04-08 [colin]      2.1.0cvs18
3429
3430         * manual/plugins.xml
3431         * manual/starting.xml
3432                 More fixes
3433
3434 2006-04-07 [colin]      2.1.0cvs17
3435
3436         * manual/faq.xml
3437         * manual/intro.xml
3438         * manual/keyboard.xml
3439                 Little fixes
3440
3441 2006-04-07 [colin]      2.1.0cvs16
3442
3443         * README
3444         * src/compose.c
3445         * src/prefs_common.c
3446         * src/prefs_common.h
3447                 Add hidden compose_no_markup pref
3448
3449 2006-04-07 [wwp]        2.1.0cvs15
3450
3451         * src/summary_search.c
3452         * .cvsignore
3453                 Bugfix: stop button was sticky when searching in an empty folder.
3454                 Applied curly brackets code style to the whole file (summary_search.c).
3455                 More files to ignore.
3456
3457 2006-04-07 [wwp]        2.1.0cvs14
3458
3459         * src/message_search.c
3460         * src/summary_search.c
3461                 changed default button when search bumps at file/folder
3462                 beginning or end, for convenience (thanks to Colin).
3463
3464 2006-04-07 [paul]       2.1.0cvs13
3465
3466         * src/plugins/dillo_viewer/dillo_prefs.c
3467                 avoid future potential for namespace collision
3468                 Patch by Colin
3469
3470 2006-04-06 [wwp]        2.1.0cvs12
3471
3472         * src/summary_search.c
3473                 Unify extended/advanced searches names (and thus factorize labels),
3474                 patch by Fabien Vantard <fzzzzz@gmail.com>.
3475
3476 2006-04-06 [wwp]        2.1.0cvs11
3477
3478         * src/folderview.c
3479         * src/prefs_themes.c
3480         * src/summaryview.c
3481                 Fixed some compilation warnings.
3482
3483 2006-04-06 [colin]      2.1.0cvs10
3484
3485         * manual/advanced.xml
3486                 Document the wizard template and how to deploy
3487                 Sylpheed-Claws effectively
3488
3489 2006-04-06 [colin]      2.1.0cvs9
3490
3491         * src/folderview.c
3492                 gettext patch to tell translators about _("#"),
3493                 by Maxim Britov
3494
3495 2006-04-06 [colin]      2.1.0cvs8
3496
3497         * src/textview.c
3498                 Fix invalid GtkTextBIter after clicking "Display as text"
3499
3500 2006-04-06 [mones]      2.1.0cvs7
3501
3502         * src/addr_compl.c
3503         * src/addrindex.c
3504         * src/addritem.c
3505         * src/codeconv.c
3506         * src/compose.c
3507         * src/filtering.c
3508         * src/folder.c
3509         * src/folder_item_prefs.c
3510         * src/folderview.c
3511         * src/localfolder.c
3512         * src/matcher.c
3513         * src/mimeview.c
3514         * src/prefs_msg_colors.c
3515         * src/prefs_spelling.c
3516         * src/prefs_themes.c
3517         * src/procmime.c
3518         * src/procmsg.c
3519         * src/stock_pixmap.c
3520         * src/summaryview.c
3521         * src/textview.c
3522         * src/toolbar.c
3523         * src/common/mgutils.c
3524         * src/common/prefs.c
3525         * src/common/ssl_certificate.c
3526         * src/gtk/colorlabel.c
3527         * src/gtk/quicksearch.c
3528         * src/plugins/pgpmime/pgpmime.c
3529         * src/plugins/spamassassin/spamassassin.c
3530                 Removed redundant NULL checks for g_free() calls.
3531                 Patch by Pawel Pekala.
3532
3533 2006-04-06 [mones]      2.1.0cvs6
3534
3535         * src/prefs_actions.c
3536         * src/prefs_filtering.c
3537         * src/prefs_filtering_action.c
3538         * src/prefs_matcher.c
3539         * src/prefs_template.c
3540         * src/gtk/gtkutils.c
3541         * src/gtk/gtkutils.h
3542                 Have a nice replace button. Patch by Pawel Pekala
3543
3544 2006-04-06 [colin]      2.1.0cvs5
3545
3546         * src/addressbook.c
3547                 Fix crash with empty columns
3548
3549 2006-04-05 [colin]      2.1.0cvs4
3550
3551         * src/wizard.c
3552         * src/prefs_gtk.c
3553                 Allow wizard customization with pre-filled values
3554
3555 2006-04-05 [colin]      2.1.0cvs3
3556
3557         * src/textview.c
3558         * src/mimeview.c
3559         * src/mimeview.h
3560                 Nicer messages in mimeview
3561
3562 2006-04-05 [colin]      2.1.0cvs2
3563
3564         * src/addressbook.c
3565         * src/prefs_summaries.c
3566                 i18n fix
3567
3568 2006-04-05 [colin]      2.1.0cvs1
3569
3570         * src/plugins/pgpcore/plugin.c
3571         * src/plugins/pgpcore/select-keys.c
3572         * src/plugins/pgpcore/select-keys.h
3573         * src/plugins/pgpcore/sgpgme.c
3574         * src/plugins/pgpcore/sgpgme.h
3575         * src/plugins/pgpinline/pgpinline.c
3576         * src/plugins/pgpinline/plugin.c
3577         * src/plugins/pgpmime/pgpmime.c
3578         * src/plugins/pgpmime/plugin.c
3579                 Factorize and generalize a bit 
3580                 Drop S/MIME signature verification from PGP/MIME
3581                 (adding it as another, more complete plugin)
3582
3583 2006-04-05 [paul]       2.1.0
3584
3585         2.1.0 released
3586
3587 2006-04-05 [paul]       2.0.0cvs186
3588
3589         * manual/advanced.xml
3590                 add info on colour labels
3591
3592 2006-04-05 [paul]       2.0.0cvs185
3593
3594         * po/bg.po
3595         * po/cs.po
3596         * po/de.po
3597         * po/el.po
3598         * po/en_GB.po
3599         * po/fi.po
3600         * po/fr.po
3601         * po/it.po
3602         * po/nl.po
3603         * po/pl.po
3604         * po/pt_BR.po
3605         * po/sr.po
3606         * po/zh_CN.po
3607                 updated by Yasen Pramatarov, Tim, Stephan Sachse, Stavros 
3608                 Giannouris, me, Tommi Pirinen, Fabien Vantard, Andrea 
3609                 Spadaccini, Tim Dijkstra, Quar, Frederico Goncalves 
3610                 Guimaraes, Aleksandar Urosevic, Ralgh Young
3611         * src/gtk/authors.h
3612         * tools/claws.i18n.status.pl
3613                 added new Bulgarian translator, Yasen Pramatarov <yasen@lindeas.com>
3614                 and new Czech translator, Tim <timbrain@post.cz>
3615
3616 2006-04-05 [mones]      2.0.0cvs184
3617
3618         * po/es.po
3619                 Updated translation
3620
3621 2006-04-05 [colin]      2.0.0cvs183
3622
3623         * src/gtk/quicksearch.c
3624                 Fix bug #929 (unnecessary reload in quick search bar)
3625
3626 2006-04-05 [colin]      2.0.0cvs182
3627
3628         * src/compose.c
3629                 Fix crash on Reply with no From:
3630                 Show signature and conversion error on queuing 
3631                 (but not sending)
3632         * src/mainwindow.c
3633         * src/summaryview.c
3634         * src/summaryview.h
3635                 Factorize threading code and make sure msginfo 
3636                 is not null when it comes from a GtkCTreeRow's 
3637                 data
3638         * src/gtk/gtkaspell.c
3639                 Check for necessary things
3640         * src/gtk/gtksctree.c
3641         * src/gtk/gtksctree.h
3642                 Reset anchor if necessary when removing node
3643
3644 2006-03-29 [colin]      2.0.0cvs181
3645
3646         * src/folderview.c
3647                 Warn for disabled IMAP accounts (due to lack of
3648                 libetpan). Breaks string-freeze - sorry - but it
3649                 is kind of important ;)
3650
3651 2006-03-28 [colin]      2.0.0cvs180
3652
3653         * src/gtk/gtkutils.c
3654         * src/gtk/gtkutils.h
3655                 Add a gtkut_get_link_btn() function that
3656                 creates a button which acts like an URI
3657         * src/prefs_themes.c
3658         * src/gtk/about.c
3659                 Use this function (factorizes codes)
3660         * src/common/defs.h
3661         * src/gtk/pluginwindow.c
3662                 Add a "Get more..." in the plugins window
3663
3664 2006-03-28 [colin]      2.0.0cvs179
3665
3666         * src/common/smtp.c
3667         * src/common/passcrypt.c
3668         * src/undo.c
3669                 Warning fixes. Patch by Pawel Pekala
3670
3671 2006-03-27 [colin]      2.0.0cvs178
3672
3673         * src/undo.c
3674                 Fix undoing by blocks with spaces
3675
3676 2006-03-27 [colin]      2.0.0cvs177
3677
3678         * src/textview.c
3679                 Set margin to 3px for headers
3680
3681 2006-03-27 [paul]
3682
3683         2.1.0-rc2 released
3684
3685 2006-03-27 [wwp]        2.0.0cvs176
3686
3687         * src/summaryview.c
3688                 don't reset quicksearch when updating the message list.
3689                 Thanks to Colin.
3690
3691 2006-03-26 [wwp]        2.0.0cvs175
3692
3693         * src/compose.c
3694                 use a unified border width ('other' tab in the compose window,
3695                 patch by Pawel Pekala).
3696
3697
3698 2006-03-26 [wwp]        2.0.0cvs174
3699
3700         * src/common/quoted-printable.c
3701         * src/addressbook.c
3702                 fixed some compilation warnings (incl. one reported by Pawel Pekala).
3703
3704 2006-03-26 [colin]      2.0.0cvs173
3705
3706         * src/quote_fmt_parse.y
3707                 Fix non-UTF8 date formats messing up the whole quote a 
3708                 little bit
3709
3710 2006-03-26 [colin]      2.0.0cvs172
3711
3712         * src/procheader.c
3713                 Make sure the date is UTF8 valid, or try to make it
3714                 so. IncrediMail is really IncrediStupid.
3715         * src/compose.c
3716                 Fix possible conversions. 
3717                 
3718
3719 2006-03-26 [colin]      2.0.0cvs171
3720
3721         * src/matcher.c
3722                 Fix corner cases in body search. This is still a
3723                 hack... It seems impossible to make it good and 
3724                 reasonably fast at the same time.
3725
3726 2006-03-26 [colin]      2.0.0cvs170
3727
3728         * src/summaryview.c
3729                 I think I killed the twilight zone bug!
3730                 summary_select_node() flushes GTK events in order
3731                 to be able to center the view. But this also 
3732                 flushes keypresses like Ctrl-Alt-U, so this can
3733                 call summary_show from summary_select_node (itself
3734                 called from summary_show, etc.). And the summaryview
3735                 has to be unlocked in this function. So just locking
3736                 while processing GTK events, and bailing if locked, 
3737                 should fix it.
3738                 Fixes bug #927 (SIGSEGV during Update Summary)
3739
3740 2006-03-25 [colin]      2.0.0cvs169
3741
3742         * src/matcher.c
3743                 Fix search in QP-encoded bodies
3744                 Fix utf-8 searches in bodies encoded in the
3745                 locale's encoding
3746         * src/common/quoted-printable.c
3747         * src/common/quoted-printable.h
3748                 Add a decode function that doesn't overwrite
3749                 the original pointer
3750                 
3751
3752 2006-03-24 [colin]      2.0.0cvs168
3753
3754         * src/action.c
3755         * src/summaryview.c
3756         * src/summaryview.h
3757                 Update message cache after action
3758                 Patch by H. Merijn Brand
3759         * src/prefs_msg_colors.c
3760                 Factorize label 
3761                 Patch by Fabien Vantard
3762         * src/plugins/spamassassin/spamassassin_gtk.c
3763                 Remove useless translation
3764                 Patch by Fabien Vantard
3765
3766 2006-03-23 [colin]      2.0.0cvs167
3767
3768         * src/common/ssl.c
3769                 Let 30 seconds to SSL_connect
3770
3771 2006-03-23 [wwp]        2.0.0cvs166
3772
3773         * src/summaryview.c
3774         * src/gtk/description_window.c
3775                 fix display of From/To column title when in appropriate folders (queue/sent/drafts)
3776                 and headers are translated; adjust description windows' width to fit their
3777                 contents. Patches by Pawel Pekala <c0rn@o2.pl>.
3778
3779 2006-03-23 [paul]       2.0.0cvs165
3780
3781         * src/common/utils.c
3782                 fix highlighting of URIs containing "()"
3783                 (2.0.0cvs164's reversal fixed)
3784                 Thanks to Colin.
3785
3786 2006-03-23 [paul]       2.0.0cvs164
3787
3788         * src/common/utils.c
3789                 revert patch, (postponing a fix), at 2.0.0cvs120
3790                 as it breaks more URIs than it fixes.
3791                 Allow '-' to be a terminating character in a URI
3792
3793 2006-03-22 [colin]      2.0.0cvs163
3794
3795         * configure.ac
3796                 Require libetpan 0.45
3797                 http://prdownloads.sourceforge.net/libetpan/libetpan-0.45.tar.gz?download
3798
3799 2006-03-22 [paul]       2.0.0cvs162
3800
3801         * src/editgroup.c
3802                 replace '<-' and '->' buttons with GTK_STOCK graphical
3803                 buttons
3804         * src/summary_search.c
3805                 don't offer '...' for translation
3806                 add a tooltip to advanced search '...' button
3807         * src/gtk/quicksearch.c
3808                 don't offer '...' for translation
3809
3810 2006-03-21 [colin]      2.0.0cvs161
3811
3812         * src/compose.c
3813                 Fix middle-click pasting (insert at click
3814                 position instead of cursor position, don't
3815                 remove existing selection and allow pasting
3816                 our own selection)
3817         * src/addressbook.c
3818                 "LDAP Server" -> "LDAP servers"
3819
3820 2006-03-21 [wwp]        2.0.0cvs160
3821
3822         * src/etpan/imap-thread.c
3823                 fix for bug #925 (IMAP+SSL crash), thanks to Colin.
3824
3825 2006-03-20 [colin]      2.0.0cvs159
3826
3827         * src/summaryview.c
3828                 Don't reload summaryview after an execute with no
3829                 move action
3830
3831 2006-03-19 [colin]      2.0.0cvs158
3832
3833         * src/addressbook.c
3834                 and put groups at the top, always
3835
3836 2006-03-19 [colin]      2.0.0cvs157
3837
3838         * src/addressbook.c
3839                 Order groups before names, as previously
3840
3841 2006-03-19 [colin]      2.0.0cvs156
3842
3843         * src/addressbook.c
3844                 - Sort case-unsensitive
3845                 - Put the sort arrow at opening too
3846
3847 2006-03-19 [wwp]        2.0.0cvs155
3848
3849         * src/addressbook.c
3850                 allow sorting by name/email/remarks, ensure that right-pane's contents
3851                 matches the left-pane selection (cleared when appropriate).
3852                 Patch by Pawel Pekala <c0rn@o2.pl>.
3853
3854 2006-03-18 [colin]      2.0.0cvs154
3855
3856         * src/textview.c
3857                 Fix text cursor ;)
3858
3859 2006-03-18 [colin]      2.0.0cvs153
3860
3861         * src/gtk/filesel.c
3862                 Make sure we hide the preview if we didn't get
3863                 a filename
3864
3865 2006-03-18 [colin]      2.0.0cvs152
3866
3867         * src/summaryview.c
3868                 Set cursor to watch for execution (fixes lack
3869                 of watch-cursor when dnd'ing hundreds of mails)
3870         * src/gtk/filesel.c
3871                 Check that mime type is 'image/*' before updating
3872                 the preview (maybe fix crashes on Solaris+gtk2.8.4 ?)
3873
3874 2006-03-18 [colin]      2.0.0cvs151
3875
3876         * src/mainwindow.c
3877         * src/textview.c
3878         * src/textview.h
3879                 Put a watch cursor in textview too when the mainwindow's
3880                 cursor in a watch
3881
3882 2006-03-18 [colin]      2.0.0cvs150
3883
3884         * src/folder.c
3885                 Change wrong asserts to simple tests
3886
3887 2006-03-17 [colin]      2.0.0cvs149
3888
3889         * src/mainwindow.c
3890         * src/mainwindow.h
3891         * src/prefs_msg_colors.c
3892         * src/summaryview.c
3893         * src/summaryview.h
3894         * src/gtk/colorlabel.c
3895         * src/gtk/colorlabel.h
3896                 Add a color label menu in the main menubar
3897                 Add (fixed) accels Ctrl-{0-7} to change the color
3898                 They have to be fixed because the menu's dynamic,
3899                 the items are complex widgets, hence we can't use
3900                 a GtkItemFactory.
3901
3902
3903 2006-03-17 [wwp]        2.0.0cvs148
3904
3905         * src/compose.c
3906                 rollback few lines from my previous commit (those lines come from
3907                 a pending patch, accidentally commited, even if neutral as they are
3908                 commented out).
3909
3910 2006-03-17 [wwp]        2.0.0cvs147
3911
3912         * src/compose.c
3913                 fix a compilation warning (wrong return type, introduced w/ cvs143), and
3914                 applied code style/indentation to the modified function.
3915
3916 2006-03-17 [wwp]        2.0.0cvs146
3917
3918         * src/procmsg.c
3919         * src/compose.c
3920                 fix for bug #908: some IMAP servers dislike \x7f char in the RMID (thanks to Colin).
3921
3922 2006-03-17 [paul]
3923
3924         2.1.0-rc1 released
3925
3926 2006-03-17 [paul]       2.0.0cvs145
3927
3928         * src/main.c
3929                 addressbook_read_file() was called twice
3930         * src/textview.c
3931                 X-Mailer highlighting
3932
3933 2006-03-16 [colin]      2.0.0cvs144
3934
3935         * src/sourcewindow.c
3936         * src/sourcewindow.h
3937                 And the last one, in source window.
3938
3939 2006-03-16 [colin]      2.0.0cvs143
3940
3941         * src/compose.c
3942         * src/compose.h
3943                 Fix the same stuff in compose
3944
3945 2006-03-16 [colin]      2.0.0cvs142
3946
3947         * src/messageview.c
3948                 Complete the previous messageview crash fix
3949
3950 2006-03-16 [colin]      2.0.0cvs141
3951
3952         * src/procmsg.h
3953         * src/procmsg.c
3954         * src/folder.c
3955                 Fix POSTPROCESSING hook
3956                 Patch by H. Merijn Brand
3957
3958         * src/procmime.c
3959         * src/procmime.h
3960                 Parse Content-Location
3961
3962         * src/toolbar.c
3963         * src/messageview.c
3964         * src/messageview.h
3965                 Don't crash when a top-level MessageView has
3966                 been closed on us. Same problematic than
3967                 yesterday's quicksearch issue.
3968
3969 2006-03-15 [colin]      2.0.0cvs140
3970
3971         * src/gtk/quicksearch.c
3972                 Fix a bitchy race we didn't think about when we
3973                 added quicksearch cancellation:
3974                 If the search is not on cached fields, for example
3975                 body_part matchcase "stuff"
3976                 the matcher code has to get the whole message. If
3977                 we're on IMAP, that can be slow, and in order to
3978                 be non-blocking, the IMAP code idle loop processes
3979                 gtk events too. So it is possible to cancel a
3980                 quicksearch while the matcher is getting the mail's
3981                 body. After matcher got its body, it will start to
3982                 iterate over the matcher list that the Quicksearch's
3983                 clear_search_cb() just freed via prepare_matcher().
3984                 SIGSEGV ensues.
3985                 The fix consists of guarding the matcherlist_match()
3986                 call with a boolean 'matching'. If we reset the
3987                 quicksearch while matching is TRUE, we don't free
3988                 the matcherlist anymore like we did, but we set
3989                 another new flag, deferred_free, to TRUE. Then,
3990                 in quicksearch_match(), just after returning from
3991                 matcherlist_match() and unsetting the matching flag,
3992                 we check the deferred_free flag and do the
3993                 prepare_matcher() (which does the matcherlist_free)
3994                 for real, so we free the matcherlist once it's not
3995                 used anymore.
3996                 As all of this runs via the glib main loop, we
3997                 luckily don't need a mutex.
3998         * src/summaryview.c
3999                 Also, show progress while searching.
4000
4001
4002 2006-03-14 [colin]      2.0.0cvs139
4003
4004         * src/alertpanel.c
4005                 Make alertpanel_is_open non-static
4006
4007 2006-03-14 [colin]      2.0.0cvs138
4008
4009         * src/prefs_spelling.c
4010                 Cleanups - Fabien Vantard
4011
4012 2006-03-14 [wwp]        2.0.0cvs137
4013
4014         * src/main.c
4015                 code style normalization (curly braces, indentation).
4016
4017 2006-03-14 [wwp]        2.0.0cvs137
4018
4019         * src/main.c
4020                 code style (braces, indentation)
4021
4022 2006-03-12 [paul]       2.0.0cvs136
4023
4024         * src/prefs_common.c
4025                 trans_hdr defaults to FALSE to be RFC-savvy
4026         * src/prefs_summaries.c
4027                 add a tooltip to the trans_hdr option
4028                 
4029
4030 2006-03-12 [paul]       2.0.0cvs135
4031
4032         * src/prefs_matcher.c
4033                 give a little more width to the combos
4034         * src/prefs_display_header.c
4035         * src/textview.c
4036                 translate headers if prefs_common.trans_hdr
4037                 is TRUE
4038
4039         Patches by Pawel Pekala
4040
4041 2006-03-12 [paul]       2.0.0cvs134
4042
4043         * src/plugins/clamav/clamav_plugin.c
4044         * src/plugins/dillo_viewer/dillo_viewer.c
4045         * src/plugins/pgpcore/plugin.c
4046         * src/plugins/pgpinline/plugin.c
4047         * src/plugins/pgpmime/plugin.c
4048         * src/plugins/spamassassin/spamassassin.c
4049                 update/add to descriptions
4050         * src/plugins/spamassassin/spamassassin_gtk.c
4051                 fixes to the english, remove superfluous
4052                 tooltips, clean up a little
4053
4054 2006-03-12 [paul]       2.0.0cvs133
4055
4056         * src/compose.c
4057                 fix Bug 924, 'Account combo box shows up wrong 
4058                 if & is in account name'
4059
4060 2006-03-11 [colin]      2.0.0cvs132
4061
4062         * src/summaryview.c
4063                 Revert 2.0.0cvs84 which reverted 1.9.6cvs23 which
4064                 messed up shift-selection because is slows down
4065                 moving around summaryview. thanks -users
4066
4067 2006-03-10 [colin]      2.0.0cvs131
4068
4069         * src/plugins/spamassassin/spamassassin_gtk.c
4070                 Put back Paul's engrish fixes
4071
4072 2006-03-10 [colin]      2.0.0cvs130
4073
4074         * src/plugins/spamassassin/spamassassin.c
4075         * src/plugins/spamassassin/spamassassin.h
4076         * src/plugins/spamassassin/spamassassin_gtk.c
4077                 Cleanup SA prefs page (more)
4078                 Patch by Fabien Vantard
4079
4080 2006-03-10 [paul]       2.0.0cvs129
4081
4082         * src/prefs_msg_colors.c
4083         * src/prefs_spelling.c
4084                 widget sensitivity
4085
4086 2006-03-09 [mones]      2.0.0cvs128
4087
4088         * po/es.po
4089                 Update for next RC
4090
4091 2006-03-09 [wwp]        2.0.0cvs127
4092
4093         * configure.ac
4094                 revert accidental commit (requirement for libetpan 0.43), this time
4095                 not in HEAD.
4096
4097 2006-03-09 [wwp]        2.0.0cvs125
4098
4099         * configure.ac
4100                 revert accidental commit (requirement for libetpan 0.43)
4101
4102 2006-03-09 [paul]       2.0.0cvs126
4103
4104         * src/prefs_receive.c
4105                 remove useless frame
4106                 replace 'incorporation' with 'receiving'
4107         * src/plugins/clamav/clamav_plugin_gtk.c
4108         * src/plugins/spamassassin/spamassassin_gtk.c
4109                 improve widget sensitivity
4110                 fix a bit his engrish
4111
4112 2006-03-09 [wwp]        2.0.0cvs125
4113
4114         * src/addressadd.c
4115         * src/foldersel.c
4116         * src/prefs_common.c
4117         * src/prefs_common.h
4118                 remember some more windows' sizes (add to addressbook and
4119                 select folder).
4120
4121 2006-03-09 [paul]       2.0.0cvs124
4122
4123         * src/plugins/pgpcore/prefs_gpg.c
4124                 normalise construction of dialogue
4125
4126 2006-03-09 [paul]       2.0.0cvs123
4127
4128         * src/plugins/trayicon/Makefile.am
4129                 add missing slash
4130
4131 2006-03-08 [colin]      2.0.0cvs122
4132
4133         * src/plugins/trayicon/Makefile.am
4134                 Fix build in separate dir 
4135                 Patch by Bamanzi <bamanzi@gmail.com>
4136
4137 2006-03-08 [colin]      2.0.0cvs121
4138
4139         * src/procmsg.c
4140                 Batch move and copies from summaryview with delayed execution
4141                 too
4142
4143 2006-03-07 [paul]       2.0.0cvs120
4144
4145         * src/common/utils.c
4146                 fix highlighting of URIs containing "()"
4147                 Patch by Pawel Pekala
4148
4149 2006-03-07 [paul]       2.0.0cvs119
4150
4151         * src/folder.c
4152         * src/folder.h
4153         * src/folderview.c
4154                 immediately do alphabetical resort when
4155                 changing a folder's name
4156                 Patch by Pawel Pekala
4157
4158 2006-03-07 [paul]       2.0.0cvs118
4159
4160         * src/news.c
4161         * src/news_gtk.c
4162                 when unsubscribing a newsgroup, remove the
4163                 folder and msgs in .sylpheed-claws/newscache
4164                 Patch by Pawel Pekala <c0rn@gazeta.pl>
4165
4166 2006-03-07 [paul]       2.0.0cvs117
4167
4168         * src/textview.c
4169                 fix wrong Fake URL Warning
4170                 Thanks to Hiro
4171
4172 2006-03-07 [colin]      2.0.0cvs116
4173
4174         * src/imap.c
4175                 Return immediately when password dialog was
4176                 cancelled
4177         * src/gtk/inputdialog.c
4178                 Allow empty strings for passwords
4179
4180
4181 2006-03-06 [colin]      2.0.0cvs115
4182
4183         * src/imap.c
4184                 Prevent double-timeouts when connection fails
4185
4186 2006-03-06 [colin]
4187
4188         2.0.1-rc1 released
4189
4190 2006-03-06 [colin]      2.0.0cvs114
4191
4192         * src/imap.c
4193                 Refresh session during potentially long
4194                 operations
4195
4196 2006-03-06 [wwp]        2.0.0cvs113
4197
4198         * src/prefs_msg_colors.h
4199                 forgot that one (custom color labels).
4200
4201 2006-03-06 [wwp]        2.0.0cvs112
4202
4203         * src/prefs_common.c
4204         * src/prefs_common.h
4205         * src/prefs_msg_colors.c
4206         * src/summaryview.c
4207         * src/summaryview.h
4208         * src/gtk/colorlabel.c
4209         * src/gtk/colorlabel.h
4210                 colors in messages list are now customizable. Color values and names can
4211                 be changed in "Configuration/Preferences/Display/Colors/Color labels".
4212                 Thanks to Paul and Colin for their help with this longstanding patch!
4213
4214 2006-03-06 [wwp]        2.0.0cvs111
4215
4216         * src/textview.c
4217                 don't crash if (x)face is bad.
4218
4219 2006-03-05 [paul]       2.0.0cvs110
4220
4221         * AUTHORS
4222         * configure.ac
4223         * src/Makefile.am
4224         * src/common/Makefile.am
4225         * src/common/utils.h
4226         * src/etpan/imap-thread.c
4227         * src/gtk/authors.h
4228         * src/plugins/clamav/Makefile.am
4229         * src/plugins/demo/Makefile.am
4230         * src/plugins/dillo_viewer/Makefile.am
4231         * src/plugins/pgpcore/Makefile.am
4232         * src/plugins/pgpcore/passphrase.c
4233         * src/plugins/pgpinline/Makefile.am
4234         * src/plugins/pgpmime/Makefile.am
4235         * src/plugins/spamassassin/Makefile.am
4236         * src/plugins/trayicon/Makefile.am
4237                 fix builiding on cygwin
4238                 Patch by Ralgh Young <bamanzi@gmail.com>
4239
4240 2006-03-04 [wwp]        2.0.0cvs109
4241
4242         * manual/keyboard.xml
4243                 fix mixed up/down keys.
4244
4245 2006-03-04 [wwp]        2.0.0cvs108
4246
4247         * README
4248         * INSTALL
4249                 updated links to SpamAssassin.
4250
4251 2006-03-04 [wwp]        2.0.0cvs107
4252
4253         * manual/plugins.xml
4254         * src/plugins/spamassassin/README
4255                 updated SpamAssassin plugin docs to reflect new functional additions
4256                 (also fix/update/documents few technical stuff more, see the README).
4257
4258 2006-03-04 [wwp]        2.0.0cvs106
4259
4260         * src/prefs_message.c
4261                 normalized capitalization of message-prefs paths.
4262
4263 2006-03-04 [wwp]        2.0.0cvs105
4264
4265         * manual/advanced.xml
4266                 typo.
4267
4268 2006-03-03 [colin]      2.0.0cvs104
4269
4270         * src/plugins/clamav/clamav_plugin_gtk.c
4271                 Rework prefs page, patch by Fabien 
4272
4273 2006-03-03 [colin]      2.0.0cvs103
4274
4275         * src/plugins/clamav/clamav_plugin.c
4276                 Set error on all errors
4277
4278 2006-03-03 [colin]      2.0.0cvs102
4279
4280         * src/common/plugin.c
4281                 Initialize error to avoid crashing when a plugin fails
4282                 without setting error
4283
4284 2006-03-02 [wwp]        2.0.0cvs101
4285
4286         * configure.ac
4287                 fixed linker flags for libetpan support on Cygwin
4288                 (thanks to H.Merijn Brand).
4289
4290 2006-03-02 [wwp]        2.0.0cvs100
4291
4292         * src/addressbook.c
4293                 fix some AB error messages: one for punctuation and
4294                 one wrongly duplicate (thanks, maxbritov).
4295
4296 2006-03-02 [wwp]        2.0.0cvs99
4297
4298         * src/plugins/spamassassin/spamassassin.c
4299                 make sync calls to sa-learn/spamc to prevent
4300                 system (whatever local or client/server) overload.
4301
4302 2006-03-02 [colin]      2.0.0cvs98
4303
4304         * src/summaryview.c
4305                 Put the spam icon in the status column instead of the
4306                 mark one
4307
4308 2006-03-01 [colin]      2.0.0cvs97
4309
4310         * src/plugins/spamassassin/spamassassin.c
4311                 Fix segfault (g_file_set_contents fails for some 
4312                 reason and err==0x2f. Can't find out why with
4313                 valgrind, using working function :-)
4314
4315 2006-03-01 [colin]      2.0.0cvs96
4316
4317         * src/inc.c
4318                 Offline overriding: let 'No' be cached only 3 seconds
4319
4320 2006-03-01 [colin]      2.0.0cvs95
4321
4322         * src/addr_compl.c
4323         * src/addrbook.c
4324         * src/addressbook.c
4325         * src/addrindex.c
4326         * src/folder_item_prefs.c
4327         * src/headerview.c
4328         * src/imap.c
4329         * src/inc.c
4330         * src/ldif.c
4331         * src/mainwindow.c
4332         * src/mh.c
4333         * src/msgcache.c
4334         * src/prefs_common.h
4335         * src/prefs_msg_colors.c
4336         * src/procheader.c
4337         * src/procheader.h
4338         * src/procmime.c
4339         * src/procmsg.c
4340         * src/procmsg.h
4341         * src/send_message.h
4342         * src/simple-gettext.c
4343         * src/summaryview.c
4344         * src/summaryview.h
4345         * src/syldap.c
4346         * src/textview.c
4347         * src/undo.c
4348         * src/common/ssl_certificate.c
4349         * src/common/utils.c
4350         * src/gtk/colorsel.c
4351         * src/gtk/gtksctree.c
4352         * src/gtk/gtkshruler.c
4353         * src/plugins/trayicon/trayicon.c
4354                 #if 0 goes to /dev/null
4355
4356 2006-03-01 [colin]      2.0.0cvs94
4357
4358         * src/compose.c
4359         * src/imap.c
4360         * src/inc.c
4361         * src/inc.h
4362         * src/messageview.c
4363         * src/news.c
4364         * src/plugins/spamassassin/spamassassin.c
4365                 Allow to add information in the "working offline"
4366                 window
4367
4368 2006-03-01 [wwp]        2.0.0cvs93
4369
4370         * src/plugins/spamassassin/spamassassin.c
4371                 fixed spamc invocation: use a tricky temporary mini shell wrapper
4372                 'cause it seems that calling `spamc ... < inputfile` with
4373                 g_spawn_(a)sync simply.. erm doesn't work :-).
4374
4375 2006-03-01 [wwp]        2.0.0cvs92
4376
4377         * src/toolbar.c
4378         * src/toolbar.h
4379                 simplify the adding of spam/ham button to the messageview toolbar
4380                 (it gets more clear now that the same button will be "Mark as spam"
4381                 or "Mark as ham" according to the current message status,
4382                 thanks to Colin).
4383
4384 2006-03-01 [wwp]        2.0.0cvs91
4385
4386         * src/messageview.c
4387         * src/procmsg.c
4388         * src/procmsg.h
4389         * src/summaryview.c
4390         * src/plugins/spamassassin/spamassassin.c
4391         * src/plugins/spamassassin/spamassassin.h
4392                 make learner callbacks return a status (0 for ok),
4393                 handle it in main code to avoid setting flags when learning failed,
4394                 don't learn on TCP if offline in spamassassin,
4395                 thanks to Colin.
4396
4397                 
4398
4399 2006-03-01 [wwp]        2.0.0cvs90
4400
4401         * src/compose.c
4402                 some work around the compose window's account menu,
4403                 patch by Fabien Vantard.
4404
4405 2006-03-01 [wwp]        2.0.0cvs89
4406
4407         * src/plugins/spamassassin/spamassassin.c
4408                 fixed bad logics, was using spamc in local mode and sa-learn
4409                 in remote mode (thanks, Colin).
4410
4411 2006-03-01 [wwp]        2.0.0cvs88
4412
4413         * src/plugins/spamassassin/spamassassin.c
4414         * src/plugins/spamassassin/spamassassin.h
4415         * src/plugins/spamassassin/spamassassin_gtk.c
4416                 made processing of emails w/ sa-plugin an option (default is TRUE),
4417                 fixed Engrish some tooltips, capitalization of some debug messages
4418                 and warnings. The spamassassin plugin now provides two separate
4419                 services: process emails upon incorporation and spamd training.
4420                 Both services (un)register independently but use some common
4421                 plugin settings (transport settings, spam storage location).
4422
4423 2006-02-28 [wwp]        2.0.0cvs87
4424
4425         * src/plugins/spamassassin/spamassassin.c
4426                 fix async flag to spamc cmdline execution (batch exec should
4427                 be asynchronous).
4428
4429 2006-02-27 [wwp]        2.0.0cvs86
4430
4431         * src/plugins/spamassassin/spamassassin.c
4432         * src/plugins/spamassassin/spamassassin.h
4433         * src/plugins/spamassassin/spamassassin_gtk.c
4434                 - added the ability to learn a remote spamassassin server (spamd),
4435                 using spamc.
4436                 - added the spamassassin option 'username', that applies to all
4437                 spamassassin operations (filtering, learning, local or remote).
4438                 The default username is the current unix user (if left blank
4439                 from gtk prefs or config file).
4440                 - commented out some unused code (notebook widget), removed unused
4441                 layout (hbox1).
4442                 - make more widgets sensitive to the transport type.
4443
4444 2006-02-27 [colin]      2.0.0cvs85
4445
4446         * src/plugins/spamassassin/spamassassin.c
4447                 Fix sa-learn call when offline
4448
4449 2006-02-27 [colin]      2.0.0cvs84
4450
4451         * configure.ac
4452         * src/Makefile.am
4453         * src/mainwindow.c
4454         * src/mainwindow.h
4455         * src/messageview.c
4456         * src/messageview.h
4457         * src/prefs_toolbar.c
4458         * src/procmsg.c
4459         * src/stock_pixmap.c
4460         * src/stock_pixmap.h
4461         * src/summaryview.c
4462         * src/toolbar.c
4463         * src/toolbar.h
4464         * src/pixmaps/ham_btn.xpm
4465         * src/pixmaps/spam.xpm
4466         * src/pixmaps/spam_btn.xpm
4467         * src/plugins/spamassassin/spamassassin.c
4468                 Add button in toolbar for spam learning
4469                 Fix a few bugs from the last related commit
4470                 Revert 1.9.6cvs23 which messed up shift-selection
4471
4472 2006-02-24 [colin]      2.0.0cvs83
4473
4474         * src/procmsg.c
4475         * src/summaryview.c
4476         * src/summaryview.h
4477         * src/plugins/spamassassin/spamassassin.c
4478         * src/plugins/spamassassin/spamassassin.h
4479         * src/plugins/spamassassin/spamassassin_gtk.c
4480                 Unregister learner when spamassassin is either
4481                 disabled or over tcp
4482
4483 2006-02-24 [colin]      2.0.0cvs82
4484
4485         * src/Makefile.am
4486         * src/mainwindow.c
4487         * src/mainwindow.h
4488         * src/procmsg.c
4489         * src/procmsg.h
4490         * src/stock_pixmap.c
4491         * src/stock_pixmap.h
4492         * src/summaryview.c
4493         * src/summaryview.h
4494         * src/gtk/icon_legend.c
4495         * src/pixmaps/spam.xpm  ** NEW FILE **
4496         * src/plugins/spamassassin/spamassassin.c
4497         * src/plugins/spamassassin/spamassassin_gtk.c
4498                 Add spam learning interface (Mark/Mark as 
4499                 (spam|ham) menus)
4500
4501 2006-02-24 [wwp]        2.0.0cvs81
4502
4503         * src/compose.c
4504         * src/compose.h
4505         * src/filtering.c
4506                 hide compose window when sending message in batch mode
4507                 (filtering: forward and redirect). Also fixed a wrong
4508                 value returned when sending failed, neutral anyway.
4509                 (Colin, me) 
4510
4511 2006-02-24 [wwp]        2.0.0cvs80
4512
4513         * src/mainwindow.c
4514                 use GTK+'s stock quit button. Patch by Fabien Vantard.
4515
4516 2006-02-24 [paul]       2.0.0cvs79
4517
4518         * src/news.c
4519         * src/news.h
4520         * src/news_gtk.c
4521                 fix bug 916, 'newsgroup unsubscribe segmentation fault'
4522                 Thanks to Colin
4523
4524 2006-02-23 [colin]      2.0.0cvs78
4525
4526         * src/alertpanel.c
4527                 Change OK to Close in alertpanel with View log
4528                 button; add accel to View log. Patch by Fabien
4529                 Vantard
4530
4531 2006-02-23 [wwp]        2.0.0cvs77
4532
4533         * src/compose.c
4534                 silly me, there were much more tests to perform, since toolbars can
4535                 really have down to 1 element only.
4536
4537 2006-02-23 [wwp]        2.0.0cvs76
4538
4539         * commitHelper
4540                 fixed indentation from my previous commit. Fallback to VISUAL if
4541                 EDITOR is not set (and to vi, at last resort).
4542
4543 2006-02-23 [wwp]        2.0.0cvs75
4544
4545         * commitHelper
4546                 improved error detection (Colin, me).
4547
4548 2006-02-23 [wwp]        2.0.0cvs74
4549
4550         * src/prefs_toolbar.c
4551                 simplify and fix prefs/toolbars layouting. Combos' contents can
4552                 now be really displayed.
4553
4554 2006-02-23 [wwp]        2.0.0cvs73
4555         simplifies and fix prefs/toolbars layouting. Combos' contents can now
4556         be really displayed.
4557
4558 2006-02-22 [wwp]        2.0.0cvs72
4559
4560         * src/compose.c
4561                 fix a typo in my previous commit (sorry!).
4562
4563 2006-02-22 [wwp]        2.0.0cvs71
4564
4565         * src/prefs_toolbar.c
4566                 fix a crash when adding separators to toolbars,
4567                 also fix some separator item information.
4568
4569 2006-02-22 [wwp]        2.0.0cvs70
4570
4571         * src/compose.c
4572                 fix a crash when redirecting (for instance) when compose window's
4573                 toolbar contents has been customized (when some buttons have been
4574                 removed in fact).
4575
4576 2006-02-21 [wwp]        2.0.0cvs69
4577
4578         * src/summaryview.c
4579         * src/gtk/pluginwindow.c
4580         * src/plugins/pgpcore/prefs_gpg.c
4581                 fix some compilation warnings (feat. remains of removed code).
4582
4583 2006-02-21 [wwp]        2.0.0cvs68
4584
4585         * src/gtk/gtkutils.c
4586                 fix two compilation issues, thanks to Stephan Sachse.
4587
4588 2006-02-20 [colin]      2.0.0cvs67
4589
4590         * src/mainwindow.c
4591                 Don't reselect displayed mail on refocus
4592                 This fixes actions misbehaving 
4593
4594 2006-02-20 [wwp]        2.0.0cvs66
4595
4596         * src/summaryview.c
4597         * src/gtk/gtksctree.c
4598         * src/gtk/gtkshruler.c
4599                 changed more runtime typecast checks.
4600
4601 2006-02-20 [wwp]        2.0.0cvs65
4602
4603         * src/summary_search.c
4604                 find all - summaryview refresh issue fixed, thanks to Colin.
4605
4606 2006-02-20 [wwp]        2.0.0cvs64
4607
4608         * src/gtk/gtkutils.c
4609                 better runtime typecast checks.
4610
4611 2006-02-20 [wwp]        2.0.0cvs63
4612
4613         * src/summary_search.c
4614                 enhancements to the summary search:
4615                         - add the ability to stop the running search
4616                           (upon ESC-key press, new Stop button or when Clear button is pressed)
4617                         - don't search if no criteria (From/To/Subject/Body) is set
4618                         - ensure that a busy mouse pointer is always shown when searching,
4619                           show it even a bit earlier
4620
4621 2006-02-19 [colin]      2.0.0cvs62
4622
4623         * src/compose.c
4624         * src/imap.c
4625         * src/etpan/imap-thread.c
4626         * src/etpan/imap-thread.h
4627                 (Future) IMAP speed improvement on sending
4628                 Will require a libetpan update
4629         * src/summaryview.c
4630         * src/gtk/quicksearch.c
4631                 Make quicksearch clearable while running.
4632
4633 2006-02-17 [colin]      2.0.0cvs61
4634
4635         * src/imap.c
4636         * src/etpan/imap-thread.c
4637         * src/etpan/imap-thread.h
4638                 Check for IMAP certificates
4639                 ** Requires libetpan-0.42-cvs4 
4640                 ** http://claws.sylpheed.org/snapshots/libetpan-0.42cvs4.tar.gz
4641
4642 2006-02-17 [colin]      2.0.0cvs60
4643
4644         * src/messageview.c
4645         * src/prefs_common.c
4646         * src/prefs_common.h
4647         * src/prefs_message.c
4648                 Add pref to display HTML-only mails with plugin, 
4649                 if possible (defaulting to FALSE of course).
4650
4651 2006-02-16 [colin]      2.0.0cvs59
4652
4653         * src/main.c
4654         * src/common/plugin.c
4655         * src/common/plugin.h
4656         * src/gtk/pluginwindow.c
4657                 Keep track of requested (but unloaded) plugins
4658                 in some error cases.
4659
4660 2006-02-16 [wwp]        2.0.0cvs58
4661
4662         * src/gtk/gtkaspell.c
4663         * src/gtk/gtkaspell.h
4664         * src/prefs_spelling.c
4665         * src/compose.c
4666         * src/prefs_common.c
4667         * src/prefs_common.h
4668                 implemented new optional spellchecker behaviour: re-check message when
4669                 dictionary got changed (from compose-window/context-menu/Change dictionary).
4670
4671 2006-02-16 [wwp]        2.0.0cvs57
4672
4673         * src/quote_fmt_parse.y
4674                 pclose popen'ed pipe.
4675
4676 2006-02-15 [colin]      2.0.0cvs56
4677
4678         * src/mimeview.c
4679         * src/mimeview.h
4680                 Let MimeViewers know which MimeView they
4681                 depend of.
4682         * src/summaryview.c
4683                 Swap From/To columns in Sent/Queue/Drafts
4684                 folders
4685         * src/etpan/imap-thread.c
4686                 Use mailstream_low_tls_open() for STARTTLS
4687                 instead of mailstream_low_ssl_open()
4688                 ** REQUIRES libetpan 0.42cvs3 **
4689
4690 2006-02-15 [wwp]        2.0.0cvs55
4691
4692         * src/compose.c
4693         * src/compose.h
4694         * src/message_search.c
4695         * src/message_search.h
4696         * src/textview.c
4697         * src/gtk/gtkutils.c
4698         * src/gtk/gtkutils.h
4699                 added the ability to Find text in the compose window (and a bit
4700                 of code factorization).
4701
4702 2006-02-15 [wwp]        2.0.0cvs54
4703
4704         * src/prefs_gtk.c
4705                 yet another one file was missing (fix for some widgets' sensitivity).
4706                 Thanks Colin!
4707
4708 2006-02-15 [wwp]        2.0.0cvs53
4709
4710         * src/prefs_gtk.h
4711                 oops forgot that file (fix for some widgets' sensitivity).
4712
4713 2006-02-15 [wwp]        2.0.0cvs52
4714
4715         * src/summary_search.c
4716                 implemented advanced summary search options (added the ability
4717                 to use matcher conditions in an advanced search mode).
4718
4719 2006-02-15 [wwp]        2.0.0cvs51
4720
4721         * src/plugins/pgpcore/prefs_gpg.c
4722         * src/prefs_account.c
4723                 fix some widget sensitivity, mostly around some labels in
4724                 account prefs.
4725
4726 2006-02-15 [paul]       2.0.0cvs50
4727
4728         * manual/advanced.xml
4729                 improve Templates info
4730                 written by wwp
4731
4732 2006-02-14 [colin]      2.0.0cvs49
4733
4734         * src/pixmaps/address_book.xpm
4735         * src/pixmaps/preferences.xpm
4736         * src/pixmaps/properties.xpm
4737                 Fix pixmap size - patch by Fabien Vantard
4738
4739 2006-02-13 [colin]      2.0.0cvs48
4740
4741         * src/procmime.c
4742                 Add missing fclose()s on error
4743         * src/textview.c
4744                 Remove unused code
4745         * src/common/utils.c
4746                 Fix temp files not being deleted on windows
4747         Patches by Thomas Gilgin
4748
4749 2006-02-13 [colin]      2.0.0cvs47
4750
4751         * src/mainwindow.c
4752                 Fix exit crash
4753
4754 2006-02-13 [wwp]        2.0.0cvs46
4755
4756         * src/plugins/pgpcore/prefs_gpg.c
4757                 fixed sensitivity of radio widgets in account / GPG-plugin prefs.
4758
4759 2006-02-12 [colin]      2.0.0cvs45
4760
4761         * src/folderview.c
4762         * src/main.c
4763         * src/mainwindow.c
4764                 Fix "stuff" when quitting
4765
4766 2006-02-12 [wwp]        2.0.0cvs44
4767
4768         * src/prefs_themes.c
4769                 fix typos in debug messages.
4770
4771 2006-02-11 [colin]      2.0.0cvs43
4772
4773         * src/summaryview.c
4774                 don't allow drag/drop from ourself
4775
4776 2006-02-10 [wwp]        2.0.0cvs42
4777
4778         * src/exporthtml.c
4779         * src/html.c
4780         * src/html.h
4781         * src/procmime.c
4782         * src/textview.c
4783                 renamed html_ prefixed functions and data structures to avoid
4784                 namespace clashes w/ other software (gtkhtml2 for instance).
4785                 Closes bug #907.
4786
4787
4788 2006-02-09 [colin]      2.0.0cvs41
4789
4790         * src/summaryview.c
4791                 Fix shitty logic messed up. Thanks Ticho for the hint!
4792
4793 2006-02-09 [wwp]        2.0.0cvs40
4794
4795         * src/gtk/about.c
4796         * src/compose.c
4797         * src/prefs_account.c
4798         * src/prefs_gtk.h
4799         * src/editaddress.c
4800                 added mnemonics to notebook widgets (compose, account prefs, about and editaddress),
4801                 patch by Fabien Vantard (fzzzzz!). Solved some mnemonic conflicts around the
4802                 Browse buttons in accounts prefs.
4803
4804 2006-02-09 [colin]      2.0.0cvs39
4805
4806         * src/matcher.c
4807                 Check for pointer before using its members
4808         * src/gtk/gtksourceprintjob.c
4809                 Fix a wrong warning
4810
4811 2006-02-09 [wwp]        2.0.0cvs38
4812
4813         * src/gtk/filesel.c
4814                 fix few compiler warnings (type mismatch).
4815
4816 2006-02-09 [paul]       2.0.0cvs37
4817
4818         * po/fr.po
4819                 updated by Fabien Vantard
4820
4821 2006-02-08 [colin]      2.0.0cvs36
4822
4823         * src/prefs_common.c
4824         * src/common/defs.h
4825         * src/common/plugin.c
4826                 allow windows and linux configurations to coexist
4827                 patch by Thomas Gilgin
4828
4829 2006-02-08 [colin]      2.0.0cvs35
4830
4831         * src/filtering.c
4832         * src/matcher.c
4833         * src/matcher.h
4834         * src/matcher_parser_parse.y
4835         * src/prefs_filtering_action.c
4836         * src/prefs_matcher.c
4837                 Add the "Ignore thread" filtering
4838                 action
4839
4840 2006-02-08 [colin]      2.0.0cvs34
4841
4842         * src/compose.c
4843         * src/procmime.c
4844         * src/procmime.h
4845                 Fix bug #905 (damaged attachment)
4846                 text files with raw \0's aren't really text files
4847         FOR_STABLE
4848
4849 2006-02-08 [colin]      2.0.0cvs33
4850
4851         * src/summaryview.c
4852                 Fix crasher introduced yesterday
4853
4854 2006-02-08 [wwp]        2.0.0cvs32
4855
4856         * src/compose.c
4857         * src/compose.h
4858                 templates enhancement: allow symbols substitutions in To/Cc/Bcc/Subject fields
4859
4860 2006-02-08 [wwp]        2.0.0cvs31
4861
4862         * src/prefs_template.c
4863                 templates enhancement: allow address completion for Cc and Bcc fields
4864                 (it was currently possible for the To field only)
4865
4866 2006-02-08 [colin]      2.0.0cvs30
4867
4868         * src/compose.c
4869                 Don't unblock if not blocked
4870         FOR_STABLE
4871
4872 2006-02-07 [colin]      2.0.0cvs29
4873
4874         * src/action.c
4875                 Forgot to refresh summaryview
4876
4877 2006-02-07 [colin]      2.0.0cvs28
4878
4879         * src/action.c
4880                 Freeze/thaw message list and folder list while
4881                 processing %as{} actions 
4882         * src/compose.c
4883                 Fix auto-wrap disabling after a middle-click
4884                 paste - FOR_STABLE
4885
4886 2006-02-07 [paul]       2.0.0cvs27
4887
4888         * src/folder.c
4889                 fix freeing of uninitialised pointers
4890                 Thanks to Colin
4891
4892 2006-02-06 [colin]      2.0.0cvs26
4893
4894         * src/folder.c
4895                 Use g_slist_prepend in potentially big list
4896
4897 2006-02-06 [colin]      2.0.0cvs25
4898
4899         * src/folder.c
4900                 Completely skip processing if it doesn't 
4901                 exist (faster!)
4902
4903 2006-02-06 [colin]      2.0.0cvs24
4904
4905         * src/folder.c
4906         * src/summaryview.c
4907                 Batch filtering in summaryview (from Tools menu)
4908                 and pre/post//-processing too
4909
4910 2006-02-06 [colin]      2.0.0cvs23
4911
4912         * src/procmsg.h
4913         * src/filtering.c
4914                 Use a special field for batch filtering instead
4915                 of stepping on deferred execution's toes
4916
4917 2006-02-06 [colin]      2.0.0cvs22
4918
4919         * src/action.c
4920         * src/filtering.c
4921         * src/filtering.h
4922         * src/folder.c
4923         * src/summaryview.c
4924                 Fix filtering via menus and actions
4925
4926 2006-02-06 [colin]      2.0.0cvs21
4927
4928         * src/imap.c
4929                 Put the added file directly to cache if possible (will work
4930                 with next libetpan)
4931         * src/filtering.c
4932         * src/filtering.h
4933         * src/inc.c
4934         * src/folder.c
4935         * src/mbox.c
4936         * src/procmsg.h
4937                 Move and copy filtered messages by batches instead of one
4938                 by one - faster on IMAP
4939         * src/procmsg.c
4940                 Add a function that'll possibly be useful later
4941
4942 2006-02-06 [colin]      2.0.0cvs20
4943
4944         * src/addressbook.c
4945                 Use internal mime-type instead of text/plain for d'n'd
4946         * src/compose.c
4947                 Allow attaching files from mimeview's icon list via d'n'd
4948         * src/folderview.c
4949         * src/folderview.h
4950                 Use internal mime-type instead of text/plain for d'n'd
4951                 Don't try to selected opened folder if none is
4952                 Factorize d'n'd from other apps code
4953         * src/headerview.c
4954         * src/textview.c
4955         * src/gtk/gtkutils.c
4956         * src/gtk/gtkutils.h
4957                 Factorize Face/X-Face stuff
4958         * src/mimeview.c
4959                 Fix d'n'd to other apps
4960         * src/prefs_message.c
4961                 Let the XFace pref be usable without libcompface as it also
4962                 applies to Face
4963         * src/summaryview.c
4964                 Fix d'n'd to other apps
4965                 Factorize d'n'd from other apps code
4966
4967 2006-02-06 [wwp]        2.0.0cvs19
4968
4969         * po/it.po
4970                 Italian translation fixes by Andrea Spadaccini (no more confusion
4971                 between filtering and processing, and few changes in the About
4972                 dialog).
4973
4974
4975 2006-02-06 [mones]      2.0.0cvs18
4976
4977         * src/gtk/icon_legend.c
4978                 Improved descriptions allowing better translations
4979
4980 2006-02-05 [colin]      2.0.0cvs17
4981
4982         * src/imap.c
4983                 Add the f*cking missing expunge that caused imap_fetch_env
4984                 to fail after an add_msgs ! :-///
4985         * src/etpan/imap-thread.c
4986                 Add a bit of debug
4987         FOR_STABLE
4988
4989 2006-02-05 [colin]      2.0.0cvs16
4990
4991         * src/common/utils.c
4992                 Don't check for return-path (or we can't put
4993                 back non-sent mails)
4994
4995 2006-02-05 [colin]      2.0.0cvs15
4996
4997         * src/textview.c
4998                 Don't try to display Face header in textview
4999                 when teh headerview's active
5000
5001 2006-02-05 [colin]      2.0.0cvs14
5002
5003         * tools/tbird2syl.py
5004         * tools/Makefile.am
5005                 Add script to import Thunderbird mails
5006
5007 2006-02-05 [colin]      2.0.0cvs13
5008
5009         * src/headerview.c
5010         * src/procheader.c
5011         * src/procmsg.c
5012         * src/procmsg.h
5013         * src/textview.c
5014                 Show Face headers - patch partially by Klaus Flittner
5015
5016 2006-02-05 [colin]      2.0.0cvs12
5017
5018         * src/folderview.c
5019         * src/summaryview.c
5020         * src/common/utils.c
5021         * src/common/utils.h
5022                 Let dnd work from mime icons to summaryview
5023                 and to folderview too
5024                 Add a crude test to avoid trying to add files
5025                 drag'n'dropped when they're not mails
5026
5027 2006-02-04 [colin]      2.0.0cvs11
5028
5029         * src/summaryview.c
5030         * src/mimeview.c
5031                 Fix utf8 conversion
5032
5033 2006-02-04 [colin]      2.0.0cvs10
5034
5035         * src/compose.c
5036         * src/folderview.c
5037         * src/mimeview.c
5038         * src/summaryview.c
5039         * src/summaryview.h
5040                 Added various drag and drop capas:
5041                 From                    To
5042                 summaryview             other apps
5043                 mimeview icons          other apps
5044                 other apps              summaryview
5045                 other apps              folderview
5046
5047                 This shouldn't have broken the existing:
5048                 From                    To
5049                 summaryview             folderview
5050                 folderview              folderview
5051                 summaryview             compose's attachments
5052
5053         Tests welcomed.
5054
5055 2006-02-02 [paul]       2.0.0cvs9
5056
5057         * src/mainwindow.c
5058                 move global option 'Set displayed columns...' out
5059                 of folder option grouping.
5060                 fix sensitivity of 'harvest addresses'
5061         FOR_STABLE
5062
5063 2006-02-01 [colin]      2.0.0cvs8
5064
5065         * src/mimeview.c
5066                 Revert the alertpanel patch, it sucks (intrusive
5067                 and gets in the way of "open")
5068
5069 2006-02-01 [colin]      2.0.0cvs7
5070
5071         * src/compose.c
5072         * src/prefs_account.c
5073         * src/prefs_common.c
5074         * src/common/defs.h
5075         * src/common/utils.c
5076         * src/common/utils.h
5077                 Add ability to edit the signature file
5078                 from the account preferences, and use
5079                 a default for the text editor.
5080                 Patch by Fabien Vantard
5081
5082 2006-02-01 [colin]      2.0.0cvs6
5083
5084         * src/mimeview.c
5085                 Try to get mime type by extension if it is
5086                 application/octet-stream
5087                 Display a window with possible choices when
5088                 encountering unknown mime types
5089         * src/gtk/filesel.c
5090         * src/gtk/filesel.h
5091                 Add preview
5092                 Allow multiple selection in filtered filesel
5093                 (patch by Fabien Vantard)
5094         * src/gtk/pluginwindow.c
5095                 Use it (patch by Fabien Vantard)
5096
5097 2006-02-01 [paul]       2.0.0cvs5
5098
5099         * src/jpilot.c
5100                 fix crash on creating jpilot address book
5101                 Thanks to Colin - FOR_STABLE
5102         * src/prefs_summaries.c
5103         * src/prefs_wrapping.c
5104         * src/gtk/icon_legend.c
5105         * src/gtk/quicksearch.c
5106                 string fixes and additions
5107
5108 2006-02-01 [paul]       2.0.0cvs4
5109
5110         * src/compose.c
5111         * src/mainwindow.c
5112         * src/messageview.c
5113         * src/prefs_send.c
5114                 add Arabic encoding option
5115                 Patch submitted by  Mohammed Sameer <msameer@users.sf.net>
5116
5117 2006-01-31 [colin]      2.0.0cvs3
5118
5119         * src/plugins/pgpcore/passphrase.c
5120                 Convert passphrase to locale encoding
5121         * src/compose.c
5122                 Fix drafting on IMAP. Crappy bug sneaked in
5123                 the release :-/
5124         FOR_STABLE
5125
5126 2006-01-30 [paul]       2.0.0cvs2
5127
5128         * src/gtk/icon_legend.c
5129                 show the new entries
5130
5131 2006-01-30 [colin]      2.0.0cvs1
5132
5133         * src/manual.c
5134                 Check for the file to be present before 
5135                 enabling the menu - FOR_STABLE
5136         * src/gtk/icon_legend.c
5137                 Add folders icons (not all of them, there
5138                 are too much, but the most intriguing ones)
5139
5140 2006-01-30 [paul]       2.0.0
5141
5142         version 2.0.0 released
5143
5144 2006-01-30 [paul]       1.9.100cvs200
5145
5146         * manual/faq.xml
5147         * manual/gpl.xml
5148         * manual/intro.xml
5149         * manual/starting.xml
5150         * manual/sylpheed-claws-manual.xml
5151                 fixes, additions
5152
5153 2006-01-29 [mones]      1.9.100cvs199
5154
5155         * manual/account.xml
5156         * manual/advanced.xml
5157         * manual/glossary.xml
5158                 Some typos fixed, added LDIF term to glossary
5159         * po/es.po
5160                 Fixed leading plus symbol
5161
5162 2006-01-29 [paul]       1.9.100cvs198
5163
5164         * po/fi.po
5165         * po/sk.po
5166                 updated by Tommi Pirinen and Andrej Kacian
5167
5168 2006-01-29 [paul]       1.9.100cvs197
5169
5170         * src/gtk/authors.h
5171                 remove duplicates
5172
5173 2006-01-29 [paul]       1.9.100cvs196
5174
5175         * AUTHORS
5176         * po/nl.po
5177         * src/gtk/authors.h
5178         * tools/claws.i18n.status.pl
5179                 nl translation updated by Tim Dijkstra
5180
5181 2006-01-29 [paul]       1.9.100cvs195
5182
5183         * po/sr.po
5184         * po/sv.po
5185                 updated by Aleksandar Urosevic and Anders Troback
5186
5187 2006-01-28 [colin]      1.9.100cvs194
5188
5189         * src/gtk/gtksourceprintjob.c
5190                 Don't fiddle with PangoLayout when we
5191                 have an image
5192
5193 2006-01-28 [paul]       1.9.100cvs193
5194
5195         * AUTHORS
5196         * po/el.po
5197         * po/zh_CN.po
5198         * src/gtk/authors.h
5199         * tools/claws.i18n.status.pl
5200                 updated translations submitted by Stavros Giannouris
5201                 and Ralgh Young
5202
5203 2006-01-27 [colin]      1.9.100cvs192
5204
5205         * src/summaryview.c
5206         * src/gtk/gtksourceprintjob.c
5207                 Add image printing 
5208                 (libgnomeprint only, of course)
5209
5210 2006-01-27 [paul]       1.9.100cvs191
5211
5212         * po/fr.po
5213         * po/it.po
5214                 updated by Fabien Vantard and Andrea Spadaccini
5215
5216 2006-01-26 [colin]      1.9.100cvs190
5217
5218         * manual/Makefile.am
5219         * configure.ac
5220                 Make building the manual optional 
5221                 (--disable-manual)
5222
5223 2006-01-26 [paul]       1.9.100cvs189
5224
5225         * manual/glossary.xml
5226         * manual/plugins.xml
5227                 edited
5228         * po/en_GB.po
5229                 updated
5230
5231 2006-01-26 [paul]       1.9.100cvs188
5232
5233         * src/prefs_display_header.c
5234         * src/prefs_folder_column.c
5235         * src/prefs_msg_colors.c
5236         * src/prefs_summaries.c
5237         * src/prefs_summary_column.c
5238                 HIGify
5239
5240 2006-01-25 [colin]      1.9.100cvs187
5241
5242         * src/imap.c
5243                 Don't allow moving/copying mails between
5244                 queue/drafts and non-queue/drafts folders
5245                 Fixes bug #897 (message header is resetted 
5246                 if one is copied to Drafts)
5247
5248 2006-01-25 [colin]      1.9.100cvs186
5249
5250         * src/folder.c
5251         * src/mainwindow.c
5252                 Fix subscribed folders not found
5253         * src/compose.c
5254                 Don't try to encode as original mail's charset
5255                 if it's ascii 
5256
5257 2006-01-25 [paul]       1.9.100cvs185
5258
5259         * AUTHORS
5260         * po/Makevars
5261                 updated
5262         * po/de.po
5263         * po/pl.po
5264         * po/pt_BR.po
5265         * po/sr.po
5266                 updates submitted by Stephan Sachse, Emilian Nowak
5267                 and Quar, Frederico Goncalves Guimaraes, and
5268                 Aleksandar Urosevic
5269                 Fix Bug 896, 'PT_BR locale broken'.
5270         * src/gtk/authors.h
5271                 updated
5272
5273 2006-01-24 [mones]      1.9.100cvs184
5274
5275         * manual/glossary.xml
5276                 All current terms finished. Reviewers welcome ;-)
5277         * manual/keyboard.xml
5278                 Fixed column width for pdf output.
5279         * po/es.po
5280                 Updated
5281
5282 2006-01-24 [paul]       1.9.100cvs183
5283
5284         * manual/glossary.xml
5285                 fix id name
5286         * manual/dist/html/Makefile.am
5287         * manual/dist/pdf/Makefile.am
5288         * manual/dist/ps/Makefile.am
5289         * manual/dist/txt/Makefile.am
5290                 fix make deps
5291                 Thanks to Colin
5292
5293 2006-01-24 [mones]      1.9.100cvs182
5294
5295         * manual/glossary.xml
5296                 Nearly finished, some terms missing.
5297
5298 2006-01-23 [paul]       1.9.100cvs181
5299
5300         * manual/dist/html/Makefile.am
5301         * manual/dist/pdf/Makefile.am
5302         * manual/dist/ps/Makefile.am
5303         * manual/dist/txt/Makefile.am
5304         * src/mainwindow.c
5305                 re-enable manual
5306                 Thanks to Colin
5307
5308 2006-01-22 [colin]      1.9.100cvs180
5309
5310         * src/compose.c
5311         * src/gtk/gtkaspell.c
5312                 Don't deselect stuff before right-clicking, with aspell.
5313                 (This prevented right-click Copy, for example).
5314                 Thanks to Clo!
5315
5316 2006-01-22 [paul]       1.9.100cvs179
5317
5318         * src/summary_search.c
5319                 don't fix the widget size as it causes problems
5320                 under localisation.
5321                 Thanks to Emilian Nowak
5322
5323 2006-01-21 [paul]       1.9.100cvs178
5324
5325         * src/prefs_themes.c
5326                 fix broken underlining of label text
5327                 with some translations
5328
5329 2006-01-21 [colin]      1.9.100cvs177
5330
5331         * po/fr.po
5332                 In French "Composition" puts the Compose toolbar's prefs in the wrong place
5333
5334 2006-01-20 [colin]      1.9.100cvs176
5335
5336         * configure.ac
5337         * Makefile.am
5338         * manual/Makefile
5339         * manual/dist/html/.cvsignore
5340         * manual/dist/html/Makefile.am
5341         * manual/dist/pdf/.cvsignore
5342         * manual/dist/pdf/Makefile.am
5343         * manual/dist/ps/.cvsignore
5344         * manual/dist/ps/Makefile.am
5345         * manual/dist/txt/.cvsignore
5346         * manual/dist/txt/Makefile.am
5347                 Autotool-ize manual
5348
5349 2006-01-20 [paul]       1.9.100cvs175
5350
5351         * manual/handling.xml
5352                 make Filtering and Searching entries easier to find
5353         * manual/keyboard.xml
5354                 add the remaining default keybinds
5355         * src/prefs_summaries.c
5356                 update the default keybinds
5357
5358 2006-01-20 [paul]       1.9.100cvs174
5359
5360         * src/addressbook.c
5361         * src/addrgather.c
5362         * src/addrharvest.c
5363         * src/editaddress.c
5364         * src/editgroup.c
5365         * src/exphtmldlg.c
5366         * src/expldifdlg.c
5367         * src/exporthtml.c
5368         * src/exportldif.c
5369         * src/ldif.c
5370                 replace 'e-mail' with 'email'
5371         * src/summary_search.c
5372                 add mnemonic to "Find all" button
5373
5374 2006-01-20 [wwp]        1.9.100cvs173
5375
5376         * src/export.c
5377         * src/import.c
5378                 touched mbox import/export buttons for HIG-compliance
5379
5380 2006-01-19 [paul]       1.9.100cvs172
5381
5382         * manual/account.xml
5383         * manual/addrbook.xml
5384         * manual/advanced.xml
5385         * manual/faq.xml
5386         * manual/handling.xml
5387         * manual/intro.xml
5388         * manual/plugins.xml
5389         * manual/starting.xml
5390                 more editing
5391
5392 2006-01-19 [paul]       1.9.100cvs171
5393
5394         * src/toolbar.c
5395                 allow use of trash button while receiving
5396                 Thanks to Colin
5397
5398 2006-01-19 [wwp]        1.9.100cvs170
5399
5400         * src/gtk/quicksearch.c
5401         * src/compose.c
5402                 force text color to black when yellow background is set
5403
5404 2006-01-19 [colin]      1.9.100cvs169
5405
5406         * src/plugins/trayicon/trayicon.c
5407                 Gray out Get Mail when already getting mail
5408
5409 2006-01-18 [paul]       1.9.100cvs168
5410
5411         * src/compose.c
5412                 give widget yellow background was To is
5413                 set via folder prefs
5414         * src/gtk/quicksearch.c
5415                 give widget yellow background when quick
5416                 search is active.
5417                 Thanks to Colin
5418
5419 2006-01-18 [paul]       1.9.100cvs167
5420
5421         * doc/man/sylpheed-claws.1
5422                 add --subscribe option
5423
5424 2006-01-18 [paul]       1.9.100cvs166
5425
5426         * tools/kdeservicemenu/template_sylpheed-attach-files.desktop
5427         * tools/kdeservicemenu/template_sylpheed-compress-attach.desktop
5428                 use %U instead of %F (%F is broken for user installed
5429                 files in kde 3.5)
5430
5431 2006-01-18 [colin]      1.9.100cvs165
5432
5433         * src/summaryview.c
5434                 Default to Yes in "No more * messages" dialogs
5435
5436 2006-01-17 [colin]      1.9.100cvs164
5437
5438         * src/compose.c
5439                 Possibly fix an invalid iterator causing
5440                 crash
5441
5442 2006-01-17 [colin]      1.9.100cvs163
5443
5444         * src/mimeview.c
5445                 Fix crash when the image disappears under the
5446                 image viewer
5447
5448 2006-01-16 [colin]      1.9.100cvs162
5449
5450         * src/compose.c
5451                 Fix reenabling autowrap
5452
5453 2006-01-16 [colin]      1.9.100cvs161
5454
5455         * src/compose.c
5456                 reset quote_len before getting quote_str
5457
5458 2006-01-16 [colin]      1.9.100cvs160
5459
5460         * src/account.c
5461         * src/account.h
5462         * src/folder.c
5463         * src/imap_gtk.c
5464         * src/mh_gtk.c
5465                 Fix bug #883 (default inbox does not track folder move)
5466
5467 2006-01-16 [colin]      1.9.100cvs159
5468
5469         * src/compose.c
5470         * src/plugins/pgpcore/passphrase.c
5471                 More buttons fixes
5472
5473 2006-01-16 [paul]       1.9.100cvs158
5474
5475         * src/prefs_actions.c
5476         * src/prefs_filtering_action.c
5477         * src/prefs_matcher.c
5478         * src/quote_fmt.c
5479         * src/gtk/description_window.c
5480         * src/gtk/description_window.h
5481         * src/gtk/quicksearch.c
5482                 description window cleanups
5483
5484 2006-01-15 [colin]      1.9.100cvs157
5485
5486         * src/addressbook.c
5487         * src/prefs_filtering.c
5488                 Same here
5489
5490 2006-01-15 [colin]      1.9.100cvs156
5491
5492         * src/folderview.c
5493         * src/mainwindow.c
5494                 Same for "Empty trash"
5495
5496 2006-01-15 [colin]      1.9.100cvs155
5497
5498         * src/inc.c
5499                 Override offline dialog had Yes by default
5500
5501 2006-01-15 [colin]      1.9.100cvs154
5502
5503         * src/summaryview.c
5504                 Delete selected messages? previously had Yes the default
5505
5506 2006-01-15 [colin]      1.9.100cvs153
5507
5508         * src/folder.c
5509         * src/folder.h
5510         * src/main.c
5511                 Check if a mailbox is loaded after all
5512                 plugins are loaded.
5513
5514 2006-01-15 [colin]      1.9.100cvs152
5515
5516         * src/folder.c
5517                 Don't start wizard when there are unloaded folders (will help
5518                 people with only mbox or maildir mailboxes)
5519
5520 2006-01-14 [colin]      1.9.100cvs151
5521
5522         * src/addressbook.c
5523         * src/expldifdlg.c
5524         * src/importldif.c
5525         * src/importmutt.c
5526         * src/importpine.c
5527         * src/mh_gtk.c
5528                 More HIG compliance and fixes
5529
5530 2006-01-14 [colin]      1.9.100cvs150
5531
5532         * src/prefs_filtering_action.c
5533         * src/foldersel.c
5534                 Two forgotten button order changes
5535
5536 2006-01-14 [colin]      1.9.100cvs149
5537
5538         * src/account.c
5539         * src/addressbook.c
5540         * src/compose.c
5541         * src/folderview.c
5542         * src/imap_gtk.c
5543         * src/mainwindow.c
5544         * src/mh_gtk.c
5545         * src/news_gtk.c
5546         * src/prefs_actions.c
5547         * src/prefs_customheader.c
5548         * src/prefs_filtering.c
5549         * src/prefs_matcher.c
5550         * src/prefs_template.c
5551         * src/ssl_manager.c
5552         * src/summaryview.c
5553         * src/textview.c
5554         * src/toolbar.c
5555                 All deletion confirmations are now "Cancel, Delete" 
5556                 instead of "No, Yes"
5557                 Clarified most of the other "No, Yes" to 
5558                 "Cancel, Descriptive_action"
5559                 Rechanged the "Entry not saved" alerts to have 
5560                 "Close, Continue editing"
5561
5562
5563 2006-01-14 [paul]
5564
5565         * 2.0.0-rc4 released
5566
5567 2006-01-14 [paul]       1.9.100cvs148
5568
5569         * src/account.c
5570         * src/addressadd.c
5571         * src/addressbook.c
5572         * src/compose.c
5573         * src/editaddress.c
5574         * src/editbook.c
5575         * src/editgroup.c
5576         * src/editjpilot.c
5577         * src/editldap.c
5578         * src/editvcard.c
5579         * src/exphtmldlg.c
5580         * src/expldifdlg.c
5581         * src/folderview.c
5582         * src/grouplistdialog.c
5583         * src/imap_gtk.c
5584         * src/importmutt.c
5585         * src/importpine.c
5586         * src/inc.c
5587         * src/main.c
5588         * src/mainwindow.c
5589         * src/message_search.c
5590         * src/messageview.c
5591         * src/mh_gtk.c
5592         * src/mimeview.c
5593         * src/news_gtk.c
5594         * src/prefs_actions.c
5595         * src/prefs_customheader.c
5596         * src/prefs_filtering.c
5597         * src/prefs_matcher.c
5598         * src/prefs_template.c
5599         * src/prefs_themes.c
5600         * src/ssl_manager.c
5601         * src/summary_search.c
5602         * src/summaryview.c
5603         * src/textview.c
5604         * src/toolbar.c
5605         * src/gtk/foldersort.c
5606         * src/gtk/gtkaspell.c
5607         * src/gtk/inputdialog.c
5608         * src/gtk/prefswindow.c
5609         * src/plugins/pgpcore/select-keys.c
5610         * src/plugins/trayicon/trayicon.c
5611                 HIG compliant button order
5612
5613 2006-01-14 [mones]      1.9.100cvs147
5614
5615         * po/es.po
5616                 Updated translation
5617
5618 2006-01-13 [paul]       1.9.100cvs146
5619
5620         * AUTHORS
5621         * ChangeLog
5622         * src/gtk/authors.h
5623                 add Joshua M. Kwan to contributors list
5624
5625 2006-01-13 [colin]      1.9.100cvs145
5626
5627         * src/gtk/quicksearch.c
5628                 Don't refocus quick search after executing (Esc or Enter)
5629                 Allows to '/'search something then move up/down in 
5630                 summaryview, and to Esc a search and be back in the 
5631                 summaryview
5632
5633 2006-01-13 [paul]       1.9.100cvs144
5634
5635         * src/plugins/pgpinline/pgpinline.c
5636                 support Content-Type 'application/pgp'
5637                 patch by Joshua M. Kwan <joshuak@users.sf.net>
5638
5639 2006-01-13 [paul]       1.9.100cvs143
5640
5641         * manual/account.xml
5642                 make mention of partial retrieval
5643                 thanks to Colin
5644
5645 2006-01-13 [paul]       1.9.100cvs142
5646
5647         * src/account.c
5648         * src/account.h
5649         * src/action.c
5650         * src/action.h
5651         * src/adbookbase.h
5652         * src/addr_compl.c
5653         * src/addr_compl.h
5654         * src/addrbook.c
5655         * src/addrcache.c
5656         * src/addrcache.h
5657         * src/addrcindex.c
5658         * src/addrcindex.h
5659         * src/addrclip.c
5660         * src/addrclip.h
5661         * src/addrdefs.h
5662         * src/addressadd.c
5663         * src/addressadd.h
5664         * src/addressbook.c
5665         * src/addressbook.h
5666         * src/addrgather.c
5667         * src/addrgather.h
5668         * src/addrharvest.c
5669         * src/addrharvest.h
5670         * src/addrindex.c
5671         * src/addrindex.h
5672         * src/addritem.c
5673         * src/addritem.h
5674         * src/addrquery.c
5675         * src/addrquery.h
5676         * src/addrselect.c
5677         * src/addrselect.h
5678         * src/alertpanel.c
5679         * src/alertpanel.h
5680         * src/browseldap.c
5681         * src/browseldap.h
5682         * src/codeconv.c
5683         * src/codeconv.h
5684         * src/compose.c
5685         * src/compose.h
5686         * src/customheader.c
5687         * src/customheader.h
5688         * src/displayheader.c
5689         * src/displayheader.h
5690         * src/editaddress.c
5691         * src/editaddress.h
5692         * src/editbook.c
5693         * src/editbook.h
5694         * src/editgroup.c
5695         * src/editgroup.h
5696         * src/editjpilot.c
5697         * src/editjpilot.h
5698         * src/editldap.c
5699         * src/editldap.h
5700         * src/editldap_basedn.c
5701         * src/editldap_basedn.h
5702         * src/editvcard.c
5703         * src/editvcard.h
5704         * src/exphtmldlg.c
5705         * src/exphtmldlg.h
5706         * src/expldifdlg.c
5707         * src/expldifdlg.h
5708         * src/export.h
5709         * src/exporthtml.c
5710         * src/exporthtml.h
5711         * src/exportldif.c
5712         * src/exportldif.h
5713         * src/filtering.c
5714         * src/filtering.h
5715         * src/folder.c
5716         * src/folder.h
5717         * src/folder_item_prefs.c
5718         * src/folder_item_prefs.h
5719         * src/foldersel.c
5720         * src/foldersel.h
5721         * src/folderutils.c
5722         * src/folderutils.h
5723         * src/folderview.c
5724         * src/folderview.h
5725         * src/grouplistdialog.c
5726         * src/grouplistdialog.h
5727         * src/headerview.c
5728         * src/html.c
5729         * src/html.h
5730         * src/image_viewer.c
5731         * src/image_viewer.h
5732         * src/imap.c
5733         * src/imap.h
5734         * src/imap_gtk.c
5735         * src/imap_gtk.h
5736         * src/import.h
5737         * src/importldif.c
5738         * src/importldif.h
5739         * src/importmutt.c
5740         * src/importmutt.h
5741         * src/importpine.c
5742         * src/importpine.h
5743         * src/inc.c
5744         * src/inc.h
5745         * src/jpilot.c
5746         * src/jpilot.h
5747         * src/ldapctrl.c
5748         * src/ldapctrl.h
5749         * src/ldaplocate.c
5750         * src/ldaplocate.h
5751         * src/ldapquery.c
5752         * src/ldapquery.h
5753         * src/ldapserver.c
5754         * src/ldapserver.h
5755         * src/ldaputil.c
5756         * src/ldaputil.h
5757         * src/ldif.c
5758         * src/ldif.h
5759         * src/main.c
5760         * src/main.h
5761         * src/mainwindow.c
5762         * src/mainwindow.h
5763         * src/manual.c
5764         * src/manual.h
5765         * src/mbox.c
5766         * src/mbox.h
5767         * src/message_search.c
5768         * src/message_search.h
5769         * src/messageview.c
5770         * src/messageview.h
5771         * src/mh.c
5772         * src/mh.h
5773         * src/mh_gtk.c
5774         * src/mh_gtk.h
5775         * src/mimeview.c
5776         * src/mimeview.h
5777         * src/msgcache.c
5778         * src/msgcache.h
5779         * src/mutt.c
5780         * src/mutt.h
5781         * src/news.c
5782         * src/news.h
5783         * src/news_gtk.c
5784         * src/news_gtk.h
5785         * src/partial_download.c
5786         * src/partial_download.h
5787         * src/pine.c
5788         * src/pine.h
5789         * src/pop.c
5790         * src/pop.h
5791         * src/prefs_account.c
5792         * src/prefs_account.h
5793         * src/prefs_actions.c
5794         * src/prefs_actions.h
5795         * src/prefs_common.c
5796         * src/prefs_common.h
5797         * src/prefs_compose_writing.c
5798         * src/prefs_compose_writing.h
5799         * src/prefs_customheader.c
5800         * src/prefs_customheader.h
5801         * src/prefs_display_header.c
5802         * src/prefs_display_header.h
5803         * src/prefs_filtering.c
5804         * src/prefs_filtering.h
5805         * src/prefs_filtering_action.c
5806         * src/prefs_filtering_action.h
5807         * src/prefs_folder_column.c
5808         * src/prefs_folder_column.h
5809         * src/prefs_folder_item.c
5810         * src/prefs_folder_item.h
5811         * src/prefs_fonts.c
5812         * src/prefs_fonts.h
5813         * src/prefs_gtk.c
5814         * src/prefs_gtk.h
5815         * src/prefs_image_viewer.c
5816         * src/prefs_image_viewer.h
5817         * src/prefs_matcher.c
5818         * src/prefs_matcher.h
5819         * src/prefs_message.c
5820         * src/prefs_msg_colors.c
5821         * src/prefs_msg_colors.h
5822         * src/prefs_other.c
5823         * src/prefs_quote.c
5824         * src/prefs_receive.c
5825         * src/prefs_send.c
5826         * src/prefs_spelling.c
5827         * src/prefs_spelling.h
5828         * src/prefs_summaries.c
5829         * src/prefs_summaries.h
5830         * src/prefs_summary_column.c
5831         * src/prefs_summary_column.h
5832         * src/prefs_template.c
5833         * src/prefs_template.h
5834         * src/prefs_themes.c
5835         * src/prefs_themes.h
5836         * src/prefs_toolbar.c
5837         * src/prefs_toolbar.h
5838         * src/prefs_wrapping.c
5839         * src/prefs_wrapping.h
5840         * src/privacy.c
5841         * src/privacy.h
5842         * src/procheader.c
5843         * src/procheader.h
5844         * src/procmime.c
5845         * src/procmime.h
5846         * src/procmsg.c
5847         * src/procmsg.h
5848         * src/quote_fmt.c
5849         * src/quote_fmt_parse.y
5850         * src/recv.c
5851         * src/recv.h
5852         * src/remotefolder.c
5853         * src/remotefolder.h
5854         * src/send_message.c
5855         * src/send_message.h
5856         * src/setup.c
5857         * src/setup.h
5858         * src/sourcewindow.c
5859         * src/sourcewindow.h
5860         * src/ssl_manager.c
5861         * src/ssl_manager.h
5862         * src/statusbar.c
5863         * src/statusbar.h
5864         * src/stock_pixmap.c
5865         * src/stock_pixmap.h
5866         * src/summary_search.c
5867         * src/summary_search.h
5868         * src/summaryview.c
5869         * src/summaryview.h
5870         * src/syldap.c
5871         * src/syldap.h
5872         * src/textview.c
5873         * src/textview.h
5874         * src/toolbar.c
5875         * src/toolbar.h
5876         * src/undo.c
5877         * src/undo.h
5878         * src/unmime.c
5879         * src/unmime.h
5880         * src/vcard.c
5881         * src/vcard.h
5882         * src/wizard.c
5883         * src/wizard.h
5884         * src/common/base64.c
5885         * src/common/base64.h
5886         * src/common/defs.h
5887         * src/common/hooks.c
5888         * src/common/hooks.h
5889         * src/common/log.c
5890         * src/common/log.h
5891         * src/common/mgutils.c
5892         * src/common/mgutils.h
5893         * src/common/nntp.c
5894         * src/common/nntp.h
5895         * src/common/passcrypt.c
5896         * src/common/passcrypt.h.in
5897         * src/common/plugin.c
5898         * src/common/plugin.h
5899         * src/common/prefs.c
5900         * src/common/prefs.h
5901         * src/common/progressindicator.c
5902         * src/common/progressindicator.h
5903         * src/common/quoted-printable.c
5904         * src/common/quoted-printable.h
5905         * src/common/session.c
5906         * src/common/session.h
5907         * src/common/smtp.c
5908         * src/common/smtp.h
5909         * src/common/socket.c
5910         * src/common/socket.h
5911         * src/common/ssl.c
5912         * src/common/ssl.h
5913         * src/common/ssl_certificate.c
5914         * src/common/ssl_certificate.h
5915         * src/common/stringtable.c
5916         * src/common/stringtable.h
5917         * src/common/sylpheed.c
5918         * src/common/sylpheed.h
5919         * src/common/template.c
5920         * src/common/template.h
5921         * src/common/timing.h
5922         * src/common/utils.c
5923         * src/common/utils.h
5924         * src/common/version.h.in
5925         * src/common/xml.c
5926         * src/common/xml.h
5927         * src/common/xmlprops.c
5928         * src/common/xmlprops.h
5929         * src/gtk/colorlabel.c
5930         * src/gtk/colorsel.c
5931         * src/gtk/colorsel.h
5932         * src/gtk/description_window.c
5933         * src/gtk/description_window.h
5934         * src/gtk/filesel.c
5935         * src/gtk/filesel.h
5936         * src/gtk/foldersort.c
5937         * src/gtk/foldersort.h
5938         * src/gtk/gtkutils.c
5939         * src/gtk/gtkutils.h
5940         * src/gtk/inputdialog.c
5941         * src/gtk/inputdialog.h
5942         * src/gtk/logwindow.c
5943         * src/gtk/logwindow.h
5944         * src/gtk/manage_window.c
5945         * src/gtk/manage_window.h
5946         * src/gtk/menu.c
5947         * src/gtk/menu.h
5948         * src/gtk/pluginwindow.c
5949         * src/gtk/pluginwindow.h
5950         * src/gtk/prefswindow.c
5951         * src/gtk/prefswindow.h
5952         * src/gtk/progressdialog.c
5953         * src/gtk/progressdialog.h
5954         * src/gtk/sslcertwindow.c
5955         * src/gtk/sslcertwindow.h
5956         * src/plugins/clamav/clamav_plugin.c
5957         * src/plugins/clamav/clamav_plugin.h
5958         * src/plugins/clamav/clamav_plugin_gtk.c
5959         * src/plugins/demo/demo.c
5960         * src/plugins/dillo_viewer/dillo_prefs.c
5961         * src/plugins/dillo_viewer/dillo_prefs.h
5962         * src/plugins/dillo_viewer/dillo_viewer.c
5963         * src/plugins/pgpcore/passphrase.c
5964         * src/plugins/pgpcore/passphrase.h
5965         * src/plugins/pgpcore/plugin.c
5966         * src/plugins/pgpcore/select-keys.c
5967         * src/plugins/pgpcore/select-keys.h
5968         * src/plugins/pgpcore/sgpgme.c
5969         * src/plugins/pgpcore/sgpgme.h
5970         * src/plugins/pgpinline/pgpinline.c
5971         * src/plugins/pgpinline/pgpinline.h
5972         * src/plugins/pgpinline/plugin.c
5973         * src/plugins/pgpmime/pgpmime.c
5974         * src/plugins/pgpmime/pgpmime.h
5975         * src/plugins/pgpmime/plugin.c
5976         * src/plugins/spamassassin/spamassassin.c
5977         * src/plugins/spamassassin/spamassassin.h
5978         * src/plugins/spamassassin/spamassassin_gtk.c
5979         * src/plugins/trayicon/trayicon.c
5980                 update copyright header
5981
5982 2006-01-13 [paul]       1.9.100cvs141
5983
5984         * src/account.c
5985         * src/export.c
5986         * src/import.c
5987         * src/mainwindow.c
5988         * src/prefs_account.c
5989         * src/prefs_display_header.c
5990         * src/prefs_receive.c
5991         * src/prefs_send.c
5992         * src/prefs_summaries.c
5993         * src/prefs_themes.c
5994         * src/prefs_toolbar.c
5995         * src/gtk/about.c
5996                 various cleanups
5997
5998 2006-01-12 [colin]      1.9.100cvs140
5999
6000         * src/folder.c
6001         * src/folder.h
6002         * src/main.c
6003                 Add --subscribe option
6004                 Let sylpheed-claws email@domain.com equivalent to --compose
6005                 Let sylpheed-claws proto://blah.com equivalent to --subscribe
6006
6007 2006-01-12 [paul]       1.9.100cvs139
6008
6009         * src/mainwindow.c
6010                 append 'Change folder order' label with '...'
6011         * src/prefs_actions.c
6012                 allow reordering of actions list by dnd
6013         * src/gtk/foldersort.c
6014                 make the dialog nicer
6015
6016 2006-01-11 [colin]      1.9.100cvs138
6017
6018         * src/compose.c
6019                 Allow templates without text
6020
6021 2006-01-11 [paul]       1.9.100cvs137
6022
6023         * tools/README
6024         * tools/filter_conv_new.pl
6025                 add info to README
6026                 also check .sylpheed for filter.xml
6027                 be a bit informative to the user
6028
6029 2006-01-11 [colin]      1.9.100cvs136
6030
6031         * src/textview.c
6032                 Fix bug #888 (2.0.0rc3 not displaying image in message view)
6033
6034 2006-01-10 [paul]       1.9.100cvs135
6035
6036         * tools/Makefile.am
6037         * tools/filter_conv_new.pl
6038                 add script to convert new style Sylpheed
6039                 filter rules (Sylpheed >= 0.9.99) to
6040                 Claws filtering rules
6041
6042 2006-01-10 [colin]      1.9.100cvs134
6043
6044         * src/compose.c
6045                 Fix broken line joins in certain conditions
6046                 (between two quoted lines: <enter><enter><up>
6047                  <type a wrapped sentence><go in the first line>
6048                  <insert more text><watch as line joining failed>)
6049
6050 2006-01-10 [paul]       1.9.100cvs133
6051
6052         * src/compose.c
6053                 don't report success in error dialog
6054                 thanks to Colin
6055         * src/common/utils.c
6056                 include some trailing punctuations as URI
6057                 thanks to Hiro
6058
6059 2006-01-10 [paul]       1.9.100cvs132
6060
6061         * src/mimeview.c
6062                 fix incompatible pointer type
6063                 warning
6064
6065 2006-01-10 [paul]       1.9.100cvs131
6066
6067         * src/compose.c
6068                 change Subject in window title
6069                 instantaneously
6070
6071 2006-01-09 [colin]      1.9.100cvs130
6072
6073         * src/addressbook.c
6074         * src/headerview.c
6075         * src/mainwindow.c
6076         * src/messageview.c
6077         * src/mimeview.c
6078         * src/noticeview.c
6079         * src/summaryview.c
6080                 Fix possible crashes on exit and in addressbook
6081
6082 2006-01-09 [paul]       1.9.100cvs129
6083
6084         * src/prefs_msg_colors.c
6085                 some cleanups that I forgot last time
6086
6087 2006-01-09 [paul]       1.9.100cvs128
6088
6089         * README
6090         * src/folderview.c
6091         * src/prefs_msg_colors.c
6092                 add previously hidden option, color_new, to
6093                 the gui
6094                 move the page to Display/
6095                 rework the gui
6096
6097 2006-01-09 [wwp]        1.9.100cvs127
6098
6099         * src/prefs_themes.c
6100                 made the prefs/display/themes layouts spacing less condensed
6101                 (and so they match other prefs/pages' look).
6102
6103 2006-01-09 [paul]       1.9.100cvs126
6104
6105         * src/compose.c
6106         * src/prefs_common.c
6107         * src/prefs_common.h
6108         * src/prefs_wrapping.c
6109                 remove 'wrap at send' option
6110
6111 2006-01-06 [colin]      1.9.100cvs125
6112
6113         * src/compose.c
6114                 Just make completely sure we don't insert "manual line breaks" 
6115                 when wrapping... 
6116
6117 2006-01-04 [paul]
6118
6119         * 2.0.0-rc3 released
6120
6121 2006-01-04 [paul]       1.9.100cvs124
6122
6123         * src/folderview.c
6124                 fix bug 882, 'quick scroll in folder list
6125                 displays wrong folder contents'
6126
6127 2006-01-04 [paul]       1.9.100cvs123
6128
6129         * src/plugins/pgpmime/pgpmime.c
6130                 better debug information when signing
6131                 Patch by Ivan F. Martinez <ivanfm@users.sourceforge.net>
6132
6133 2006-01-03 [colin]      1.9.100cvs122
6134
6135         * configure.ac
6136                 We need to recheck for gpgme 1.0.0 after checking
6137                 for 1.1.1, because if 1.1.1 isn't available, 
6138                 GPGME_LIBS and friends are blanked out by the 
6139                 second check.
6140
6141 2006-01-03 [colin]      1.9.100cvs121
6142
6143         * src/common/prefs.c
6144                 Windows unlink-before rename fix
6145         * src/plugins/pgpcore/sgpgme.c
6146                 Add support for PKA info if available
6147                 Both patches by Werner Koch
6148
6149 2006-01-03 [paul]       1.9.100cvs120
6150
6151         * src/messageview.c
6152                 fix bug 884, 'Send receipt' button visible in queue
6153                 Thanks to Colin
6154
6155 2006-01-02 [colin]      1.9.100cvs119
6156
6157         * src/compose.c
6158         * src/imap.c
6159                 Fix autosave on IMAP and more generally try to
6160                 return the correct ID on a newly added IMAP message
6161
6162 2006-01-02 [paul]       1.9.100cvs118
6163
6164         * manual/keyboard.xml
6165                 edited
6166
6167 2006-01-01 [paul]       1.9.100cvs117
6168
6169         * src/gtk/authors.h
6170                 alphabetical order
6171
6172 2005-12-30 [colin]      1.9.100cvs116
6173
6174         * manual/advanced.xml
6175                 Explain Pre/Post-processing differences.
6176
6177 2005-12-30 [colin]      1.9.100cvs115
6178
6179         * src/mh.c
6180                 Implement copy_msgs for a little optimization
6181         * src/imap.c
6182                 Finish yesterday's fix
6183
6184 2005-12-29 [colin]      1.9.100cvs114
6185
6186         * src/imap.c
6187                 Fix occasional failure in fetching a mail over
6188                 IMAP
6189
6190 2005-12-29 [colin]      1.9.100cvs113
6191
6192         * src/compose.c
6193                 Don't remove a draft when sending it, if it is 
6194                 locked.
6195
6196 2005-12-28 [colin]      1.9.100cvs112
6197
6198         * src/summaryview.c
6199                 Fix leak for real
6200
6201 2005-12-28 [wwp]        1.9.100cvs111
6202
6203         * doc/faq/.cvsignore
6204         * doc/faq/de/.cvsignore
6205         * doc/faq/en/.cvsignore
6206         * doc/faq/es/.cvsignore
6207         * doc/faq/fr/.cvsignore
6208         * doc/faq/it/.cvsignore
6209         * doc/manual/.cvsignore
6210         * doc/manual/de/.cvsignore
6211         * doc/manual/en/.cvsignore
6212         * doc/manual/es/.cvsignore
6213         * doc/manual/fr/.cvsignore
6214         * doc/manual/ja/.cvsignore
6215         * src/plugins/mathml_viewer/.cvsignore
6216                 rollback revival of those files (my bad, sorry for the noise).
6217
6218 2005-12-28 [wwp]        1.9.100cvs110
6219
6220         * src/compose.c
6221                 fix a minor wrapping issue w/ autowrap disabled (patch by Colin).
6222
6223 2005-12-28 [wwp]        1.9.100cvs109
6224
6225         * doc/faq/.cvsignore
6226         * doc/faq/de/.cvsignore
6227         * doc/faq/en/.cvsignore
6228         * doc/faq/es/.cvsignore
6229         * doc/faq/fr/.cvsignore
6230         * doc/faq/it/.cvsignore
6231         * doc/manual/.cvsignore
6232         * doc/manual/de/.cvsignore
6233         * doc/manual/en/.cvsignore
6234         * doc/manual/es/.cvsignore
6235         * doc/manual/fr/.cvsignore
6236         * doc/manual/ja/.cvsignore
6237         * src/plugins/mathml_viewer/.cvsignore
6238         * po/.cvsignore
6239                 more files to ignore.
6240
6241 2005-12-24 [colin]      1.9.100cvs108
6242
6243         * AUTHORS
6244         * src/gtk/authors.h
6245                 Update for Werner
6246
6247 2005-12-24 [colin]      1.9.100cvs107
6248
6249         * src/procmsg.c
6250                 Allow NULL src_msginfo in 
6251                 procmsg_msginfo_new_from_mimeinfo
6252
6253 2005-12-23 [paul]       1.9.100cvs106
6254
6255         * src/plugins/pgpinline/mypgpcore.def
6256                 add this forgotten file
6257
6258 2005-12-23 [colin]      1.9.100cvs105
6259
6260         * src/mainwindow.c
6261                 Fix missing break
6262
6263 2005-12-23 [colin]      1.9.100cvs104
6264
6265         * autogen.sh
6266         * src/folder.c
6267         * src/mh.c
6268         * src/common/plugin.c
6269         * src/common/socket.c
6270         * src/common/socket.h
6271         * src/common/utils.c
6272         * src/common/utils.h
6273         * src/gtk/pluginwindow.c
6274         * src/plugins/pgpcore/plugin.def
6275         * src/plugins/pgpcore/sylpheed.def
6276         * src/plugins/pgpinline/Makefile.am
6277         * src/plugins/pgpinline/plugin.def
6278         * src/plugins/pgpinline/sylpheed.def
6279         * src/plugins/pgpmime/plugin.def
6280         * src/plugins/pgpmime/sylpheed.def
6281                 Various w32 fixes by Werner Koch
6282
6283 2005-12-22 [paul]       1.9.100cvs103
6284
6285         * src/wizard.c
6286                 don't offer IMAP as 'server type' if
6287                 libetpan isn't built in
6288
6289 2005-12-22 [paul]       1.9.100cvs102
6290
6291         * AUTHORS
6292         * src/mainwindow.c
6293         * src/mainwindow.h
6294         * src/toolbar.c
6295         * src/gtk/authors.h
6296                 support GTK_TOOLBAR_BOTH_HORIZ (text
6297                 next to icon) Patch by Marien Zwart
6298                 marienz@users.sf.net
6299                 Also reword the text
6300
6301 2005-12-21 [colin]      1.9.100cvs101
6302
6303         * configure.ac
6304                 Fix DATADIRNAME
6305         * COPYING
6306                 Fix missing section and explicit the exception better
6307         * src/compose.c
6308                 Prevent mail from being lost without notice when an
6309                 SMTP error happens on trying to send an unmodified
6310                 drafted mail.
6311         * src/send_message.c
6312         * src/common/smtp.c
6313                 Fix password remembering when wrong, and add return
6314                 value checks where they should have been
6315         * src/plugins/pgpcore/sylpheed.def
6316         * src/plugins/pgpinline/sylpheed.def
6317         * src/plugins/pgpmime/sylpheed.def
6318                 Add a few symbols needed
6319
6320 2005-12-21 [paul]       1.9.100cvs100
6321
6322         * m4/codeset.m4
6323         * m4/glibc21.m4
6324         * m4/intdiv0.m4
6325         * m4/inttypes-pri.m4
6326         * m4/inttypes.m4
6327         * m4/inttypes_h.m4
6328         * m4/isc-posix.m4
6329         * m4/lcmessage.m4
6330         * m4/stdint_h.m4
6331         * m4/uintmax_t.m4
6332                 gettextization
6333                 thanks to Colin
6334
6335 2005-12-21 [paul]       1.9.100cvs99
6336
6337         * po/sv.po
6338                 fixed by Colin
6339
6340 2005-12-20 [paul]       1.9.100cvs98
6341
6342         * po/sv.po
6343                 updated by Anders Trobäck
6344
6345 2005-12-20 [colin]      1.9.100cvs97
6346
6347         * ABOUT-NLS
6348         * Makefile.am
6349         * autogen.sh
6350         * configure.ac
6351         * config/config.rpath
6352         * config/mkinstalldirs
6353         * m4/Makefile.am
6354         * m4/glibc2.m4
6355         * m4/gnupg.m4
6356         * m4/gpgme.m4
6357         * m4/intmax.m4
6358         * m4/longdouble.m4
6359         * m4/longlong.m4
6360         * m4/printf-posix.m4
6361         * m4/signed.m4
6362         * m4/size_max.m4
6363         * m4/ulonglong.m4
6364         * m4/wchar_t.m4
6365         * m4/wint_t.m4
6366         * m4/xsize.m4
6367         * po/Makefile.in.in
6368         * po/Makevars
6369         * po/bg.po
6370         * po/ca.po
6371         * po/cs.po
6372         * po/de.po
6373         * po/el.po
6374         * po/en_GB.po
6375         * po/es.po
6376         * po/fi.po
6377         * po/fr.po
6378         * po/hr.po
6379         * po/hu.po
6380         * po/it.po
6381         * po/ja.po
6382         * po/ko.po
6383         * po/nb.po
6384         * po/nl.po
6385         * po/pl.po
6386         * po/pt_BR.po
6387         * po/ru.po
6388         * po/sk.po
6389         * po/sr.po
6390         * po/stamp-po
6391         * po/sv.po
6392         * po/zh_CN.po
6393         * po/zh_TW.po
6394         * src/Makefile.am
6395         * src/codeconv.c
6396         * src/compose.c
6397         * src/exporthtml.c
6398         * src/exportldif.c
6399         * src/folder.c
6400         * src/main.c
6401         * src/manual.c
6402         * src/mh.c
6403         * src/mimeview.c
6404         * src/send_message.c
6405         * src/common/Makefile.am
6406         * src/common/fnmatch.c
6407         * src/common/fnmatch.h
6408         * src/common/fnmatch_loop.c
6409         * src/common/nntp.c
6410         * src/common/plugin.c
6411         * src/common/smtp.c
6412         * src/common/socket.c
6413         * src/common/string_match.c
6414         * src/common/sylpheed.c
6415         * src/common/utils.c
6416         * src/common/utils.h
6417         * src/common/w32_dirent.c
6418         * src/common/w32_reg.c
6419         * src/common/w32_signal.c
6420         * src/common/w32_stat.c
6421         * src/common/w32_stdio.c
6422         * src/common/w32_stdlib.c
6423         * src/common/w32_string.c
6424         * src/common/w32_time.c
6425         * src/common/w32_unistd.c
6426         * src/common/w32_wait.c
6427         * src/common/w32lib.h
6428         * src/etpan/Makefile.am
6429         * src/gtk/Makefile.am
6430         * src/plugins/clamav/Makefile.am
6431         * src/plugins/demo/Makefile.am
6432         * src/plugins/dillo_viewer/Makefile.am
6433         * src/plugins/pgpcore/Makefile.am
6434         * src/plugins/pgpcore/passphrase.c
6435         * src/plugins/pgpcore/plugin.def
6436         * src/plugins/pgpcore/sgpgme.c
6437         * src/plugins/pgpcore/sylpheed.def
6438         * src/plugins/pgpcore/version.rc
6439         * src/plugins/pgpinline/Makefile.am
6440         * src/plugins/pgpinline/plugin.def
6441         * src/plugins/pgpinline/sylpheed.def
6442         * src/plugins/pgpinline/version.rc
6443         * src/plugins/pgpmime/Makefile.am
6444         * src/plugins/pgpmime/mypgpcore.def
6445         * src/plugins/pgpmime/plugin.def
6446         * src/plugins/pgpmime/sylpheed.def
6447         * src/plugins/pgpmime/version.rc
6448         * src/plugins/spamassassin/Makefile.am
6449                 Very little ;-) patch from Werner Koch, providing
6450                 infrastructure for cross-compiling to Win32
6451
6452 2005-12-20 [paul]       1.9.100cvs96
6453
6454         * src/account.c
6455         * src/account.h
6456         * src/mainwindow.c
6457         * src/mainwindow.h
6458         * src/toolbar.c
6459         * src/toolbar.h
6460                 add a combo to the Get All button, allowing
6461                 quick retrieval from any account
6462                 Patch by Fabien Vantard, slightly modified
6463                 by Colin
6464         * src/gtk/about.c
6465                 i18n fix. Patch by Fabien Vantard
6466
6467 2005-12-19 [colin]      1.9.100cvs95
6468
6469         * src/compose.c
6470         * src/compose.h
6471                 Don't automatically join lines when they've 
6472                 been separated by the user and not automatically
6473
6474 2005-12-19 [paul]       1.9.100cvs94
6475
6476         * src/gtk/pluginwindow.c
6477                 i18n fix.
6478                 Patch by Fabien Vantard
6479
6480 2005-12-15 [paul]       1.9.100cvs93
6481
6482         * src/common/plugin.c
6483         * src/common/plugin.h
6484         * src/gtk/pluginwindow.c
6485         * src/plugins/clamav/clamav_plugin.c
6486         * src/plugins/demo/demo.c
6487         * src/plugins/dillo_viewer/dillo_viewer.c
6488         * src/plugins/pgpcore/plugin.c
6489         * src/plugins/pgpinline/plugin.c
6490         * src/plugins/pgpmime/plugin.c
6491         * src/plugins/spamassassin/spamassassin.c
6492         * src/plugins/trayicon/trayicon.c
6493                 add plugin_version()
6494
6495 2005-12-15 [colin]      1.9.100cvs92
6496
6497         * src/compose.c
6498                 Further fix bug #875
6499
6500 2005-12-15 [paul]       1.9.100cvs91
6501
6502         * src/gtk/filesel.c
6503                 fix attach_load_dir getting set to
6504                 PLUGINDIR on plugin load
6505
6506 2005-12-14 [mones]      1.9.100cvs90
6507
6508         * manual/ack.xml
6509         * manual/keyboard.xml
6510                 Initial draft and some shortcuts added
6511                 
6512         * po/es.po
6513                 Updated translation
6514
6515 2005-12-14 [colin]      1.9.100cvs89
6516
6517         * src/compose.c
6518         * src/imap.c
6519         * src/summaryview.c
6520         * src/gtk/gtkaspell.c
6521                 More leaks fixed
6522         * src/prefs_folder_item.c
6523                 Fix recursive prefs apply
6524
6525
6526 2005-12-14 [colin]      1.9.100cvs88
6527
6528         * src/compose.c
6529                 Fix bug #875 (Freeze On Inline Forward of 
6530                 Large Message)
6531
6532 2005-12-13 [colin]      1.9.100cvs87
6533
6534         * src/compose.c
6535                 Uniq-ify and sort the mimetypes list
6536                 Patch by Fabien Vantard
6537
6538 2005-12-13 [colin]      1.9.100cvs86
6539
6540         * src/imap.c
6541         * src/etpan/imap-thread.c
6542                 Fix leaks (patch by Hoa)
6543         * src/news.c
6544         * src/common/plugin.c
6545                 Fix leaks
6546
6547 2005-12-12 [colin]
6548
6549         * 2.0.0-rc2 released
6550
6551 2005-12-12 [colin]      1.9.100cvs85
6552
6553         * src/matcher.c
6554                 Fix a leak
6555
6556 2005-12-12 [wwp]        1.9.100cvs84
6557
6558         * src/gtk/icon_legend.c
6559                 fix misbehaviour and crash when closing the legend window
6560         using the Esc key (patch by Fabien Vantard).
6561
6562 2005-12-12 [paul]       1.9.100cvs83
6563
6564         * src/browseldap.c
6565         * src/foldersel.c
6566         * src/prefs_actions.c
6567         * src/prefs_filtering.c
6568         * src/prefs_matcher.c
6569         * src/prefs_spelling.glade      ** REMOVED **
6570         * src/prefs_template.c
6571         * src/gtk/foldersort.glade      ** REMOVED **
6572         * src/gtk/pluginwindow.c
6573         * src/gtk/pluginwindow.glade    ** REMOVED **
6574         * src/plugins/spamassassin/spamassassin_gtk.glade       ** REMOVED **
6575                 cleanups
6576
6577 2005-12-11 [paul]       1.9.100cvs82
6578
6579         * src/gtk/filesel.c
6580                 fix attach_load_dir crasher (double free)
6581
6582 2005-12-09 [paul]       1.9.100cvs81
6583
6584         * po/POTFILES.in
6585         * src/mainwindow.c
6586         * src/gtk/Makefile.am
6587         * src/gtk/icon_legend.c
6588         * src/gtk/icon_legend.h
6589                 add icon legend
6590         * src/manual.c
6591                 cleanup
6592
6593 2005-12-09 [paul]       1.9.100cvs80
6594
6595         * src/plugins/pgpcore/passphrase.c
6596                 wrap the label in the dialog
6597
6598 2005-12-09 [colin]      1.9.100cvs79
6599
6600         * src/plugins/pgpcore/sgpgme.c
6601                 Display (untrusted) on not trusted signatures
6602                 Patch by Michal Èihaø <michal@cihar.com>
6603                 Closes bug #867 (Report also key trust)
6604
6605 2005-12-09 [colin]      1.9.100cvs78
6606
6607         * src/common/plugin.c
6608                 Update licence check, following Eben Moglen's advice
6609
6610 2005-12-08 [colin]      1.9.100cvs77
6611
6612         * src/folder.c
6613                 Fix the occasionnal item->cache != NULL 
6614                 assertion failure. 
6615
6616 2005-12-08 [colin]      1.9.100cvs76
6617
6618         * src/mimeview.c
6619         * src/plugins/pgpcore/sgpgme.c
6620                 Print key id when unable to check it
6621                 Closes bug #866 (Show key id when missing)
6622
6623 2005-12-08 [paul]       1.9.100cvs75
6624
6625         * src/prefs_common.c
6626         * src/prefs_common.h
6627         * src/gtk/filesel.c
6628                 remember load attachment dir
6629
6630 2005-12-07 [colin]      1.9.100cvs74
6631
6632         * src/prefs_toolbar.c
6633                 Gtk fixes, patch by Fabien Vantard
6634
6635 2005-12-07 [colin]      1.9.100cvs73
6636
6637         * src/action.c
6638         * src/compose.c
6639         * src/compose.h
6640                 Fix bug #839 (Quoted text isn't colored after 
6641                 executing an action)
6642         * src/common/plugin.c
6643                 Require plugins to declare their licence in plugin_licence()
6644                 Refuse to load non-GPL plugins as they'd be illegal (as 
6645                 derived works of Sylpheed-Claws, they must be GPL).
6646         * src/plugins/clamav/clamav_plugin.c
6647         * src/plugins/demo/demo.c
6648         * src/plugins/dillo_viewer/dillo_viewer.c
6649         * src/plugins/pgpcore/plugin.c
6650         * src/plugins/pgpinline/plugin.c
6651         * src/plugins/pgpmime/plugin.c
6652         * src/plugins/spamassassin/spamassassin.c
6653         * src/plugins/trayicon/trayicon.c
6654                 Add plugin_licence()
6655
6656 2005-12-07 [paul]       1.9.100cvs72
6657
6658         * configure.ac
6659         * src/mainwindow.c
6660         * src/manual.c
6661         * src/manual.h
6662         * src/common/defs.h
6663                 clean up after local FAQ removal and
6664                 temporary manual removal
6665
6666 2005-12-06 [colin]      1.9.100cvs71
6667
6668         * configure.ac
6669         * doc/Makefile.am
6670         * doc/faq/.cvsignore
6671         * doc/faq/Makefile.am
6672         * doc/faq/de/.cvsignore
6673         * doc/faq/de/Makefile.am
6674         * doc/faq/de/sylpheed-faq-1.html
6675         * doc/faq/de/sylpheed-faq-2.html
6676         * doc/faq/de/sylpheed-faq-3.html
6677         * doc/faq/de/sylpheed-faq.html
6678         * doc/faq/en/.cvsignore
6679         * doc/faq/en/Makefile.am
6680         * doc/faq/en/sylpheed-faq-1.html
6681         * doc/faq/en/sylpheed-faq-2.html
6682         * doc/faq/en/sylpheed-faq-3.html
6683         * doc/faq/en/sylpheed-faq-4.html
6684         * doc/faq/en/sylpheed-faq.html
6685         * doc/faq/es/.cvsignore
6686         * doc/faq/es/Makefile.am
6687         * doc/faq/es/sylpheed-faq-1.html
6688         * doc/faq/es/sylpheed-faq-2.html
6689         * doc/faq/es/sylpheed-faq-3.html
6690         * doc/faq/es/sylpheed-faq-4.html
6691         * doc/faq/es/sylpheed-faq.html
6692         * doc/faq/fr/.cvsignore
6693         * doc/faq/fr/Makefile.am
6694         * doc/faq/fr/sylpheed-faq-1.html
6695         * doc/faq/fr/sylpheed-faq-2.html
6696         * doc/faq/fr/sylpheed-faq-3.html
6697         * doc/faq/fr/sylpheed-faq.html
6698         * doc/faq/it/.cvsignore
6699         * doc/faq/it/Makefile.am
6700         * doc/faq/it/sylpheed-faq-1.html
6701         * doc/faq/it/sylpheed-faq-2.html
6702         * doc/faq/it/sylpheed-faq-3.html
6703         * doc/faq/it/sylpheed-faq.html
6704         * doc/manual/.cvsignore
6705         * doc/manual/Makefile.am
6706         * doc/manual/de/.cvsignore
6707         * doc/manual/de/Makefile.am
6708         * doc/manual/de/sylpheed-1.html
6709         * doc/manual/de/sylpheed-10.html
6710         * doc/manual/de/sylpheed-11.html
6711         * doc/manual/de/sylpheed-12.html
6712         * doc/manual/de/sylpheed-13.html
6713         * doc/manual/de/sylpheed-14.html
6714         * doc/manual/de/sylpheed-15.html
6715         * doc/manual/de/sylpheed-16.html
6716         * doc/manual/de/sylpheed-17.html
6717         * doc/manual/de/sylpheed-18.html
6718         * doc/manual/de/sylpheed-19.html
6719         * doc/manual/de/sylpheed-2.html
6720         * doc/manual/de/sylpheed-20.html
6721         * doc/manual/de/sylpheed-3.html
6722         * doc/manual/de/sylpheed-4.html
6723         * doc/manual/de/sylpheed-5.html
6724         * doc/manual/de/sylpheed-6.html
6725         * doc/manual/de/sylpheed-7.html
6726         * doc/manual/de/sylpheed-8.html
6727         * doc/manual/de/sylpheed-9.html
6728         * doc/manual/de/sylpheed.html
6729         * doc/manual/en/.cvsignore
6730         * doc/manual/en/Makefile.am
6731         * doc/manual/en/sylpheed-1.html
6732         * doc/manual/en/sylpheed-10.html
6733         * doc/manual/en/sylpheed-11.html
6734         * doc/manual/en/sylpheed-12.html
6735         * doc/manual/en/sylpheed-13.html
6736         * doc/manual/en/sylpheed-14.html
6737         * doc/manual/en/sylpheed-15.html
6738         * doc/manual/en/sylpheed-16.html
6739         * doc/manual/en/sylpheed-17.html
6740         * doc/manual/en/sylpheed-18.html
6741         * doc/manual/en/sylpheed-19.html
6742         * doc/manual/en/sylpheed-2.html
6743         * doc/manual/en/sylpheed-20.html
6744         * doc/manual/en/sylpheed-21.html
6745         * doc/manual/en/sylpheed-22.html
6746         * doc/manual/en/sylpheed-3.html
6747         * doc/manual/en/sylpheed-4.html
6748         * doc/manual/en/sylpheed-5.html
6749         * doc/manual/en/sylpheed-6.html
6750         * doc/manual/en/sylpheed-7.html
6751         * doc/manual/en/sylpheed-8.html
6752         * doc/manual/en/sylpheed-9.html
6753         * doc/manual/en/sylpheed.html
6754         * doc/manual/es/.cvsignore
6755         * doc/manual/es/Makefile.am
6756         * doc/manual/es/sylpheed-1.html
6757         * doc/manual/es/sylpheed-10.html
6758         * doc/manual/es/sylpheed-11.html
6759         * doc/manual/es/sylpheed-12.html
6760         * doc/manual/es/sylpheed-13.html
6761         * doc/manual/es/sylpheed-14.html
6762         * doc/manual/es/sylpheed-15.html
6763         * doc/manual/es/sylpheed-16.html
6764         * doc/manual/es/sylpheed-17.html
6765         * doc/manual/es/sylpheed-18.html
6766         * doc/manual/es/sylpheed-19.html
6767         * doc/manual/es/sylpheed-2.html
6768         * doc/manual/es/sylpheed-20.html
6769         * doc/manual/es/sylpheed-3.html
6770         * doc/manual/es/sylpheed-4.html
6771         * doc/manual/es/sylpheed-5.html
6772         * doc/manual/es/sylpheed-6.html
6773         * doc/manual/es/sylpheed-7.html
6774         * doc/manual/es/sylpheed-8.html
6775         * doc/manual/es/sylpheed-9.html
6776         * doc/manual/es/sylpheed.html
6777         * doc/manual/fr/.cvsignore
6778         * doc/manual/fr/Makefile.am
6779         * doc/manual/fr/sylpheed-1.html
6780         * doc/manual/fr/sylpheed-10.html
6781         * doc/manual/fr/sylpheed-11.html
6782         * doc/manual/fr/sylpheed-12.html
6783         * doc/manual/fr/sylpheed-13.html
6784         * doc/manual/fr/sylpheed-14.html
6785         * doc/manual/fr/sylpheed-15.html
6786         * doc/manual/fr/sylpheed-16.html
6787         * doc/manual/fr/sylpheed-17.html
6788         * doc/manual/fr/sylpheed-18.html
6789         * doc/manual/fr/sylpheed-19.html
6790         * doc/manual/fr/sylpheed-2.html
6791         * doc/manual/fr/sylpheed-20.html
6792         * doc/manual/fr/sylpheed-3.html
6793         * doc/manual/fr/sylpheed-4.html
6794         * doc/manual/fr/sylpheed-5.html
6795         * doc/manual/fr/sylpheed-6.html
6796         * doc/manual/fr/sylpheed-7.html
6797         * doc/manual/fr/sylpheed-8.html
6798         * doc/manual/fr/sylpheed-9.html
6799         * doc/manual/fr/sylpheed.html
6800         * doc/manual/ja/.cvsignore
6801         * doc/manual/ja/Makefile.am
6802         * doc/manual/ja/sylpheed-1.html
6803         * doc/manual/ja/sylpheed-10.html
6804         * doc/manual/ja/sylpheed-11.html
6805         * doc/manual/ja/sylpheed-12.html
6806         * doc/manual/ja/sylpheed-13.html
6807         * doc/manual/ja/sylpheed-14.html
6808         * doc/manual/ja/sylpheed-15.html
6809         * doc/manual/ja/sylpheed-16.html
6810         * doc/manual/ja/sylpheed-17.html
6811         * doc/manual/ja/sylpheed-18.html
6812         * doc/manual/ja/sylpheed-19.html
6813         * doc/manual/ja/sylpheed-2.html
6814         * doc/manual/ja/sylpheed-20.html
6815         * doc/manual/ja/sylpheed-3.html
6816         * doc/manual/ja/sylpheed-4.html
6817         * doc/manual/ja/sylpheed-5.html
6818         * doc/manual/ja/sylpheed-6.html
6819         * doc/manual/ja/sylpheed-7.html
6820         * doc/manual/ja/sylpheed-8.html
6821         * doc/manual/ja/sylpheed-9.html
6822         * doc/manual/ja/sylpheed.html
6823         * doc/manual/ja/sylpheed.sgml
6824         * src/mainwindow.c
6825                 Remove outdated manual and faq. Noisy, eh?
6826
6827 2005-12-06 [colin]      1.9.100cvs70
6828
6829         * src/compose.c
6830         * src/quote_fmt_parse.y
6831         * src/undo.c
6832         * src/undo.h
6833                 Allow %X to position cursor at 0 
6834                 (no %X = before signature)
6835                 Fix paste as quotation putting the cursor at 0
6836                 Fix undo offsets when pasting
6837                 Insert the quote_fmt at once instead of line 
6838                 by line
6839                 Fix [Edited] when starting to reply/forward
6840
6841 2005-12-06 [paul]       1.9.100cvs69
6842
6843         * src/plugins/clamav/clamav_plugin_gtk.c
6844                 add another tooltip
6845         * src/plugins/spamassassin/spamassassin_gtk.c
6846                 rework spamassassin_create_widget_func()
6847
6848 2005-12-05 [colin]      1.9.100cvs68
6849
6850         * po/POTFILES.in
6851                 Fix make release ;-)
6852
6853 2005-12-05 [colin]      1.9.100cvs67
6854
6855         * src/compose.c
6856         * src/compose.h
6857                 Fix cursor positioning (not obeying %X)
6858
6859 2005-12-05 [paul]       1.9.100cvs66
6860
6861         * src/plugins/dillo_viewer/dillo_prefs.c
6862                 fix compilation warning
6863
6864 2005-12-05 [paul]       1.9.100cvs65
6865
6866         * src/prefs_spelling.c
6867         * src/plugins/trayicon/trayicon.c
6868                 cleanups - remove unused stuff
6869
6870 2005-12-05 [paul]       1.9.100cvs64
6871
6872         * README
6873         * manual/plugins.xml
6874                 remove info about removed mathml_viewer plugin
6875
6876 2005-12-05 [paul]       1.9.100cvs63
6877
6878         * configure.ac
6879         * src/plugins/Makefile.am
6880         * src/plugins/mathml_viewer/.cvsignore
6881         * src/plugins/mathml_viewer/Makefile.am
6882         * src/plugins/mathml_viewer/mathml_viewer.c
6883                 remove unmaintained mathml_viewer plugin
6884
6885 2005-12-05 [paul]       1.9.100cvs62
6886
6887         * src/summaryview.c
6888                 obey prefs_common.always_show_msg when
6889                 moving a msg
6890                 Thanks to Colin
6891
6892 2005-12-05 [paul]       1.9.100cvs61
6893
6894         * src/compose.c
6895         * src/prefs_account.c
6896         * src/prefs_filtering.c
6897         * src/prefs_quote.c
6898         * src/prefs_spelling.c
6899         * src/prefs_toolbar.c
6900         * src/summaryview.c
6901         * src/gtk/gtkutils.c
6902         * src/gtk/quicksearch.c
6903         * src/plugins/dillo_viewer/dillo_prefs.c
6904                 dialog cleanups
6905
6906 2005-12-04 [paul]       1.9.100cvs60
6907
6908         * src/inc.c
6909         * src/prefs_account.c
6910         * src/prefs_account.h
6911                 allow a Local account to specify a
6912                 default inbox
6913                 (closes bug 843 'Inbox cannot be changed for local
6914                  mailboxes')
6915
6916 2005-12-04 [colin]      1.9.100cvs59
6917
6918         * src/plugins/trayicon/trayicon.c
6919                 Remove Get, rename Get All to Get Mail in order to
6920                 be consistent with the default main toolbar
6921
6922 2005-12-03 [colin]      1.9.100cvs58
6923
6924         * manual/gpl.xml
6925         * manual/sylpheed-claws-manual.xml
6926                 Add GPL appendix
6927
6928 2005-12-03 [paul]       1.9.100cvs57
6929
6930         * AUTHORS
6931         * po/sv.po
6932         * src/gtk/authors.h
6933                 new (partially complete) Swedish translation
6934                 by Anders Troback <sylpheed@troback.com>
6935
6936 2005-12-02 [paul]       1.9.100cvs56
6937
6938         * configure.ac
6939                 libetpan 0.41 required
6940
6941 2005-12-02 [paul]       1.9.100cvs55
6942
6943         * src/plugins/clamav/clamav_plugin.c
6944         * src/plugins/clamav/clamav_plugin.h
6945         * src/plugins/clamav/clamav_plugin_gtk.c
6946         * src/plugins/spamassassin/spamassassin.c
6947         * src/plugins/spamassassin/spamassassin.h
6948         * src/plugins/spamassassin/spamassassin_gtk.c
6949                 unregister prefs pages on unloading, thus
6950                 preventing a crash
6951                 (thanks to Colin for the hint)
6952
6953 2005-12-02 [wwp]        1.9.100cvs54
6954
6955         * src/quote_fmt.h
6956         * src/quote_fmt_parse.y
6957                 fix misuse of gboolean*, use gboolean instead
6958                 (thanks to Paul, Colin, for pointing out that scaring one)
6959
6960 2005-12-02 [paul]       1.9.100cvs53
6961
6962         * src/plugins/clamav/clamav_plugin.c
6963                 int no --> unsigned int no
6964         * src/plugins/clamav/clamav_plugin_gtk.c
6965                 rework config page
6966
6967 2005-12-02 [wwp]        1.9.100cvs52
6968
6969         * src/compose.c
6970         * src/prefs_template.c
6971         * src/quote_fmt.h
6972         * src/quote_fmt_parse.y
6973                 prevent from executing |f and |p templates commands when
6974                 adding or replacing templates in prefs (avoids annoying and
6975                 potentially dangerous behaviours)
6976
6977 2005-12-02 [paul]       1.9.100cvs51
6978
6979         * src/prefs_common.c
6980                 allow translation of some default values
6981                 Patch by Fabien Vantard
6982
6983 2005-12-02 [paul]       1.9.100cvs50
6984
6985         * src/codeconv.c
6986         * src/codeconv.h
6987         * src/prefs_common.c
6988         * src/prefs_common.h
6989         * src/prefs_message.c
6990         * src/textview.c
6991                 remove obsolete 'convert_mb_alnum' option
6992                 and related stuff
6993         * src/gtk/about.c
6994                 remove unused 'about_textview_visibility_notify'
6995
6996 2005-12-02 [paul]       1.9.100cvs49
6997
6998         * src/prefs_account.c
6999         * src/prefs_compose_writing.c
7000         * src/prefs_fonts.c
7001         * src/prefs_gtk.h
7002         * src/prefs_image_viewer.c
7003         * src/prefs_message.c
7004         * src/prefs_other.c
7005         * src/prefs_receive.c
7006         * src/prefs_send.c
7007         * src/prefs_spelling.c
7008         * src/prefs_summaries.c
7009         * src/prefs_wrapping.c
7010         * src/plugins/dillo_viewer/dillo_prefs.c
7011         * src/plugins/pgpcore/prefs_gpg.c
7012                 several cleanups to the prefs dialogs
7013                 (slightly modified) patch by Fabien Vantard
7014
7015 2005-12-02 [paul]       1.9.100cvs48
7016
7017         * src/main.c
7018                 --exit means exit
7019         * src/send_message.c
7020                 fix crash on send when connection fails
7021
7022         Thanks to Colin
7023
7024 2005-12-01 [colin]      1.9.100cvs47
7025
7026         * src/html.c
7027                 Translate &hellip; to "..."
7028
7029 2005-11-30 [colin]      1.9.100cvs46
7030
7031         * src/matcher.c
7032         * src/matcher.h
7033                 Optimize back yesterday's fix.
7034
7035 2005-11-30 [paul]       1.9.100cvs45
7036
7037         * manual/faq.xml
7038                 standardised
7039         * manual/intro.xml
7040                 written by Colin, edited by me
7041
7042 2005-11-29 [colin]      1.9.100cvs44
7043
7044         * src/matcher.c
7045                 Skip headers unconditionnaly in match_body if the
7046                 rule is not message or ~message
7047
7048 2005-11-29 [colin]      1.9.100cvs43
7049
7050         * src/matcher.c
7051                 Fix body_part and such, not skipping headers 
7052                 if the matchcriteria wasn't the first in the rule
7053
7054 2005-11-29 [colin]      1.9.100cvs42
7055
7056         * src/compose.c
7057                 Add Windows-1252 (Closes bug #863, windows-1252 encoding 
7058                 option missing from message view window)
7059                 Fix double text D'n'D with gtk-2.8
7060         * src/matcher.c
7061                 Fix ~message, ~headers_part, ~body_part rules
7062         * src/messageview.c
7063                 Add Windows-1252 (Closes bug #863)
7064                 Fix accels
7065         * src/gtk/gtkaspell.c
7066                 Properly destroy accels in all menus
7067
7068 2005-11-29 [mones]      1.9.100cvs41
7069
7070         * po/es.po
7071                 Updated.
7072
7073 2005-11-27 [colin]      1.9.100cvs40
7074
7075         * src/mh_gtk.c
7076                 "/Remove mailbox" -> "/Remove mailbox..."
7077
7078 2005-11-27 [paul]       1.9.100cvs39
7079
7080         * AUTHORS
7081         * po/de.po
7082         * src/gtk/authors.h
7083                 updated by new maintainer, Stephan Sachse
7084
7085 2005-11-27 [paul]       1.9.100cvs38
7086
7087         * manual/faq.xml
7088                 written by Colin, edited by me
7089
7090 2005-11-27 [paul]       1.9.100cvs37
7091
7092         * src/prefs_common.c
7093         * src/prefs_common.h
7094         * src/prefs_receive.c
7095         * src/prefs_summaries.c
7096                 move 'go to inbox after receiving new mail'
7097                 option from display/sumamaries to mail
7098                 handling/receive, and rework prefs_summaries
7099                 dialog a little
7100
7101 2005-11-25 [martin]     1.9.100cvs36
7102
7103         * po/de.po
7104             fixed windows-1252 translation;
7105             translated some new and fuzzy strings
7106
7107 2005-11-25 [paul]       1.9.100cvs35
7108
7109         * src/plugins/clamav/clamav_plugin.c
7110                 complete the update done in cvs34
7111
7112 2005-11-25 [paul]       1.9.100cvs34
7113
7114         * src/plugins/clamav/clamav_plugin.c
7115                 reflect upstream changes
7116
7117 2005-11-25 [paul]       1.9.100cvs33
7118
7119         * manual/ack.xml
7120         * manual/plugins.xml
7121         * manual/sylpheed-claws-manual.xml
7122                 written/updated by Colin, edited by me
7123         * tools/acroread2sylpheed.pl
7124                 update binary name
7125
7126 2005-11-24 [colin]      1.9.100cvs32
7127
7128         * src/compose.c
7129                 Fix bug #856 (reediting messages forgets Request
7130                 Return Receipt)
7131
7132 2005-11-24 [paul]       1.9.100cvs31
7133
7134         * manual/addrbook.xml
7135         * manual/starting.xml
7136                 written by Colin, proofread, edited, adapted by me
7137         * manual/advanced.xml
7138                 add some Actions examples
7139         * src/importldif.c
7140                 use a Save button instead of a Close button
7141         * src/wizard.c
7142                 indicate mandatory fields
7143                 fix page display
7144                 Thanks to Colin
7145
7146 2005-11-23 [colin]      1.9.100cvs30
7147
7148         * src/addressbook.c
7149                 Rename menu item, fix possible crash after
7150                 deletion of books
7151         * src/addrindex.c
7152                 Allow searching for '*' in ldap
7153         * src/browseldap.c
7154                 Fix "Browse Entry" (did anyone use it?)
7155         * src/wizard.c
7156                 Add guards for mandatory information
7157
7158 2005-11-23 [paul]       1.9.100cvs29
7159
7160         * manual/advanced.xml
7161                 corrections to the English
7162
7163 2005-11-23 [colin]      1.9.100cvs28
7164
7165         * src/mimeview.c
7166                 Fix possible crash at exit. After the call to
7167                 gtk_container_remove(), the Viewer's widget has no
7168                 more parent so gtk+ automatically frees it and its
7169                 sons. If destroy_viewer() then try to access it,
7170                 problems ensue.
7171
7172 2005-11-22 [colin]      1.9.100cvs27
7173
7174         * src/compose.c
7175         * src/gtk/gtkaspell.c
7176                 Fix right-clicking on a misspelled word
7177                 Fix More... in suggestions menu
7178
7179 2005-11-22 [wwp]        1.9.100cvs26
7180
7181         * src/prefs_template.c
7182                 templates works: re-sort templates list when adding or replacing,
7183                 prevent from adding or replacing when the template name is empty
7184
7185 2005-11-21 [colin]      1.9.100cvs25
7186
7187         * src/addressbook.c
7188                 Fix some addressbook suckage (dnd, select all)
7189         * src/compose.c
7190         * src/gtk/gtkaspell.c
7191         * src/gtk/gtkaspell.h
7192                 Make the spellchecker menu work with the 
7193                 GtkTextView one instead of overriding it
7194
7195 2005-11-20 [paul]       1.9.100cvs24
7196
7197         * manual/handling.xml
7198                 proofread and corrected
7199
7200 2005-11-20 [paul]       1.9.100cvs23
7201
7202         * manual/Makefile
7203                 generate html as one file
7204         * manual/advanced.xml
7205                 fix output generation
7206                 reformat hidden options list
7207         * manual/manual.xml     ** REMOVED **
7208         * manual/sylpheed-claws-manual.xml      ** ADDED **
7209                 renamed
7210
7211 2005-11-18 [colin]      1.9.100cvs22
7212
7213         * src/prefs_account.c
7214                 Fix layout in news and mbox accounts
7215         * manual/account.xml
7216         * manual/advanced.xml
7217                 New contents for Paul to check :)
7218
7219 2005-11-18 [wwp]        1.9.100cvs21
7220
7221         * src/gtk/quicksearch.c
7222                 don't update extended quicksearch buttons twice
7223
7224 2005-11-18 [paul]       1.9.100cvs20
7225
7226         * src/textview.c
7227                 complete 1.9.100cvs19
7228
7229 2005-11-18 [paul]       1.9.100cvs19
7230
7231         * src/compose.c
7232                 cosmetic improvements
7233         * src/textview.c
7234                 also list text/* attachments
7235
7236 2005-11-18 [colin]      1.9.100cvs18
7237
7238         * src/summaryview.c
7239                 Use column 0 instead of -1 in 
7240                 gtk_ctree_node_moveto, in a naive
7241                 hope it'll fix the gtk-related crashes
7242
7243 2005-11-18 [colin]      1.9.100cvs17
7244
7245         * src/gtk/inputdialog.c
7246                 Fix icon staying the first one
7247
7248 2005-11-17 [wwp]        1.9.100cvs16
7249                 fix possible problem showing some quicksearch buttons, and a bad
7250                 call to g_return_if_fail in a function that returns a value (both
7251                 fixes by Fabien Vantard)
7252
7253 2005-11-15 [wwp]        1.9.100cvs15
7254
7255         * src/gtk/quicksearch.c
7256                 added a tooltip to that obscure ... quicksearch button
7257
7258 2005-11-15 [wwp]        1.9.100cvs14
7259
7260         * src/gtk/quicksearch.c
7261                 add a quicksearch helper to filtering expression users: the ... button
7262                 raises the condition expr window. condition expressions set up w/ this
7263                 window are used by the quicksearch if the user closes it pressing OK.
7264
7265 2005-11-14 [paul]       1.9.100cvs13
7266
7267         * src/plugins/clamav/clamav_plugin.c
7268         * src/plugins/spamassassin/spamassassin.c
7269                 change plugin type following recent merging
7270
7271 2005-11-14 [wwp]        1.9.100cvs12
7272
7273         * src/folder.c
7274                 prevent from crashing when copying/moving message(s) from and
7275                 to the same folder
7276
7277 2005-11-14 [paul]       1.9.100cvs11
7278
7279         * src/plugins/clamav/Makefile.am
7280         * src/plugins/clamav/clamav_plugin.c
7281         * src/plugins/clamav/clamav_plugin.h
7282         * src/plugins/clamav/clamav_plugin_gtk.c
7283                 also merge clamav and clamav_gtk plugins
7284
7285 2005-11-13 [colin]      1.9.100cvs10
7286
7287         * configure.ac
7288         * src/plugins/spamassassin/Makefile.am
7289         * src/plugins/spamassassin/spamassassin.c
7290         * src/plugins/spamassassin/spamassassin.h
7291         * src/plugins/spamassassin/spamassassin_gtk.c
7292                 Merge spamassassin and spamassassin_gtk plugins,
7293                 and build it by default.
7294
7295 2005-11-12 [colin]      1.9.100cvs9
7296
7297         * src/etpan/imap-thread.c
7298                 Fix gcc warning
7299
7300 2005-11-12 [colin]      1.9.100cvs8
7301
7302         * src/procmime.c
7303                 Revert 1.9.100cvs3 - it breaks PGP sign+encrypt
7304
7305 2005-11-10 [colin]      1.9.100cvs7
7306
7307         * src/main.c
7308                 Fix bug #845 (sylpheed-claws 1.9.99+ start in 
7309                 minimised state)
7310
7311 2005-11-10 [wwp]        1.9.100cvs6
7312
7313         * src/gtk/description_window.c
7314                 fix a crash when closing description windows using the WM's [X] button
7315
7316 2005-11-09 [colin]      1.9.100cvs5
7317
7318         * src/common/ssl.c
7319                 Update libetpan call to follow upstream
7320                 (yes, this requires libetpan-0.40cvs3)
7321
7322 2005-11-08 [colin]      1.9.100cvs4
7323
7324         * src/compose.c
7325         * src/textview.c
7326         * src/common/utils.c
7327         * src/common/utils.h
7328                 Enhance the email parser
7329
7330 2005-11-08 [colin]      1.9.100cvs3
7331
7332         * src/procmime.c
7333                 Fix what looks like an off-by-one (fixes 
7334                 attachments from the Bat)
7335
7336 2005-11-08 [wwp]        1.9.100cvs2
7337
7338         * src/main.c
7339                 renamed some occurrences of "Sylpheed" to "Sylpheed-Claws"
7340
7341 2005-11-08 [wwp]        1.9.100cvs1
7342
7343         * src/main.c
7344                 allow exiting Sylpheed-Claws from command-line
7345
7346 2005-11-08 [paul]       1.9.100
7347
7348         1.9.100 released
7349
7350 2005-11-07 [colin]      1.9.99cvs17
7351
7352         * src/addritem.c
7353         * src/ldif.c
7354                 Fix import of base-64 encoded items
7355
7356 2005-11-07 [colin]      1.9.99cvs16
7357
7358         * src/send_message.c
7359                 Fix bug #314 (Queue does not empty under certain 
7360                 circumstances)
7361
7362 2005-11-07 [paul]       1.9.99cvs15
7363
7364         * src/mutt.c
7365         * src/pine.c
7366                 fix buffer overflows
7367                 Thanks to Colin
7368
7369 2005-11-07 [paul]       1.9.99cvs14
7370
7371         * doc/man/Makefile.am
7372         * doc/man/sylpheed-claws.1      ** ADDED **
7373         * doc/man/sylpheed.1            ** DELETED **
7374                 rename and update the man file
7375
7376 2005-11-06 [colin]      1.9.99cvs13
7377
7378         * src/ldif.c
7379                 Fix ldif_get_line() that returned empty strings
7380                 (Didn't understand why). Also fix a possible
7381                 buffer overflow.
7382
7383 2005-11-06 [wwp]        1.9.99cvs12
7384
7385         * src/textview.c
7386         * src/gtk/about.c
7387         * src/gtk/gtkutils.c
7388         * src/gtk/gtkutils.h
7389                 fix a compilation warning,
7390                 make links sensitive in the about dialog
7391
7392 2005-11-04 [wwp]        1.9.99cvs11
7393
7394         * src/gtk/about.c
7395                 don't wrap or translate URIs, and a bit text format cleanup
7396
7397 2005-11-04 [wwp]        1.9.99cvs10
7398
7399         * src/gtk/about.c
7400                 better textview tagging implementation (no more use of marks for
7401                 postponed tagging)
7402
7403 2005-11-02 [colin]      1.9.99cvs9
7404
7405         * src/common/ssl.c
7406                 Forgot an ifdef
7407
7408 2005-11-02 [colin]      1.9.99cvs8
7409
7410         * configure.ac
7411                 Require libetpan-0.40 due to upstream fix
7412         * src/common/ssl.c
7413                 Tell libetpan not to call SSL_Library_Init,
7414                 as we do it ourselves.
7415
7416 2005-11-02 [colin]      1.9.99cvs7
7417
7418         * po/POTFILES.in
7419                 Add missing files (thanks to Fabien Vantard)
7420
7421 2005-11-02 [colin]      1.9.99cvs6
7422
7423         * src/summaryview.c
7424                 Fix totals when read messages are hidden or quicksearch
7425                 is on
7426         * src/ssl_manager.c
7427         * src/ssl_manager.h
7428         * src/common/ssl_certificate.c
7429         * src/common/ssl_certificate.h
7430         * src/gtk/sslcertwindow.c
7431         * src/gtk/sslcertwindow.h
7432                 Fix copyright on my stuff
7433
7434 2005-11-02 [wwp]        1.9.99cvs5
7435
7436         * src/prefs_themes.c
7437                 fix directory name checking (theme installation/removal),
7438                 made related error a bit more verbose
7439
7440 2005-11-02 [colin]      1.9.99cvs4
7441
7442         * src/summaryview.c
7443                 Fix typo (probably fixes bug #841 (Sort by the From 
7444                 field doesn't work)
7445
7446 2005-11-02 [paul]       1.9.99cvs3
7447
7448         * po/ko.po
7449         * po/nb.po
7450                 updated by SungHyun Nam, Geir Helland
7451         * src/wizard.c
7452                 fix typo in welcome message. spotted by
7453                 Andrea Spadaccini
7454
7455 2005-11-01 [colin]      1.9.99cvs2
7456
7457         * src/compose.c
7458                 Fix replying to ml wen confirming subscription
7459         * src/messageview.c
7460         * src/mimeview.c
7461         * src/mimeview.h
7462         * src/privacy.h
7463         * src/summaryview.c
7464                 Make key check non blocking
7465
7466 2005-10-31 [paul]       1.9.99cvs1
7467
7468         * tools/claws.i18n.status.pl
7469                 updated for ChangeLog
7470
7471 2005-10-31 [paul]       1.9.99
7472
7473         1.9.99 released
7474
7475 2005-10-31 [paul]       1.9.15cvs131
7476
7477         * .cvsignore
7478         * ChangeLog
7479         * ChangeLog.claws       ** REMOVED **
7480         * ChangeLog-gtk2.claws  ** REMOVED **
7481         * ChangeLog.gtk1        ** ADDED **
7482         * INSTALL
7483         * Makefile.am
7484         * NEWS
7485         * README
7486         * README.claws          ** REMOVED **
7487         * README.jp             ** REMOVED **
7488         * RELEASE_NOTES         ** ADDED **
7489         * RELEASE_NOTES.claws   ** REMOVED **
7490         * commitHelper
7491         * configure.ac
7492         * sylpheed.spec.in      ** REMOVED **
7493                 tidy up and update the default docs:
7494                 ChangeLog.claws is renamed ChangeLog.gtk1
7495                 ChangeLog-gtk2.claws is renamed ChangeLog
7496                 README.claws is renamed README
7497                 RELEASE_NOTES.claws is renamed RELEASE_NOTES
7498
7499 2005-10-31 [paul]       1.9.15cvs130
7500
7501         * po/it.po
7502                 fix errors
7503
7504 2005-10-31 [paul]       1.9.15cvs129
7505
7506         * po/ca.po
7507         * po/de.po
7508         * po/en_GB.po
7509         * po/fr.po
7510         * po/it.po
7511         * po/pt_BR.po
7512         * po/sk.po
7513         * po/sr.po
7514         * po/zh_CN.po
7515                 updated by Miquel Oliete, Stephan Sachse and
7516                 Thomas Gilgin, me, Fabien Vantard, Andrea
7517                 Spadaccini, Frederico Goncalves Guimaraes,
7518                 Andrej Kacian, Aleksandar Urosevic, and
7519                 Ralgh Young.
7520
7521 2005-10-31 [mones]      1.9.15cvs128
7522
7523         * manual/faq.xml
7524                 More questions.
7525         
7526         * po/es.po
7527                 Updated for release.
7528
7529 2005-10-30 [colin]      1.9.15cvs127
7530
7531         * src/compose.c
7532                 Place cursor before rewrapping (fixes cursor
7533                 pos if quotation gets rewrapped)
7534
7535 2005-10-29 [paul]       1.9.15cvs126
7536
7537         * src/crash.c
7538         * src/foldersel.c
7539         * src/main.c
7540         * src/messageview.c
7541         * src/toolbar.c
7542         * src/gtk/authors.h
7543                 corrections to text items
7544
7545 2005-10-28 [colin]      1.9.15cvs125
7546
7547         * src/messageview.c
7548                 Make "hit 'C' to check sig" work from extern 
7549                 messageviews
7550
7551 2005-10-27 [colin]      1.9.15cvs124
7552
7553         * src/summaryview.c
7554                 Add a hack to avoid segfaulting when hammering 
7555                 on gtk's events
7556
7557 2005-10-27 [wwp]        1.9.15cvs123
7558
7559         * src/prefs_themes.c
7560                 sort list of themes names in themes prefs
7561
7562 2005-10-27 [paul]       1.9.15cvs122
7563
7564         * src/folder.c
7565         * src/prefs_account.c
7566                 fix building on Solaris
7567                 Patch by Alex Moore
7568
7569 2005-10-27 [wwp]        1.9.15cvs121
7570
7571         * src/summaryview.c
7572         * src/gtk/gtksctree.c
7573                 speed up unselecting messages in summary view (thanks to Colin)
7574
7575 2005-10-27 [paul]       1.9.15cvs120
7576
7577         * src/mainwindow.c
7578                 fix a compilation warning
7579         * src/summaryview.c
7580                 fix updating of 'n items selected' count
7581                 when deselecting
7582
7583 2005-10-27 [martin]     1.9.15cvs119
7584
7585         * src/action.c
7586                 ignore actions with a leading '/' in the action menu name
7587                 fixes a crash on menu creation
7588         * src/prefs_actions.c
7589                 do not allow a leading '/' in the action menu name
7590
7591 2005-10-27 [paul]       1.9.15cvs118
7592
7593         * src/main.c
7594                 fix compilation warning
7595
7596 2005-10-27 [paul]       1.9.15cvs117
7597
7598         * src/procmime.c
7599                 add #if HAVE_LOCALE_H
7600
7601 2005-10-27 [paul]       1.9.15cvs116
7602
7603         * src/plugins/clamav/clamav_plugin.c
7604         * src/plugins/dillo_viewer/dillo_viewer.c
7605         * src/plugins/mathml_viewer/mathml_viewer.c
7606         * src/plugins/pgpcore/plugin.c
7607         * src/plugins/pgpinline/plugin.c
7608         * src/plugins/pgpmime/plugin.c
7609         * src/plugins/spamassassin/spamassassin.c
7610         * src/plugins/trayicon/trayicon.c
7611                 plugin_init() : make error messages more
7612                 informative
7613
7614 2005-10-26 [wwp]        1.9.15cvs115
7615
7616         * src/prefs_matcher.c
7617                 enlarge boolean op widget width a bit (wasn't always showing text contents)
7618
7619 2005-10-26 [wwp]        1.9.15cvs114
7620
7621         * src/procmime.c
7622         * src/gtk/gtksctree.c
7623         * src/plugins/spamassassin/libspamc.c
7624         * src/plugins/spamassassin/spamassassin.c
7625                 fix some compilation warnings more
7626
7627 2005-10-26 [mones]      1.9.15cvs113
7628
7629         * po/es.po
7630                 Updated translation
7631
7632 2005-10-26 [paul]       1.9.15cvs112
7633
7634         * src/prefs_message.c
7635                 give all display_xface stuff the
7636                 #if HAVE_LIBCOMPFACE treatment, thus
7637                 preventing a crash
7638                 (Thanks to Wolfgang Enderlein)
7639
7640 2005-10-26 [colin]      1.9.15cvs111
7641
7642         * src/gedit-print.c
7643                 Fix date format
7644         * src/imap_gtk.c
7645         * src/news_gtk.c
7646                 Remove context menu items that should not be there
7647         * src/jpilot.c
7648                 Fix encoding
7649         * src/main.c
7650         * src/mainwindow.c
7651                 Don't show the mainwindow too soon
7652
7653 2005-10-26 [wwp]        1.9.15cvs110
7654
7655         * src/folder.c
7656         * src/manual.c
7657         * src/summaryview.c
7658                 fix uninitialized pointers in the folder updating hook
7659                 (thanks to Colin)
7660
7661 2005-10-25 [mones]      1.9.15cvs109
7662
7663         * manual/faq.xml
7664                 General information subsection completed. 
7665                 Removed archaic references.
7666                 
7667         * manual/Makefile
7668         * manual/dtd/manual.dsl
7669                 Added customization stylesheet for getting paragraphs
7670                 fully justified in PDF output (as suggested by Colin).
7671
7672 2005-10-25 [colin]      1.9.15cvs108
7673
7674         * src/compose.c
7675                 Fix a second leak
7676
7677 2005-10-25 [colin]      1.9.15cvs107
7678
7679         * src/addrbook.c
7680         * src/addrindex.c
7681                 Fix leak (xml_get_element() allocates memory)
7682         * src/compose.c
7683                 Fix leak + dead code (shame!)
7684         * src/procmime.c
7685                 Fix leak
7686
7687 2005-10-25 [colin]      1.9.15cvs106
7688
7689         * src/mimeview.c
7690                 Fix encoding issue in Save all and in 
7691                 overwrite-confirmation alertpanel
7692
7693 2005-10-25 [colin]      1.9.15cvs105
7694
7695         * src/common/socket.c
7696                 Fix a leak - Thanks to Christopher Aillon
7697                 (http://christopher.aillon.org/blog/dev/gnome/20051025-gsource.html)
7698
7699 2005-10-25 [paul]       1.9.15cvs104
7700
7701         * src/wizard.c
7702                 Always guess servers from the right-hand
7703                 email part and guess username from the
7704                 left-hand part. (Thanks to Colin)
7705                 add an X-Face to the welcome message
7706
7707 2005-10-25 [paul]       1.9.15cvs103
7708
7709         * manual/handling.xml
7710                 written by Colin, edited by me
7711
7712 2005-10-25 [wwp]        1.9.15cvs102
7713
7714         * src/folderview.c
7715         * src/grouplistdialog.c
7716         * src/imap.c
7717         * src/noticeview.c
7718                 fix some compilation warnings
7719
7720 2005-10-24 [paul]
7721
7722         1.9.99-rc3 released
7723
7724 2005-10-24 [paul]       1.9.15cvs101
7725
7726         * src/gtk/about.c
7727                 fix window sizing
7728
7729 2005-10-24 [paul]       1.9.15cvs100
7730
7731         * src/pixmaps/offline.xpm
7732         * src/pixmaps/online.xpm
7733                 replace with last default versions
7734
7735 2005-10-24 [colin]      1.9.15cvs99
7736
7737         * src/imap.c
7738                 Fix bug when moving a folder
7739         * src/imap_gtk.c
7740         * src/mh_gtk.c
7741                 "Delete folder" pops up a window, so it 
7742                 should be suffixed with "..."
7743         * src/plugins/pgpcore/sgpgme.c
7744                 Include locale.h
7745
7746 2005-10-24 [mones]      1.9.15cvs98
7747
7748         * manual/Makefile
7749         * manual/account.xml
7750         * manual/ack.xml
7751         * manual/addrbook.xml
7752         * manual/advanced.xml
7753         * manual/faq.xml
7754         * manual/glossary.xml
7755         * manual/gpl.xml
7756         * manual/handling.xml
7757         * manual/intro.xml
7758         * manual/keyboard.xml
7759         * manual/manual.xml
7760         * manual/plugins.xml
7761         * manual/starting.xml
7762         * manual/dtd/sdocbook.dtd
7763                 Initial manual structure and some content.
7764
7765 2005-10-23 [wwp]        1.9.15cvs97
7766
7767         * src/gtk/about.c
7768                 fix a typo
7769
7770 2005-10-23 [wwp]        1.9.15cvs96
7771
7772         * src/gtk/about.c
7773         * src/gtk/authors.h
7774                 rework of the about window (main work by Paul), also featuring a few
7775                 fixes for typos and duplicate names
7776
7777 2005-10-23 [wwp]        1.9.15cvs95
7778
7779         * src/.cvsignore
7780                 Ignore the right binary name (sylpheed-claws now)
7781
7782 2005-10-23 [paul]       1.9.15cvs94
7783
7784         * src/compose.c
7785                 when using Folder Pref 'Default To for
7786                 replies' make the entry in the Compose
7787                 window bold
7788                 Patch by Fabien Vantard
7789
7790 2005-10-22 [colin]      1.9.15cvs93
7791
7792         * src/codeconv.c
7793                 Fix leak
7794
7795 2005-10-22 [colin]      1.9.15cvs92
7796
7797         * src/codeconv.c
7798                 try to convert using locale (apart utf8) if necessary
7799
7800 2005-10-22 [colin]      1.9.15cvs91
7801
7802         * src/pixmaps/new.xpm
7803         * src/pixmaps/unread.xpm
7804                 Make the unread envelope blue again and
7805                 saturate the new one a bit more.
7806
7807 2005-10-22 [colin]      1.9.15cvs90
7808
7809         * src/compose.c
7810                 When replying to a mail sent by one of our accounts,
7811                 use the original list of recipients. Let 'Reply All'
7812                 and 'Reply to sender' work like previously.
7813
7814 2005-10-21 [colin]      1.9.15cvs89
7815
7816         * src/prefs_filtering.c
7817                 Clear fields after add and replace
7818         * src/textview.c
7819                 Display xface differently (better)
7820         * src/plugins/pgpinline/pgpinline.c
7821                 Fix crappy encodings/recodings
7822
7823 2005-10-21 [paul]       1.9.15cvs88
7824
7825         * src/compose.c
7826         * src/prefs_folder_item.c
7827         * src/toolbar.c
7828                 fix news folder Folder Properties
7829                 (thanks to Colin)
7830         * src/folderview.c
7831                 update folderview after Themes change
7832                 keep selected folder selected
7833                 (thanks to Colin)
7834
7835 2005-10-21 [paul]       1.9.15cvs87
7836
7837         * tools/Makefile.am
7838         * tools/OOo2sylpheed.pl
7839         * tools/README
7840         * tools/README.sylprint
7841         * tools/asus_mailled.sh         ** REMOVED **
7842         * tools/filter_conv.pl
7843         * tools/freshmeat_search.pl
7844         * tools/google_search.pl
7845         * tools/gpg-sign-syl            ** REMOVED **
7846         * tools/kmail2sylpheed.pl
7847         * tools/kmail2sylpheed_v2.pl
7848         * tools/multiwebsearch.pl
7849         * tools/nautilus2sylpheed.sh
7850         * tools/newscache_clean.pl
7851         * tools/outlook2sylpheed.pl
7852         * tools/sylpheed-switcher       ** REMOVED **
7853         * tools/sylprint.pl
7854         * tools/sylprint.rc
7855         * tools/tb2sylpheed
7856         * tools/vcard2xml.py
7857         * tools/kdeservicemenu/sylpheed-kdeservicemenu.pl
7858                 update default config dir
7859                 update binary name (thanks to Fabien Vantard)
7860                 remove obsolete scripts
7861
7862 2005-10-21 [colin]      1.9.15cvs86
7863
7864         * src/inc.c
7865                 Fix possible leak and units. Based on a patch by
7866                 Fabien Vantard.
7867
7868 2005-10-20 [colin]      1.9.15cvs85
7869
7870         * src/textview.c
7871                 Clear xface when clearing textview
7872
7873 2005-10-20 [colin]      1.9.15cvs84
7874
7875         * configure.ac
7876         * src/folderview.c
7877         * src/headerview.c
7878         * src/main.c
7879         * src/prefs_common.c
7880         * src/prefs_common.h
7881         * src/prefs_message.c
7882         * src/textview.c
7883         * src/textview.h
7884         * src/common/defs.h
7885         * src/common/utils.c
7886         * src/common/utils.h
7887         * src/gtk/gtkutils.c
7888         * src/gtk/gtkutils.h
7889                 Migrate config to .sylpheed-claws (Automatically)
7890                 Add a way to get the Xface in the TextView
7891
7892 2005-10-20 [colin]      1.9.15cvs83
7893
7894         * src/gtk/Makefile.am
7895         * src/gtk/about.c
7896         * src/gtk/authors.h
7897                 Make the about dialog *grooovy*
7898
7899 2005-10-20 [colin]      1.9.15cvs82
7900
7901         * src/mimeview.c
7902                 Use "Open with" on double click if no command
7903                 was found
7904
7905 2005-10-20 [colin]      1.9.15cvs81
7906
7907         * src/imap.c
7908         * src/etpan/imap-thread.c
7909                 Fix possible crash.
7910
7911 2005-10-20 [paul]       1.9.15cvs80
7912
7913         * src/folder.c
7914                 don't show clipkey icon if the only
7915                 attachment is the signature
7916                 Patch by Colin
7917
7918 2005-10-20 [paul]       1.9.15cvs79
7919
7920         * AUTHORS
7921         * src/plugins/pgpmime/pgpmime.c
7922                 name the PGP/MIME signature 'signature.asc'
7923                 Patch by Andrew Nelson <freeandy@gmail.com>
7924
7925 2005-10-19 [colin]      1.9.15cvs78
7926
7927         * src/plugins/pgpmime/pgpmime.c
7928                 Oops, no need to double-check though
7929
7930 2005-10-19 [colin]      1.9.15cvs77
7931
7932         * src/plugins/pgpinline/pgpinline.c
7933         * src/plugins/pgpmime/pgpmime.c
7934                 Check that my_tmpfile() doesn't 
7935                 return NULL
7936
7937 2005-10-19 [colin]      1.9.15cvs76
7938
7939         * src/common/utils.c
7940                 Use shorter mime boundaries to avoid having
7941                 MTAs rewrapping our headers, breaking the
7942                 PGP signature in the process 
7943         * src/compose.c
7944         * src/plugins/pgpmime/pgpmime.c
7945                 Check for boundary uniqueness to be sure
7946                 it won't happen, instead of hoping for the
7947                 best
7948
7949 2005-10-19 [colin]      1.9.15cvs75
7950
7951         * sylpheed-claws.desktop
7952         * src/Makefile.am
7953         * src/main.c
7954                 Ship a sylpheed-claws binary instead
7955                 of a sylpheed one. Change the socket
7956                 name, too
7957         * src/folderview.c
7958                 Update folder only if it changed
7959         * src/wizard.c
7960                 Fix i18n in welcome mail, patch by
7961                 Fabien Vantard
7962
7963 2005-10-19 [paul]
7964
7965         1.9.99-rc2 released
7966
7967 2005-10-19 [paul]       1.9.15cvs74
7968
7969         * src/folder.c
7970         * src/folderview.c
7971                 fix summaryview update
7972                 Patch by Colin
7973
7974 2005-10-18 [colin]      1.9.15cvs73
7975
7976         * src/plugins/pgpcore/passphrase.c
7977                 Don't XGrabServer, and try a bit more to 
7978                 sync everything before grabbing mouse/keyboard
7979
7980 2005-10-18 [colin]      1.9.15cvs72
7981
7982         * src/Makefile.am
7983         * src/addressadd.c
7984         * src/addressbook.c
7985         * src/folderview.c
7986         * src/grouplistdialog.c
7987         * src/mimeview.c
7988         * src/stock_pixmap.c
7989         * src/stock_pixmap.h
7990         * src/summaryview.c
7991         * src/gtk/gtksctree.c
7992         * src/gtk/gtksctree.h
7993         * src/pixmaps/empty.xpm
7994                 Implement a wrapper call for gtk_ctree_set_node_info
7995                 and gtk_ctree_insert_node, that uses a 1x1 transparent
7996                 pixmap instead of a NULL one. This works around some
7997                 memory problems deep inside gtk, revealed by valgrind,
7998                 and fixes bug #834 (Pressing CTRl-D on a message marked 
7999                 as locked crashes sylpheed.), as well as, probably, 
8000                 wwp's 4th dimension problems that happen in gtk_ctree_*.
8001
8002 2005-10-17 [colin]      1.9.15cvs71
8003
8004         * src/mimeview.c
8005                 Provide visual feedback when checking
8006                 signature
8007
8008 2005-10-17 [colin]      1.9.15cvs70
8009
8010         * src/main.c
8011                 Keep the folder list frozen while checking caches...
8012
8013 2005-10-17 [colin]      1.9.15cvs69
8014
8015         * src/addr_compl.c
8016                 Fi bug #833 (Autocompleting from addressbook 
8017                 fails with extended chars)
8018         * src/imap.c
8019                 Fix 'adding messages' staying in statusbar
8020                 after an error
8021
8022 2005-10-17 [wwp]        1.9.15cvs68
8023
8024         * src/ssl_manager.c
8025                 Fix buttons' layout resizing when window size changes
8026
8027 2005-10-17 [wwp]        1.9.15cvs67
8028
8029         * src/account.c
8030         * src/prefs_account.c
8031         * src/prefs_common.c
8032         * src/prefs_common.h
8033         * src/prefs_folder_item.c
8034         * src/prefs_gtk.c
8035         * src/gtk/logwindow.c
8036         * src/gtk/pluginwindow.c
8037         * src/gtk/prefswindow.c
8038         * src/gtk/prefswindow.h
8039                 Remember yet more window sizes (log, prefs, folder prefs, accounts)
8040
8041 2005-10-17 [paul]       1.9.15cvs66
8042
8043         * configure.ac
8044                 fix missing libetpan message
8045         * po/en_GB.po
8046                 updated
8047         * src/crash.c
8048         * src/manual.c
8049         * src/prefs_themes.c
8050         * src/common/defs.h
8051                 add some new URI defines, change some
8052                 others
8053         * src/wizard.c
8054                 make welcome message translatable
8055                 small improvements to english
8056                 other tweaks
8057         * src/gtk/menu.c
8058                 fix warnings
8059
8060 2005-10-17 [paul]       1.9.15cvs65
8061
8062         * src/summaryview.c
8063                 fix column titles
8064
8065 2005-10-16 [mones]      1.9.15cvs64
8066
8067         * po/es.po
8068                 Updated translation
8069
8070 2005-10-16 [colin]
8071
8072         1.9.99-rc1 released
8073
8074 2005-10-16 [colin]      1.9.15cvs63
8075
8076         * src/wizard.c
8077                 Fix whitespace
8078
8079 2005-10-16 [colin]      1.9.15cvs62
8080
8081         * src/toolbar.c
8082                 s/Get All/Get Mail/
8083         * src/wizard.c
8084                 Real welcome mail text, thanks Paul
8085
8086 2005-10-16 [colin]      1.9.15cvs61
8087
8088         * src/editldap.c
8089         * src/exporthtml.c
8090         * src/main.c
8091         * src/mainwindow.c
8092         * src/prefs_themes.c
8093         * src/prefs_toolbar.c
8094         * src/plugins/demo/demo.c
8095         * src/plugins/trayicon/trayicon.c
8096                 s/Sylpheed/Sylpheed-Claws/
8097
8098 2005-10-16 [colin]      1.9.15cvs60
8099
8100         * src/wizard.c
8101                 Add a welcome email in the first empty mailbox
8102         * src/prefs_common.c
8103                 Change one more default
8104
8105 2005-10-16 [colin]      1.9.15cvs59
8106
8107         * src/wizard.c
8108                 Remove printf
8109
8110 2005-10-16 [colin]      1.9.15cvs58
8111
8112         * src/toolbar.c
8113         * src/prefs_common.c
8114                 Change some defaults
8115
8116 2005-10-16 [colin]      1.9.15cvs57
8117
8118         * src/toolbar.c
8119         * src/prefs_common.c
8120                 Change some defaults
8121
8122 2005-10-16 [colin]      1.9.15cvs56
8123
8124         * src/wizard.c
8125                 By default, initialize fonts to have
8126                 the same size as normal GtkWidgets
8127
8128 2005-10-16 [colin]      1.9.15cvs55
8129
8130         * src/mimeview.c
8131                 Fix message a bit more
8132
8133 2005-10-16 [colin]      1.9.15cvs54
8134
8135         * src/addressbook.c
8136                 Second attempt at flicker fixing
8137
8138 2005-10-16 [colin]      1.9.15cvs53
8139
8140         * src/addressbook.c
8141                 Fix flicker
8142
8143 2005-10-16 [wwp]        1.9.15cvs52
8144
8145         * src/addressbook.c
8146         * src/editaddress.c
8147         * src/prefs_common.c
8148         * src/prefs_common.h
8149                 Remember window sizes (address book)
8150
8151 2005-10-16 [wwp]        1.9.15cvs51
8152
8153         * src/plugins/clamav/clamav_plugin_gtk.c
8154         * src/plugins/spamassassin/spamassassin_gtk.c
8155                 Fix compilation warnings (missing #include).
8156
8157 2005-10-16 [colin]      1.9.15cvs50
8158
8159         * src/mimeview.c
8160         * src/summaryview.c
8161         * src/textview.c
8162                 Make 'c' check signature, and forward
8163                 c, l, y, t from summaryview to mimeview
8164
8165 2005-10-16 [colin]      1.9.15cvs49
8166
8167         * src/addressbook.c
8168                 Put border around buttons
8169         * src/mainwindow.c
8170         * src/summaryview.c
8171                 Rework menus (Patch based on a patch
8172                 by Paul)
8173
8174 2005-10-15 [wwp]        1.9.15cvs48
8175
8176         * src/editjpilot.c
8177         * src/editldap.c
8178         * src/editvcard.c
8179         * src/exphtmldlg.c
8180         * src/expldifdlg.c
8181         * src/export.c
8182         * src/import.c
8183         * src/importldif.c
8184         * src/importmutt.c
8185         * src/importpine.c
8186         * src/prefs_account.c
8187         * src/prefs_spelling.c
8188         * src/gtk/gtkutils.c
8189         * src/gtk/gtkutils.h
8190         * src/plugins/clamav/clamav_plugin_gtk.c
8191         * src/plugins/spamassassin/spamassassin_gtk.c
8192                 use nicer browse-for-file/dir buttons than the "..." ones,
8193                 code factorizing more.
8194
8195 2005-10-14 [colin]      1.9.15cvs47
8196
8197         * src/mainwindow.c
8198                 set relief on the account switcher so that people see it
8199                 grey out Create processing rules when no message is selected
8200         * src/prefs_filtering.c
8201                 ask before closing if the rule has not been modified, even if
8202                 it's not valid
8203         * src/prefs_matcher.c
8204                 fix sensitivity when entering the dialog
8205         * src/gtk/inputdialog.c
8206                 display a better icon on password ask
8207         * src/plugins/pgpcore/passphrase.c
8208                 make the dialog look better
8209
8210 2005-10-14 [paul]       1.9.15cvs46
8211
8212         * src/folderview.c
8213                 indicate presense of marked msgs in
8214                 unexpanded subfolders
8215
8216 2005-10-14 [paul]       1.9.15cvs45
8217
8218         * src/prefs_actions.c
8219         * src/prefs_common.c
8220         * src/prefs_common.h
8221         * src/prefs_filtering_action.c
8222         * src/prefs_matcher.c
8223         * src/prefs_template.c
8224                 remember window sizes
8225                 fix Info button size
8226
8227         Patches by wwp
8228
8229 2005-10-13 [colin]      1.9.15cvs44
8230
8231         * src/mimeview.c
8232         * src/noticeview.c
8233         * src/noticeview.h
8234                 Add a tooltip on the icon (optional) 
8235                 Get rid of the signature buttons and only
8236                 use the icon+tooltip
8237
8238 2005-10-13 [colin]      1.9.15cvs43
8239
8240         * src/noticeview.c
8241         * src/noticeview.h
8242                 Add hand cursor for hovering over icon
8243
8244 2005-10-13 [colin]      1.9.15cvs42
8245
8246         * src/summaryview.c
8247                 Fix crash when quicksearch's hidden 
8248                 at startup
8249
8250 2005-10-13 [colin]      1.9.15cvs41
8251
8252         * src/compose.c
8253                 Set subject when forwarding multiple mails
8254                 Check that other recipient than the default Cc or Bcc
8255                 have been set before sending.
8256
8257 2005-10-13 [colin]      1.9.15cvs40
8258
8259         * src/imap.c
8260                 Batch per-folder
8261                 Introduce locking, but don't use it yet
8262
8263 2005-10-13 [colin]      1.9.15cvs39
8264
8265         * src/gtk/quicksearch.c
8266                 Reset quicksearch when hiding it
8267                 Make sticky a real pref
8268
8269 2005-10-13 [colin]      1.9.15cvs38
8270
8271         * src/summaryview.c
8272                 Faster prefs apply
8273
8274 2005-10-13 [colin]      1.9.15cvs37
8275
8276         * src/mimeview.c
8277         * src/noticeview.c
8278         * src/noticeview.h
8279         * src/plugins/pgpcore/sgpgme.c
8280                 Make privacy icon clickable
8281                 Move Trust field in Full info
8282                 When trust is less than full, don't display
8283                 a warning icon
8284
8285 2005-10-13 [colin]      1.9.15cvs36
8286
8287         * src/folder.c
8288                 Batch on flags sync
8289         * src/folderview.c
8290                 Revert speed hack which is dangerous in fact
8291                 Apply prefs faster
8292
8293 2005-10-13 [colin]      1.9.15cvs35
8294
8295         * src/folder_item_prefs.c
8296                 Fix pref corruption on folder move. Patch
8297                 by wwp
8298
8299 2005-10-13 [paul]       1.9.15cvs34
8300
8301         * src/export.c
8302         * src/import.c
8303                 fix typos in g_warnings
8304         * src/prefs_account.c
8305                 add a file selector for Signature file
8306
8307         Patches by wwp
8308
8309 2005-10-12 [colin]      1.9.15cvs33
8310
8311         * src/mimeview.c
8312                 Provide a quick way to go back from a
8313                 signature's full info to the email part
8314
8315 2005-10-12 [colin]      1.9.15cvs32
8316
8317         * src/compose.c
8318                 Remove old hack of encoding signed mails with base64.
8319                 QP works equally well.
8320
8321 2005-10-12 [colin]      1.9.15cvs31
8322
8323         * src/crash.c
8324                 Replace deprecated GtkText with GtkTextView
8325         * src/imap.c
8326                 Fix a logic bug about counts in imap_select
8327                 (previously un-triggered)
8328         * src/mainwindow.c
8329         * src/summaryview.c
8330         * src/news.c
8331                 Allow local deletion of news posts
8332         * src/mimeview.c
8333                 Show GPG noticeview on the message/rfc822 part
8334                 in addition to the text/plain one
8335         * src/prefs_image_viewer.c
8336           src/plugins/pgpcore/prefs_gpg.c
8337                 Polish (set the label as part of the checkbox)
8338         * src/wizard.c
8339                 Don't sit there doing nothing after destroying
8340                 the window - return err
8341
8342 2005-10-11 [colin]      1.9.15cvs30
8343
8344         * src/folderview.c
8345                 Apply processing rules before showing folders.
8346                 Early folder show (before flags sync) will only
8347                 be done when there are no processing rules (nor
8348                 pre- or post- ones)
8349         * src/imap.c
8350                 Fix stuff related to mail subdir, creation and 
8351                 deletion of folders 
8352         * src/imap_gtk.c
8353                 Don't allow creation of folders in NoInferior
8354                 folders, as it won't work
8355
8356 2005-10-10 [colin]      1.9.15cvs29
8357
8358         * src/compose.c
8359                 Reselect "None" Privacy system when selecting an
8360                 account with no privacy system defined
8361
8362 2005-10-10 [colin]      1.9.15cvs28
8363
8364         * src/mainwindow.c
8365                 Add Windows-1252 encoding
8366         * src/prefs_common.c
8367                 Rework some defaults:
8368                 - autosave to draft by default
8369                 - don't show header pane (it's already in the textview)
8370                 - Select first new or unread mail on entry
8371                 - Assume 'Yes' to change folder when there's no more
8372                   unread message
8373         * src/prefs_matcher.c
8374                 Fix a gtk assertion failure
8375         * src/gtk/colorlabel.c
8376                 Workaround bad repainting on selection
8377         * src/main.c
8378                 Freeze/thaw (a bit faster on ssh -X)
8379         * src/msgcache.c
8380                 Get rid of StrdupConverter that just adds an
8381                 extra strdup/free 
8382         * src/etpan/imap_thread.c
8383                 memset buf to 0
8384
8385 2005-10-10 [colin]      1.9.15cvs27
8386
8387         * src/export.c
8388         * src/import.c
8389                 Fix compile on gtk 2.4. Patch by wwp
8390
8391 2005-10-09 [colin]      1.9.15cvs26
8392
8393         * src/mainwindow.c
8394         * src/messageview.c
8395         * src/summaryview.c
8396                 Clarify forward menus. Patch by wwp
8397
8398 2005-10-09 [colin]      1.9.15cvs25
8399
8400         * src/compose.c
8401         * src/compose.h
8402                 Fix bug #829 (Non-working "Encrypt message by 
8403                 default when replying to an encrypted message")
8404
8405 2005-10-08 [colin]      1.9.15cvs24
8406
8407         * src/wizard.c
8408                 Fix bug #827 ("Welcome" setup wizard after a 
8409                 permission error gives up & forgets itself.)
8410
8411 2005-10-08 [colin]      1.9.15cvs23
8412
8413         * src/procmime.c
8414                 Fix bug #828 (Ignoring headers with spaces around = sign)
8415
8416 2005-10-08 [colin]      1.9.15cvs22
8417
8418         * src/export.c
8419                 Warning fix by wwp
8420
8421 2005-10-08 [colin]      1.9.15cvs21
8422
8423         * src/folder.c
8424         * src/folder.h
8425                 Add a processing_pending indicator, set on 
8426                 folder_item_open and cleared after 
8427                 folder_item_process_open
8428         * src/folderview.c
8429         * src/summaryview.c
8430                 wrap procmsg_msginfo_*_flags, and in the
8431                 wrapper check that there's no folder processing 
8432                 pending. If there is, defer the flags change until 
8433                 processing is done to avoid stepping over each
8434                 other's toes.
8435                 Freeze during processing, but not during scanning.
8436
8437 2005-10-07 [colin]      1.9.15cvs20
8438
8439         * src/plugins/pgpcore/passphrase.c
8440                 Fix bug #826 (X-Server hangs when 
8441                 right-clicking a PGP encrypted message)
8442
8443 2005-10-07 [paul]       1.9.15cvs19
8444
8445         * src/compose.c
8446                 fix compose_entries[]
8447                 patch by Fabien Vantard
8448
8449 2005-10-06 [colin]      1.9.15cvs18
8450
8451         * src/pixmaps/address.xpm
8452         * src/pixmaps/address_book.xpm
8453         * src/pixmaps/book.xpm
8454         * src/pixmaps/check_spelling.xpm
8455         * src/pixmaps/checkbox_off.xpm
8456         * src/pixmaps/checkbox_on.xpm
8457         * src/pixmaps/close.xpm
8458         * src/pixmaps/complete.xpm
8459         * src/pixmaps/continue.xpm
8460         * src/pixmaps/deleted.xpm
8461         * src/pixmaps/down_arrow.xpm
8462         * src/pixmaps/exec.xpm
8463         * src/pixmaps/forwarded.xpm
8464         * src/pixmaps/group.xpm
8465         * src/pixmaps/ignorethread.xpm
8466         * src/pixmaps/interface.xpm
8467         * src/pixmaps/jpilot.xpm
8468         * src/pixmaps/ldap.xpm
8469         * src/pixmaps/linewrap.xpm
8470         * src/pixmaps/linewrapcurrent.xpm
8471         * src/pixmaps/mail.xpm
8472         * src/pixmaps/mail_attach.xpm
8473         * src/pixmaps/mail_compose.xpm
8474         * src/pixmaps/mail_forward.xpm
8475         * src/pixmaps/mail_receive.xpm
8476         * src/pixmaps/mail_receive_all.xpm
8477         * src/pixmaps/mail_reply.xpm
8478         * src/pixmaps/mail_reply_to_all.xpm
8479         * src/pixmaps/mail_reply_to_author.xpm
8480         * src/pixmaps/mail_send.xpm
8481         * src/pixmaps/mail_send_queue.xpm
8482         * src/pixmaps/mime_application.xpm
8483         * src/pixmaps/mime_audio.xpm
8484         * src/pixmaps/mime_image.xpm
8485         * src/pixmaps/mime_message.xpm
8486         * src/pixmaps/mime_text_enriched.xpm
8487         * src/pixmaps/mime_text_html.xpm
8488         * src/pixmaps/mime_text_plain.xpm
8489         * src/pixmaps/mime_unknown.xpm
8490         * src/pixmaps/new.xpm
8491         * src/pixmaps/news_compose.xpm
8492         * src/pixmaps/offline.xpm
8493         * src/pixmaps/online.xpm
8494         * src/pixmaps/paste.xpm
8495         * src/pixmaps/preferences.xpm
8496         * src/pixmaps/privacy_emblem_encrypted.xpm
8497         * src/pixmaps/privacy_expired.xpm
8498         * src/pixmaps/privacy_failed.xpm
8499         * src/pixmaps/privacy_passed.xpm
8500         * src/pixmaps/privacy_signed.xpm
8501         * src/pixmaps/privacy_unknown.xpm
8502         * src/pixmaps/privacy_warn.xpm
8503         * src/pixmaps/properties.xpm
8504         * src/pixmaps/replied.xpm
8505         * src/pixmaps/search.xpm
8506         * src/pixmaps/unread.xpm
8507         * src/pixmaps/up_arrow.xpm
8508         * src/pixmaps/vcard.xpm
8509                 Modernize internal theme, with icons from the 
8510                 Gnomaws theme. Keep some of the old ones where
8511                 they were better.
8512
8513 2005-10-06 [colin]      1.9.15cvs17
8514
8515         * src/summaryview.c
8516                 Little optimisations + bugfix
8517         * src/toolbar.c
8518                 Remove default useless items - useless being defined
8519                 by the default relevant prefs
8520         * src/wizard.c
8521                 include config.h to make gettext work
8522         * src/prefs_themes.c
8523                 Fix selection of current theme in prefs
8524
8525 2005-10-06 [colin]      1.9.15cvs16
8526
8527         * src/prefs_common.c
8528         * src/prefs_common.h
8529         * src/prefs_summaries.c
8530         * src/folderview.c
8531                 Add a warning dialog on Mark all read 
8532                 (with pref to get rid of it)
8533
8534 2005-10-06 [paul]       1.9.15cvs15
8535
8536         * po/nb.po
8537         * po/pt_BR.po
8538                 updated by Geir Helland and Frederico
8539                 Goncalves Guimaraes
8540
8541 2005-10-05 [colin]      1.9.15cvs14
8542
8543         * src/folder.c
8544         * src/folder.h
8545         * src/folderview.c
8546         * src/folderview.h
8547         * src/imap_gtk.c
8548         * src/mh_gtk.c
8549         * src/mainwindow.c
8550         * src/setup.c
8551                 add a way to rescan without rebuilding
8552                 make moving a bit faster (less folders changes)
8553                 don't lock the tree on Get 
8554         * src/imap.c
8555                 Don't re-delete deleted messages before expunging
8556         * src/summaryview.c
8557                 Set batch mode when deleting mails
8558
8559 2005-10-05 [paul]       1.9.15cvs13
8560
8561         * src/mainwindow.c
8562         * src/mainwindow.h
8563                 fix disabled Execute menu item
8564         * src/toolbar.c
8565                 match the change in 1.9.15cvs10: use Compose
8566                 instead of News by default
8567
8568 2005-10-04 [colin]      1.9.15cvs12
8569
8570         * src/compose.c
8571                 When replying to an ML post with Reply-To set
8572                 to the poster's email, honor it (as before),
8573                 but also honor our user's request to reply to
8574                 the mailing list: set the ML address in the To
8575                 field and the Reply-To address in the Cc: 
8576                 field.
8577
8578 2005-10-04 [colin]      1.9.15cvs11
8579
8580         * src/plugins/trayicon/trayicon.c
8581                 Finish cosmetic change - thanks to wwp
8582
8583 2005-10-04 [colin]      1.9.15cvs10
8584
8585         * src/toolbar.c
8586                 Use Compose instead of Email by default.
8587                 Spotted by wwp.
8588
8589 2005-10-04 [colin]      1.9.15cvs9
8590
8591         * src/folder.c
8592         * src/folder.h
8593         * src/folderview.c
8594         * src/imap.c
8595         * src/etpan/imap-thread.c
8596         * src/etpan/imap-thread.h
8597                 Try to make IMAP faster, by simplifying SEARCH
8598                 commands, avoiding sending two STATUS in a row,
8599                 and deferring flags sync and processing just
8600                 after displaying the folder. 
8601                 This will update the SummaryView in certain
8602                 cases (new mails not already fetched, flags
8603                 changed from another client) but in a non-
8604                 blocking manner.
8605
8606 2005-10-04 [colin]      1.9.15cvs8
8607
8608         * src/plugins/trayicon/trayicon.c
8609                 Relabel "Offline" to "Work offline"
8610
8611 2005-10-04 [colin]      1.9.15cvs7
8612
8613         * src/export.c
8614         * src/import.c
8615         * src/mbox.c
8616                 Fix mbox import/export buglets
8617                 Patch by wwp
8618         * src/plugins/trayicon/trayicon.c
8619                 Add offline swithc
8620                 Patch by wwp
8621
8622 2005-10-04 [colin]      1.9.15cvs6
8623
8624         * src/folder.c
8625         * src/folderview.c
8626         * src/summaryview.c
8627                 Better fix (don't break mark all read) for cvs2
8628
8629 2005-10-03 [colin]      1.9.15cvs5
8630
8631         * src/folder.c
8632                 Use a sane sort by default
8633
8634 2005-10-03 [colin]      1.9.15cvs4
8635
8636         * src/inc.c
8637                 Add a 'Only once' button for overriding offline mode
8638         * src/prefs_account.c
8639         * src/wizard.c
8640                 Add Local mbox to the wizard
8641                 Add IMAP subdir to the wizard (or the wizard is useless
8642                 for such accounts, or even worse than useless)
8643                 Move IMAP subdir from Advanced to Receive tab, as it's
8644                 not that uncommon
8645
8646 2005-10-03 [colin]      1.9.15cvs3
8647
8648         * src/send_message.c
8649                 Forgot this one in cvs1
8650
8651 2005-10-03 [colin]      1.9.15cvs2
8652
8653         * src/folder.c
8654                 Faster close when leaving a folder with lots
8655                 of new mails. Idea by David Relson.
8656
8657 2005-10-03 [colin]      1.9.15cvs1
8658
8659         * src/compose.c
8660         * src/imap.c
8661         * src/inc.c
8662         * src/main.c
8663         * src/messageview.c
8664         * src/news.c
8665         * src/summaryview.c
8666         * src/gtk/sslcertwindow.c
8667         * src/plugins/trayicon/trayicon.c
8668                 Add accels to every AlertPanel. Patch by Fabien 
8669                 Vantard
8670
8671 2005-10-03 [paul]       1.9.15
8672
8673         1.9.15 released
8674
8675 2005-10-03 [paul]       1.9.14cvs68
8676
8677         * po/ca.po
8678         * po/de.po
8679         * po/es.po
8680         * po/fi.po
8681         * po/fr.po
8682         * po/sk.po
8683         * po/sr.po
8684         * po/zh_CN.po
8685                 updated by Miquel Oliete, Thomas Gilgin, Ricardo
8686                 Mones Lastra, Tommi Pirinen, Fabien vantard,
8687                 Andrej Kacian, Aleksander Urosevic, Yang Guilong
8688
8689 2005-10-03 [paul]       1.9.14cvs67
8690
8691         * src/send_message.c
8692                 prevent hang on Cancel
8693                 patch by Colin
8694
8695 2005-10-03 [paul]       1.9.14cvs66
8696
8697         * src/main.c
8698                 fix crash in IMAP caused by discrepancy
8699                 between check_at_startup and offline mode
8700                 Patch by Colin
8701
8702 2005-10-01 [paul]       1.9.14cvs65
8703
8704         * src/inc.c
8705                 fix engrish
8706
8707 2005-10-01 [paul]       1.9.14cvs64
8708         * src/export.c
8709         * src/import.c
8710                 synchronise import_mbox() and export_mbox()
8711         * src/mbox.c
8712                 proc_mbox(): add alert if file cannot be opened
8713                 export_list_to_mbox(): test if dest file exists,
8714                 prompt user to overwrite if it does. add alert
8715                 if file cannot be created
8716                                                                 
8717         Patch by wwp
8718                                                                                                                 
8719
8720 2005-09-30 [paul]       1.9.14cvs63
8721
8722         * src/addressbook.c
8723                 Fix sensitivity of a menu
8724         * src/codeconv.c
8725                 Respect hidden pref for mails with no encoding
8726         * src/common/xml.c
8727                 Fix memory corruption
8728         * src/plugins/pgpcore/sgpgme.c
8729                 Fix segfault on incomplete sigs, and display
8730                 of S/Mime UIDs
8731
8732         Patches by Colin
8733
8734 2005-09-30 [colin]      1.9.14cvs62
8735
8736         * src/partial_download.c
8737                 Little logic fix in almost-dead code
8738         * src/pop.c
8739                 Fix partial download when there's no new mail
8740
8741 2005-09-29 [paul]       1.9.14cvs61
8742
8743         * src/plugins/pgpinline/pgpinline.c
8744                 fix bug 819, 'crash accessing sign message'
8745                 Patch by Colin
8746
8747 2005-09-28 [martin]     1.9.14cvs60
8748
8749         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
8750                 fix bug #790 (Crash when restarting window manager (fluxbox))
8751
8752 2005-09-28 [paul]       1.9.14cvs59
8753
8754         * src/gtk/gtkaspell.c
8755                 fix off-by-one typo
8756
8757 2005-09-27 [colin]      1.9.14cvs58
8758
8759         * src/plugins/pgpcore/sgpgme.c
8760                 Report error when there's one, instead of
8761                 "Signature unchecked" 
8762
8763 2005-09-27 [colin]      1.9.14cvs57
8764
8765         * src/prefs_quote.c
8766                 Fix bug #816 (Weird quotation with spaces)
8767
8768 2005-09-27 [colin]      1.9.14cvs56
8769
8770         * src/codeconv.c
8771         * src/compose.c
8772         * src/compose.h
8773                 Put subject in compose's title
8774                 Fix Automatic encoding so that it's really automatic:
8775                 first try default locale's charset, then charset of the replied mail, 
8776                 then utf-8
8777                 Fix encoding of headers (must be in strict mode too)
8778
8779 2005-09-26 [colin]      1.9.14cvs55
8780
8781         * src/gtk/gtkaspell.c
8782                 Fix previous patch - don't color the space,
8783                 just uncolor it :)
8784
8785 2005-09-26 [colin]      1.9.14cvs54
8786
8787         * src/gtk/gtkaspell.c
8788                 Unmark space if possible
8789
8790 2005-09-26 [colin]      1.9.14cvs53
8791
8792         * src/imap.c
8793                 log_error instead of alertpanel according to the pref
8794         * src/etpan/imap-thread.c
8795                 Print connect status, copy only necessary size to 
8796                 logger
8797         * src/plugins/pgpmime/pgpmime.c
8798                 Handle S/Mime signatures (verification only). Patch based
8799                 on a patch for Sylpheed Main by Thomas White <taw27@cam.ac.uk>
8800
8801 2005-09-26 [paul]       1.9.14cvs52
8802
8803         * src/common/passcrypt.c
8804                 this 'workaround' not necessary on NetBSD.
8805                 Thanks to Daniel Gustafson
8806
8807 2005-09-26 [paul]
8808
8809         1.9.15-rc4 released
8810
8811 2005-09-26 [paul]       1.9.14cvs51
8812
8813         * src/summaryview.c
8814                 Skip currently selected message when
8815                 looking for next new or unread message
8816                 in current folder. Patch by Colin
8817         * src/common/passcrypt.c
8818                 eliminate warnings on *BSD. Patch by
8819                 Daniel Gustafson
8820
8821 2005-09-26 [colin]      1.9.14cvs50
8822
8823         * src/procmsg.c
8824                 Call postfiltering hook anyway
8825
8826 2005-09-22 [colin]      1.9.14cvs49
8827
8828         * src/codeconv.c
8829         * src/codeconv.h
8830                 Add a strict mode that doesn't replace with _
8831         * src/compose.c
8832         * src/compose.h
8833                 Use strict conversion while sending
8834                 Fix race when drafting while sending (happens
8835                 on IMAP)
8836                 Fix d'n'd of messages from summaryview
8837         * src/prefs_common.c
8838         * src/prefs_common.h
8839                 add hidden utf8_instead_of_locale_for_broken_mail 
8840                 pref for people that preferred the default charset 
8841                 to be utf8 for broken mails
8842         * src/quote_fmt_parse.y
8843                 fix bug #815 (No quote insert if "From:" fied 
8844                 contained Russian letters)
8845         * src/summaryview.c
8846                 Fix d'n'd of messages to compose
8847
8848 2005-09-22 [paul]       1.9.14cvs48
8849
8850         * src/compose.c
8851                 fix bug where attachments Name entry
8852                 would display Path instead
8853
8854 2005-09-21 [paul]       1.9.14cvs47
8855
8856         * README
8857         * README.jp
8858         * configure.ac
8859         * config/config.rpath
8860         * doc/manual/en/sylpheed-20.html
8861         * doc/manual/es/sylpheed-20.html
8862         * po/bg.po
8863         * po/ca.po
8864         * po/de.po
8865         * po/es.po
8866         * po/fr.po
8867         * po/it.po
8868         * po/pt_BR.po
8869         * po/sk.po
8870         * po/zh_TW.po
8871         * src/account.c
8872         * src/account.h
8873         * src/action.c
8874         * src/action.h
8875         * src/adbookbase.h
8876         * src/addr_compl.c
8877         * src/addr_compl.h
8878         * src/addrbook.c
8879         * src/addrbook.h
8880         * src/addrcache.c
8881         * src/addrcache.h
8882         * src/addrcindex.c
8883         * src/addrcindex.h
8884         * src/addrclip.c
8885         * src/addrclip.h
8886         * src/addrdefs.h
8887         * src/addressadd.c
8888         * src/addressadd.h
8889         * src/addressbook.c
8890         * src/addressbook.h
8891         * src/addressitem.h
8892         * src/addrgather.c
8893         * src/addrgather.h
8894         * src/addrharvest.c
8895         * src/addrharvest.h
8896         * src/addrindex.c
8897         * src/addrindex.h
8898         * src/addritem.c
8899         * src/addritem.h
8900         * src/addrquery.c
8901         * src/addrquery.h
8902         * src/addrselect.c
8903         * src/addrselect.h
8904         * src/alertpanel.c
8905         * src/alertpanel.h
8906         * src/browseldap.c
8907         * src/browseldap.h
8908         * src/codeconv.c
8909         * src/codeconv.h
8910         * src/compose.c
8911         * src/compose.h
8912         * src/crash.c
8913         * src/crash.h
8914         * src/customheader.c
8915         * src/customheader.h
8916         * src/displayheader.c
8917         * src/displayheader.h
8918         * src/editaddress.c
8919         * src/editaddress.h
8920         * src/editbook.c
8921         * src/editbook.h
8922         * src/editgroup.c
8923         * src/editgroup.h
8924         * src/editjpilot.c
8925         * src/editjpilot.h
8926         * src/editldap.c
8927         * src/editldap.h
8928         * src/editldap_basedn.c
8929         * src/editldap_basedn.h
8930         * src/editvcard.c
8931         * src/editvcard.h
8932         * src/enriched.c
8933         * src/enriched.h
8934         * src/exphtmldlg.c
8935         * src/exphtmldlg.h
8936         * src/expldifdlg.c
8937         * src/expldifdlg.h
8938         * src/export.c
8939         * src/export.h
8940         * src/exporthtml.c
8941         * src/exporthtml.h
8942         * src/exportldif.c
8943         * src/exportldif.h
8944         * src/filtering.c
8945         * src/filtering.h
8946         * src/folder.c
8947         * src/folder.h
8948         * src/folder_item_prefs.c
8949         * src/folder_item_prefs.h
8950         * src/foldersel.c
8951         * src/foldersel.h
8952         * src/folderutils.c
8953         * src/folderutils.h
8954         * src/folderview.c
8955         * src/folderview.h
8956         * src/grouplistdialog.c
8957         * src/grouplistdialog.h
8958         * src/headerview.c
8959         * src/headerview.h
8960         * src/html.c
8961         * src/html.h
8962         * src/image_viewer.c
8963         * src/image_viewer.h
8964         * src/imap.c
8965         * src/imap.h
8966         * src/imap_gtk.c
8967         * src/imap_gtk.h
8968         * src/import.c
8969         * src/import.h
8970         * src/importldif.c
8971         * src/importldif.h
8972         * src/importmutt.c
8973         * src/importmutt.h
8974         * src/importpine.c
8975         * src/importpine.h
8976         * src/inc.c
8977         * src/inc.h
8978         * src/jpilot.c
8979         * src/jpilot.h
8980         * src/ldapctrl.c
8981         * src/ldapctrl.h
8982         * src/ldaplocate.c
8983         * src/ldaplocate.h
8984         * src/ldapquery.c
8985         * src/ldapquery.h
8986         * src/ldapserver.c
8987         * src/ldapserver.h
8988         * src/ldaputil.c
8989         * src/ldaputil.h
8990         * src/ldif.c
8991         * src/ldif.h
8992         * src/localfolder.c
8993         * src/localfolder.h
8994         * src/main.c
8995         * src/main.h
8996         * src/mainwindow.c
8997         * src/mainwindow.h
8998         * src/manual.c
8999         * src/manual.h
9000         * src/matcher.c
9001         * src/matcher.h
9002         * src/matcher_parser.h
9003         * src/matcher_parser_lex.l
9004         * src/matcher_parser_parse.y
9005         * src/mbox.c
9006         * src/mbox.h
9007         * src/message_search.c
9008         * src/message_search.h
9009         * src/messageview.c
9010         * src/messageview.h
9011         * src/mh.c
9012         * src/mh.h
9013         * src/mh_gtk.c
9014         * src/mh_gtk.h
9015         * src/mimeview.c
9016         * src/mimeview.h
9017         * src/msgcache.c
9018         * src/msgcache.h
9019         * src/mutt.c
9020         * src/mutt.h
9021         * src/news.c
9022         * src/news.h
9023         * src/news_gtk.c
9024         * src/news_gtk.h
9025         * src/noticeview.c
9026         * src/noticeview.h
9027         * src/partial_download.c
9028         * src/partial_download.h
9029         * src/pine.c
9030         * src/pine.h
9031         * src/pop.c
9032         * src/pop.h
9033         * src/prefs_account.c
9034         * src/prefs_account.h
9035         * src/prefs_actions.c
9036         * src/prefs_actions.h
9037         * src/prefs_common.c
9038         * src/prefs_common.h
9039         * src/prefs_compose_writing.c
9040         * src/prefs_compose_writing.h
9041         * src/prefs_customheader.c
9042         * src/prefs_customheader.h
9043         * src/prefs_display_header.c
9044         * src/prefs_display_header.h
9045         * src/prefs_ext_prog.c
9046         * src/prefs_ext_prog.h
9047         * src/prefs_filtering.c
9048         * src/prefs_filtering.h
9049         * src/prefs_filtering_action.c
9050         * src/prefs_filtering_action.h
9051         * src/prefs_folder_column.c
9052         * src/prefs_folder_column.h
9053         * src/prefs_folder_item.c
9054         * src/prefs_folder_item.h
9055         * src/prefs_fonts.c
9056         * src/prefs_fonts.h
9057         * src/prefs_gtk.c
9058         * src/prefs_gtk.h
9059         * src/prefs_image_viewer.c
9060         * src/prefs_image_viewer.h
9061         * src/prefs_matcher.c
9062         * src/prefs_matcher.h
9063         * src/prefs_message.c
9064         * src/prefs_message.h
9065         * src/prefs_msg_colors.c
9066         * src/prefs_msg_colors.h
9067         * src/prefs_other.c
9068         * src/prefs_other.h
9069         * src/prefs_quote.c
9070         * src/prefs_quote.h
9071         * src/prefs_receive.c
9072         * src/prefs_receive.h
9073         * src/prefs_send.c
9074         * src/prefs_send.h
9075         * src/prefs_spelling.c
9076         * src/prefs_spelling.h
9077         * src/prefs_summaries.c
9078         * src/prefs_summaries.h
9079         * src/prefs_summary_column.c
9080         * src/prefs_summary_column.h
9081         * src/prefs_template.c
9082         * src/prefs_template.h
9083         * src/prefs_themes.c
9084         * src/prefs_themes.h
9085         * src/prefs_toolbar.c
9086         * src/prefs_toolbar.h
9087         * src/prefs_wrapping.c
9088         * src/prefs_wrapping.h
9089         * src/privacy.c
9090         * src/privacy.h
9091         * src/procheader.c
9092         * src/procheader.h
9093         * src/procmime.c
9094         * src/procmime.h
9095         * src/procmsg.c
9096         * src/procmsg.h
9097         * src/quote_fmt.c
9098         * src/quote_fmt_parse.y
9099         * src/recv.c
9100         * src/recv.h
9101         * src/remotefolder.c
9102         * src/remotefolder.h
9103         * src/send_message.c
9104         * src/send_message.h
9105         * src/setup.c
9106         * src/setup.h
9107         * src/simple-gettext.c
9108         * src/sourcewindow.c
9109         * src/sourcewindow.h
9110         * src/ssl_manager.c
9111         * src/ssl_manager.h
9112         * src/statusbar.c
9113         * src/statusbar.h
9114         * src/stock_pixmap.c
9115         * src/stock_pixmap.h
9116         * src/summary_search.c
9117         * src/summary_search.h
9118         * src/summaryview.c
9119         * src/summaryview.h
9120         * src/syldap.c
9121         * src/syldap.h
9122         * src/textview.c
9123         * src/textview.h
9124         * src/toolbar.c
9125         * src/toolbar.h
9126         * src/undo.c
9127         * src/undo.h
9128         * src/unmime.c
9129         * src/unmime.h
9130         * src/vcard.c
9131         * src/vcard.h
9132         * src/wizard.c
9133         * src/wizard.h
9134         * src/common/base64.c
9135         * src/common/base64.h
9136         * src/common/defs.h
9137         * src/common/hooks.c
9138         * src/common/hooks.h
9139         * src/common/log.c
9140         * src/common/log.h
9141         * src/common/md5.c
9142         * src/common/md5.h
9143         * src/common/mgutils.c
9144         * src/common/mgutils.h
9145         * src/common/nntp.c
9146         * src/common/nntp.h
9147         * src/common/passcrypt.c
9148         * src/common/passcrypt.h.in
9149         * src/common/plugin.c
9150         * src/common/plugin.h
9151         * src/common/prefs.c
9152         * src/common/prefs.h
9153         * src/common/progressindicator.c
9154         * src/common/progressindicator.h
9155         * src/common/quoted-printable.c
9156         * src/common/quoted-printable.h
9157         * src/common/session.c
9158         * src/common/session.h
9159         * src/common/smtp.c
9160         * src/common/smtp.h
9161         * src/common/socket.c
9162         * src/common/socket.h
9163         * src/common/ssl.c
9164         * src/common/ssl.h
9165         * src/common/ssl_certificate.c
9166         * src/common/ssl_certificate.h
9167         * src/common/string_match.c
9168         * src/common/string_match.h
9169         * src/common/stringtable.c
9170         * src/common/sylpheed.c
9171         * src/common/sylpheed.h
9172         * src/common/template.c
9173         * src/common/template.h
9174         * src/common/timing.h
9175         * src/common/utils.c
9176         * src/common/utils.h
9177         * src/common/uuencode.c
9178         * src/common/uuencode.h
9179         * src/common/version.h.in
9180         * src/common/xml.c
9181         * src/common/xml.h
9182         * src/common/xmlprops.c
9183         * src/common/xmlprops.h
9184         * src/gtk/about.c
9185         * src/gtk/about.h
9186         * src/gtk/colorlabel.c
9187         * src/gtk/colorlabel.h
9188         * src/gtk/colorsel.c
9189         * src/gtk/colorsel.h
9190         * src/gtk/description_window.c
9191         * src/gtk/description_window.h
9192         * src/gtk/filesel.c
9193         * src/gtk/filesel.h
9194         * src/gtk/foldersort.c
9195         * src/gtk/foldersort.h
9196         * src/gtk/gtkutils.c
9197         * src/gtk/gtkutils.h
9198         * src/gtk/inputdialog.c
9199         * src/gtk/inputdialog.h
9200         * src/gtk/logwindow.c
9201         * src/gtk/logwindow.h
9202         * src/gtk/manage_window.c
9203         * src/gtk/manage_window.h
9204         * src/gtk/menu.c
9205         * src/gtk/menu.h
9206         * src/gtk/pluginwindow.c
9207         * src/gtk/pluginwindow.h
9208         * src/gtk/prefswindow.c
9209         * src/gtk/prefswindow.h
9210         * src/gtk/progressdialog.c
9211         * src/gtk/progressdialog.h
9212         * src/gtk/quicksearch.c
9213         * src/gtk/quicksearch.h
9214         * src/gtk/sslcertwindow.c
9215         * src/gtk/sslcertwindow.h
9216         * src/plugins/clamav/clamav_plugin.c
9217         * src/plugins/clamav/clamav_plugin.h
9218         * src/plugins/clamav/clamav_plugin_gtk.c
9219         * src/plugins/demo/demo.c
9220         * src/plugins/dillo_viewer/dillo_prefs.c
9221         * src/plugins/dillo_viewer/dillo_prefs.h
9222         * src/plugins/dillo_viewer/dillo_viewer.c
9223         * src/plugins/mathml_viewer/mathml_viewer.c
9224         * src/plugins/pgpcore/passphrase.c
9225         * src/plugins/pgpcore/passphrase.h
9226         * src/plugins/pgpcore/plugin.c
9227         * src/plugins/pgpcore/prefs_gpg.c
9228         * src/plugins/pgpcore/prefs_gpg.h
9229         * src/plugins/pgpcore/select-keys.c
9230         * src/plugins/pgpcore/select-keys.h
9231         * src/plugins/pgpcore/sgpgme.c
9232         * src/plugins/pgpcore/sgpgme.h
9233         * src/plugins/pgpinline/pgpinline.c
9234         * src/plugins/pgpinline/pgpinline.h
9235         * src/plugins/pgpinline/plugin.c
9236         * src/plugins/pgpmime/pgpmime.c
9237         * src/plugins/pgpmime/pgpmime.h
9238         * src/plugins/pgpmime/plugin.c
9239         * src/plugins/spamassassin/spamassassin.c
9240         * src/plugins/spamassassin/spamassassin.h
9241         * src/plugins/spamassassin/spamassassin_gtk.c
9242         * src/plugins/trayicon/trayicon.c
9243         * tools/OOo2sylpheed.pl
9244         * tools/acroread2sylpheed.pl
9245         * tools/asus_mailled.sh
9246         * tools/filter_conv.pl
9247         * tools/freshmeat_search.pl
9248         * tools/google_search.pl
9249         * tools/kmail2sylpheed.pl
9250         * tools/kmail2sylpheed_v2.pl
9251         * tools/maildir2sylpheed.pl
9252         * tools/multiwebsearch.pl
9253         * tools/newscache_clean.pl
9254         * tools/outlook2sylpheed.pl
9255         * tools/sylpheed-switcher
9256         * tools/update-po
9257         * tools/vcard2xml.py
9258         * tools/kdeservicemenu/sylpheed-kdeservicemenu.pl
9259                 update FSF address
9260
9261 2005-09-21 [colin]      1.9.14cvs46
9262
9263         * src/gedit-print.c
9264         * src/procmsg.c
9265         * src/procmsg.h
9266         * src/textview.c
9267         * src/summaryview.c
9268                 Remove some printing hacks (deselection/reselection),
9269                 which by the way fix printing the currently 
9270                 displayed mime part (still only text)
9271                 Plus a little optimisation of summary_show
9272
9273
9274 2005-09-20 [colin]      1.9.14cvs45
9275
9276         * src/mainwindow.c
9277         * src/messageview.c
9278                 GUI fixups: add accels, set message
9279                 view title to displayed mail's subject
9280         * src/prefs_spelling.c
9281         * src/gtk/gtkaspell.c
9282                 GUI fixups: allow underlining misspelled
9283                 words instead of coloring them (a11y!)
9284
9285 2005-09-19 [colin]
9286
9287         1.9.15rc3 released
9288
9289 2005-09-19 [colin]      1.9.14cvs44
9290
9291         * src/compose.c
9292                 Fix draft message
9293         * src/gtk/gtkaspell.c
9294                 Fix wrong test ;-)
9295
9296 2005-09-19 [colin]      1.9.14cvs43
9297
9298         * src/addressbook.c
9299                 Fix sensitivity of Delete button
9300         * src/compose.c
9301                 Warn if the requested Privacy system
9302                 is not available
9303         * src/exphtmldlg.c
9304         * src/expldifdlg.c
9305         * src/importldif.c
9306         * src/importmutt.c
9307         * src/importpine.c
9308                 Fix crappy UI
9309         * src/
9310         * src/ssl.h
9311         * src/prefs_account.h
9312         * src/prefs_account.c
9313                 Save SSL prefs even in builds that have
9314                 SSL support disable
9315         * src/imap.c
9316         * src/inc.c
9317         * src/news.c
9318         * src/send_message.c
9319                 Warn if connection should be secure, but
9320                 SSL support isn't compiled in
9321         * src/gtkaspell.c
9322                 Fix word separation on UTF-8 systems
9323                 Fixes bug #812 (Strange inline spellchecking)
9324         * src/compose.c
9325                 Warn if the requested Privacy system
9326                 is not available
9327                 Factorize offline warning
9328         * src/imap.c
9329         * src/imap_gtk.c
9330         * src/imap_gtk.h
9331         * src/inc.h
9332         * src/news_gtk.c
9333         * src/news_gtk.h
9334         * src/messageview.c
9335                 Factorize offline warning
9336
9337 2005-09-19 [paul]
9338
9339         1.9.15-rc2 released
9340
9341 2005-09-18 [colin]      1.9.14cvs42
9342
9343         * src/codeconv.c
9344         * src/codeconv.h
9345         * src/procmime.c
9346                 Add a way to get locale's charset ignoring utf-8,
9347                 and use that as default encoding for broken mails
9348
9349 2005-09-18 [colin]      1.9.14cvs41
9350
9351         * src/gtk/logwindow.c
9352                 Translate string. Patch by Fabien Vantard
9353
9354 2005-09-18 [colin]      1.9.14cvs40
9355
9356         * configure.ac
9357                 Fix bug #803 (IMAP/SSL support breaks with 
9358                 GnuTLS libetpan 0.38)
9359
9360 2005-09-18 [colin]      1.9.14cvs39
9361
9362         * src/codeconv.c
9363         * src/compose.c
9364         * src/procmime.c
9365                 More charsets fixes. Fixes bug #806 (non
9366                 ascii characters in subject line)
9367
9368 2005-09-17 [paul]       1.9.14cvs38
9369
9370         * src/folderview.c
9371         * src/mainwindow.c
9372                 fix gcc-2.95 issues
9373                 Patch by Pawel Pekala
9374
9375 2005-09-17 [colin]      1.9.14cvs37
9376
9377         * src/addrindex.c
9378                 bugfix for NO-USE LDAP compilation, patch 
9379                 by Fabien Vantard
9380
9381 2005-09-17 [colin]      1.9.14cvs36
9382
9383         * src/prefs_actions.c
9384         * src/prefs_customheader.c
9385         * src/prefs_display_header.c
9386         * src/prefs_filtering_action.c
9387         * src/prefs_matcher.c
9388         * src/prefs_toolbar.c
9389                 Fix strange casts (less elegant but
9390                 works better)
9391
9392 2005-09-16 [colin]      1.9.14cvs35
9393
9394         * src/jpilot.c
9395                 Missed that one
9396
9397 2005-09-16 [colin]      1.9.14cvs34
9398
9399         * configure.ac
9400         * src/Makefile.am
9401         * src/addr_compl.c
9402         * src/addrindex.c
9403         * src/browseldap.c
9404         * src/editldap.c
9405         * src/ldaplocate.c
9406         * src/ldapquery.c
9407         * src/ldapquery.h
9408         * src/ldapserver.c
9409         * src/ldapserver.h
9410         * src/main.c
9411         * src/matcher_parser_parse.y
9412         * src/prefs_themes.c
9413         * src/etpan/Makefile.am
9414         * src/gtk/description_window.c
9415         * src/plugins/clamav/Makefile.am
9416         * src/plugins/clamav/clamav_plugin.c
9417         * src/plugins/dillo_viewer/Makefile.am
9418         * src/plugins/pgpcore/Makefile.am
9419         * src/plugins/pgpinline/Makefile.am
9420         * src/plugins/pgpmime/Makefile.am
9421         * src/plugins/trayicon/Makefile.am
9422                 Fix 100% cpu usage in address completion list
9423                 Fix little bugs (return with no values etc)
9424                 Fix all warnings (with common CFLAGS)
9425
9426 2005-09-15 [colin]      1.9.14cvs33
9427
9428         * src/addressbook.c
9429                 Fix bug where sometimes a group's email list is empty,
9430                 force its refresh (probably fixes "Re: how to create a 
9431                 distribution list")
9432         * src/ldapquery.c
9433                 Don't return to the callback in the main thread from the
9434                 fetch thread (or face segs!)
9435
9436 2005-09-15 [paul]       1.9.14cvs32
9437
9438         * src/prefs_matcher.c
9439                 forgotten in last commit
9440
9441 2005-09-15 [paul]       1.9.14cvs31
9442
9443         * src/prefs_actions.c
9444         * src/prefs_filtering_action.c
9445         * src/prefs_quote.c
9446         * src/quote_fmt.c
9447         * src/summaryview.c
9448         * src/gtk/description_window.c
9449         * src/gtk/description_window.h
9450         * src/gtk/quicksearch.c
9451                 allow interaction with the called
9452                 description window
9453                 Patch by Anders Hammar
9454
9455 2005-09-14 [paul]       1.9.14cvs30
9456
9457         * src/compose.c
9458                 fix a little annoyance when pasting with 3rd button 
9459                 with wrap_pastes=0 and wrap_input=1
9460                 Patch by Colin
9461
9462 2005-09-14 [paul]       1.9.14cvs29
9463
9464         * src/prefs_account.c
9465                 disable 'Filter messages on receiving' for
9466                 SMTP-only accounts
9467                 Patch  by Anders Hammar
9468
9469 2005-09-14 [paul]       1.9.14cvs28
9470
9471         * po/sk.po
9472                 fix crash
9473                 updated by Andrej Kacian
9474
9475 2005-09-14 [paul]
9476
9477         1.9.15-rc1 released
9478
9479 2005-09-14 [paul]       1.9.14cvs27
9480
9481         * po/es.po
9482                 updated by Ricardo Mones Lastra
9483         * src/compose.c
9484         * src/compose.h
9485                 associate no_wrap_tags to Compose windows
9486                 instead of using a static one
9487                 Patch by Colin
9488         * src/mbox.c
9489                 fix proc_mbox()
9490                 Patch by wwp
9491         * src/textview.c
9492                 remove unneeded printf()
9493
9494 2005-09-14 [paul]       1.9.14cvs26
9495
9496         * src/addrcache.c
9497         * src/codeconv.h
9498         * src/folder.h
9499         * src/mainwindow.h
9500         * src/mh.c
9501         * src/mimeview.h
9502         * src/partial_download.c
9503         * src/pop.c
9504         * src/prefs_account.c
9505         * src/prefs_account.h
9506         * src/prefs_actions.c
9507         * src/prefs_customheader.c
9508         * src/prefs_display_header.c
9509         * src/prefs_filtering_action.c
9510         * src/prefs_matcher.c
9511         * src/prefs_toolbar.c
9512         * src/privacy.h
9513         * src/procmime.c
9514         * src/procmime.h
9515         * src/procmsg.h
9516         * src/textview.c
9517         * src/undo.h
9518         * src/common/plugin.c
9519         * src/common/session.h
9520         * src/common/socket.c
9521         * src/common/socket.h
9522         * src/common/template.c
9523         * src/gtk/gtkaspell.c
9524         * src/gtk/quicksearch.h
9525         * src/plugins/pgpcore/passphrase.c
9526         * src/plugins/pgpcore/prefs_gpg.h
9527         * src/plugins/pgpcore/select-keys.c
9528         * src/plugins/pgpcore/select-keys.h
9529         * src/plugins/pgpcore/sgpgme.c
9530         * src/plugins/pgpinline/pgpinline.c
9531         * src/plugins/pgpmime/pgpmime.c
9532         * src/plugins/trayicon/trayicon.c
9533                 fix compilation warnings
9534                 Patch by Daniel Gustafson
9535
9536 2005-09-14 [paul]       1.9.14cvs25
9537
9538         * src/addressbook.c
9539                 add missing column header, and other small
9540                 bug fixes
9541                 Patch by Anders Hammar
9542
9543 2005-09-13 [colin]      1.9.14cvs24
9544
9545         * src/gtk/gtkaspell.c
9546                 Fix non-utf8 in menu
9547                 Fix little leaks
9548                 Nullify struct members after free()s
9549
9550 2005-09-13 [colin]      1.9.14cvs23
9551
9552         * src/compose.c
9553                 Test utf8 compliance before inserting to 
9554                 buffer, and try to convert if necessary
9555         * src/procmime.c
9556                 If no charset is present, use the locale 
9557                 one instead of us-ascii
9558         * src/procmsg.c
9559                 Add Sender, List-Post and To in the checked 
9560                 headers for automatic rules creation 
9561                 (thanks to wwp)
9562         * src/prefs_themes.c
9563         * src/gtk/gtkaspell.c
9564                 Remove deprecated functions. 
9565                 patch by Daniel Gustafson
9566
9567 2005-09-12 [colin]      1.9.14cvs22
9568
9569         * src/compose.c
9570                 Fix bug #448 (Scrolling/Redraw issue with 
9571                 address-fields in Header)
9572         * src/mainwindow.c
9573         * src/summaryview.c
9574         * src/summaryview.h
9575                 Fix loss of MSG_MARKED on move/copy
9576                 Fix bug #804 (Quicksearch togglebutton doesn't 
9577                 get depressed after '/' key is pressed)
9578
9579 2005-09-12 [paul]       1.9.14cvs21
9580
9581         * AUTHORS
9582         * src/gtk/logwindow.c
9583                 add 'Clear Log' to popup menu
9584                 Patch by Anders Hammar <anders.hammar@telia.com>
9585
9586 2005-09-12 [paul]       1.9.14cvs20
9587
9588         * src/compose.c
9589                 set correct sensitivity on attachments
9590                 popup menu
9591         * src/folder.c
9592                 fix typo
9593         * src/prefs_spelling.c
9594                 fix crash when no LANG env is set
9595         * src/common/xml.c
9596                 fix crash in wizard
9597                 don't use memeory after free
9598
9599         All patches by Daniel Gustafson
9600
9601 2005-09-12 [paul]       1.9.14cvs19
9602
9603         * src/prefs_themes.c
9604                 make theme info selectable
9605         * src/gtk/description_window.c
9606                 make window non-modal
9607         * tools/README
9608                 add details of asus_mailed.sh
9609         * tools/claws.i18n.status.pl
9610                 update for new zh_TW translator
9611                 widen the output
9612                 create alternate coloured lines
9613                 improve readability
9614
9615 2005-09-10 [colin]      1.9.14cvs18
9616
9617         * src/plugins/pgpcore/select-keys.c
9618                 Better order for the buttons
9619
9620 2005-09-10 [colin]      1.9.14cvs17
9621
9622         * src/compose.c
9623         * src/plugins/pgpcore/select-keys.c
9624         * src/plugins/pgpcore/select-keys.h
9625         * src/plugins/pgpcore/sgpgme.c
9626                 Add a "Don't encrypt" button to the key
9627                 selection dialog. Fixes bug #177 (There should be a 
9628                 'Don't encrypt button in the Select Keys dialog)
9629
9630 2005-09-10 [colin]      1.9.14cvs16
9631
9632         * src/compose.c
9633                 Fix bug #572 (%X option does not work with templates)
9634
9635 2005-09-10 [colin]      1.9.14cvs15
9636
9637         * src/toolbar.c 
9638                 Remove g_print
9639
9640 2005-09-10 [colin]      1.9.14cvs14
9641
9642         * src/imap.c
9643                 Fix a possible crash
9644
9645 2005-09-09 [colin]      1.9.14cvs13
9646
9647         * src/imap.c
9648         * src/etpan/imap-thread.c
9649         * src/etpan/imap-thread.h
9650                 Fix moving from queue or drafts to normal folders
9651                 Fix bug #794 (No way to delete without expunging)
9652                 Take flags unset by other mailers into account
9653                 Take deleted flag set by other mailers into account
9654                 Fix unsetting REPLIED flag
9655                 Fix crash when capabilities can't be retrieved
9656         * src/mainwindow.c
9657         * src/mainwindow.h
9658                 Add M_DELAYED_FLAGS condition, and let the user use
9659                 Execute in order to be able to expunge deleted mails,
9660                 even if he's not in delayed execute mode
9661         * src/prefs_spelling.c
9662                 Use 'en' dictionary by default if LANG is POSIX or C
9663         * src/gtk/prefswindow.c
9664                 Fix bug #767 (Preferences windows expanding) by making
9665                 the window a bit larger when the resolution is greater
9666                 than 640x480, and by putting the prefs in a
9667                 GtkScrolledWindow.
9668
9669 2005-09-09 [paul]       1.9.14cvs12
9670
9671         * AUTHORS
9672         * configure.ac
9673         * po/zh_TW.Big5.po      ** REMOVED **
9674         * po/zh_TW.po           ** ADDED **
9675                 updated by Wei-Lun Chao
9676
9677 2005-09-09 [paul]       1.9.14cvs11
9678
9679         * src/mainwindow.c
9680                 fix asserts
9681         * src/common/xml.c
9682                 delay memory allocation until file is
9683                 opened successfully
9684                 Patch by Daniel Gustafson
9685
9686 2005-09-09 [colin]      1.9.14cvs10
9687
9688         * src/imap.c
9689                 Add guards
9690
9691 2005-09-08 [colin]      1.9.14cvs9
9692
9693         * src/compose.c
9694                 Alert when we can't save draft
9695                 Fix various wrap/color issues
9696                 Add mid-click pasting respecting wrap_paste option
9697         * src/folder.c
9698         * src/folder.h
9699         * src/folder_item_prefs.c
9700         * src/folder_item_prefs.h
9701         * src/imap.c
9702         * src/imap_gtk.c
9703         * src/imap_gtk.h
9704         * src/main.c
9705         * src/mainwindow.c
9706         * src/mainwindow.h
9707         * src/news.c
9708         * src/news_gtk.c
9709         * src/news_gtk.h
9710         * src/prefs_folder_item.c
9711                 Fix the impossibility to synchronise folders for
9712                 offline use (IMAP and NNTP are concerned)
9713
9714 2005-09-08 [colin]      1.9.14cvs8
9715
9716         * configure.ac
9717                 Build LDAP and JPilot by default if available
9718         * src/textview.c
9719                 Fix use after free
9720
9721 2005-09-08 [paul]       1.9.14cvs7
9722
9723         * doc/manual/en/sylpheed-1.html
9724         * doc/manual/en/sylpheed-18.html
9725         * doc/manual/en/sylpheed-19.html
9726         * doc/manual/en/sylpheed-4.html
9727         * doc/manual/en/sylpheed-6.html
9728         * doc/manual/en/sylpheed.html
9729                 a few minor updates, plus include some
9730                 details about plugins and their requirements
9731         * src/mainwindow.c
9732                 minor changes to English in /View/Sort
9733
9734 2005-09-07 [colin]      1.9.14cvs6
9735
9736         * doc/manual/en/sylpheed-1.html
9737         * doc/manual/en/sylpheed-10.html
9738         * doc/manual/en/sylpheed-11.html
9739         * doc/manual/en/sylpheed-12.html
9740         * doc/manual/en/sylpheed-13.html
9741         * doc/manual/en/sylpheed-14.html
9742         * doc/manual/en/sylpheed-15.html
9743         * doc/manual/en/sylpheed-16.html
9744         * doc/manual/en/sylpheed-17.html
9745         * doc/manual/en/sylpheed-18.html
9746         * doc/manual/en/sylpheed-19.html
9747         * doc/manual/en/sylpheed-2.html
9748         * doc/manual/en/sylpheed-20.html
9749         * doc/manual/en/sylpheed-21.html
9750         * doc/manual/en/sylpheed-22.html
9751         * doc/manual/en/sylpheed-3.html
9752         * doc/manual/en/sylpheed-4.html
9753         * doc/manual/en/sylpheed-5.html
9754         * doc/manual/en/sylpheed-6.html
9755         * doc/manual/en/sylpheed-7.html
9756         * doc/manual/en/sylpheed-8.html
9757         * doc/manual/en/sylpheed-9.html
9758         * doc/manual/en/sylpheed.html
9759                 More substitutions (missed Sylpheed -> Sylpheed-Claws)
9760
9761 2005-09-07 [colin]      1.9.14cvs5
9762
9763         * src/mainwindow.c
9764                 Make labels more to-the-point
9765
9766 2005-09-07 [colin]      1.9.14cvs4
9767
9768         * doc/manual/en/sylpheed-1.html
9769         * doc/manual/en/sylpheed-12.html
9770         * doc/manual/en/sylpheed-13.html
9771         * doc/manual/en/sylpheed-14.html
9772         * doc/manual/en/sylpheed-15.html
9773         * doc/manual/en/sylpheed-16.html
9774         * doc/manual/en/sylpheed-17.html
9775         * doc/manual/en/sylpheed-18.html
9776         * doc/manual/en/sylpheed-19.html
9777         * doc/manual/en/sylpheed-2.html
9778         * doc/manual/en/sylpheed-20.html
9779         * doc/manual/en/sylpheed-21.html
9780         * doc/manual/en/sylpheed-22.html
9781         * doc/manual/en/sylpheed-4.html
9782         * doc/manual/en/sylpheed-5.html
9783         * doc/manual/en/sylpheed-6.html
9784         * doc/manual/en/sylpheed-7.html
9785         * doc/manual/en/sylpheed-8.html
9786         * doc/manual/en/sylpheed-9.html
9787         * doc/manual/en/sylpheed.html
9788                 Update manual
9789
9790 2005-09-07 [colin]      1.9.14cvs3
9791
9792         * doc/faq/en/sylpheed-faq-1.html
9793         * doc/faq/en/sylpheed-faq-2.html
9794         * doc/faq/en/sylpheed-faq-3.html
9795         * doc/faq/en/sylpheed-faq.html
9796                 Update FAQ
9797
9798 2005-09-07 [colin]      1.9.14cvs2
9799
9800         * src/folderview.c
9801         * src/procmsg.c
9802         * src/summaryview.c
9803         * src/toolbar.c
9804                 Fix special subfolders:
9805                 - Inherit parent's icon
9806                 - sent contents of queues subfolders
9807                 - empty subfolders of trashes
9808         * src/mainwindow.c
9809                 Remove outdated manual and faq entries
9810         * src/common/utils.c
9811                 Add quotes around %s coming from mailcap
9812
9813 2005-09-07 [colin]      1.9.14cvs1
9814
9815         * src/compose.c
9816                 After saving draft, set modified to FALSE
9817         * src/mimeview.c
9818         * src/common/utils.c
9819         * src/common/utils.h
9820                 Try to open mime parts using what is 
9821                 indicated in ~/.mailcap or /etc/mailcap,
9822                 if possible.
9823
9824 2005-09-05 [paul]       1.9.14
9825
9826         1.9.14 released
9827
9828         * po/sk.po
9829                 updated by Andrej Kacian
9830
9831 2005-09-05 [paul]       1.9.13cvs83
9832
9833         * po/de.po
9834         * po/es.po
9835         * po/fi.po
9836         * po/fr.po
9837         * po/nb.po
9838         * po/pt_BR.po
9839         * po/sr.po
9840                 updated translations by Thomas Gilgin, Ricardo Mones
9841                 Lastra, Tommi Pirinen, Fabien Vantard, Geir Helland,
9842                 Frederico Goncalves Guimaraes, Aleksandar Urosevic
9843
9844 2005-09-04 [paul]       1.9.13cvs82
9845
9846         * src/compose.c
9847                 only warn about exceeded line length limit
9848                 on send
9849
9850 2005-09-04 [paul]       1.9.13cvs81
9851
9852         * src/compose.c
9853                 fix crash in 'line length exceeded' dialogue
9854
9855 2005-09-02 [paul]       1.9.13cvs80
9856
9857         * src/imap.c
9858                 fix bug 795, 'Connection lost IMAP'
9859                 and add statusbar prints
9860                 Patch by Colin
9861
9862 2005-09-02 [paul]       1.9.13cvs79
9863
9864         * src/compose.c
9865                 compose_wrap_paragraph() becomes
9866                 compose_beautify_paragraph()
9867                 Patch by Colin
9868
9869 2005-09-02 [colin]      1.9.13cvs78
9870
9871         * src/folderview.c
9872                 Micro-fix
9873
9874 2005-09-01 [colin]      1.9.13cvs77
9875
9876         * src/imap.c
9877                 Maybe fix bug #795 (Connection lost IMAP)
9878                 Don't try to send logout when we're disconnected.
9879         * src/summaryview.c
9880                 Include locked and marked emails in HRM
9881                 view. Fixes bug #800 (Locked messages no longer 
9882                 show up when hide read messages is used)
9883
9884 2005-09-01 [paul]       1.9.13cvs76
9885
9886         * src/prefs_common.c
9887                 fix bad cutting
9888
9889 2005-08-31 [colin]      1.9.13cvs75
9890
9891         * src/folderview.c
9892         * src/folderview.h
9893         * src/prefs_summaries.c
9894         * src/summaryview.c
9895                 Fix "go to next new", fix preference
9896                 (Open unread/next swapped)
9897
9898 2005-08-31 [paul]       1.9.13cvs74
9899
9900         * src/compose.c
9901         * src/folderview.c
9902         * src/headerview.c
9903         * src/headerview.h
9904         * src/mainwindow.c
9905         * src/prefs_common.c
9906         * src/prefs_common.h
9907         * src/prefs_fonts.c
9908         * src/summaryview.c
9909         * src/textview.c
9910         * src/common/defs.h
9911                 remove obsolete BOLD_FONT setting
9912                 fix font update in headerview and textview
9913                 headers after prefs change
9914                 Patch By Colin
9915
9916 2005-08-31 [paul]
9917
9918         1.9.14-rc4 released
9919
9920 2005-08-30 [colin]      1.9.13cvs73
9921
9922         * src/summaryview.c
9923                 When Hide read messages is selected and we
9924                 refresh the summaryview, don't remove the 
9925                 currently displayed message. Fixes bug #797
9926                 (Summary view reloads when new mail is 
9927                 downloaded in 1.9.14 rc)
9928
9929 2005-08-30 [colin]      1.9.13cvs72
9930
9931         * src/folderview.c
9932                 Fix flickering
9933         * src/mainwindow.c
9934                 Remove useless callback
9935         * src/mimeview.c
9936         * src/gtk/filesel.c
9937         * src/gtk/filesel.h
9938                 Add a filesel_select_file_save_folder() - used by Save All
9939
9940 2005-08-29 [paul]       1.9.13cvs71
9941
9942         * AUTHORS
9943         * src/matcher_parser_parse.y
9944         * src/etpan/imap-thread.c
9945                 fix building on FreeBSD
9946                 Patch by Daniel Gustafson <daniel@hobbit.se>
9947
9948 2005-08-29 [paul]       1.9.13cvs70
9949
9950         * src/plugins/pgpinline/pgpinline.c
9951                 only initialise sig result if it's been handled
9952                 Patch by Colin
9953
9954 2005-08-29 [paul]       1.9.13cvs69
9955         
9956         Patches by Colin:
9957
9958         * src/imap.c
9959         * src/common.utils.c
9960         * src/common/utils.h
9961                 optimisation
9962         * src/stock_pixmap.h
9963                 fix wrong icon reference
9964         * src/pixmaps/trash_btn.xpm
9965                 replace with nicer image
9966
9967 2005-08-28 [colin]      1.9.13cvs68
9968
9969         * src/Makefile.am
9970         * src/stock_pixmap.c
9971         * src/stock_pixmap.h
9972         * src/toolbar.c
9973         * src/pixmaps/trash_btn.xpm
9974                 Add a specific trash xpm for the button
9975
9976 2005-08-28 [colin]      1.9.13cvs67
9977
9978         * src/imap.c
9979                 Fix leak
9980
9981 2005-08-27 [colin]      1.9.13cvs66
9982
9983         * src/imap.c
9984         * src/procmime.c
9985                 Correctly fix "Problem with replies", fixes
9986                 pgpmime encryption too. 
9987
9988 2005-08-27 [colin]      1.9.13cvs65
9989
9990         * src/folder.c
9991         * src/procmsg.c
9992         * src/procmsg.h
9993         * src/summaryview.c
9994                 Fix bug #517 (messages removed from summaryview 
9995                 when moving fails)
9996
9997 2005-08-27 [colin]      1.9.13cvs64
9998
9999         * tools/Makefile.am
10000         * tools/asus_mailled.sh
10001                 Add a script to blink ASUS laptops' mail LED where there
10002                 is unread mail.
10003
10004 2005-08-27 [colin]      1.9.13cvs63
10005
10006         * src/imap.c
10007         * src/etpan/imap-thread.c
10008         * src/etpan/imap-thread.h
10009                 Implement automatic choosing of login method
10010                 Fixes bug #791
10011         * src/gtk/.cvsignore
10012                 Add sylpheed-marshal.[ch]
10013
10014 2005-08-27 [colin]      1.9.13cvs62
10015
10016         * src/common/utils.c
10017                 Fix confusing perror
10018
10019 2005-08-27 [colin]      1.9.13cvs61
10020
10021         * src/toolbar.c
10022         * src/toolbar.h
10023                 Remove A_DELETE, replace it with 
10024                 A_TRASH and A_DELETE_REAL. Automatically
10025                 rewrite config files to replace A_DELETE
10026                 with A_TRASH (no functionality change).
10027                 Fixes half of #794
10028
10029 2005-08-26 [colin]      1.9.13cvs60
10030
10031         * src/procmime.c
10032                 Previous "Problem with replies" fix brought other
10033                 problems, fixing them
10034
10035 2005-08-26 [colin]      1.9.13cvs59
10036
10037         * src/procmime.c
10038                 Fix "Problem with replies". This happened only
10039                 on IMAP...
10040         * src/procmsg.c
10041                 Factorize code a bit
10042         * src/compose.c
10043                 Speed improvement on very long messages (wrapping)
10044                 Fix signature color on Reedit and Redirect
10045                 On Reedit, don't attach pgp-signatures parts, but
10046                 set signing to On.
10047
10048 2005-08-24 [paul]       1.9.13cvs58
10049
10050         * src/compose.c
10051                 don't claim success when clicking
10052                 Cancel on the passphrase box.
10053                 Patch by Colin
10054
10055 2005-08-24 [paul]       1.9.13cvs57
10056
10057         * src/main.c
10058                 fix misplaced sylpheed.log
10059         * src/common/defs.h
10060                 define UIDL_DIR
10061
10062 2005-08-24 [paul]       1.9.13cvs56
10063
10064         * src/imap.c
10065         * src/etpan/imap-thread.c
10066         * src/etpan/imap-thread.h
10067                 fix bug 789 'IMAP CRAM-MD5 and ssl broken in 1.9.13'
10068                 Patch by Colin
10069         * src/gtk/sylpheed-marshal.c    ** REMOVED **
10070         * src/gtk/sylpheed-marshal.h    ** REMOVED **
10071                 remove autogenerated files
10072         * tools/kdeservicemenu/README
10073         * tools/kdeservicemenu/install.sh
10074         * tools/kdeservicemenu/template_sylpheed-attach-files.desktop
10075         * tools/kdeservicemenu/template_sylpheed-compress-attach.desktop
10076                 use Claws icon, use 'Sylpheed-Claws' in menu,
10077                 use kdialog, and other cleanups
10078
10079 2005-08-23 [paul]       1.9.13cvs55
10080
10081         * src/compose.c
10082                 fix paste/wrap crash
10083                 Patch by Colin
10084
10085 2005-08-23 [paul]       1.9.13cvs54
10086
10087         * src/main.c
10088                 fix crash recovery
10089                 Patch by Colin
10090
10091 2005-08-23 [paul]       1.9.13cvs53
10092
10093         * src/addressbook.c
10094         * src/editaddress.c
10095                 view all data of LDAP contacts
10096                 Patch by Colin
10097
10098 2005-08-23 [paul]       1.9.13cvs52
10099
10100         * src/addressbook.c
10101                 fix issues with the Search field
10102                 Patch by Colin
10103
10104 2005-08-22 [paul]       1.9.13cvs51
10105
10106         * src/folderview.c
10107                 put name of folder in processing dialog
10108                 title
10109         * src/prefs_folder_item.c
10110                 improve english usage
10111
10112 2005-08-22 [paul]       1.9.13cvs50
10113
10114         * src/filtering.c
10115         * src/filtering.h
10116         * src/matcher.c
10117         * src/matcher_parser_lex.l
10118         * src/matcher_parser_parse.y
10119         * src/prefs_filtering.c
10120                 add Filtering/Processing rule names feature.
10121                 (the incompatible old matcherrc is saved as
10122                 matcherrc.pre_names).
10123                 Patch by Colin
10124
10125 2005-08-22 [paul]       1.9.13cvs49
10126
10127         * src/procmsg.c
10128                 fix colour labelling
10129                 Patch by Colin
10130
10131 2005-08-22 [paul]       1.9.13cvs48
10132
10133         * src/textview.c
10134                 fix open_image_cb()
10135
10136 2005-08-22 [paul]       1.9.13cvs47
10137
10138         * src/imap.c
10139                 fix bug 789, 'SC crashes with imap (CVS ver)'
10140                 Patch by Colin
10141
10142 2005-08-22 [paul]       1.9.13cvs46
10143
10144         * src/mimeview.c
10145         * src/prefs_common.c
10146         * src/common/defs.h
10147                 define reused defaults in defs.h
10148         * src/textview.c
10149                 add 'Open image' to image popup menu
10150
10151 2005-08-21 [colin]      1.9.13cvs45
10152
10153         * src/summaryview.c
10154                 Fix bug #788 (Bogus "From" address displayed)
10155
10156 2005-08-20 [colin]      1.9.13cvs44
10157
10158         * src/folder.c
10159                 Fix buf #787 (multilevel delete causes SIGSEGV)
10160
10161 2005-08-19 [colin]      1.9.13cvs43
10162
10163         * src/inc.c
10164         * src/prefs_common.c
10165         * src/prefs_common.h
10166                 Add an hidden pref to allow modifying the
10167                 update stepping in incorporation.
10168                 Patch by wwp.
10169
10170 2005-08-19 [colin]      1.9.13cvs42
10171
10172         * src/compose.c
10173         * src/procmime.c
10174                 Workaround for broken MUAs: encode 
10175                 Content-type: name: as ASCII and 
10176                 Content-Disposition: filename: as
10177                 per rfc2231
10178         * src/prefs_account.c
10179                 Fix invisible-ness of SMTP SSL prefs
10180                 in NNTP accounts
10181
10182 2005-08-19 [paul]       1.9.13cvs41
10183
10184         * src/compose.c
10185         * src/prefs_common.c
10186         * src/prefs_common.h
10187         * src/prefs_wrapping.c
10188                 paste with or without wrapping.
10189                 patch by Colin
10190
10191 2005-08-19 [paul]       1.9.13cvs40
10192
10193         * src/prefs_common.c
10194         * src/prefs_common.h
10195         * src/summaryview.c
10196                 reintroduce enable_swap_from as a
10197                 hidden pref. patch by Colin
10198         * src/quote_fmt_parse.y
10199         * src/plugins/clamav/clamav_plugin.c
10200         * src/plugins/dillo_viewer/dillo_viewer.c
10201         * src/plugins/mathml_viewer/mathml_viewer.c
10202         * src/plugins/pgpcore/sgpgme.c
10203         * src/plugins/pgpinline/pgpinline.c
10204         * src/plugins/pgpmime/pgpmime.c
10205                 tidy up. patch by Colin
10206
10207 2005-08-19 [paul]       1.9.13cvs39
10208
10209         * configure.ac
10210                 complete cvs38's sync
10211         * src/editaddress.c
10212         * src/gedit-print.c
10213         * src/mutt.c
10214         * src/etpan/etpan-log.c
10215         * src/etpan/imap-thread.c
10216         * src/gtk/gtksourceprintjob.c
10217                 fix compilation warnings
10218                 (patch by Colin)
10219
10220 2005-08-19 [paul]       1.9.13cvs38
10221
10222         sync with main:
10223
10224         * src/account.c
10225         * src/action.c
10226         * src/addrbook.c
10227         * src/addrcache.c
10228         * src/addrharvest.c
10229         * src/addrindex.c
10230         * src/codeconv.c
10231         * src/compose.c
10232         * src/crash.c
10233         * src/exporthtml.c
10234         * src/exportldif.c
10235         * src/folder.c
10236         * src/image_viewer.c
10237         * src/inc.c
10238         * src/inc.h
10239         * src/jpilot.c
10240         * src/ldif.c
10241         * src/main.c
10242         * src/matcher.c
10243         * src/mbox.c
10244         * src/messageview.c
10245         * src/mh.c
10246         * src/mimeview.c
10247         * src/msgcache.c
10248         * src/mutt.c
10249         * src/news.c
10250         * src/partial_download.c
10251         * src/pine.c
10252         * src/pop.c
10253         * src/prefs_actions.c
10254         * src/prefs_common.c
10255         * src/prefs_customheader.c
10256         * src/prefs_display_header.c
10257         * src/prefs_gtk.c
10258         * src/prefs_themes.c
10259         * src/procheader.c
10260         * src/procmime.c
10261         * src/procmsg.c
10262         * src/recv.c
10263         * src/send_message.c
10264         * src/simple-gettext.c
10265         * src/sourcewindow.c
10266         * src/textview.c
10267         * src/vcard.c
10268         * src/common/defs.h
10269         * src/common/log.c
10270         * src/common/plugin.c
10271         * src/common/prefs.c
10272         * src/common/session.c
10273         * src/common/session.h
10274         * src/common/socket.c
10275         * src/common/socket.h
10276         * src/common/ssl_certificate.c
10277         * src/common/template.c
10278         * src/common/utils.c
10279         * src/common/utils.h
10280         * src/common/xml.c
10281         * src/gtk/about.c
10282         added wrappers for C library function that
10283                 take pathname arguments.
10284                 enabled compilation with MinGW.
10285                 use GDir instead of directly using opendir().
10286                 added rename_force().
10287
10288 2005-08-19 [paul]       1.9.13cvs37
10289         
10290         patches by Colin:
10291         * src/compose.c
10292                 fix privacy settings on re-editing
10293                 a sent message
10294         * src/jpilot.c
10295                 fix encoding bug
10296         * src/folder.c
10297         * src/procmsg.c
10298         * src/procmsg.h
10299         * src/summaryview.c
10300                 flag changing optimisation
10301
10302 2005-08-18 [martin]     1.9.13cvs36
10303
10304         * commitHelper
10305             added my login
10306         * src/addrcache.c
10307         * src/addrharvest.c
10308         * src/addrindex.c
10309         * src/compose.c
10310         * src/grouplistdialog.c
10311         * src/main.c
10312         * src/mainwindow.c
10313         * src/msgcache.c
10314         * src/mutt.c
10315         * src/pine.c
10316         * src/prefs_account.c
10317         * src/prefs_themes.c
10318         * src/stock_pixmap.c
10319         * src/summaryview.c
10320         * src/gtk/about.c
10321         * src/gtk/logwindow.c
10322             removed deprecated glib and gdk stuff
10323         * src/plugins/pgpcore/select-keys.c
10324             convert attributes from locale to utf8
10325
10326 2005-08-17 [paul]       1.9.13cvs35
10327
10328         * src/account.c
10329         * src/addressbook.c
10330                 use new GTK_STOCK_ icons if available
10331         * src/summaryview.c
10332         * src/gtk/gtksctree.c
10333         * src/gtk/gtksctree.h
10334                 faster range select. patch by Colin
10335
10336 2005-08-17 [paul]       1.9.13cvs34
10337
10338         patches by colin:
10339         * src/addressbook.c
10340         * src/addressitem.h
10341                 Add an edit button for contacts, fix selections
10342                 of gtksctree items
10343         * src/editaddress.c
10344                 Change labels, let Save be always possible in the
10345                 email and user atributes tabs
10346         * src/folderview.c
10347                 fix sort issues
10348         * src/summaryview.c
10349                 select next item instead of the displayed one
10350                 after deletion
10351
10352         * src/gtk/progressdialog.c
10353                 use prefs_common.enable_rules_hint
10354
10355 2005-08-13 [hoa]        1.9.13cvs33
10356
10357         * src/etpan/imap-thread.c
10358                 fixed build on Solaris.
10359
10360 2005-08-10 [colin]      1.9.13cvs32
10361
10362         * src/procmsg.c
10363                 Fix cvs31 (missing fclose before reading
10364                 the file)
10365
10366 2005-08-10 [colin]      1.9.13cvs31
10367
10368         * src/procmsg.c
10369                 Fix procmsg_msginfo_new_from_mimeinfo() when
10370                 the MimeInfo isn't stored in memory. This fixes
10371                 replying to an attached message.
10372
10373 2005-08-10 [colin]      1.9.13cvs30
10374
10375         * src/mainwindow.c
10376                 Fix slowness in account changing
10377
10378 2005-08-10 [colin]      1.9.13cvs29
10379
10380         * src/folder.c
10381         * src/folderutils.c
10382         * src/folderview.c
10383         * src/imap_gtk.c
10384         * src/mainwindow.c
10385         * src/mh_gtk.c
10386         * src/procmsg.c
10387         * src/summaryview.c
10388                 Optimize folder_has_parent_of_type
10389                 Prevent moving special sub-folders from contextual menus
10390                 Rework message a bit ("Empty all messages" -> "Delete all
10391                 messages")
10392                 Fix bug #780 (MSexchange IMAP - using IMAP "Sent Items" 
10393                 and "Deleted Items" folders)
10394
10395 2005-08-08 [colin]      1.9.13cvs28
10396
10397         * src/summaryview.c
10398         * src/prefs_summaries.c
10399                 Make "Select first unread|new" more flexible
10400                 (just prioritize new or unread)
10401
10402 2005-08-08 [colin]      1.9.13cvs27
10403
10404         * src/summaryview.c
10405                 If "select first new" is selected and there only
10406                 are unread messages, fallback to "select first
10407                 unread".
10408
10409 2005-08-08 [colin]      1.9.13cvs26
10410
10411         * src/folder.c
10412                 Fix shameful bugs (and bug #779)
10413
10414 2005-08-08 [colin]      1.9.13cvs25
10415
10416         * src/folder.c
10417         * src/folder.h
10418                 Cache parents' type to make folder_has_parent_of_type
10419                 faster
10420         * src/folderview.c
10421                 Forbid DnD of special sub-folders
10422         * src/procmsg.c
10423         * src/procmsg.h
10424                 Add MAIL_POSTFILTERING_HOOK
10425         * src/summaryview.c
10426                 Revert over-zealous deletion of the use_addr_book 
10427                 code
10428
10429 2005-08-07 [colin]      1.9.13cvs24
10430
10431         * src/folder.c
10432                 Fix big mistake (passing MsgInfo instead 
10433                 of FolderItem)
10434
10435 2005-08-07 [colin]      1.9.13cvs23
10436
10437         * src/compose.c
10438         * src/folder.c
10439         * src/folder.h
10440         * src/foldersel.c
10441         * src/folderutils.c
10442         * src/folderview.c
10443         * src/imap.c
10444         * src/mainwindow.c
10445         * src/messageview.c
10446         * src/mh.c
10447         * src/msgcache.c
10448         * src/procmime.c
10449         * src/summaryview.c
10450                 Make subfolders of Drafts, Queue, Outbox, Trash
10451                 work like their parents. 
10452                 Fixes bug #686 (Message view on Drafts/Sent should be the same on Subfolders)
10453
10454 2005-08-07 [colin]      1.9.13cvs22
10455
10456         * src/addressbook.c
10457                 Fix bug #771 (Dragged contacts not saved)
10458
10459 2005-08-07 [paul]       1.9.13cvs21
10460
10461         * src/summaryview.c
10462                 fix bug 32 'Search Doesn't display results
10463                 if "Hide Read Messages" is chosen'
10464                 be more literal in interpreting 'Hide read
10465                 messages'
10466
10467 2005-08-07 [colin]      1.9.13cvs20
10468
10469         * src/folderview.c
10470                 Add debug
10471         * src/summaryview.c
10472                 Faster 'unthread_for_execution'
10473
10474 2005-08-06 [paul]       1.9.13cvs19
10475
10476         * src/mainwindow.c
10477                 add mnemonics to Set displayed columns
10478                 fix bug where msgview_visible option was
10479                 overwritten as TRUE on startup
10480
10481 2005-08-06 [paul]       1.9.13cvs18
10482
10483         * src/mainwindow.c
10484                 refer to 'displayed columns in folder/message
10485                 list' not 'displayed items in summary/message view'
10486         * src/prefs_display_header.c
10487                 replace GTK_STOCK_DELETE with GTK_STOCK_REMOVE to
10488                 be consistent with similar dialogues
10489         * src/prefs_folder_column.c
10490         * src/prefs_summary_column.c
10491                 'columns' not 'items', and folder and message lists,
10492                 instead of folder and summary views;
10493                 Use 'Hidden columns' as list heading not 'Available
10494                 items';
10495                 move the 'Remove' button to the right hand side;
10496                 top-align the buttons;
10497                 remove unneeded vbox
10498         * src/prefs_summaries.c
10499                 put the 2 column prefs buttons in a frame to reduce
10500                 overall width; refer to columns not items &c.
10501
10502 2005-08-05 [colin]      1.9.13cvs17
10503
10504         * src/prefs_common.c
10505         * src/prefs_common.h
10506         * src/mainwindow.c
10507         * src/compose.c
10508         * src/messageview.c
10509                 Add an hidden toolbar_detachable pref, so
10510                 that I can get rid of these painful handles
10511                 in the toolbars. Defaults to TRUE to avoid
10512                 changing the GUI on unsuspecting people...
10513
10514 2005-08-05 [colin]      1.9.13cvs16
10515
10516         * src/Makefile.am
10517         * src/prefs_folder_column.c
10518         * src/prefs_folder_column.h
10519                 Add prefs for folder columns
10520         * src/folderview.c
10521         * src/folderview.h
10522         * src/mainwindow.c
10523         * src/mainwindow.h
10524         * src/prefs_common.c
10525         * src/prefs_common.h
10526         * src/prefs_summaries.c
10527                 Use them
10528         * src/prefs_summary_column.c
10529         * src/summaryview.c
10530         * src/summaryview.h
10531                 Add a To column
10532         * src/textview.c
10533         * src/common/utils.c
10534         * src/common/utils.h
10535                 Move uri colourisation functions
10536                 to utils
10537         * src/compose.c
10538                 Colourise URIs
10539         * src/imap.c
10540                 Fix bug with LIST where we'd try
10541                 to get Folder//////[...]/// 
10542
10543 2005-08-05 [paul]       1.9.13cvs15
10544
10545         * src/prefs_summaries.c
10546                 improve the English usage
10547         * src/summaryview.c
10548                 set font on column change
10549                 thanks to Colin
10550
10551 2005-08-05 [paul]       1.9.13cvs14
10552
10553         * src/prefs_common.c
10554         * src/prefs_common.h
10555         * src/prefs_summaries.c
10556         * src/summaryview.c
10557                 replace 'open_unread_on_enter' option with
10558                 'select_on_entry' option. opening/not opening
10559                 is now exclusively controlled by 'always_show_msg'
10560
10561 2005-08-04 [colin]      1.9.13cvs13
10562
10563         * src/compose.c
10564                 Remove dead code
10565                 Add colourisation of quotes and signatures
10566         * src/folderview.c
10567                 Fix possible crashes
10568         * src/messageview.c
10569                 Change an assert that is no problem
10570         * src/news.c
10571         * src/news_gtk.c
10572         * src/news_gtk.h
10573                 Fix offline mode
10574         * src/gtk/quicksearch.c
10575                 Fix a possible crash
10576
10577 2005-08-03 [colin]      1.9.13cvs12
10578
10579         * src/prefs_account.c
10580                 Fix bug #777 (Sylpheed crash in account configuration)
10581
10582 2005-08-03 [colin]      1.9.13cvs11
10583
10584         * src/addressbook.c
10585         * src/editaddress.c
10586         * src/editgroup.c
10587                 Fixing addressbook, round 2
10588         * src/textview.c
10589                 Fix emphasis color on rechecking 'Colorize messages'
10590
10591 2005-08-03 [paul]       1.9.13cvs10
10592
10593         sync with main
10594
10595         * src/addr_compl.c
10596         * src/compose.c
10597         * src/main.c
10598         * src/pop.c
10599         * src/prefs_account.c
10600         * src/procmime.c
10601         * src/procmsg.c
10602         * src/quote_fmt_parse.y
10603         * src/textview.c
10604         * src/common/quoted-printable.c
10605         * src/common/utils.c
10606         * src/common/utils.h
10607         * src/common/xml.c
10608                 replaced incorrect locale-independent
10609                 ctype functions with GLib's. Corrected
10610                 signedness mismatch.
10611         * src/headerview.c
10612                 headerview_create(): added spacing for vbox.
10613         * src/gtk/about.c
10614                 set focus to the OK button.
10615
10616 2005-08-03 [colin]      1.9.13cvs9
10617
10618         * src/folderview.c
10619                 Fix possible crash
10620
10621 2005-08-02 [colin]      1.9.13cvs8
10622
10623         * src/mainwindow.c
10624                 Fix cast
10625         * src/addressbook.c
10626         * src/addressitem.h
10627                 Fix a cast and more generally, try to make the
10628                 GUI more intuitive and consistent (round 1)
10629
10630 2005-08-02 [paul]       1.9.13cvs7
10631
10632         * src/folder.h
10633                 missing in 1.9.13cvs6
10634
10635 2005-08-02 [colin]      1.9.13cvs6
10636
10637         * src/folder.c
10638                 Fix one more leak
10639
10640 2005-08-02 [colin]      1.9.13cvs5
10641
10642         * src/folder.c
10643         * src/folderview.c
10644         * src/imap.c
10645         * src/main.c
10646         * src/mbox.c
10647         * src/procmsg.c
10648         * src/summaryview.c
10649                 Fix a number of folder_item_get_msg_list()-related
10650                 leaks (missing procmsg_msginfo_free()s)
10651
10652 2005-08-01 [colin]      1.9.13cvs4
10653
10654         * src/folderview.c
10655         * src/folderview.h
10656         * src/mainwindow.c
10657         * src/prefs_fonts.c
10658         * src/prefs_summaries.c
10659         * src/prefs_themes.c
10660         * src/summaryview.c
10661         * src/summaryview.h
10662         * src/textview.c
10663         * src/textview.h
10664                 Fix instant-apply of summary and folderview-related prefs
10665                 Fix erroneous g_free and alertpanels in prefs_theme
10666                 Add instant-apply for fonts
10667                 Defer applying of prefs a little bit so it's done only
10668                 once even if requested by multiples prefs pages
10669
10670 2005-08-01 [paul]       1.9.13cvs3
10671
10672         * src/main.c
10673                 fix bug 776 'S.C. crashes on close'
10674                 thanks to Colin
10675         * src/etpan/etpan-thread-manager-types.h
10676                 add missing include
10677                 thanks to Hoa
10678
10679 2005-07-25 [paul]       1.9.13cvs2
10680
10681         * src/summaryview.c
10682                 fix typos. spotted by Fabien Vantard
10683
10684 2005-07-24 [paul]       1.9.13cvs1
10685
10686         * doc/man/sylpheed.1
10687                 update man page, incorporating fix of
10688                 bug 769 'Typo in manpage'
10689         * src/etpan/imap-thread.c
10690                 fix NetBSD openssl dependencies. patch by
10691                 George Michaelson <ggm@apnic.net>
10692         * po/pt_BR.po
10693                 updated by Frederico Goncalves Guimaraes
10694
10695 2005-07-22 [paul]       1.9.13
10696
10697         1.9.13 release
10698
10699 2005-07-22 [paul]       1.9.12cvs91
10700
10701         * AUTHORS
10702         * INSTALL
10703         * README.claws
10704         * RELEASE_NOTES.claws
10705                 updated for release
10706         * configure.ac
10707         * po/nb.po
10708         * tools/claws.i18n.status.pl
10709                 add Norwegian translation. submiited by
10710                 Geir Helland <pjallabais@users.sourceforge.net>
10711         * po/ca.po
10712         * po/de.po
10713         * po/es.po
10714         * po/fi.po
10715         * po/fr.po
10716         * po/it.po
10717         * po/sk.po
10718         * po/sr.po
10719         * po/zh_CN.po
10720                 updated by Miquel Oliete, Thomas Gilgin, Ricardo
10721                 Mones Lastra, Tommi Pirinen, Fabien Vantard,
10722                 Andrea Spadaccini, Andrej Kacian, Aleksandar Urosevic,
10723                 Yang Guilong
10724         * src/plugins/clamav/clamav_plugin_gtk.c
10725         * src/plugins/spamassassin/spamassassin_gtk.c
10726                 replace outdated description strings
10727
10728 2005-07-21 [colin]      1.9.12cvs90
10729
10730         * src/folder.c
10731                 Set folder to batch mode when scanning it. Makes deletion
10732                 of unread mails on IMAP much faster (due to the UNREAD 
10733                 flag unsetting)
10734
10735 2005-07-21 [darko]      1.9.12cvs89
10736
10737         * configure.ac
10738                 link against libresolv if necessary (patch by Paul)
10739         * src/msgcache.c
10740                 use glib's portable macros to determine endianness
10741
10742 2005-07-21 [paul]       1.9.12cvs88
10743
10744         * src/crash.c
10745         * src/gtk/about.c
10746                 update compiled-in features list
10747
10748 2005-07-20 [colin]      1.9.12cvs87
10749
10750         * src/folder.c
10751         * src/textview.c
10752                 Gcc 2.9x compilation fixes, thanks to Darko
10753         * src/plugins/clamav/clamav_plugin.c
10754                 Little optimisation: load virus database only once
10755         * src/plugins/spamassassin/spamassassin.c
10756                 Big optimisation: filtering one mail took at least 1 second,
10757                 now it takes at least 50ms. Doesn't speed up spamassassin 
10758                 itself, but should already be much more tolerable.
10759
10760 2005-07-20 [colin]      1.9.12cvs86
10761
10762         * src/summaryview.c
10763                 Fix performance issue
10764
10765 2005-07-19 [colin]      1.9.12cvs85
10766
10767         * src/plugins/pgpinline/plugin.c
10768                 Fix warning
10769
10770 2005-07-19 [colin]      1.9.12cvs84
10771
10772         * configure.ac
10773         * src/plugins/Makefile.am
10774         * src/plugins/pgpinline/.cvsignore
10775         * src/plugins/pgpinline/Makefile.am
10776         * src/plugins/pgpinline/pgpinline.c
10777         * src/plugins/pgpinline/pgpinline.deps
10778         * src/plugins/pgpinline/pgpinline.h
10779         * src/plugins/pgpinline/plugin.c
10780                 Put pgpinline in the main tree
10781
10782 2005-07-19 [paul]       1.9.12cvs83
10783
10784         * src/prefs_actions.c
10785                 prevent '//' in menu names, which cause a crash
10786                 thanks to Colin
10787
10788 2005-07-19 [paul]       1.9.12cvs82
10789
10790         * configure.ac
10791                 be generally more informative in configure output.
10792                 OpenSSL: correction: '[ --enable-openssl ...' -> 
10793                 '[ --disable-openssl ...', as --enable-openssl is default
10794                 PGP/MIME: don't check for GPGME again, check for
10795                 pgpcore instead. Therefore prevent the possibility of
10796                 attempting to build pgpmime if pgpcore dependencies are
10797                 not met
10798                 ClamAV: use pkgconfig to check for lib
10799                 libgnomeprint: revert logic on inner test to match
10800                 everything else
10801         * src/plugins/pgpcore/sgpgme.c
10802                 add missing include
10803
10804 2005-07-19 [colin]      1.9.12cvs81
10805
10806         * src/summaryview.c
10807                 Fix slow thread rebuilding in particular
10808                 cases
10809
10810 2005-07-19 [paul]       1.9.12cvs80
10811
10812         * sylpheed-claws.desktop
10813                 fix typo, spotted by Stephan Sachse
10814         * src/account.c
10815                 replace GTK_STOCK_ADD with
10816                 GTK_STOCK_NEW button
10817
10818 2005-07-18 [colin]      1.9.12cvs79
10819
10820         * src/etpan/imap-thread.c
10821                 Fix return value (Thanks Hoa)
10822
10823 2005-07-18 [colin]      1.9.12cvs78
10824
10825         * src/imap.c
10826                 Allow empty passwords
10827                 Create drafts/queue/outbox if necessary
10828         * src/summaryview.c
10829                 Remove old code
10830         * src/etpan/imap-thread.c
10831                 Fix STARTTLS (Thanks to Hoa)
10832
10833 2005-07-18 [paul]       1.9.12cvs77
10834
10835         * ChangeLog-gtk2.jp
10836         * ChangeLog.jp
10837                 removed
10838         * Makefile.am
10839                 updated to reflect additions and removals
10840         * TODO
10841                 updated to be claws-specific
10842         * TODO-gtk2
10843         * TODO-gtk2.jp
10844         * TODO.jp
10845         * sylpheed-128x128.png
10846         * sylpheed-64x64.png
10847                 removed
10848         * sylpheed-claws-128x128.png
10849         * sylpheed-claws-64x64.png
10850         * sylpheed-claws.desktop
10851         * sylpheed-claws.png
10852                 added
10853         * sylpheed.desktop
10854         * sylpheed.png
10855                 removed
10856
10857 2005-07-17 [paul]       1.9.12cvs76
10858
10859         * src/account.c
10860         * src/addressbook.c
10861         * src/alertpanel.c
10862         * src/alertpanel.h
10863         * src/compose.c
10864         * src/exphtmldlg.c
10865         * src/expldifdlg.c
10866         * src/folderview.c
10867         * src/imap_gtk.c
10868         * src/inc.c
10869         * src/message_search.c
10870         * src/messageview.c
10871         * src/mh_gtk.c
10872         * src/news_gtk.c
10873         * src/prefs_actions.c
10874         * src/prefs_filtering.c
10875         * src/prefs_matcher.c
10876         * src/prefs_template.c
10877         * src/prefs_themes.c
10878         * src/ssl_manager.c
10879         * src/summary_search.c
10880         * src/textview.c
10881         * src/toolbar.c
10882         * src/gtk/sslcertwindow.c
10883         * src/plugins/pgpcore/sgpgme.c
10884                 rework alertpanels
10885
10886 2005-07-17 [colin]      1.9.12cvs75
10887
10888         * src/privacy.c
10889                 add a PrivacySystem accessor that checks that
10890                 the system cached in a MimeInfo's privacydata
10891                 is still registered. Use this accessor instead
10892                 of directly using data->system. Fixes crashes
10893                 after unloading pgp plugins.
10894
10895 2005-07-17 [colin]      1.9.12cvs74
10896
10897         * src/alertpanel.c
10898                 Change geometry hints to a simple default size.
10899                 Fixes the certs dialogs.
10900
10901 2005-07-17 [colin]      1.9.12cvs73
10902
10903         * src/gtk/sslcertwindow.c
10904                 Use a gtkExpander
10905
10906 2005-07-17 [colin]      1.9.12cvs72
10907
10908         * src/plugins/pgpcore/Makefile.am
10909         * src/plugins/pgpmime/Makefile.am
10910                 Add gpgme libs
10911
10912 2005-07-17 [paul]       1.9.12cvs71
10913
10914         * configure.ac
10915                 add --disable-gnomeprint option
10916                 modified version of patch by Marius Mauch
10917
10918 2005-07-17 [paul]       1.9.12cvs70
10919
10920         * src/common/defs.h
10921                 update urls
10922         * src/account.c
10923         * src/action.c
10924         * src/addressbook.c
10925         * src/compose.c
10926         * src/foldersel.c
10927         * src/folderview.c
10928         * src/html.c
10929         * src/imap_gtk.c
10930         * src/main.c
10931         * src/mainwindow.c
10932         * src/messageview.c
10933         * src/mh_gtk.c
10934         * src/mimeview.c
10935         * src/news_gtk.c
10936         * src/prefs_account.c
10937         * src/prefs_send.c
10938         * src/prefs_summaries.c
10939         * src/procmsg.c
10940         * src/summaryview.c
10941         * src/common/utils.c
10942         * src/common/xml.c
10943         * src/plugins/pgpcore/passphrase.c
10944         * src/plugins/pgpcore/select-keys.c
10945                 replace inappropriately used backticks
10946                 with single quotes
10947
10948 2005-07-16 [colin]      1.9.12cvs69
10949
10950         * src/image_viewer.c
10951                 Add extra paranoid checks
10952
10953 2005-07-16 [colin]      1.9.12cvs68
10954
10955         * src/plugins/pgpcore/prefs_gpg.c
10956                 Don't auto-check sigs by default, as it
10957                 can be really slow.
10958
10959 2005-07-16 [colin]      1.9.12cvs67
10960
10961         * src/plugins/pgpcore/sgpgme.c
10962                 Make messages a bit better.
10963
10964 2005-07-16 [colin]      1.9.12cvs66
10965
10966         * src/imap.c
10967                 Remove pseudo-log
10968         * src/etpan/imap-thread.c
10969                 Add real log
10970
10971 2005-07-16 [colin]      1.9.12cvs65
10972
10973         * src/main.c
10974         * src/prefs_other.c
10975                 And now, fix build with libetpan :-/
10976
10977 2005-07-15 [colin]      1.9.12cvs64
10978
10979         * src/prefs_other.c
10980                 Continue fixing build without libetpan.
10981
10982 2005-07-15 [colin]      1.9.12cvs63
10983
10984         * src/main.c
10985                 Fix build with --disable-libetpan
10986
10987 2005-07-15 [colin]      1.9.12cvs62
10988
10989         * configure.ac
10990                 Bump libetpan's version
10991
10992 2005-07-15 [colin]      1.9.12cvs61
10993
10994         * src/etpan/imap-thread.c
10995                 Actually stop logging :)
10996
10997 2005-07-15 [colin]      1.9.12cvs60
10998
10999         * src/addressbook.c
11000                 Fix dnd of multiple addresses.
11001
11002 2005-07-15 [hoa]        1.9.12cvs59
11003
11004         * src/etpan/imap-thread.c
11005             disable login of IMAP password in libetpan log file.
11006
11007 2005-07-15 [paul]       1.9.12cvs58
11008
11009         * src/account.c
11010                 don't automatically sort
11011                 do allow drag n drop
11012
11013 2005-07-15 [paul]       1.9.12cvs57
11014
11015         * src/account.c
11016         * src/ssl_manager.c
11017                 alphabetical listing
11018
11019 2005-07-15 [paul]       1.9.12cvs56
11020
11021         * src/gtk/pluginwindow.c
11022                 sort plugin list alphabetically
11023
11024 2005-07-15 [paul]       1.9.12cvs55
11025
11026         * src/prefs_spelling.c
11027         * src/prefs_wrapping.c
11028                 unify English usage
11029
11030 2005-07-15 [colin]      1.9.12cvs54
11031
11032         * src/wizard.c
11033                 Typo fix
11034
11035 2005-07-15 [paul]       1.9.12cvs53
11036
11037         * src/prefs_message.c
11038                 make 'show cursor' a hidden option
11039
11040 2005-07-14 [colin]      1.9.12cvs52
11041
11042         * src/plugins/spamassassin/Makefile.am
11043         * src/plugins/clamav/Makefile.am
11044                 Fix double EXTRA_DISTs
11045
11046 2005-07-14 [colin]      1.9.12cvs51
11047
11048         * src/plugins/clamav/Makefile.am
11049         * src/plugins/clamav/clamav_plugin_gtk.deps
11050         * src/plugins/spamassassin/Makefile.am
11051         * src/plugins/spamassassin/spamassassin_gtk.deps
11052                 Make $plugin_gtk depend on $plugin
11053
11054 2005-07-14 [hoa]        1.9.12cvs50
11055
11056         * src/etpan/imap-thread.c
11057                 enable debug log of libetpan when running with --debug
11058
11059 2005-07-14 [colin]      1.9.12cvs49
11060
11061         * configure.ac
11062         * src/common/Makefile.am
11063         * src/common/plugin.c
11064         * src/common/plugin.h
11065                 Add a little plugin dependancy system.
11066                 Plugins can ship a $plugin_name.deps file
11067                 (near them in PLUGINDIR) so that their
11068                 dependancies are loaded if possible.
11069         * src/plugins/Makefile.am
11070         * src/plugins/pgpcore/Makefile.am
11071         * src/plugins/pgpcore/passphrase.c
11072         * src/plugins/pgpcore/passphrase.h
11073         * src/plugins/pgpcore/plugin.c
11074         * src/plugins/pgpcore/prefs_gpg.c
11075         * src/plugins/pgpcore/prefs_gpg.h
11076         * src/plugins/pgpcore/select-keys.c
11077         * src/plugins/pgpcore/select-keys.h
11078         * src/plugins/pgpcore/sgpgme.c
11079         * src/plugins/pgpcore/sgpgme.h
11080                 Introduce pgpcore, used by pgpmime and
11081                 pgpinline
11082         * src/plugins/pgpmime/Makefile.am
11083         * src/plugins/pgpmime/passphrase.c
11084         * src/plugins/pgpmime/passphrase.h
11085         * src/plugins/pgpmime/pgpmime.c
11086         * src/plugins/pgpmime/pgpmime.deps
11087         * src/plugins/pgpmime/plugin.c
11088         * src/plugins/pgpmime/prefs_gpg.c
11089         * src/plugins/pgpmime/prefs_gpg.h
11090         * src/plugins/pgpmime/select-keys.c
11091         * src/plugins/pgpmime/select-keys.h
11092         * src/plugins/pgpmime/sgpgme.c
11093         * src/plugins/pgpmime/sgpgme.h
11094                 Remove the core from pgpmime and add the
11095                 dependancy to pgpcore.
11096
11097 2005-07-14 [paul]       1.9.12cvs48
11098
11099         * src/stock_pixmap.c
11100                 forgot this in last commit
11101
11102 2005-07-14 [paul]       1.9.12cvs47
11103
11104         * src/account.c
11105         * src/addressbook.c
11106                 add accelerators for the buttons (sync with main)
11107         * src/compose.c
11108         * src/compose.h
11109                 add accelerators for the buttons.
11110                 fix editing with external editor.
11111                 replace gdk_input_*() with GIOChannel;
11112                 (sync with main)
11113         * src/foldersel.c
11114                 display folder names with new/unread
11115                 representation (sync with main)
11116         * src/main.c
11117                 specify default window icon (sync with main)
11118         * src/prefs_common.c
11119                 use_addr_book default to FALSE
11120         * src/summaryview.c
11121         * src/textview.c
11122                 add accelerators for the buttons (sync with main)
11123         * src/gtk/menu.c
11124                 fix typos
11125         * src/pixmaps/sylpheed_icon.xpm
11126                 updated
11127
11128 2005-07-13 [paul]       1.9.12cvs46
11129
11130         * src/plugins/pgpmime/pgpmime.c
11131         * src/plugins/pgpmime/sgpgme.c
11132                 (temporarily) use deprecated gpgme_data_rewind()
11133                 while largefile support is not present
11134                 (as suggested by Colin)
11135
11136 2005-07-13 [paul]       1.9.12cvs45
11137
11138         * configure.ac
11139                 remove large file support (for now):
11140                 it breaks too many things
11141
11142 2005-07-13 [paul]       1.9.12cvs44
11143
11144         * configure.ac
11145                 add large file support
11146         * src/html.c
11147                 fix bug #763 where href attribute was not
11148                 the very first attribute of a link
11149                 patch by Thomas Gilgin
11150
11151 2005-07-13 [colin]      1.9.12cvs43
11152
11153         * src/gtk/pluginwindow.c
11154                 Little portability fix
11155
11156 2005-07-13 [colin]      1.9.12cvs42
11157
11158         * src/plugins/pgpmime/sgpgme.c
11159                 Fix crasher.
11160
11161 2005-07-13 [colin]      1.9.12cvs41
11162
11163         * src/plugins/pgpmime/pgpmime.c
11164         * src/plugins/pgpmime/sgpgme.c
11165                 Use gpgme_data_release_and_get_mem instead
11166                 of gpgme_data_read.
11167
11168 2005-07-13 [colin]      1.9.12cvs40
11169
11170         * configure.ac
11171         * src/plugins/pgpmime/passphrase.c
11172         * src/plugins/pgpmime/passphrase.h
11173         * src/plugins/pgpmime/pgpmime.c
11174         * src/plugins/pgpmime/plugin.c
11175         * src/plugins/pgpmime/select-keys.c
11176         * src/plugins/pgpmime/select-keys.h
11177         * src/plugins/pgpmime/sgpgme.c
11178         * src/plugins/pgpmime/sgpgme.h
11179                 Port pgpmime to gpgme-1.0.
11180
11181 2005-07-12 [paul]       1.9.12cvs39
11182
11183         * AUTHORS
11184         * src/toolbar.c
11185         * src/toolbar.h
11186                 add a 'Go to Prev' button to the toolbar.
11187                 correct tooltip text of go to buttons.
11188                 based on patch by Yang Guilong <bamanzi@gmail.com>
11189
11190 2005-07-12 [colin]      1.9.12cvs38
11191
11192         * src/statusbar.c
11193                 Fix progress bar showing stuff at startup.
11194
11195 2005-07-12 [paul]       1.9.12cvs37
11196
11197         * src/editjpilot.c
11198                 fix building with jpilot support
11199
11200 2005-07-11 [colin]      1.9.12cvs36
11201
11202         * src/inc.c
11203                 Add visual indication that filtering is running
11204         * src/textview.c
11205                 Make {}[] uri delimiters
11206         * src/summaryview.c
11207                 Remove useless (and slow) calls
11208
11209 2005-07-11 [paul]       1.9.12cvs35
11210
11211         * src/plugins/clamav/clamav_plugin_gtk.c
11212         * src/plugins/dillo_viewer/dillo_prefs.c
11213         * src/plugins/pgpmime/prefs_gpg.c
11214         * src/plugins/spamassassin/spamassassin_gtk.c
11215                 gather plugins prefs together under their
11216                 own 'Plugins' heading
11217
11218 2005-07-11 [paul]       1.9.12cvs34
11219
11220         sync with main
11221
11222         * src/account.c
11223                 account_delete(): modified alert dialog
11224         * src/editjpilot.c
11225         * src/editvcard.c
11226                 fixed a crash when cancelling file selection
11227                 dialog by Escape key. Made non-ascii filename
11228                 selectable.
11229         * src/prefs_template.c
11230                 prefs_template_window_create(): make scrolled
11231                 window policy AUTOMATIC
11232
11233 2005-07-10 [hoa]        1.9.12cvs33
11234
11235         * src/etpan/imap-thread.c
11236                 workaround for old Courier IMAP servers.
11237
11238 2005-07-10 [colin]      1.9.12cvs32
11239
11240         * src/folder.c
11241         * src/statusbar.c
11242         * src/statusbar.h
11243                 Add visual progress indicator on filtering/processing
11244                 Factorize the progress bar code
11245         * src/imap.c
11246         * src/imap.h
11247         * src/etpan/imap-thread.c
11248                 Add a reference counter to avoid destroying the Folder
11249                 while it's in use by another callback.
11250
11251 2005-07-09 [hoa]        1.9.12cvs31
11252
11253         * src/imap.c
11254         * src/etpan/imap-thread.c
11255                 fixed deadlock when removing IMAP account.
11256
11257 2005-07-08 [colin]      1.9.12cvs30
11258
11259         * src/textview.c
11260         * src/unmime.c
11261                 Fix again problems decoding broken headers
11262         * src/gtk/inputdialog.c
11263                 Fix local variable shadowing a global one
11264
11265 2005-07-08 [colin]      1.9.12cvs29
11266
11267         * src/msgcache.c
11268                 Make the cache/mark files platform-agnostic by writing
11269                 them in little-endian format. Reading them is also done
11270                 in little-endian format, of course; however, in order
11271                 to avoid trashing mark data on big-endian machines, the
11272                 files are, at first, read from the native format if the
11273                 little-endian one doesn't exist. This is easy to deter-
11274                 mine by trying to open a file with a swapped data_ver
11275                 and seeing if it's the wanted version.
11276                 Little-endian using users should see absolutely no
11277                 difference, Big-endian users may get a very little
11278                 performance drop due to byte-swapping.
11279                 Tested on i386 and ppc32. 
11280                 Fixes bug #159 (The index file, in the mailboxes, is 
11281                 hardware depending).
11282
11283                 To have the cache/mark files updated to the new little-
11284                 endian format, "Check for new messages" or even
11285                 "Rebuild folder tree" aren't enough. Files will be
11286                 updated as soon as a folder has been opened/closed.
11287                 To update everything, just select all folders by
11288                 selecting them one by one.
11289
11290 2005-07-07 [colin]      1.9.12cvs28
11291
11292         * src/imap.c
11293                 Remember the folder separator per IMAPFolder
11294                 instead of globally.
11295                 Revive the Session on noop; fixes bug #761
11296                 (mark a bunch of unread messages as read takes 
11297                 forever)
11298
11299 2005-07-07 [darko]      1.9.12cvs27
11300
11301         * src/common/template.c
11302                 Sort templates alphabetically
11303
11304 2005-07-06 [colin]      1.9.12cvs26
11305
11306         * src/imap.c
11307                 Try to use the correct separator in
11308                 most cases. Possibly fixes bug #759
11309                 (only creates the INBOX folder when 
11310                 setting up new IMAP account) and 
11311                 bug #760 (Can't retrieve messages)
11312
11313 2005-07-06 [colin]      1.9.12cvs25
11314
11315         * src/imap.c
11316                 Use real_path in status command. This will
11317                 help later, when namespaces will be used.
11318
11319 2005-07-06 [colin]      1.9.12cvs24
11320
11321         * configure.ac
11322         * src/account.c
11323         * src/folder.c
11324         * src/imap.c
11325         * src/etpan/etpan-log.c
11326         * src/etpan/etpan-thread-manager.c
11327         * src/etpan/imap-thread.c
11328                 Add a --disable-libetpan parameter. With this,
11329                 users that don't want IMAP4 support can avoid
11330                 the new dependancy (and have no IMAP support).
11331                 Users that have IMAP4 accounts and use this
11332                 parameter won't lose their configuration, their
11333                 IMAP accounts will just be invisible and not
11334                 used.
11335         * src/textview.c
11336                 Make the "Copy ..." contextual menu items 
11337                 copy to both the X clipboard and the gtk 
11338                 clipboard - as most other apps do.
11339         * src/gtk/about.c
11340                 Add a notice about OpenSSL usage, in order to
11341                 comply with OpenSSL's license (point 6):
11342                 http://www.openssl.org/source/license.html
11343
11344 2005-07-06 [colin]      1.9.12cvs23
11345
11346         * src/alertpanel.c
11347                 Fix a minimum size for alertpanels
11348         * src/compose.c
11349                 Show 'No space left on device' type errors
11350                 when queuing/sending
11351         * src/imap_gtk.c
11352         * src/mh_gtk.c
11353                 Rework folder's deletion message (remove 
11354                 extra \n)
11355
11356 2005-07-05 [colin]      1.9.12cvs22
11357
11358         * src/imap.c
11359                 Add an alertpanel on auth error
11360                 Add pseudo-log
11361                 Remove pthread-related stuff
11362
11363 2005-07-05 [colin]      1.9.12cvs21
11364
11365         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
11366                 Fix crash on plugin reloading (with a hack)
11367
11368 2005-07-05 [colin]      1.9.12cvs20
11369
11370         * src/prefs_account.c
11371         * src/prefs_account.h
11372                 Fix typo
11373         * src/gtk/filesel.c
11374         * src/gtk/filesel.h
11375                 Add a way to filter the view
11376         * src/gtk/pluginwindow.c
11377                 Filter loadable stuff
11378         * src/plugins/pgpmime/prefs_gpg.c
11379                 Fix missing unregistration
11380         * .cvsignore
11381         * src/etpan/.cvsignore
11382         * src/plugins/spamassassin/.cvsignore
11383                 Add more stuff to cvs ignored files
11384
11385 2005-07-04 [colin]      1.9.12cvs19
11386
11387         * src/imap.c
11388                 Fix scan_required returning FALSE when it
11389                 shouldn't. Maybe fix #760 (Can't retrieve
11390                 messages)
11391
11392 2005-07-04 [colin]      1.9.12cvs18
11393
11394         * src/summaryview.c
11395                 Fix always_show_msg pref
11396
11397 2005-07-04 [paul]       1.9.12cvs17
11398
11399         sync with main (forgotten in last commit)
11400         
11401         * src/common/utils.c
11402         * src/common/utils.h
11403                 check_line_length(): new.
11404                 is_dir_exist()
11405                 is_file_entry_exist()
11406                 dirent_is_regular_file()
11407                 dirent_is_directory(): use g_file_test() instead of stat().
11408
11409 2005-07-04 [paul]       1.9.12cvs16
11410
11411         sync with main:
11412
11413         * src/compose.c
11414                 compose_write_to_file(): check for line
11415                 length limit and display warning if exceeds
11416         * src/jpilot.c
11417                 use get_home_dir() instead of g_get_home_dir()
11418         * src/procheader.c
11419                 removed warning about invalid date
11420         * src/vcard.c
11421                 use get_home_dir() instead of g_get_home_dir()
11422
11423 2005-07-04 [paul]       1.9.12cvs15
11424
11425         * src/stock_pixmap.c
11426                 fix new pixmap naming errors
11427                 patch by Aleksandar Urosevic <urke.dd@urosevic.net>
11428
11429 2005-07-04 [colin]      1.9.12cvs14
11430
11431         * src/imap.c
11432                 Fix debugging string with a warning
11433
11434 2005-07-04 [colin]      1.9.12cvs13
11435
11436         * configure.ac
11437                 Add a check for libetpan's version (>= 0.37)
11438
11439 2005-07-04 [hoa]        1.9.12cvs12
11440
11441         * commitHelper
11442         * src/imap.c
11443         * src/etpan/imap-thread.c
11444         * src/etpan/imap-thread.h
11445                 fixed IMAP implementation of check of mails.
11446
11447 2005-07-03 [hoa]        1.9.12cvs11
11448
11449         * src/etpan/Makefile.am
11450         * src/etpan/etpan-errors.h
11451         * src/etpan/etpan-log.[ch]
11452         * src/etpan/etpan-thread-manager-types.h
11453         * src/etpan/etpan-thread-manager.[ch]
11454         * src/etpan/imap-thread.[ch]
11455         * src/Makefile.am
11456         * src/imap.c
11457         * src/main.c
11458         * src/prefs_other.c
11459         * configure.ac
11460             merged imap branch.
11461             dependency on libetpan 0.37 is now added.
11462
11463 2005-07-01 [colin]      1.9.12cvs10
11464
11465         * src/Makefile.am
11466         * src/folder.c
11467         * src/folder.h
11468         * src/folderview.c
11469         * src/stock_pixmap.c
11470         * src/stock_pixmap.h
11471         * src/plugins/trayicon/trayicon.c
11472                 Add marked symbol on folders containing
11473                 marked messages
11474         * src/procmsg.c
11475         * src/procmsg.h
11476         * src/toolbar.c
11477         * src/prefs_common.c
11478         * src/prefs_common.h
11479         * src/prefs_send.c
11480                 Add an optional confirmation dialog on queue
11481                 sending. Patch by wwp.
11482         * src/pixmaps/dir_close_mark.xpm        ** ADDED **
11483         * src/pixmaps/dir_open_hrm_mark.xpm     ** ADDED **
11484         * src/pixmaps/dir_open_mark.xpm         ** ADDED **
11485         * src/pixmaps/drafts_close_mark.xpm     ** ADDED **
11486         * src/pixmaps/drafts_open_mark.xpm      ** ADDED **
11487         * src/pixmaps/inbox_hrm_mark.xpm        ** ADDED **
11488         * src/pixmaps/inbox_mark.xpm            ** ADDED **
11489         * src/pixmaps/outbox_hrm_mark.xpm       ** ADDED **
11490         * src/pixmaps/outbox_mark.xpm           ** ADDED **
11491         * src/pixmaps/trash_hrm_mark.xpm        ** ADDED **
11492         * src/pixmaps/trash_mark.xpm            ** ADDED **
11493                 New pixmaps
11494
11495 2005-07-01 [colin]      1.9.12cvs9
11496
11497         * src/summaryview.c
11498                 Fix a little threading bug
11499         * src/addrgather.c
11500         * src/mainwindow.c
11501                 A little bit of HIG normality never hurts
11502
11503 2005-07-01 [colin]      1.9.12cvs8
11504
11505         * src/compose.c
11506         * src/msgcache.c
11507         * src/pop.c
11508         * src/procmime.c
11509         * src/recv.c
11510         * src/common/log.c
11511         * src/common/template.c
11512         * src/common/utils.c
11513         * src/common/utils.h
11514                 Reverted the fwrite_atomic stuff. In fact
11515                 it is already atomic.
11516
11517 2005-06-30 [colin]      1.9.12cvs7
11518
11519         * src/common/utils.c
11520         * src/common/utils.h
11521                 Add an fwrite_atomic() function to make
11522                 sure we write everything: fwrite can make
11523                 short writes.
11524         * src/compose.c
11525         * src/msgcache.c
11526         * src/pop.c
11527         * src/procmime.c
11528         * src/recv.c
11529         * src/common/log.c
11530         * src/common/template.c
11531                 Use that (and fix swapping of size and nmemb).
11532                 Thanks to Rich Coe for the heads up.
11533
11534 2005-06-30 [colin]      1.9.12cvs6
11535
11536         * src/addressbook.c
11537                 Optimize addressbook opening 
11538
11539 2005-06-30 [colin]      1.9.12cvs5
11540
11541         * src/summaryview.c
11542                 Remove calls to summary_step after move/copy
11543
11544 2005-06-28 [paul]       1.9.12cvs4
11545
11546         * src/alertpanel.c
11547                 wrap and make the error msg selectable
11548
11549 2005-06-28 [paul]       1.9.12cvs3
11550
11551         * src/ssl_manager.c
11552                 replace the OK button with a Close button
11553         * src/gtk/foldersort.c
11554                 use GTK_STOCK_ icons/buttons
11555
11556 2005-06-28 [colin]      1.9.12cvs2
11557
11558         * src/gedit-print.c             ** ADDED **
11559         * src/gedit-print.h             ** ADDED **
11560         * src/gtk/gtksourceprintjob.c   ** ADDED **
11561         * src/gtk/gtksourceprintjob.h   ** ADDED **
11562                 I can't believe no one had enough time to tell
11563                 me I forgot the `cvs add`
11564
11565 2005-06-27 [colin]      1.9.12cvs1
11566
11567         * src/Makefile.am
11568         * src/gtk/Makefile.am
11569         * src/messageview.c
11570         * src/procmsg.c
11571         * src/summaryview.c
11572         * configure.ac
11573                 Add optional libgnomeprint-based printing
11574         * src/mainwindow.c
11575         * src/gtk/quicksearch.c
11576                 Add an Edit/Quick search menu item to show
11577                 and focus the quicksearch
11578
11579 2005-06-27 [paul]       1.9.12
11580
11581         1.9.12 release
11582
11583         * po/ca.po
11584         * po/de.po
11585         * po/es.po
11586         * po/fr.po
11587         * po/it.po
11588         * po/ko.po
11589         * po/pt_BR.po
11590         * po/sk.po
11591         * po/zh_CN.po
11592                 updated by Miquel Oliete, Thomas Gilgin, Ricardo
11593                 Mones Lastra, Fabien Vantard, Andrea Spadaccini,
11594                 SungHyun Nam, Frederico Goncalves Guimaraes,
11595                 Andrej Kacian, and Yang Guilong
11596 2005-06-26 [colin]      1.9.11cvs106
11597
11598         * src/imap_gtk.c
11599                 Forgot one file for previous fix
11600
11601 2005-06-26 [colin]      1.9.11cvs105
11602
11603         * src/folder.c
11604         * src/imap.c
11605                 Fix problems with folder operations in no_select
11606                 imap folders. it applies only to mails, and 
11607                 creation/deletion/move/renaming of folders 
11608                 should be possible
11609
11610 2005-06-26 [paul]       1.9.11cvs104
11611
11612         * src/prefs_filtering.c
11613                 replace one more GTK_STOCK_REMOVE
11614                 with GTK_STOCK_DELETE
11615
11616 2005-06-25 [colin]      1.9.11cvs103
11617
11618         * src/imap.c
11619                 Optimize get_seq_set_from_seq_list
11620                 (Patch by Ricardo) 
11621
11622 2005-06-25 [colin]      1.9.11cvs102
11623
11624         * src/mh.c
11625                 If the directory exists, but not in the
11626                 correct encoding, rename it. This should
11627                 handle old-versions-induced bugs.
11628
11629 2005-06-25 [colin]      1.9.11cvs101
11630
11631         * src/mh.c
11632                 Fix path access with extended dir names
11633                 Fixes bug #589 (SC segfaults with wrong locale
11634                 settings)
11635
11636 2005-06-25 [colin]      1.9.11cvs100
11637
11638         * src/prefs_account.c
11639         * src/prefs_account.h
11640         * src/compose.c
11641                 Add an option to encrypt replies to
11642                 encrypted messages
11643
11644 2005-06-25 [colin]      1.9.11cvs99
11645
11646         * src/compose.c
11647         * src/quote_fmt_parse.y
11648                 ... And make it work with pgpinline.
11649
11650 2005-06-25 [colin]      1.9.11cvs98
11651
11652         * src/compose.c
11653         * src/procmime.c
11654         * src/procmime.h
11655         * src/quote_fmt_parse.y
11656                 o Make reedition of encrypted messages possible
11657                   (as long as it is encrypted to self too, no
11658                    magic there)
11659                 o Make replying with quote (and without selecting
11660                   text) possible for encrypted messages.
11661                 Closes bug #550 (Not possible to "reply with quote"
11662                 to gnupg encrypted messages)
11663
11664 2005-06-24 [paul]       1.9.11cvs97
11665
11666         * src/imap.c
11667                 add missing include
11668
11669 2005-06-24 [paul]       1.9.11cvs96
11670
11671         * src/editldap.c
11672                 made bind password entry invisible
11673                 (sync with main)
11674         * src/send_message.c
11675                 send_message_local(): check exit status
11676                 to detect errors (sync with main)
11677         * src/textview.c
11678                 use main's less ambiguous popup menu
11679                 wording
11680
11681 2005-06-24 [paul]       1.9.11cvs95
11682
11683         * src/prefs_actions.c
11684         * src/prefs_customheader.c
11685         * src/prefs_display_header.c
11686         * src/prefs_filtering_action.c
11687         * src/prefs_matcher.c
11688         * src/prefs_template.c
11689         * src/prefs_toolbar.c
11690                 replace GTK_STOCK_REMOVE with GTK_STOCK_DELETE
11691         * src/gtk/description_window.c
11692                 replace GTK_STOCK_OK with GTK_STOCK_CLOSE
11693
11694 2005-06-23 [colin]      1.9.11cvs94
11695
11696         * src/summaryview.c
11697                 Fix rough edges (be sure to call status_show whenever
11698                 necessary).
11699
11700 2005-06-23 [colin]      1.9.11cvs93
11701
11702         * src/summaryview.c
11703                 Optimize Select All
11704                 Before, in a 5K mails folder: 11s
11705                 After, in the same folder: 58000µs
11706                 The joys of locking... gtk_clist_select_all() fires a 
11707                 tree-select-row event for each selected row, which in 
11708                 summaryview, callbacks summary_selected which in turn,
11709                 calls summary_status_show, which walks the selected
11710                 rows. Hence, calling gtk_clist_select_all was 
11711                 exponential. Locking the summaryview makes 
11712                 summary_selected return early.
11713
11714 2005-06-23 [colin]      1.9.11cvs92
11715
11716         * src/imap.c
11717                 Move mutex at the important place to avoid
11718                 deadlocks
11719         * src/summaryview.c
11720                 Fix Del key deleting directly instead of
11721                 moving to trash
11722
11723 2005-06-22 [colin]      1.9.11cvs91
11724
11725         * src/plugins/spamassassin/libspamc.c
11726                 As we do spagetti code with assignations in multiple
11727                 places (see _message_read_raw where out = msg = raw),
11728                 let's be sure we don't free the same pointer twice.
11729                 Should fix bug #683 (Crash in libpam at 
11730                 message_cleanup).
11731
11732 2005-06-22 [colin]      1.9.11cvs90
11733
11734         * src/compose.c
11735         * src/messageview.c
11736         * src/toolbar.c
11737                 Make toolbar's delete use the move to trash stuff;
11738                 Add gtk_widget_realize to be sure pixmaps can get
11739                 created (that may fix an old worksforme bug which
11740                 I can't find back...)
11741
11742 2005-06-22 [colin]      1.9.11cvs89
11743
11744         * src/summaryview.c
11745         * src/summaryview.h
11746         * src/mainwindow.c
11747                 Rename "Message/Delete" to "Message/Move to trash"
11748                 Add "Message/Delete..." that directly destroys the
11749                 selected messages after asking for a confirmation.
11750
11751 2005-06-22 [colin]      1.9.11cvs88
11752
11753         * src/imap.c
11754                 o Fix compilation with non-gnu compiler (thanks Alex S Moore)
11755                 o Fix a deadlock (thanks Darko)
11756
11757 2005-06-22 [colin]      1.9.11cvs87
11758
11759         * src/gtk/foldersort.c
11760                 Add missing include for the i18n;
11761                 patch by Fabien Vantard
11762
11763 2005-06-21 [colin]      1.9.11cvs86
11764
11765         * src/folder.c
11766         * src/folderview.c
11767                 Respect the no_select flag
11768         * src/imap.c
11769                 Fix recursive deletion
11770         * src/imap_gtk.c
11771         * src/mh_gtk.c
11772                 Make the folder deletion's warning
11773                 more explicit
11774
11775 2005-06-21 [colin]      1.9.11cvs85
11776
11777         * src/textview.c
11778                 Prevent email addresses from spanning accross
11779                 lines - fixes bug # 646 (newline-chars in 
11780                 email addresses)
11781
11782 2005-06-20 [colin]      1.9.11cvs84
11783
11784         * src/folder.c
11785                 Be sure not to remove source if copy failed
11786
11787 2005-06-20 [colin]      1.9.11cvs83
11788
11789         * src/folderview.c
11790         * src/imap_gtk.c
11791                 remove summaryview's lock
11792         * src/imap.c
11793                 introduce threads to avoid problems when foreground tasks
11794                 interfere with background tasks
11795         * src/mh.c
11796                 prevent moving to drafts/queue
11797         * src/mimeview.c
11798                 fix leak
11799
11800 2005-06-19 [colin]      1.9.11cvs82
11801
11802         * src/imap_gtk.c
11803                 Remember that the user doesn't want to override
11804                 offline mode, for 3 seconds. It avoid presenting
11805                 him with N popups in a really short time.
11806
11807 2005-06-17 [colin]      1.9.11cvs81
11808
11809         * src/imap.c
11810                 Fix IMAP breaking on folders containing '('
11811                 (Probably won't be enough)
11812
11813 2005-06-17 [colin]      1.9.11cvs80
11814
11815         Forgotten files on 1.9.11cvs79
11816         * src/summaryview.c
11817                 Fix stepping when not immediately executing
11818         * src/imap.c
11819                 Really prevent UID FETCH 0
11820         * src/codeconv.c
11821                 Fix outgoing charset never set to utf-8
11822         * src/mh.c
11823                 Fix leak
11824
11825 2005-06-16 [colin]      1.9.11cvs79
11826
11827         * src/compose.c
11828                 Fix bug #707 (Dash splits rows)
11829                 Only wrap if we're on a line break position and
11830                 the previous one was a "white" (space) char.
11831                 Pango stuff is weird.
11832
11833 2005-06-16 [colin]      1.9.11cvs78
11834
11835         * src/imap_gtk.c
11836                 Lock summaryview while downloading messages
11837                 on user demand
11838         * src/procheader.c
11839         * src/unmime.c
11840         * src/common/utils.c
11841         * src/common/utils.h
11842                 Replace \r and \n with spaces in From and
11843                 Subject headers
11844
11845 2005-06-16 [paul]       1.9.11cvs77
11846
11847         * src/procmime.c
11848                 liberalise the mime parser
11849         * src/gtk/about.c
11850                 add text wrapping
11851
11852 2005-06-16 [paul]       1.9.11cvs76
11853
11854         * src/gtk/about.c
11855                 reworked
11856
11857 2005-06-15 [colin]      1.9.11cvs75
11858
11859         * src/compose.c
11860                 Finish header encoding fix
11861         * src/summaryview.c
11862                 Fix segfault
11863         * src/headerview.c
11864                 Fix compilation (Thanks Stephan
11865                 Sachse)
11866
11867 2005-06-15 [colin]      1.9.11cvs74
11868
11869         * Makefile.am
11870                 Install gnome2 stuff rather than gnome1, 
11871                 if both are present
11872         * src/codeconv.c
11873         * src/codeconv.h
11874         * src/compose.c
11875                 Fix headers encoding
11876         * src/folder.c
11877                 Visual progress when fetching all messages
11878         * src/folderview.c
11879         * src/summaryview.c
11880         * src/summaryview.h
11881                 Prevent changing current message while
11882                 incorporating
11883
11884 2005-06-15 [paul]       1.9.11cvs73
11885
11886         * src/gtk/gtkaspell.c
11887         * src/gtk/gtkaspell.h
11888                 fix build warnings
11889
11890 2005-06-15 [paul]       1.9.11cvs72
11891
11892         * src/prefs_filtering.c
11893                 allow reordering of filter rules by
11894                 drag n drop
11895
11896 2005-06-15 [paul]       1.9.11cvs71
11897
11898         * COPYING
11899                 updated
11900         * src/codeconv.c
11901                 replace deprecated function
11902         * src/inc.c
11903         * src/send_message.c
11904         * src/gtk/progressdialog.c
11905         * src/gtk/progressdialog.h
11906                 salvage and reuse parts of reverted sync
11907
11908 2005-06-15 [paul]       1.9.11cvs70
11909
11910         * src/inc.c
11911         * src/send_message.c
11912         * src/gtk/progressdialog.c
11913         * src/gtk/progressdialog.h
11914                 revert yesterday's sync with main
11915                 it contains deprecated functions
11916
11917 2005-06-15 [colin]      1.9.11cvs69
11918
11919         * src/headerview.c
11920                 Fix bug #670 (multi user to: will corrupt message 
11921                 headers display)
11922
11923 2005-06-15 [colin]      1.9.11cvs68
11924
11925         * src/compose.c
11926                 Fix bug #421 (Fix undo on wrapping)
11927
11928 2005-06-15 [colin]      1.9.11cvs67
11929
11930         * src/folder.c
11931                 Provide visual feedback while processing
11932                 folder's rules.
11933         * src/imap.c
11934                 Provide visual feedback while getting
11935                 short headers (for uncached messages)
11936
11937
11938 2005-06-14 [paul]       1.9.11cvs66
11939
11940         * src/account.c
11941                 change a couple stock icons
11942         * src/inc.c
11943         * src/send_message.c
11944         * src/gtk/progressdialog.c
11945         * src/gtk/progressdialog.h
11946                 sync main's GtkTreeView implementation
11947
11948 2005-06-14 [colin]      1.9.11cvs65
11949
11950         * src/imap.c
11951                 Various little fixes, mainly on error paths
11952
11953 2005-06-13 [colin]      1.9.11cvs64
11954
11955         * matcher.c
11956         * procmsg.c
11957         * procmsg.h
11958                 Add a way to fetch only headers. This speeds
11959                 up filtering on headers for IMAP. Fixes:
11960                 bug #481 extraneous imap commands slow down 
11961                         imap filtering
11962                 bug #522 Sylpheed downloads all messages 
11963                         when opening mailbox (IMAP)
11964                 bug #677 IMAP fetch is soooooooooooooo slow
11965         * src/folder.c
11966         * src/folder.h
11967                 Add a folder set_batch method so that
11968                 implementations can speed up flags changes
11969         * src/folderutils.c
11970         * src/summaryview.c
11971                 Use that in mark as (un)read and mark all read
11972                 Refix bug #679
11973         * src/imap.c
11974                 Implement set_batch - brings back deferred
11975                 flags in a less buggy manner. Fixes:
11976                 bug #729 IMAP immediate expunge of deleted messages
11977                 bug #191 remove list of messages with one command
11978                 Fix login with strange chars
11979                 Implement fetch_msg_full
11980                 Fix copy (wrong counts)
11981
11982 2005-06-12 [colin]      1.9.11cvs63
11983
11984         * src/folder.c
11985                 lock incorporation during long operations.
11986                 Avoids fucking up the IMAP socket.
11987
11988 2005-06-12 [colin]      1.9.11cvs62
11989
11990         * src/imap.c
11991                 Fix harmful typo
11992                 Factorize remove_all_msg
11993                 Thread-ize expunge
11994         * src/summaryview.c
11995                 Don't update partial-download status if unnecessary
11996         * src/folder.c
11997                 Use remove_msgs everywhere possible
11998
11999 2005-06-12 [colin]      1.9.11cvs61
12000
12001         * src/folder.c
12002         * src/folder.h
12003                 Add a remove_msgs function to remove a 
12004                 list of messages
12005         * src/imap.c
12006                 Implement that.
12007
12008 2005-06-12 [colin]      1.9.11cvs60
12009
12010         * src/imap.c
12011                 Remove flags-processing deferring... Too hard
12012                 to get it to work in all cases.
12013
12014 2005-06-11 [colin]      1.9.11cvs59
12015
12016         * src/imap.c
12017                 printf -> debug_print
12018
12019 2005-06-11 [colin]      1.9.11cvs58
12020
12021         * src/imap.c
12022                 o Fix build without USE_PTHREAD
12023                 o Factorize imap_open
12024                 o Alertpanel in case of impossible connection
12025                 o Alertpanel in case of impossible login
12026                 o Fix deferred flags processing to force a 
12027                   flush before adding some more flags to process,
12028                   but in another folder.
12029
12030 2005-06-10 [colin]      1.9.11cvs57
12031
12032         * src/imap.c
12033                 o Fix a format string error
12034                 o init ssl socket outside of the thread 
12035                   (it possibly invokes gtk calls)
12036         * src/procmime.c
12037                 o Put back the buffer to its necessary size
12038                 o Fix changing a file pointer without keeping
12039                   track of it (thanks Valgrind)
12040         * src/common/smtp.c
12041                 o Fix automatic STARTTLS if login should be done
12042                   and the server only allows it after starting TLS
12043         * src/gtk/gtkinputdialog.c
12044                 o Eat GDK_Return so that the combo popup doesn't 
12045                   appear when we press Enter to validate the combo
12046                   input dialog (as seen in the Open with... dialog)
12047
12048 2005-06-10 [colin]      1.9.11cvs56
12049
12050         * src/imap.c
12051                 o A bit less debug
12052                 o Fix a crash on deletion
12053                 o Threadize imap_select (it's called outside of 
12054                   threads)
12055                 o Defer treatment of DELETED flags
12056
12057
12058 2005-06-09 [colin]      1.9.11cvs55
12059
12060         * src/imap.c
12061                 Make sure we check imap_gtk_should_override(), which
12062                 potentially calls gtk stuff, before creating thread.
12063                 That way it should't be called via imap_get_session()
12064                 inside a thread.
12065
12066 2005-06-09 [colin]      1.9.11cvs54
12067
12068         * src/imap.c
12069                 o add a bit of status output
12070                 o remove some dead code
12071                 o threadize get_list_of_uids
12072                 o threadize imap_get_flags
12073                 o defer flag changing by 500ms so that they
12074                   can be batched
12075
12076
12077 2005-06-08 [colin]      1.9.11cvs53
12078
12079         * src/imap.c
12080                 Thread-ize imap_cmd_fetch
12081
12082 2005-06-08 [colin]      1.9.11cvs52
12083
12084         * src/main.c
12085                 Mmh, that broke POP3...
12086
12087 2005-06-08 [colin]      1.9.11cvs51
12088
12089         * src/main.c
12090                 Stabilize IMAP patch (thanks to Hoa)
12091
12092 2005-06-08 [colin]      1.9.11cvs50
12093
12094         * src/imap.c
12095                 Test patch to speed up imap. 
12096
12097 2005-06-08 [colin]      1.9.11cvs49
12098
12099         * src/imap_gtk.c
12100                 Warning fix
12101         * src/procmime.c
12102                 Apply patch from gentoo to use /usr/share/mime/globs if 
12103                 available, after un-breaking it
12104         * src/common/log.c
12105         * src/common/log.h
12106                 Use g_timeout for invoking hooks that possibly use gtk
12107                 calls. This should leave gtk calls in the main thread.
12108
12109 2005-06-08 [paul]       1.9.11cvs48
12110
12111         * src/codeconv.c
12112                 conv_get_outgoing_charset_str(): don't
12113                 use prefs_common setting
12114         * src/compose.c
12115         * src/compose.h
12116                 add /Options/Character encoding/... to
12117                 temporarily change the outgoing encoding
12118
12119         (belated sync with main)
12120
12121 2005-06-08 [paul]       1.9.11cvs47
12122
12123         * src/compose.c
12124                 correction to/completion of last
12125                 sync with main
12126
12127 2005-06-08 [paul]       1.9.11cvs46
12128
12129         sync with main:
12130         
12131         * src/codeconv.c
12132         * src/codeconv.h
12133                 always enabled Japanese auto-detection
12134                 if the first letters of locale string
12135                 is "ja"
12136         * src/compose.c
12137                 don't use "destroy" signal to destroy
12138                 Compose object (fix rare crashes on discard?)
12139         * src/mainwindow.c
12140         * src/messageview.c
12141         * src/prefs_send.c
12142                 added Hebrew encodings
12143         * src/sourcewindow.c
12144                 don't use "destroy" signal to destroy
12145                 objects
12146
12147 2005-06-07 [colin]      1.9.11cvs45
12148
12149         * src/summaryview.c
12150                 Add missing unlocks/locks
12151
12152 2005-06-07 [paul]       1.9.11cvs44
12153
12154         * src/summaryview.c
12155                 restore bug #749 fix
12156
12157 2005-06-06 [colin]      1.9.11cvs43
12158
12159         * src/summaryview.c
12160                 Fix selection bug when prefs_common.open_unread 
12161                 is FALSE
12162
12163 2005-06-06 [colin]      1.9.11cvs42
12164
12165         * src/common/md5.c
12166                 Fix a warning
12167         * src/summaryview.c
12168         * src/folderview.c
12169                 Factorize long operations beginning and end
12170                 (locking, freezing/thawing, cursor, ...)
12171                 Check selection->data member in selection-
12172                 related loops; this avoids dying an awful
12173                 death if the selection changes on us while
12174                 we're marking a whole IMAP folder unread, 
12175                 for example.
12176
12177 2005-06-06 [paul]       1.9.11cvs41
12178
12179         * src/textview.c
12180                 don't g_free() a static gchar buffer
12181
12182 2005-06-05 [colin]      1.9.11cvs40
12183
12184         * src/mainwindow.c
12185         * src/messageview.c
12186         * src/summaryview.c
12187                 Fix bug #749 (Show all headers should be
12188                 sticky as the GUI suggests)
12189
12190 2005-06-03 [paul]       1.9.11cvs39
12191
12192         * src/compose.c
12193                 don't allow editing of mail while sending.
12194                 patch by Colin
12195
12196 2005-06-03 [paul]       1.9.11cvs38
12197
12198         * src/folderview.c
12199                 add a freeze/thaw to speed up 'mark all read'
12200
12201 2005-06-03 [paul]       1.9.11cvs37
12202
12203         * src/prefs_message.c
12204                 reflect changes immediately
12205
12206 2005-06-02 [colin]      1.9.11cvs36
12207
12208         * po/POTFILES.in
12209                 Patch by Fabien Vantard.
12210
12211 2005-06-02 [colin]      1.9.11cvs35
12212
12213         * src/imap.c
12214                 Use a non-blocking imap_getline() if possible.
12215                 This should completely prevent the interface
12216                 from freezin on imap operations, although it
12217                 may do strange stuff in case of folder switching
12218                 while a big imap operation is taking place...
12219
12220                 In addition, fix a leak in the case thread
12221                 creation fails on connection.
12222
12223 2005-06-02 [colin]      1.9.11cvs34
12224
12225         * src/crash.c
12226         * src/prefs_common.h
12227                 Fix build (prefs_common_init() doesn't exist
12228                 anymore)
12229
12230 2005-06-02 [colin]      1.9.11cvs33
12231
12232         * src/prefs_account.c
12233                 Fix bug #245 (filtering rules broken when
12234                 renaming a remote account (imap4 or nntp)
12235
12236 2005-06-02 [colin]      1.9.11cvs32
12237
12238         * src/imap.c
12239                 Try to fix IMAP shortcomings: 
12240                 o Multithread imap_open()
12241                 o allow offline-mode overriding instead of
12242                   just returning NULL
12243         * src/imap_gtk.c
12244         * src/imap_gtk.h
12245                 Add a function to ask whether we want to
12246                 override offline-mode for 10 minutes (one-shot
12247                 asking was painful)
12248         * src/procheader.c
12249                 Fix segfault when imap parser isn't happy about
12250                 a missing {
12251
12252 2005-06-01 [colin]      1.9.11cvs31
12253
12254         * src/addrharvest.c
12255         * src/compose.c
12256         * src/mbox.c
12257         * src/mbox.h
12258         * src/mh.c
12259         * src/msgcache.c
12260         * src/send_message.c
12261         * src/setup.c
12262         * src/undo.c
12263         * src/common/hooks.c
12264         * src/common/prefs.c
12265         * src/common/template.c
12266         * src/common/utils.c
12267         * src/gtk/gtkutils.c
12268         * src/gtk/inputdialog.c
12269         * src/gtk/menu.c
12270         * src/gtk/pluginwindow.c
12271         * src/gtk/prefswindow.c
12272         * src/plugins/pgpmime/passphrase.c
12273         * src/plugins/pgpmime/prefs_gpg.c
12274                 More -Wall fixes
12275
12276         * src/common/Makefile.am
12277         * src/common/timing.h
12278                 Add basic timing code
12279
12280         * src/summaryview.c
12281                 Fix a bug with unread messages when 
12282                 re-sorting folders, and by the way
12283                 fix a big performance hit when 
12284                 re-sorting (10k mails: before 5s,
12285                 after .5s)
12286
12287         * src/prefs_compose_writing.c
12288         * src/prefs_compose_writing.h
12289         * src/prefs_message.c
12290         * src/prefs_message.h
12291         * src/prefs_other.c
12292         * src/prefs_other.h
12293         * src/prefs_quote.c
12294         * src/prefs_quote.h
12295         * src/prefs_receive.c
12296         * src/prefs_receive.h
12297         * src/prefs_send.c
12298         * src/prefs_send.h
12299         * src/prefs_summaries.c
12300         * src/prefs_summaries.h
12301                 Fix copyright banner
12302
12303 2005-06-01 [paul]       1.9.11cvs30
12304
12305         * po/fi.po
12306                 updated by Flammie Pirinen
12307         * src/procmime.c
12308                 fix 'Bad BASE64 content' output
12309
12310 2005-05-31 [colin]      1.9.11cvs29
12311
12312         * src/procmime.c
12313                 Oops, where did my hunk go.
12314
12315 2005-05-31 [colin]      1.9.11cvs28
12316
12317         * src/Makefile.am
12318         * src/account.c
12319         * src/action.c
12320         * src/addr_compl.c
12321         * src/addressbook.c
12322         * src/codeconv.c
12323         * src/compose.c
12324         * src/export.c
12325         * src/folder.c
12326         * src/folderview.c
12327         * src/image_viewer.c
12328         * src/main.c
12329         * src/mainwindow.c
12330         * src/messageview.c
12331         * src/mimeview.c
12332         * src/msgcache.c
12333         * src/prefs_account.c
12334         * src/prefs_actions.c
12335         * src/prefs_common.c
12336         * src/prefs_compose_writing.c
12337         * src/prefs_customheader.c
12338         * src/prefs_ext_prog.c
12339         * src/prefs_filtering.c
12340         * src/prefs_filtering_action.c
12341         * src/prefs_fonts.c
12342         * src/prefs_image_viewer.c
12343         * src/prefs_message.c
12344         * src/prefs_message.h
12345         * src/prefs_msg_colors.c
12346         * src/prefs_other.c
12347         * src/prefs_other.h
12348         * src/prefs_quote.c
12349         * src/prefs_receive.c
12350         * src/prefs_receive.h
12351         * src/prefs_send.c
12352         * src/prefs_send.h
12353         * src/prefs_spelling.c
12354         * src/prefs_summaries.c
12355         * src/prefs_summary_column.c
12356         * src/prefs_template.c
12357         * src/prefs_themes.c
12358         * src/prefs_toolbar.c
12359         * src/prefs_wrapping.c
12360         * src/procmime.c
12361         * src/procmsg.c
12362         * src/send_message.h
12363         * src/ssl_manager.c
12364         * src/summary_search.c
12365         * src/summaryview.c
12366         * src/textview.c
12367         * src/wizard.c
12368         * src/common/smtp.c
12369         * src/common/smtp.h
12370         * src/gtk/gtkutils.h
12371                 o Move the rest of Common prefs to new style
12372                 o Lots of -Wall warning fixes
12373                 o fix FIXME in cache memusage calculation
12374                 o Let return receipts be sent from any account
12375                 o Little cache optimisation (read)
12376                 o Fix bug #746 (don't treat commas as separators
12377                   when inside a quoted string)
12378
12379 2005-05-31 [paul]       1.9.11cvs27
12380
12381         * src/prefs_common.c
12382                 fix 'off-by-one' typo
12383
12384 2005-05-31 [paul]       1.9.11cvs26
12385
12386         * src/account.c
12387         * src/addr_compl.c
12388         * src/compose.c
12389         * src/foldersel.c
12390         * src/prefs_actions.c
12391         * src/prefs_common.c
12392         * src/prefs_common.h
12393         * src/prefs_customheader.c
12394         * src/prefs_display_header.c
12395         * src/prefs_filtering.c
12396         * src/prefs_filtering_action.c
12397         * src/prefs_matcher.c
12398         * src/prefs_summaries.c
12399         * src/prefs_summary_column.c
12400         * src/prefs_template.c
12401         * src/prefs_toolbar.c
12402         * src/ssl_manager.c
12403         * src/gtk/pluginwindow.c
12404         * src/gtk/prefswindow.c
12405         * src/gtk/progressdialog.c
12406                 add hidden prefs 'enable_rules_hint'
12407                 for gtk_tree_view_set_rules_hint()
12408                 (sync with main)
12409                 
12410
12411 2005-05-31 [colin]      1.9.11cvs25
12412
12413         * src/Makefile.am
12414         * src/main.c
12415         * src/prefs_common.c
12416         * src/prefs_summaries.c ** ADDED **
12417         * src/prefs_summaries.h ** ADDED **
12418                 Common/Display -> Display/Summaries
12419
12420 2005-05-31 [colin]      1.9.11cvs24
12421
12422         * src/Makefile.am
12423         * src/main.c
12424         * src/prefs_quote.c ** ADDED **
12425         * src/prefs_quote.h ** ADDED **
12426                 Move Common/Quote to Compose/Quoting
12427         * src/prefs_common.c
12428         * src/prefs_common.h
12429                 Remove old quote stuff, add
12430                 convenience functions for GtkTextView prefs
12431         * src/gtk/prefswindow.c
12432                 Set default height higher
12433
12434 2005-05-30 [colin]      1.9.11cvs23
12435
12436         * src/Makefile.am
12437         * src/main.c
12438         * src/prefs_common.c
12439         * src/prefs_compose_writing.c ** ADDED **
12440         * src/prefs_compose_writing.h ** ADDED **
12441                 Move Common/Compose prefs to Compose/Writing
12442
12443 2005-05-30 [colin]      1.9.11cvs22
12444
12445         * src/common/utils.c
12446                 Fix bug #651 (Confused Attract by Subject)
12447                 Patch by M. Benkmann <haferfrost@web.de>
12448         * AUTHORS
12449
12450 2005-05-30 [colin]      1.9.11cvs21
12451
12452         * src/compose.c
12453                 Fix concatenation of different headers of
12454                 the same type (bug #645)
12455         * src/prefs_folder_item.c
12456                 Fix bug #699 (setting color to black doesn't
12457                 work immediately)
12458         * src/procmime.c
12459                 Print out decoding error only once per
12460                 block
12461
12462 2005-05-30 [paul]       1.9.11cvs20
12463
12464         * src/common/template.c
12465                 fix Bcc
12466
12467 2005-05-30 [paul]       1.9.11cvs19
12468
12469         * doc/src/rfc2368.txt   **NEW FILE**
12470         * src/compose.c
12471                 compose_entries_set(): don't interpret Bcc
12472                 header field (conform to RFC 2368)
12473                 (sync with main)
12474
12475 2005-05-29 [colin]      1.9.11cvs18
12476
12477         * src/prefs_common.c
12478                 Let the default reply format respect
12479                 netiquette by cutting the signature.
12480
12481 2005-05-29 [colin]      1.9.11cvs17
12482
12483         * src/summaryview.c
12484                 Don't let always_show_msg override
12485                 open_unread_on_enter when opening a new
12486                 directory.
12487
12488 2005-05-27 [paul]       1.9.11cvs16
12489
12490         sync with main:
12491
12492         * src/main.c
12493                 app_will_exit(): cleanup tmp directory when exit
12494         * src/message_search.c
12495                 improved the interface and made code cleanup.
12496                 removed Clear button
12497         * src/send_message.c
12498                 send_message_local(): use GSpawn, and detect errors
12499         * src/summary_search.c
12500                 improved the interface and made code cleanup
12501         * src/textview.c
12502                 textview_write_link(): also skip non-ascii space
12503                  at the head of link strings (phishing check
12504                  didn't work at the case)
12505         * src/common/utils.c
12506                 get_command_output(): use g_spawn_command_line_sync()
12507                 instead of popen()
12508
12509 2005-05-26 [colin]      1.9.11cvs15
12510
12511         * src/folder.c
12512                 remove printf
12513
12514 2005-05-26 [colin]      1.9.11cvs14
12515
12516         * src/common/nntp.c
12517                 Fix nntp mode reader (bug #611)
12518                 Patch by Florian Mickler <florian@mickler.org>
12519
12520 2005-05-26 [colin]      1.9.11cvs13
12521
12522         * src/plugins/pgpmime/passphrase.c
12523                 Fix mouse grabbing (bug #557)
12524
12525 2005-05-26 [colin]      1.9.11cvs12
12526
12527         * src/prefs_themes.c
12528                 Fix g_warning (bug #541)
12529
12530 2005-05-26 [colin]      1.9.11cvs11
12531
12532         * src/prefs_actions.c
12533         * src/prefs_template.c
12534                 Fix bug #506 (no warning if action/template
12535                 is not saved)
12536         * src/common/template.c
12537                 Fix a possible crash
12538
12539 2005-05-26 [colin]      1.9.11cvs10
12540
12541         * src/folder.c
12542         * src/folderview.c
12543         * src/procmsg.c
12544         * src/summaryview.c
12545                 Forbid locked messages to be moved or
12546                 deleted. Locked messages in trashes 
12547                 still get deleted, for performance
12548                 reason (mh.c::mh_remove_all_msgs)
12549
12550 2005-05-25 [colin]      1.9.11cvs9
12551
12552         * src/procmime.c
12553                 Use correct encoding when sending mails
12554                 with attachments that have accentued 
12555                 chars in their name
12556
12557 2005-05-24 [colin]      1.9.11cvs8
12558
12559         * src/summaryview.c
12560                 Fix bug #688 f) read/unread marker not
12561                 changed on first click
12562                 Also, optimize summary_status_show()
12563                 calls
12564         * src/folder.c
12565         * src/inc.c
12566         * src/procmime.c
12567                 Fix bug #688 b) and c) wrt message
12568                 attachments and signature
12569         * src/stock_pixmap.c
12570         * src/stock_pixmap.h
12571         * src/stock_pixmap.c
12572         * src/stock_pixmap.h
12573         * src/Makefile.am
12574         * src/pixmaps/clip_gpg_signed.xpm
12575                 Add clip/signed icon
12576
12577 2005-05-24 [colin]      1.9.11cvs7
12578
12579         * src/folder_item_prefs.c
12580                 whitespace fix
12581
12582 2005-05-24 [colin]      1.9.11cvs6
12583
12584         * src/folderview.c
12585         * src/prefs_common.c
12586         * src/prefs_common.h
12587                 Add a confirmation to folder drag and drop
12588                 fixes bug #156
12589         * src/alertpanel.c
12590         * src/alertpanel.h
12591                 fix _with_disable parameters so that
12592                 the buttons labels are specifiable too
12593         * src/plugins/pgpmime/sgpgme.c
12594                 reflect said change
12595                 
12596
12597 2005-05-24 [colin]      1.9.11cvs5
12598
12599         * src/folderview.c
12600                 Uncollapse/collapse folders on double-click
12601                 patch by Torsten Schoenfeld <kaffeetisch@gmx.de>
12602                 closes bug #108
12603
12604 2005-05-23 [colin]      1.9.11cvs4
12605
12606         * src/common/socket.c
12607                 Check another special SSL_peek() error.
12608                 Should help wrt bug #728
12609
12610 2005-05-23 [colin]      1.9.11cvs3
12611
12612         * src/plugins/pgpmime/pgpmime.c
12613                 Change name to "PGP MIME" instead of "PGP/MIME" to avoid
12614                 breaking menu accelerators and stuff. Users will have to
12615                 reselect "PGP MIME" instead of "PGP/MIME" in their 
12616                 account's privacy preferences if needed.
12617
12618 2005-05-22 [paul]
12619
12620         * tools/kdeservicemenu/install.sh
12621                 use kdesu to prompt for root password if doing
12622                 global install/uninstall
12623
12624 2005-05-20 [colin]      1.9.11cvs2
12625
12626         * src/procmsg.c
12627                 Fix another compilation error with gcc-2.9x
12628                 Thanks to Pawel Pekala <c0rn@gazeta.pl>
12629         * src/send_message.c
12630                 Don't send QUIT if we aren't connected
12631
12632 2005-05-19 [colin]      1.9.11cvs1
12633
12634         * src/procmsg.c
12635                 Fix compilation with gcc 2.9x
12636
12637 2005-05-19 [paul]       1.9.11
12638
12639         1.9.11 released
12640
12641 2005-05-19 [paul]       1.9.9cvs14
12642
12643         * src/gtk/inputdialog.c
12644                 prevent gettext warning
12645
12646 2005-05-19 [paul]       1.9.9cvs13
12647
12648         * src/mainwindow.c
12649         * src/prefs_common.c
12650         * src/prefs_common.h
12651         * src/textview.c
12652         * src/textview.h
12653                 add an option to toggle cursor in message
12654                 view (sync with main)
12655
12656 2005-05-18 [colin]      1.9.9cvs12
12657
12658         * src/compose.c
12659                 Dereference freed pointer
12660         * src/gtk/gtkaspell.c
12661                 Fix duplication of dictionaries (is it an aspell issue?)
12662
12663 2005-05-18 [colin]      1.9.9cvs11
12664
12665         * src/gtk/inputdialog.c
12666         * src/gtk/gtkaspell.c
12667                 HIGuify dialogs
12668         * src/alertpanel.c
12669                 Remove a double call
12670
12671 2005-05-17 [colin]      1.9.9cvs10
12672
12673         * src/gtk/gtkaspell.c
12674                 Fix dialogs, Ctrl-Enter accel
12675
12676 2005-05-17 [colin]      1.9.9cvs9
12677
12678         * src/gtk/gtkaspell.c
12679                 Fix some accelerators, escape in replace-window
12680
12681 2005-05-16 [colin]      1.9.9cvs8
12682
12683         * src/gtk/gtkaspell.c
12684                 Revert last commit, it was a mistake.
12685
12686 2005-05-16 [colin]      1.9.9cvs7
12687
12688         * src/gtk/gtkaspell.c
12689                 Remove buggy code while we're at it. It's a 
12690                 dead code path anyway.
12691
12692 2005-05-16 [colin]      1.9.9cvs6
12693
12694         * src/gtk/gtkaspell.c
12695                 Missed some gtk_menu_popup where deactivate
12696                 signal should be handled. Should fix bug
12697                 #629 a bit more.
12698
12699 2005-05-16 [colin]      1.9.9cvs5
12700
12701         * src/gtk/gtkaspell.c
12702                 Remove debug printf()s
12703
12704 2005-05-16 [colin]      1.9.9cvs4
12705
12706         * src/gtk/gtkaspell.c
12707                 Fix a bit aspell problems
12708                 (see bug #629)
12709
12710 2005-05-13 [colin]      1.9.9cvs3
12711
12712         * src/folderview.c
12713                 Fix the + appearing even when no subfolders
12714                 have unread messages. Thanks to wwp for the
12715                 bug report.
12716
12717 2005-05-11 [paul]       1.9.9cvs2
12718
12719         * src/folderview.c
12720                 correction to 1.9.9cvs1, only colour folders that
12721                 have new msgs (not unread msgs)
12722
12723 2005-05-10 [colin]      1.9.9cvs1
12724
12725         * src/folderview.c
12726         * src/summaryview.c
12727                 Try to fix bolding bugs again.
12728
12729 2005-05-09 [paul]
12730
12731         * tools/claws.i18n.status.pl
12732                 add Ricardo Mones Lastra's script that has been providing
12733                 the i18n status page for many months
12734
12735 2005-05-09 [paul]       1.9.9
12736
12737         1.9.9 release
12738
12739 2005-05-09 [paul]       1.9.6cvs58
12740
12741         * AUTHORS
12742         * INSTALL
12743         * README.claws
12744                 updated
12745         * Makefile.am 
12746         * RELEASE_NOTES.claws
12747                 add release notes to cvs to simplify release
12748                 procedure
12749         * configure.ac
12750                 add ca and fi to ALL_LINGUAS
12751         * po/Makefile.in.in
12752                 workaround for missing Makevars
12753         * po/ca.po
12754         * po/fi.po
12755                 add new Catalan and Finnish translations
12756                 submitted by Miquel Oliete and Flammie Pirinen
12757         * po/de.po
12758         * po/es.po
12759         * po/fr.po
12760         * po/it.po
12761         * po/pl.po
12762         * po/ru.po
12763         * po/sk.po
12764         * po/sr.po
12765         * po/zh_CN.po
12766                 updated by Thomas Gilgin, Ricardo Mones Lastra, Fabien Vantard,
12767                 Andrea Spadaccini, Emilian Nowak, Pavlo Bohmat, Andrej Kacian,
12768                 Urke MMI, and Hansom Young
12769         * src/main.c
12770                 Fix drafting when quitting. compose_draft() closes the
12771                 compose windows, which modifies the compose_list GSList.
12772                 We have to refresh this list after echo drafting to avoid a
12773                 segfault
12774         * src/partial_download.c
12775                 fix segfault on exit
12776
12777 2005-05-06 [paul]       1.9.6cvs57
12778
12779         * src/grouplistdialog.c
12780                 quick fix/workaround for unresizeable newsgroup
12781                 name column 
12782
12783 2005-05-06 [paul]       1.9.6cvs56
12784
12785         * src/inc.c
12786         * src/mainwindow.c
12787                 use gettext plural forms
12788         * src/imap_gtk.c
12789         * src/mh_gtk.c
12790         * src/toolbar.c
12791                 small improvement to english usage
12792
12793 2005-05-05 [thorsten]   1.9.6cvs55
12794
12795         * src/folder.c
12796                 fix possible crash
12797
12798 2005-05-05 [paul]       1.9.6cvs54
12799         
12800         sync with HEAD
12801
12802         * AUTHORS
12803         * src/compose.c
12804                 fix bug 713 'Resent-To and Resent-Cc headers are garbled'
12805                 patch by Tim Mann
12806
12807 2005-05-05 [paul]       1.9.6cvs53
12808
12809         * src/mainwindow.c
12810                 fix resizing of separate message and
12811                 folder views
12812
12813 2005-05-05 [paul]       1.9.6cvs52
12814
12815         * src/account.c
12816         * src/addrgather.c
12817         * src/browseldap.c
12818         * src/exphtmldlg.c
12819         * src/expldifdlg.c
12820         * src/importmutt.c
12821         * src/importpine.c
12822         * src/main.c
12823         * src/mainwindow.c
12824         * src/noticeview.c
12825         * src/prefs_filtering.c
12826         * src/prefs_filtering_action.c
12827         * src/prefs_matcher.c
12828         * src/prefs_spelling.c
12829         * src/prefs_toolbar.c
12830         * src/toolbar.c
12831         * src/wizard.c
12832         * src/gtk/description_window.c
12833         * src/gtk/gtkvscrollbutton.c
12834         * src/gtk/progressdialog.c
12835         * src/gtk/quicksearch.c
12836         * src/plugins/pgpmime/prefs_gpg.c
12837         * src/plugins/spamassassin/spamassassin_gtk.c
12838                 replace deprecated gtk_widget_set_usize
12839
12840 2005-05-04 [colin]      1.9.6cvs51
12841
12842         * src/common/utils.c
12843                 Fix crash when subst_for_filename is called
12844                 with a NULL parameter
12845
12846 2005-05-04 [colin]      1.9.6cvs50
12847
12848         * src/partial_download.c
12849         * src/pop.c
12850                 Escape login when writing uidl file
12851                 fixes bug #736
12852
12853 2005-05-03 [colin]      1.9.6cvs49
12854
12855         * src/procmime.c
12856                 Fix possible DOS in mime parser
12857                 (see bug #634)
12858
12859 2005-05-02 [colin]      1.9.6cvs48
12860
12861         * src/compose.c
12862                 Try to fix the copy/paste mess once again.
12863
12864
12865 2005-04-30 [colin]      1.9.6cvs47
12866
12867         * src/prefs_account.h
12868         * src/procmsg.c
12869         * src/send_message.c
12870         * src/common/smtp.c
12871         * src/common/smtp.h
12872                 Try to batch sending mails (per account) instead of
12873                 reconnecting to server every time.
12874
12875 2005-04-29 [colin]      1.9.6cvs46
12876
12877         * src/messageview.c
12878                 Fix window resizing that refused to size down
12879         * src/prefs_common.c
12880         * src/prefs_common.h
12881         * src/prefs_filtering.c
12882                 Save Filtering's window size
12883
12884 2005-04-21 [paul]       1.9.6cvs45
12885
12886         * ChangeLog-gtk2.claws
12887         * src/setup.c
12888                 correction to sync
12889
12890 2005-04-21 [paul]       1.9.6cvs44
12891
12892         sync with main:
12893
12894         * src/setup.c
12895         * src/statusbar.c
12896         * src/statusbar.h
12897                 use gtkut_widget_draw_now(). Improved performance
12898                 of the update of statusbar
12899         * src/textview.c
12900                 textview_smooth_scroll_do(): redraw it after scroll
12901                 is done (fixed incorrect display when a part of the
12902                 view is hidden).
12903         * src/gtk/gtkutils.c
12904         * src/gtk/gtkutils.h
12905                 gtkut_widget_draw_now(): use gdk_window_process_updates()
12906                 to force update of widgets.
12907                 Removed gtkut_widget_wait_for_draw() which had a big
12908                 overhead  because of waiting for all events processed 
12909
12910 2005-04-20 [paul]       1.9.6cvs43
12911
12912         * src/codeconv.c
12913                 complete 1.9.6cvs42's sync:
12914                 Fallback to GBK if "X-GBK" is passed (thanks to SuperMMX)
12915
12916 2005-04-19 [paul]       1.9.6cvs42
12917
12918         sync with main:
12919
12920         * src/action.c
12921                 catch_output(): correctly select the insert text
12922                 (fix invalid iterator warnings).
12923         * src/codeconv.c
12924         * src/codeconv.h
12925         * src/mainwindow.c
12926         * src/messageview.c
12927         * src/prefs_common.c
12928                 support GBK encoding.
12929         * src/common/session.c
12930         * src/common/session.h
12931                 use separate buffer for large data to be sent,
12932                 and don't duplicate it (reduces memory usage) (thanks to Dirk).
12933
12934 2005-04-18 [paul]       1.9.6cvs41
12935
12936         * src/jpilot.c
12937                 convert unsigned long into guint32
12938                 patch by Paul LeoNerd Evans 
12939
12940 2005-04-17 [colin]      1.9.6cvs40
12941
12942         * src/compose.c
12943                 Fix 'Request return receipt' from folder
12944                 properties (bug #708)
12945
12946 2005-04-17 [colin]      1.9.6cvs39
12947
12948         * src/mainwindow.c
12949                 Fix duplicate hotkeys in Mainwindow's menu
12950
12951 2005-04-17 [colin]      1.9.6cvs38
12952
12953         * src/folderview.c
12954                 Fix duplicate hotkeys in Folderview's contextual
12955                 menu
12956
12957 2005-04-15 [colin]      1.9.6cvs37
12958
12959         * src/summaryview.c
12960                 Fix 'Save as...' with non-ascii filenames
12961
12962 2005-04-15 [colin]      1.9.6cvs36
12963
12964         * src/plugins/pgpmime/pgpmime.c
12965                 Fix bus error on 64bit. Spotted by 
12966                 macallan1888@gmail.com
12967
12968 2005-04-15 [colin]      1.9.6cvs35
12969
12970         * src/prefs_account.c
12971                 Fix cvs34.
12972
12973 2005-04-12 [colin]      1.9.6cvs34
12974
12975         * src/prefs_account.c
12976                 Fix smtp auth type off-by-one. We forgot to
12977                 add PLAIN in the prefs-to-gui setter func and
12978                 as a result, the selected auth when opening
12979                 account prefs was not the correct one.
12980
12981 2005-04-12 [paul]       1.9.6cvs33
12982
12983         * src/inc.c
12984                 if the recv dialog is visible, Cancel only
12985                 cancels the current account
12986
12987
12988 2005-04-10 [colin]      1.9.6cvs32
12989
12990         * src/filtering.c
12991                 Copy score when copying FilteringActions
12992                 Fix bug #674
12993
12994 2005-04-10 [colin]      1.9.6cvs31
12995
12996         * src/inc.c
12997                 Make Message -> Receive -> Cancel cancel 
12998                 incorporation on all accounts. Fixes
12999                 bug #693
13000
13001 2005-04-10 [colin]      1.9.6cvs30
13002
13003         * src/prefs_account.c
13004                 Update Privacy checkbuttons status based
13005                 on the selected privacy system
13006         * src/compose.c
13007                 Always connect the "None" privacy system; the
13008                 static boolean was probably there to avoid
13009                 reconnecting twice in the same compose window,
13010                 but as the parent function is only called once
13011                 per compose, it's only a bug - as a static is
13012                 initialized once per application instance.
13013                 Also, don't uncheck Sign and Encrypt when
13014                 selecting None as privacy system; just ignore
13015                 them when sending/queuing.
13016                 Should fix bug #695
13017
13018 2005-04-08 [colin]      1.9.6cvs29
13019
13020         * src/account.c
13021         * src/prefs_account.c
13022         * src/prefs_account.h
13023                 Add account preference to queue message in a certain
13024                 folder.
13025
13026 2005-04-06 [colin]      1.9.6cvs28
13027
13028         * src/prefs_account.c
13029                 Update old inbox path syntax
13030
13031 2005-04-06 [paul]       1.9.6cvs27
13032
13033         sync with main:
13034
13035         * configure.ac
13036                 changed -traditional-cpp to -no-cpp-precomp for newer
13037                 Mac OS X support
13038         * src/foldersel.c
13039                 made column resize automatically
13040         * src/send_message.c
13041                 send_message_smtp(): consider EOF right after QUIT
13042                 successful (workaround for Gmail SMTP server)
13043         * src/common/socket.c
13044                 ssl_read(), ssl_peek(): check EOF which violates the
13045                 SSL protocol
13046         * src/gtk/colorlabel.c
13047                 removed warnings when displaying colorlabel menu
13048                 (don't use GtkAlignment)
13049
13050 2005-04-05 [paul]       1.9.6cvs26
13051
13052         * src/plugins/trayicon/trayicon.c
13053                 fix clipping of icon under KDE3 
13054
13055 2005-04-05 [paul]       1.9.6cvs25
13056
13057         * src/summaryview.c
13058                 hide display of threading
13059                 patch by Alfons
13060
13061 2005-04-04 [thorsten]   1.9.6cvs24
13062
13063         * src/mh.c
13064                 marks lost on filesystems with different stat() results on
13065                 summer-/wintertime
13066
13067 2005-04-03 [colin]      1.9.6cvs23
13068
13069         * src/summaryview.c
13070                 Don't handle up/down. Patch by Alfons
13071
13072 2005-04-02 [colin]      1.9.6cvs22
13073
13074         * src/summaryview.c
13075                 Make scrolling faster. Patch by Alfons.
13076
13077 2005-04-01 [colin]      1.9.6cvs21
13078
13079         * src/Makefile.am
13080         * src/stock_pixmap.c
13081         * src/pixmaps/dir-noselect.xpm ** REMOVED **
13082         * src/pixmaps/dir_noselect.xpm ** ADDED **
13083                 Fix pixmap name mismatch (Thanks Stephan Sachse)
13084
13085 2005-04-01 [colin]      1.9.6cvs20
13086
13087         * src/image_viewer.c
13088         * src/image_viewer.h
13089         * src/procmime.c
13090         * src/procmime.h
13091         * src/textview.c
13092         * src/textview.h
13093                 Implement inline image resizing and right-clicking
13094
13095 2005-04-01 [paul]       1.9.6cvs19
13096
13097         * AUTHORS
13098         * Makefile.am
13099         * configure.ac
13100                 check for gnome2
13101                 patch by Luca Cavalli <loopback<AT>slackit.org>
13102         * po/ru.po
13103                 updated by Pavlo Bohmat
13104
13105 2005-03-31 [colin]      1.9.6cvs18
13106
13107         * src/news.c
13108                 Fix parsing references
13109         * src/msgcache.c
13110                 don't put nulls in the references list
13111         * src/procheader.c
13112                 commit that forgotten file in 1.9.6cvs14
13113
13114 2005-03-31 [colin]      1.9.6cvs17
13115
13116         * src/compose.c
13117                 Fix joining of signature separator again. 
13118                 Maybe Hiro could put it in main too...
13119
13120 2005-03-31 [colin]      1.9.6cvs16
13121
13122         * src/Makefile.am
13123         * src/foldersel.c
13124         * src/stock_pixmap.c
13125         * src/stock_pixmap.h
13126         * src/pixmaps/dir-noselect.xpm
13127                 Update foldersel.c (sync from main, patch by Alfons)
13128
13129 2005-03-30 [colin]      1.9.6cvs15
13130
13131         * src/imap.c
13132                 Fix handling of imap folders containing [] in 
13133                 their name. Thanks to Nahuel Angelinetti for
13134                 the detailed bugreport.
13135
13136 2005-03-30 [colin]      1.9.6cvs14
13137
13138         * src/common/utils.h
13139         * src/common/utils.c
13140         * src/common/defs.h
13141         * src/matcher.c
13142         * src/msgcache.c
13143         * src/news.c
13144         * src/procmsg.c
13145         * src/procmsg.h
13146         * src/quote_fmt_parse.y
13147         * src/summaryview.c
13148                 Update references system. Patch by Alfons
13149
13150 2005-03-30 [colin]      1.9.6cvs13
13151
13152         * src/common/socket.c
13153                 Force the glibc to read resolv.conf again when 
13154                 it has changed. Should fix issues when changing
13155                 networks on a laptop and not restarting sylpheed. 
13156
13157 2005-03-30 [paul]       1.9.6cvs12
13158
13159         partial sync with main:
13160
13161         * src/action.c
13162                 create_io_dialog(): use user-defined text font
13163                 (thanks to Alfons), and modified its appearance.
13164         * src/addrgather.c
13165         * src/addrharvest.c
13166         * src/browseldap.c
13167                 replace old code
13168         * src/compose.c
13169                 don't join (presumably) itemized lines on line-wrapping
13170                 fixed wrapping of quote when auto-wrapping is enabled
13171                 compose_destroy(): destroy paned only if it's not
13172                 attached to window. Fixed memory leak of popup menu.
13173         * src/exphtmldlg.c
13174         * src/expldifdlg.c
13175                 replace old code
13176         * src/html.c
13177         * src/html.h
13178         * src/importmutt.c
13179         * src/importpine.c
13180                 replace old code
13181         * src/main.c
13182                 removed redundant code
13183         * src/mainwindow.c
13184                 changed 'Code set' (which is rather incorrect)
13185                 in the menu to 'Character encoding'
13186                 main_window_set_widgets(): request size first
13187                 to prevent window size becoming wrong
13188                 fixed remembering of the state of the visibility
13189                 of MessageView
13190         * src/messageview.c
13191                 changed 'Code set' (which is rather incorrect)
13192                 in the menu to 'Character encoding'
13193         * src/prefs_common.c
13194         * src/prefs_common.h
13195                 added an option whether to render HTML as text or not
13196                 added separators to outgoing encoding menu
13197         * src/procheader.c
13198                 procheader_scan_date_string(): support header
13199                 like: "[Tue,] 01 Feb 2005 09:57[:00]"
13200         * src/summaryview.c
13201         * src/summaryview.h
13202                 minor code cleanup
13203         * src/textview.c
13204                 textview_show_html(): force output of newline
13205                 added an option whether to render HTML as text or not
13206         * src/common/utils.c
13207                 strncpy2(): optimized based on Alfons' code
13208         * src/gtk/gtkutils.c
13209         * src/gtk/gtkutils.h
13210                 removed non-used code
13211         * src/plugins/pgpmime/passphrase.c
13212                 partially fixed grab input of passphrase dialog
13213                 Confine pointer to window
13214
13215 2005-03-30 [colin]      1.9.6cvs11
13216
13217         * src/msgcache.c
13218         * src/msgcache.h
13219                 Read/write 32bit ints from cache & marks
13220                 From main.
13221
13222 2005-03-29 [paul]       1.9.6cvs10
13223
13224         * AUTHORS
13225         * ChangeLog.claws
13226         * src/compose.c
13227         * src/gtk/gtkaspell.c
13228                 sync with HEAD (don't pass NULL pointers) 
13229
13230 2005-03-24 [paul]
13231
13232         * tools/Makefile.am
13233         * tools/README
13234         * tools/acroread2sylpheed.pl
13235                 sync with HEAD (add script to send pdfs as
13236                 attachments from Adobe Reader 7)
13237
13238 2005-03-21 [paul]       1.9.6cvs9
13239
13240         * configure.ac
13241         * po/POTFILES.in
13242         * src/Makefile.am
13243         * src/crash.c
13244         * src/image_viewer.c ** ADDED **
13245         * src/image_viewer.h ** ADDED **
13246         * src/main.c
13247         * src/prefs_common.c
13248         * src/prefs_common.h
13249         * src/prefs_image_viewer.c ** ADDED **
13250         * src/prefs_image_viewer.h ** ADDED **
13251         * src/textview.c
13252         * src/gtk/about.c
13253         * src/pixmaps/sylpheed_logo.xpm
13254         * src/plugins/Makefile.am
13255         * src/plugins/image_viewer/.cvsignore ** REMOVED **
13256         * src/plugins/image_viewer/Makefile.am ** REMOVED **
13257         * src/plugins/image_viewer/plugin.c ** REMOVED **
13258         * src/plugins/image_viewer/viewer.c ** REMOVED **
13259         * src/plugins/image_viewer/viewer.glade ** REMOVED **
13260         * src/plugins/image_viewer/viewer.h ** REMOVED ** 
13261         * src/plugins/image_viewer/viewerprefs.c ** REMOVED **
13262         * src/plugins/image_viewer/viewerprefs.glade ** REMOVED **
13263         * src/plugins/image_viewer/viewerprefs.h ** REMOVED **
13264                 as gdk-pixbuf is now built-in
13265                 remove image_viewer plugin and put code back into
13266                 main codebase
13267                 implement inline image display (sync with main)
13268
13269                 replace logo with newer, nicer, larger version  
13270
13271 2005-03-21 [paul]       1.9.6cvs8
13272
13273         * src/gtk/about.c
13274                 cosmetic improvement
13275
13276 2005-03-21 [holger]     1.9.6cvs7
13277
13278         * src/plugins/spamassassin/spamassassin.c
13279                 Sync with HEAD
13280                 (unregister hook on failed plugin init)
13281
13282 2005-03-20 [colin]      1.9.6cvs6
13283
13284         * src/common/plugin.c
13285                 Check that plugin isn't already loaded
13286                 Patch by Alfons
13287
13288 2005-03-20 [thorsten]   1.9.6cvs5
13289
13290         * src/compose.c
13291                 use a more compatible syntax
13292
13293 2005-03-20 [thorsten]   1.9.6cvs4
13294
13295         * src/prefs_toolbar.c
13296                 fix crash when selecting toolbar item (uninitialized pointer)
13297
13298 2005-03-20 [thorsten]   1.9.6cvs3
13299
13300         * src/procmime.c
13301                 fix mimetype detection (referenced free()d string)
13302
13303 2005-03-20 [paul]       1.9.6cvs2
13304
13305         * src/compose.c
13306                 sync with HEAD (1.0.3cvs5)
13307                 neglect Reply-To header if empty
13308                 Patch by Alfons 
13309
13310 2005-03-19 [holger]     1.9.6cvs1
13311
13312         * src/summaryview.c
13313         * src/summaryview.h
13314                 Sync with HEAD
13315
13316 2005-03-18 [paul]       1.9.6
13317
13318         initial GTK2 release
13319
13320 2005-03-18 [paul]       1.0.3cvs3.1
13321
13322         * AUTHORS
13323         * ChangeLog.claws
13324         * configure.ac
13325         * src/gtk/about.c
13326         * src/pixmaps/sylpheed_logo.xpm
13327                 sync with HEAD
13328
13329 2005-03-18 [colin]      1.0.3cvs2.6
13330
13331         * src/summaryview.c
13332                 Remove call to summary_step in summary_copy_selected_to
13333                 Can't see its purpose, and this causes bug when copying
13334                 a message if the next one is unread: it reads it.
13335
13336 2005-03-18 [paul]       1.0.3cvs2.5
13337
13338         * src/foldersel.c
13339                 fix bug 694 'Enter doesn't trigger OK in "Move" window'
13340
13341 2005-03-18 [paul]       1.0.3cvs2.4
13342
13343         * src/addrharvest.c
13344         * src/codeconv.c
13345         * src/codeconv.h
13346         * src/compose.c
13347         * src/news.c
13348         * src/procheader.c
13349         * src/procmime.c
13350         * src/unmime.c
13351         * src/unmime.h
13352                 fix buffer overflow, CAN-2005-0667, see
13353                 http://secunia.com/advisories/14491/
13354                 Patch by Alfons
13355
13356 2005-03-17 [colin]      1.0.3cvs2.3
13357
13358         * src/prefs_fonts.c
13359         * src/summaryview.c
13360                 Fix font bugs (both lists now officialy share 
13361                 the same font)
13362                 
13363
13364 2005-03-17 [paul]       1.0.3cvs2.2
13365
13366         * src/gtk/pluginwindow.c
13367                 make plugin descriptions uneditable
13368
13369 2005-03-11 [paul]       1.0.3cvs2.1
13370
13371         * ChangeLog.claws
13372         * configure.ac
13373         * po/POTFILES.in
13374         * src/plugins/trayicon/trayicon.c
13375                 sync with HEAD
13376                 add src/wizard.c to POTFILES.in
13377
13378 2005-03-11 [paul]       1.0.3cvs1.1
13379
13380         * ChangeLog
13381         * ChangeLog.claws
13382         * configure.ac
13383         * po/de.po
13384         * po/es.po
13385         * po/fr.po
13386         * po/it.po
13387         * po/pt_BR.po
13388         * po/ru.po
13389         * po/sk.po
13390         * po/sr.po
13391         * po/zh_CN.po
13392                 sync with HEAD
13393
13394 2005-03-04 [colin]      1.0.1cvs22.2
13395
13396         * src/compose.c
13397                 Fix signatures with accentued chars in it
13398
13399 2005-03-04 [colin]      1.0.1cvs22.1
13400
13401         * src/common/smtp.c
13402         * src/common/smtp.h
13403                 Don't use SIZE param in MAIL FROM: if server 
13404                 doesn't support it. Patch by Eugen Freiter
13405                 <eugen_f@users.sf.net>
13406
13407 2005-02-27 [paul]       1.0.1cvs20.1
13408
13409         * ChangeLog.claws
13410         * configure.ac
13411         * src/messageview.c
13412                 sync with HEAD
13413
13414 2005-02-27 [colin]      1.0.1cvs19.4
13415
13416         * src/procheader.c
13417         * src/procheader.h
13418                 Fix prototypes. Patch by Alfons
13419
13420 2005-02-27 [colin]      1.0.1cvs19.3
13421
13422         * src/compose.c
13423                 Don't auto-join the signature separator.
13424
13425 2005-02-26 [colin]      1.0.1cvs19.2
13426
13427         * src/summaryview.c
13428                 Fix 'mark all read' with collapsed threads.
13429                 Patch by Alfons.
13430
13431 2005-02-25 [paul]       1.0.1cvs19.1
13432
13433         * ChangeLog.claws
13434         * configure.ac
13435         * src/prefs_account.c
13436         * src/prefs_folder_item.c
13437         * src/gtk/prefswindow.c
13438         * src/gtk/prefswindow.h
13439                 sync with HEAD
13440
13441 2005-02-25 [paul]       1.0.1cvs15.12
13442
13443         * src/alertpanel.c
13444         * src/codeconv.c
13445         * src/compose.c
13446         * src/textview.c
13447         * src/gtk/gtkutils.c
13448         * src/gtk/gtkutils.h
13449         * src/gtk/logwindow.c
13450         * src/gtk/progressdialog.c
13451                 sync with main (revision 127)
13452                 and fix logwindow clipping
13453
13454 2005-02-24 [colin]      1.0.1cvs15.11
13455
13456         * src/plugins/pgpmime/passphrase.c
13457                 Disable input grabbing; it doesn't work yet.
13458
13459 2005-02-24 [colin]      1.0.1cvs15.10
13460
13461         * src/messageview.c
13462                 Don't send out receipts if offline. Ask.
13463
13464 2005-02-23 [colin]      1.0.1cvs15.9
13465
13466         * src/summaryview.c     
13467                 Fix expanding
13468
13469 2005-02-23 [colin]      1.0.1cvs15.8
13470
13471         * src/summaryview.c
13472                 Really fix Bug 568 by removing useless
13473                 calls. summary_thread_init() now called
13474                 in summary_sort(). This should please
13475                 Alfons as it should be faster than 
13476                 previously.
13477
13478 2005-02-23 [colin]      1.0.1cvs15.7
13479
13480         * src/compose.c
13481                 Encode parts as QP or B64 if signing
13482
13483 2005-02-23 [colin]      1.0.1cvs15.6
13484
13485         * src/compose.c
13486                 Fix Mimeinfo leakage (including tmp files)
13487         * src/procmsg.c
13488                 Fix tmp file leakage (spotted by Ivan Rayner)
13489
13490 2005-02-22 [colin]      1.0.1cvs15.5
13491
13492         * src/expldifdlg.c
13493                 Fix keyboard input. Patch by Alfons.
13494
13495 2005-02-21 [colin]      1.0.1cvs15.4
13496
13497         * src/compose.c
13498                 Fix Sign/Encrypt when unselecting privacy
13499                 system
13500         * src/prefs_common.c
13501                 Change default message font to Monospace
13502         * src/summaryview.c
13503                 More freezing during potentially large operations
13504
13505 2005-02-21 [paul]       1.0.1cvs15.3
13506
13507         * src/main.c
13508                 fix --help output
13509
13510 2005-02-21 [paul]       1.0.1cvs15.2
13511
13512         * po/Makefile.in.in
13513         * src/compose.c
13514         * src/summaryview.c
13515         * src/textview.c
13516         * src/common/utils.c
13517         * src/common/utils.h
13518                 sync with main (revision 117)
13519
13520 2005-02-20 [colin]      1.0.1cvs15.1
13521
13522         * src/common/defs.h
13523                 Change cache file to .sylpheed_claws_cache, as
13524                 suggested by Alfons. Allows people to switch
13525                 between Sylpheed and Sylpheed-Claws. it is
13526                 a good idea to "Check for new messages" at next
13527                 startup.
13528
13529
13530 2005-02-18 [colin]      1.0.1cvs14.1
13531
13532         * src/quote_fmt_lex.l
13533         * src/quote_fmt_parse.y
13534                 Fix parser initialisation. Patch by Ivan.
13535
13536 2005-02-18 [colin]      1.0.1cvs11.6
13537
13538         * src/folderview.c
13539                 Fix scrolldown (bug 662)
13540
13541 2005-02-17 [colin]      1.0.1cvs11.5
13542
13543         * src/codeconv.c
13544                 conv_filename_to_utf8: return clean 7bit instead
13545                 of broken utf8 if needed
13546         * src/mimeview.c
13547                 Fix display of parts with unclean 8bit names
13548
13549 2005-02-17 [paul]       1.0.1cvs11.4
13550
13551         * src/compose.c
13552         * src/exportldif.c
13553         * src/matcher_parser_parse.y
13554         * src/procmime.c
13555         * src/sourcewindow.c
13556         * src/common/Makefile.am
13557         * src/common/intl.h             ** REMOVED **
13558         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
13559                 sync with main (revision 109)
13560                 and clean up
13561
13562 2005-02-16 [colin]      1.0.1cvs11.3
13563
13564         * src/summaryview.c
13565                 Fix collapsed thread not highlighting when new
13566                 messages in it (Bug 568) Patch by Stephan Sachse.
13567                 Fix messed up selection when reaching bounds (Bug 632)
13568         * src/prefs_themes.c
13569                 Fix theme installing (Bug 684)
13570
13571 2005-02-16 [colin]      1.0.1cvs11.2
13572
13573         * src/messageview.c
13574                 Fix messageview_select_all
13575
13576 2005-02-16 [colin]      1.0.1cvs11.1
13577
13578         * src/mh.c
13579                 Sync with HEAD (MH scan required function)
13580
13581 2005-02-15 [colin]      1.0.1cvs8.1
13582
13583         * src/mimeview.c
13584         * src/common/utils.c
13585                 Sync with HEAD (filename chars substitution)
13586
13587 2005-02-15 [colin]      1.0.1cvs7.3
13588
13589         * src/gtk/pluginwindow.c
13590                 Fix button spacing
13591
13592 2005-02-15 [colin]      1.0.1cvs7.2
13593
13594         * src/mimeview.c
13595                 Fix mime icons not reset across message when
13596                 scrolled down
13597
13598 2005-02-15 [colin]      1.0.1cvs7.1
13599
13600         * src/compose.c
13601         * src/procmime.c
13602                 Sync with HEAD (optimisation of cvs6)
13603
13604 2005-02-14 [colin]      1.0.1cvs6.1
13605
13606         * src/compose.c
13607         * src/procmime.c
13608                 Sync with HEAD (encode "From " at line beginning)
13609
13610 2005-02-14 [colin]      1.0.1cvs5.3
13611
13612         * src/compose.c
13613                 Fix wrapping with accentued chars.
13614
13615 2005-02-13 [colin]      1.0.1cvs5.2
13616
13617         * src/textview.c
13618                 Fix email informative part parsing with
13619                 accentued chars in it. ispunct() returns
13620                 true for them in utf8...
13621
13622 2005-02-12 [colin]      1.0.1cvs5.1
13623
13624         * src/filtering.c
13625                 Sync with HEAD (remove wrong use of compose after send)
13626
13627 2005-02-12 [paul]       1.0.1cvs4.5
13628
13629         * src/textview.c
13630                 remove unnecessary code (thanks to Alfons)
13631
13632 2005-02-12 [paul]       1.0.1cvs4.4
13633
13634         * src/textview.c
13635                 add 'Copy' to contextual menu on emails
13636
13637 2005-02-11 [colin]      1.0.1cvs4.3
13638
13639         * src/compose.c
13640                 revert 1.0.0cvs28.2, it doesn't work that well.
13641
13642 2005-02-11 [paul]       1.0.1cvs4.2
13643
13644         * po/Makefile.in.in
13645                 fix 'make release'
13646
13647 2005-02-10 [paul]       1.0.1cvs4.1
13648
13649         * ChangeLog
13650         * ChangeLog.claws
13651         * ChangeLog.jp
13652         * configure.ac
13653         * src/compose.c
13654                 sync with HEAD (sync with main)
13655
13656 2005-02-10 [paul]       1.0.1cvs3.2
13657
13658         * AUTHORS
13659         * Makefile.am
13660         * autogen.sh
13661         * configure.ac
13662         * config/mkinstalldirs
13663         * intl/.cvsignore
13664         * intl/ChangeLog
13665         * intl/VERSION
13666         * intl/bindtextdom.c
13667         * intl/config.charset
13668         * intl/dcgettext.c
13669         * intl/dcigettext.c
13670         * intl/dcngettext.c
13671         * intl/dgettext.c
13672         * intl/dngettext.c
13673         * intl/eval-plural.h
13674         * intl/explodename.c
13675         * intl/finddomain.c
13676         * intl/gettext.c
13677         * intl/gettextP.h
13678         * intl/gmo.h
13679         * intl/hash-string.h
13680         * intl/intl-compat.c
13681         * intl/l10nflist.c
13682         * intl/libgnuintl.h.in
13683         * intl/loadinfo.h
13684         * intl/loadmsgcat.c
13685         * intl/localcharset.c
13686         * intl/localcharset.h
13687         * intl/locale.alias
13688         * intl/localealias.c
13689         * intl/localename.c
13690         * intl/log.c
13691         * intl/ngettext.c
13692         * intl/os2compat.c
13693         * intl/os2compat.h
13694         * intl/osdep.c
13695         * intl/plural-exp.c
13696         * intl/plural-exp.h
13697         * intl/plural.c
13698         * intl/plural.y
13699         * intl/ref-add.sin
13700         * intl/ref-del.sin
13701         * intl/relocatable.c
13702         * intl/relocatable.h
13703         * intl/textdomain.c
13704         * m4/Makefile.am
13705         * po/Makefile.in.in
13706         * src/Makefile.am
13707         * src/account.c
13708         * src/action.c
13709         * src/addr_compl.c
13710         * src/addressadd.c
13711         * src/addressbook.c
13712         * src/addrgather.c
13713         * src/addrindex.c
13714         * src/alertpanel.c
13715         * src/browseldap.c
13716         * src/codeconv.c
13717         * src/codeconv.h
13718         * src/compose.c
13719         * src/compose.h
13720         * src/crash.c
13721         * src/editaddress.c
13722         * src/editbook.c
13723         * src/editgroup.c
13724         * src/editjpilot.c
13725         * src/editldap.c
13726         * src/editldap_basedn.c
13727         * src/editvcard.c
13728         * src/exphtmldlg.c
13729         * src/expldifdlg.c
13730         * src/export.c
13731         * src/exporthtml.c
13732         * src/filtering.c
13733         * src/folder.c
13734         * src/folder_item_prefs.c
13735         * src/foldersel.c
13736         * src/folderview.c
13737         * src/grouplistdialog.c
13738         * src/headerview.c
13739         * src/imap.c
13740         * src/imap_gtk.c
13741         * src/import.c
13742         * src/importldif.c
13743         * src/importmutt.c
13744         * src/importpine.c
13745         * src/inc.c
13746         * src/ldif.c
13747         * src/main.c
13748         * src/mainwindow.c
13749         * src/matcher.c
13750         * src/mbox.c
13751         * src/message_search.c
13752         * src/messageview.c
13753         * src/mh.c
13754         * src/mh_gtk.c
13755         * src/mimeview.c
13756         * src/msgcache.c
13757         * src/news.c
13758         * src/news_gtk.c
13759         * src/noticeview.c
13760         * src/partial_download.c
13761         * src/pop.c
13762         * src/prefs_account.c
13763         * src/prefs_actions.c
13764         * src/prefs_common.c
13765         * src/prefs_customheader.c
13766         * src/prefs_display_header.c
13767         * src/prefs_ext_prog.c
13768         * src/prefs_filtering.c
13769         * src/prefs_filtering_action.c
13770         * src/prefs_folder_item.c
13771         * src/prefs_fonts.c
13772         * src/prefs_gtk.c
13773         * src/prefs_matcher.c
13774         * src/prefs_msg_colors.c
13775         * src/prefs_spelling.c
13776         * src/prefs_summary_column.c
13777         * src/prefs_template.c
13778         * src/prefs_themes.c
13779         * src/prefs_toolbar.c
13780         * src/prefs_wrapping.c
13781         * src/privacy.c
13782         * src/procheader.c
13783         * src/procmime.c
13784         * src/procmsg.c
13785         * src/quote_fmt.c
13786         * src/recv.c
13787         * src/send_message.c
13788         * src/setup.c
13789         * src/sourcewindow.c
13790         * src/ssl_manager.c
13791         * src/statusbar.c
13792         * src/summary_search.c
13793         * src/summaryview.c
13794         * src/textview.c
13795         * src/toolbar.c
13796         * src/wizard.c
13797         * src/common/nntp.c
13798         * src/common/plugin.c
13799         * src/common/smtp.c
13800         * src/common/ssl.c
13801         * src/common/ssl_certificate.c
13802         * src/common/string_match.c
13803         * src/common/sylpheed.c
13804         * src/common/template.c
13805         * src/common/utils.c
13806         * src/gtk/about.c
13807         * src/gtk/colorlabel.c
13808         * src/gtk/description_window.c
13809         * src/gtk/filesel.c
13810         * src/gtk/foldersort.c
13811         * src/gtk/gtkaspell.c
13812         * src/gtk/gtkutils.c
13813         * src/gtk/inputdialog.c
13814         * src/gtk/logwindow.c
13815         * src/gtk/menu.c
13816         * src/gtk/pluginwindow.c
13817         * src/gtk/prefswindow.c
13818         * src/gtk/progressdialog.c
13819         * src/gtk/quicksearch.c
13820         * src/gtk/sslcertwindow.c
13821         * src/plugins/clamav/clamav_plugin.c
13822         * src/plugins/clamav/clamav_plugin_gtk.c
13823         * src/plugins/demo/demo.c
13824         * src/plugins/dillo_viewer/dillo_prefs.c
13825         * src/plugins/dillo_viewer/dillo_viewer.c
13826         * src/plugins/image_viewer/plugin.c
13827         * src/plugins/image_viewer/viewer.c
13828         * src/plugins/image_viewer/viewerprefs.c
13829         * src/plugins/mathml_viewer/mathml_viewer.c
13830         * src/plugins/pgpmime/passphrase.c
13831         * src/plugins/pgpmime/plugin.c
13832         * src/plugins/pgpmime/prefs_gpg.c
13833         * src/plugins/pgpmime/select-keys.c
13834         * src/plugins/pgpmime/sgpgme.c
13835         * src/plugins/spamassassin/spamassassin.c
13836         * src/plugins/spamassassin/spamassassin_gtk.c
13837         * src/plugins/trayicon/trayicon.c
13838                 sync with main (revision 104)
13839
13840 2005-02-10 [colin]      1.0.1cvs3.1
13841
13842         * src/mainwindow.c
13843                 Sync with HEAD (fix occasional crasher)
13844
13845 2005-02-10 [colin]      1.0.1cvs2.1
13846
13847         * src/messageview.c
13848                 Synw with HEAD (don't automatically display html)
13849
13850 2005-02-09 [colin]      1.0.1cvs1.3
13851
13852         * src/textview.c
13853         * src/textview.h
13854                 Add contextual menu on emails
13855
13856 2005-02-09 [colin]      1.0.1cvs1.2
13857
13858         * src/codeconv.c
13859                 Fix converting from broken headers and 
13860                 put back the _ in missing places
13861                 (feature broke with cvs24.2 sync, main 
13862                  possibly affected?)
13863
13864 2005-02-09 [colin]      1.0.1cvs1.1
13865
13866         * src/messageview.c
13867         * src/mimeview.c
13868         * src/mimeview.h
13869                 Sync with HEAD (display non text/plain mails with plugin)
13870
13871 2005-02-08 [colin]      1.0.1.1
13872
13873         * ChangeLog.claws
13874         * po/pt_BR.po
13875                 Sync with HEAD
13876         * configure.ac
13877                 Make default configuration directory 
13878                 be .sylpheed-gtk2
13879
13880 2005-02-08 [colin]      1.0.0cvs29.1
13881
13882         * po/de.po
13883         * po/es.po
13884         * po/fr.po
13885         * po/it.po
13886         * po/sk.po
13887         * po/sr.po
13888                 Sync translations with HEAD
13889
13890 2005-02-06 [colin]      1.0.0cvs28.3
13891
13892         * src/compose.c
13893                 Make compose a bit faster - patch by Alfons.
13894
13895 2005-02-06 [colin]      1.0.0cvs28.2
13896
13897         * src/compose.c
13898                 Make pasting via middle-click more reliable
13899
13900 2005-02-05 [paul]       1.0.0cvs28.1
13901
13902         * ChangeLog
13903         * ChangeLog.claws
13904         * ChangeLog.jp
13905         * configure.ac
13906         * src/compose.c
13907                 sync with HEAD
13908                 (fix bug 682 'redirect is broken'
13909
13910 2005-02-05 [torte]      1.0.0cvs27.1
13911
13912         * ChangeLog.claws
13913         * configure.ac
13914         * src/partial_download.c
13915                 Sync with HEAD (fix buf overflow)
13916
13917 2005-02-03 [colin]      1.0.0cvs26.1
13918
13919         * src/common/plugin.c
13920                 Sync with HEAD (avoid plugin mismatches)
13921
13922 2005-02-03 [paul]       1.0.0cvs25.3
13923
13924         * src/folderview.c
13925         * src/headerview.c
13926         * src/summaryview.c
13927         * src/textview.c
13928         * src/gtk/colorlabel.c
13929                 third and final part of initial sync with main-gtk2
13930
13931 2005-02-03 [paul]       1.0.0cvs25.2
13932
13933         * src/jpilot.c
13934                 fix building with jpilot support
13935
13936 2005-02-02 [colin]      1.0.0cvs25.1
13937
13938         * src/messageview.c
13939                 Sync with HEAD (fix dangerous typo)
13940
13941 2005-02-01 [colin]      1.0.0cvs24.3
13942
13943         * src/common/xml.c
13944                 Write file as advertised (UTF-8)
13945
13946 2005-02-01 [paul]       1.0.0cvs24.2
13947
13948         * src/addrbook.c
13949         * src/addrindex.c
13950         * src/alertpanel.h
13951         * src/codeconv.c
13952         * src/codeconv.h
13953         * src/compose.c
13954         * src/export.c
13955         * src/folder_item_prefs.c
13956         * src/html.c
13957         * src/imap.c
13958         * src/import.c
13959         * src/jpilot.c
13960         * src/mainwindow.c
13961         * src/matcher_parser_lex.l
13962         * src/messageview.c
13963         * src/mh.c
13964         * src/prefs_account.c
13965         * src/prefs_actions.c
13966         * src/prefs_common.c
13967         * src/prefs_gtk.c
13968         * src/prefs_gtk.h
13969         * src/prefs_themes.c
13970         * src/procheader.c
13971         * src/procmime.c
13972         * src/sourcewindow.c
13973         * src/statusbar.c
13974         * src/summaryview.c
13975         * src/textview.c
13976         * src/toolbar.c
13977         * src/unmime.c
13978         * src/common/template.c
13979         * src/common/utils.c
13980         * src/common/xml.c
13981         * src/common/xml.h
13982         * src/gtk/gtkaspell.c
13983         * src/plugins/clamav/clamav_plugin.c
13984         * src/plugins/dillo_viewer/dillo_prefs.c
13985         * src/plugins/image_viewer/viewerprefs.c
13986         * src/plugins/pgpmime/passphrase.c
13987         * src/plugins/pgpmime/prefs_gpg.c
13988         * src/plugins/pgpmime/select-keys.c
13989         * src/plugins/spamassassin/spamassassin.c
13990                 second part of initial sync with main-gtk2
13991                 (more to follow)
13992
13993 2005-01-31 [colin]      1.0.0cvs24.1
13994
13995         * src/compose.c
13996                 Sync with HEAD
13997
13998 2005-01-29 [paul]       1.0.0cvs23.2
13999
14000         * src/account.c
14001         * src/action.c
14002         * src/addressadd.c
14003         * src/addressbook.c
14004         * src/alertpanel.c
14005         * src/compose.c
14006         * src/editaddress.c
14007         * src/editbook.c
14008         * src/editgroup.c
14009         * src/editjpilot.c
14010         * src/editldap.c
14011         * src/editldap_basedn.c
14012         * src/editvcard.c
14013         * src/export.c
14014         * src/foldersel.c
14015         * src/grouplistdialog.c
14016         * src/import.c
14017         * src/importldif.c
14018         * src/inc.c
14019         * src/main.c
14020         * src/mainwindow.c
14021         * src/message_search.c
14022         * src/messageview.c
14023         * src/mimeview.c
14024         * src/prefs_actions.c
14025         * src/prefs_common.c
14026         * src/prefs_common.h
14027         * src/prefs_customheader.c
14028         * src/prefs_display_header.c
14029         * src/prefs_filtering.c
14030         * src/prefs_filtering_action.c
14031         * src/prefs_gtk.c
14032         * src/prefs_matcher.c
14033         * src/prefs_summary_column.c
14034         * src/prefs_template.c
14035         * src/sourcewindow.c
14036         * src/summary_search.c
14037         * src/summaryview.c
14038         * src/textview.c
14039         * src/gtk/about.c
14040         * src/gtk/description_window.c
14041         * src/gtk/gtkshruler.c
14042         * src/gtk/gtkutils.c
14043         * src/gtk/gtkutils.h
14044         * src/gtk/inputdialog.c
14045         * src/gtk/logwindow.c
14046         * src/gtk/prefswindow.c
14047         * src/gtk/progressdialog.c
14048         * src/gtk/progressdialog.h
14049                 first part of initial sync with main-gtk2
14050                 (more to follow)
14051
14052 2005-01-28 [colin]      1.0.0cvs23.1
14053
14054         * src/folderview.c
14055                 Sync with HEAD
14056
14057 2005-01-27 [colin]      1.0.0cvs21.1
14058
14059         * src/folder.c
14060         * src/folderview.c
14061                 Sync with HEAD
14062
14063 2005-01-27 [colin]      1.0.0cvs19.1
14064
14065         * src/procmime.c
14066                 Sync with HEAD
14067
14068 2005-01-27 [colin]      1.0.0cvs18.1
14069
14070         * src/messageview.c
14071         * src/summaryview.c
14072         * src/mainwindow.c
14073         * src/compose.c
14074         * src/compose.h
14075         * src/procmsg.c
14076         * src/procmsg.h
14077         * src/toolbar.c
14078                 Sync with HEAD
14079
14080 2005-01-26 [paul]       1.0.0cvs15.2
14081
14082         * src/compose.c
14083                 compose_entries_set(): convert subject and body to
14084                 utf8 if necessary. patch by Felix Eckhofer
14085
14086 2005-01-26 [paul]       1.0.0cvs15.1
14087
14088         * configure.ac
14089         * src/common/template.c
14090                 sync with HEAD (fix memory leak)
14091
14092 2005-01-25 [paul]       1.0.0cvs14.1
14093
14094         * configure.ac
14095         * src/compose.c
14096                 sync with HEAD
14097
14098 2005-01-24 [colin]      1.0.0cvs13.1
14099
14100         * src/summaryview.c
14101                 Sync with HEAD
14102
14103 2005-01-24 [paul]       1.0.0cvs12.1
14104
14105         * configure.ac
14106         * src/messageview.c
14107         * src/mh.c
14108         * src/common/utils.c
14109                 sync with HEAD
14110
14111 2005-01-24 [colin]      1.0.0cvs11.1
14112
14113         * src/procheader.c
14114                 Sync with HEAD
14115
14116 2005-01-24 [colin]      1.0.0cvs10.1
14117
14118         * src/folderview.c
14119                 Sync with HEAD
14120
14121 2005-01-23 [colin]      1.0.0cvs9.1
14122
14123         * src/crash.c
14124                 Sync with HEAD
14125
14126 2005-01-22 [colin]      1.0.0cvs8.1
14127
14128         * src/summaryview.c
14129         * src/gtk/quicksearch.c
14130                 Sync with HEAD
14131
14132 2005-01-21 [colin]      1.0.0cvs7.1
14133
14134         * src/summaryview.c
14135                 Sync with HEAD
14136
14137 2005-01-21 [colin]      1.0.0cvs6.1
14138
14139         * src/summaryview.c
14140                 Sync with HEAD
14141
14142 2005-01-21 [colin]      1.0.0cvs5.1
14143
14144         * src/gtk/quicksearch.c
14145         * src/prefs_common.c
14146         * src/prefs_common.h
14147                 Sync with HEAD (recurse option)
14148
14149 2005-01-21 [colin]      1.0.0cvs4.1
14150
14151         * src/folder.h
14152         * src/folderview.c
14153         * src/folderview.h
14154         * src/summaryview.c
14155         * src/gtk/quicksearch.c
14156         * src/gtk/quicksearch.h
14157                 Sync with HEAD (recursive quicksearch)
14158
14159 2005-01-20 [colin]      1.0.0cvs3.4
14160
14161         * src/ssl_manager.c
14162                 Remove useless code
14163
14164 2005-01-20 [colin]      1.0.0cvs3.3
14165
14166         * src/ssl_manager.c
14167                 Fix leak, thanks to Alfons.
14168
14169 2005-01-20 [colin]      1.0.0cvs3.2
14170
14171         * src/ssl_manager.c
14172                 Port SSL certificate window to GTK2.
14173
14174 2005-01-20 [paul]       1.0.0cvs3.1
14175
14176         * ChangeLog.claws
14177         * configure.ac
14178         * src/addrindex.c
14179         * src/addrindex.h
14180                 sync with HEAD
14181
14182 2005-01-19 [colin]      1.0.0cvs2.2
14183
14184         * src/plugins/trayicon/trayicon.c
14185                 Fix freeze with gtk-2.6, the easy way
14186                 (signal blocking helpless there...)
14187                 Closes bug #668.
14188
14189 2005-01-19 [colin]      1.0.0cvs2.1
14190
14191         * src/mbox.c
14192         * src/mbox.h
14193         * src/mainwindow.c
14194         * src/summaryview.c
14195         * src/summaryview.h
14196                 Sync with HEAD
14197
14198 2005-01-19 [paul]       1.0.0cvs1.1
14199
14200         * configure.ac
14201         * po/de.po
14202         * po/es.po
14203         * po/fr.po
14204         * po/hr.po
14205         * po/it.po
14206         * po/ja.po
14207         * po/ko.po
14208         * po/pt_BR.po
14209         * po/ru.po
14210         * po/sk.po
14211         * po/sr.po
14212                 sync with HEAD (update translations)
14213
14214 2005-01-18 [colin]      1.0.0cvs0.1
14215
14216         * src/foldersel.c
14217                 Specify search column - patch by Alfons
14218
14219 2005-01-18 [colin]      0.9.13cvs36.3
14220
14221         * src/prefs_toolbar.c
14222                 Change Delete to Remove
14223         * src/prefs_fonts.c
14224                 GTK2 version and leak fixes
14225         * src/prefs_actions.c
14226                 Add stock buttons.
14227                 All patches by Alfons
14228
14229 2005-01-17 [colin]      0.9.13cvs36.2
14230
14231         * src/compose.c
14232                 Fix DnD inserting twice. While at it,
14233                 add DnD support for text/plain in the
14234                 body, and add support in the headers.
14235
14236 2005-01-16 [colin]      0.9.13cvs36.1
14237
14238         * ChangeLog
14239         * ChangeLog.jp
14240         * ChangeLog.claws
14241                 Sync with HEAD (nothing applicable)
14242
14243 2005-01-16 [colin]      0.9.13cvs33.2
14244
14245         * src/prefs_toolbar.c
14246                 GTK2ize prefs_toolbar, by Alfons.
14247
14248 2005-01-14 [colin]      0.9.13cvs33.1
14249
14250         * src/html.c
14251         * src/msgcache.c
14252                 Sync with HEAD
14253
14254 2005-01-14 [colin]      0.9.13cvs32.1
14255
14256         * src/html.c
14257         * src/html.h
14258         * src/msgcache.c
14259         * AUTHORS
14260         * tools/calypso_convert.pl
14261                 Sync with HEAD
14262
14263 2005-01-08 [colin]      0.9.13cvs29.2
14264
14265         * src/prefs_filtering_action.c
14266         * src/prefs_filtering.c
14267                 2 more gtk2 patches by Alfons
14268
14269 2005-01-07 [paul]       0.9.13cvs29.1
14270
14271         * ChangeLog
14272         * ChangeLog.claws
14273         * ChangeLog.jp
14274         * configure.ac
14275         * src/pop.c
14276         * src/pop.h
14277                 sync with HEAD
14278
14279 2005-01-07 [colin]      0.9.13cvs28.3
14280
14281         * src/gtk/progressdialog.c
14282         * src/gtk/progressdialog.h
14283         * src/inc.c
14284         * src/send_message.c
14285                 GTK2 for the incorporation dialog. The CList isn't dead
14286                 yet, for a more smooth migration. Patch by Alfons.
14287
14288 2005-01-06 [colin]      0.9.13cvs28.2
14289
14290         * src/prefs_display_header.c
14291                 GTK2 conversion by Alfons
14292         * src/prefs_actions.c
14293         * src/prefs_matcher.c
14294                 Fix 2 leaks - patch by Alfons
14295
14296 2005-01-06 [colin]      0.9.13cvs28.1
14297
14298         * src/prefs_matcher.c
14299                 Sync with HEAD
14300
14301 2005-01-06 [colin]      0.9.13cvs27.4
14302
14303         * src/prefs_matcher.c
14304                 Fix double-free. Patch by Alfons
14305
14306 2005-01-06 [colin]      0.9.13cvs27.3
14307
14308         * src/prefs_matcher.c
14309                 GTK2 widgets + memleak
14310                 Patch by Alfons
14311
14312 2005-01-05 [colin]      0.9.13cvs27.2
14313
14314         * src/account.c
14315         * src/addr_compl.c
14316         * src/foldersel.c
14317         * src/stock_pixmap.c
14318         * src/stock_pixmap.h
14319                 3 more GTK2 patches by Alfons.
14320
14321 2005-01-04 [colin]      0.9.13cvs27.1
14322
14323         * src/folderview.c
14324         * src/imap_gtk.c
14325         * src/news_gtk.c
14326                 Sync with HEAD
14327
14328 2005-01-04 [colin]      0.9.13cvs25.9
14329
14330         * src/compose.c
14331                 Fix Show Ruler menuitem
14332         * src/prefs_template.c
14333                 Convert to GTK2
14334         * src/common/utils.c
14335                 Make auto pointer stuff handles NULLs
14336                 Patches by Alfons.
14337
14338 2005-01-04 [colin]      0.9.13cvs25.8
14339
14340         * src/compose.c
14341                 Move the attachment list to gtk2
14342                 Patch by Alfons.
14343
14344 2005-01-04 [colin]      0.9.13cvs25.7
14345
14346         * src/textview.c
14347                 Make some keys work again
14348                 Patch by SungHyun Nam <namsh@kldp.org>
14349
14350 2005-01-04 [colin]      0.9.13cvs25.6
14351
14352         * src/gtk/gtkshruler.c
14353                 Move the ruler to GTK2
14354                 Patch by Alfons
14355
14356 2005-01-03 [colin]      0.9.13cvs25.5
14357
14358         * src/compose.c
14359                 Fix my broken patch apply 
14360
14361 2005-01-03 [colin]      0.9.13cvs25.4
14362
14363         * src/common/utils.c
14364         * src/common/utils.h
14365         * src/gtk/prefswindow.c
14366                 Move auto pointer stuff to utils.c
14367                 Patch by Alfons again :)
14368
14369 2005-01-03 [colin]      0.9.13cvs25.3
14370
14371         * src/compose.c
14372         * src/prefs_gtk.c
14373         * src/prefs_template.c
14374         * src/textview.c
14375                 Empty text widgets with empty strings, not NULL char
14376                 Patch by SungHyun Nam <namsh@kldp_org>
14377
14378 2005-01-03 [colin]      0.9.13cvs25.2
14379
14380         * src/main.c
14381         * AUTHORS
14382                 Sync with HEAD
14383
14384 2005-01-03 [colin]      0.9.13cvs25.1
14385
14386         * src/pop.c
14387         * src/pop.h
14388                 Sync with HEAD
14389
14390 2005-01-03 [colin]      0.9.13cvs24.3
14391
14392         * src/account.c
14393                 Two patches from Alfons and Alex S Moore:
14394                 fix images, fix return value.
14395
14396 2005-01-01 [colin]      0.9.13cvs24.2
14397
14398         * src/prefs_actions.c
14399                 Fix over-zealous assertion. Patch by Alfons
14400
14401 2005-01-01 [colin]      0.9.13cvs24.1
14402
14403         * src/procmime.c
14404                 Sync with HEAD (leak fix)
14405
14406 2004-12-31 [colin]      0.9.13cvs23.2
14407
14408         * src/prefs_common.c
14409                 GTK2 widgets + stock buttons - patch by Alfons
14410
14411 2004-12-31 [paul]       0.9.13cvs23.1
14412
14413         * configure.ac
14414                 bump up EXTRA_VERSION to match (sync'ed) HEAD
14415         * src/gtk/pluginwindow.c
14416                 use GTK2 widgets and plug memory leaks,
14417                 patches by Alfons
14418
14419 2004-12-30 [colin]      0.9.13cvs22.4
14420
14421         * src/account.c
14422         * src/action.c
14423         * src/export.c
14424         * src/foldersel.c
14425         * src/import.c
14426         * src/message_search.c
14427         * src/prefs_actions.c
14428         * src/prefs_common.c
14429         * src/prefs_customheader.c
14430         * src/prefs_filtering.c
14431         * src/prefs_summary_column.c
14432         * src/summary_search.c
14433         * src/gtk/about.c
14434         * src/gtk/description_window.c
14435         * src/gtk/gtkutils.c
14436         * src/gtk/gtkutils.h
14437         * src/gtk/inputdialog.c
14438         * src/gtk/prefswindow.c
14439                 Use GTK2 stock buttons. Patches by Alfons.
14440
14441 2004-12-30 [colin]      0.9.13cvs22.3
14442
14443         * src/account.c
14444                 Sync with HEAD
14445         * src/prefs_actions.c
14446         * src/prefs_customheader.c
14447         * src/prefs_filtering.c
14448         * src/prefs_msg_colors.c
14449         * src/prefs_summary_column.c
14450         * src/gtk/prefswindow.c
14451                 Use GtkTreeView instead of deprecated 
14452                 widgets. Patches by Alfons.
14453
14454 2004-12-30 [paul]       0.9.13cvs22.2
14455
14456         * src/foldersel.c
14457                 use GTK 2 Tree View
14458                 patch by Alfons, with root folder sorting fix
14459                 by Stephan Sachse
14460
14461 2004-12-30 [paul]       0.9.13cvs22.1
14462
14463         * ChangeLog
14464         * ChangeLog.claws
14465         * ChangeLog.jp
14466         * NEWS
14467         * configure.ac
14468         * src/account.c
14469                 sync with HEAD
14470
14471 2004-12-22 [martin]     0.9.13cvs21.2
14472
14473         * src/action.c
14474                 free the command line after its use
14475
14476 2004-12-18 [paul]       0.9.13cvs21.1
14477
14478         * AUTHORS
14479         * ChangeLog
14480         * ChangeLog.claws
14481         * ChangeLog.jp
14482         * NEWS
14483         * configure.ac
14484         * src/action.c
14485         * src/compose.c
14486         * src/syldap.c
14487                 sync with HEAD
14488
14489 2004-12-17 [martin]     0.9.13cvs17.2
14490
14491         * src/action.c
14492                 convert actions input to locale
14493         * src/inc.c
14494                 convert notification command to locale
14495         * src/plugins/pgpmime/select-keys.c
14496                 convert attributes to utf8
14497
14498 2004-12-14 [colin]      0.9.13cvs17.1
14499
14500         * ChangeLog
14501         * ChangeLog.jp
14502         * ChangeLog.claws
14503         * src/action.c
14504         * src/common/utils.c
14505         * src/gtk/prefswindow.c
14506         * src/gtk/gtkutils.c
14507         * src/gtk/gtkutils.h
14508         * src/plugins/spamassassin/libspamc.c
14509                 Sync with HEAD
14510
14511 2004-12-13 [colin]      0.9.13cvs14.1
14512
14513         * src/quote_fmt_parse.y
14514                 Sync with HEAD
14515
14516 2004-12-10 [colin]      0.9.13cvs12.1
14517
14518         * src/prefs_themes.c
14519         * src/mainwindow.c
14520         * src/messageview.c
14521                 Sync with HEAD
14522
14523 2004-12-09 [colin]      0.9.13cvs10.1
14524
14525         * src/procmime.c
14526                 Sync with HEAD (fix B64 encoding from memory)
14527
14528 2004-12-08 [colin]      0.9.13cvs9.1
14529
14530         * src/gtk/colorlabel.c
14531                 Sync with HEAD
14532
14533 2004-12-08 [paul]       0.9.13cvs8.2
14534
14535         * src/gtk/pluginwindow.c
14536                 fix window resizing oddities
14537
14538 2004-12-08 [colin]      0.9.13cvs8.1
14539
14540         * src/quote_fmt_parse.y
14541                 Sync with HEAD
14542
14543 2004-12-08 [colin]      0.9.13cvs7.1
14544
14545         * src/matcher_parser_parse.y
14546         * src/msgcache.c
14547         * src/prefs_matcher.c
14548         * src/procheader.c
14549         * src/matcher.c
14550         * src/common/defs.h
14551         * po/sr.po
14552                 Sync with HEAD
14553
14554 2004-12-08 [colin]      0.9.13cvs6.1
14555
14556         * src/quote_fmt_parse.y
14557         * src/textview.c
14558                 Sync with HEAD
14559         * src/gtk/prefswindow.c
14560         * src/gtk/pluginwindow.c
14561                 Fix G_CALLBACKS protos (thanks to Alfons)
14562
14563 2004-12-07 [torte]      0.9.13cvs2.2
14564
14565         * src/procmime.c
14566                 [Bug 650] reply button causes crash
14567                 Thanks to David Relson and Christoph
14568
14569 2004-12-07 [colin]      0.9.13cvs2.1
14570
14571         * ChangeLog.claws
14572         * AUTHORS
14573         * po/sk.po
14574         * src/procmime.c
14575         * src/prefs_account.c
14576         * src/common/smtp.c
14577         * src/common/smtp.h
14578                 Sync with HEAD
14579
14580 2004-12-06 [colin]      0.9.12cvs187.1
14581
14582         * ChangeLog.claws
14583         * INSTALL
14584         * Makefile.am
14585         * README.claws
14586         * TODO.claws
14587         * configure.ac
14588         * po/bg.po
14589         * po/cs.po
14590         * po/el.po
14591         * po/en_GB.po
14592         * po/es.po
14593         * po/fr.po
14594         * po/hr.po
14595         * po/hu.po
14596         * po/it.po
14597         * po/ja.po
14598         * po/ko.po
14599         * po/nl.po
14600         * po/pl.po
14601         * po/pt_BR.po
14602         * po/ru.po
14603         * po/sk.po
14604         * po/sr.po
14605         * po/sv.po
14606         * po/zh_CN.po
14607         * po/zh_TW.Big5.po
14608         * src/compose.c
14609         * tools/Makefile.am
14610         * tools/README
14611         * tools/filter_conv.pl
14612         * tools/kdeservicemenu/README
14613         * tools/kdeservicemenu/template_sylpheed-attach-files.desktop
14614         * tools/kdeservicemenu/template_sylpheed-compress-attach.desktop
14615                 Sync with HEAD
14616
14617 2004-12-04 [colin]      0.9.12cvs183.1
14618
14619         * src/compose.c
14620                 Sync with HEAD (compose window position saving)
14621
14622 2004-12-04 [paul]       0.9.12cvs182.3
14623
14624         * src/messageview.c
14625         * src/mimeview.c
14626         * src/prefs_customheader.c
14627         * src/gtk/quicksearch.c
14628                 replace some forgotten GTK_SIGNAL_FUNCs
14629
14630 2004-12-04 [paul]       0.9.12cvs182.2
14631
14632         * src/Makefile.am
14633                 remove 'pixmaps/dir_noselect.xpm'. from local patch,
14634                 committed in error      
14635
14636 2004-12-04 [paul]       0.9.12cvs182.1
14637
14638         * ChangeLog
14639         * ChangeLog.claws
14640         * ChangeLog.jp
14641         * INSTALL
14642         * NEWS
14643         * README
14644         * README.jp
14645         * configure.ac
14646         * doc/manual/ja/Makefile.am
14647         * doc/manual/ja/sylpheed-1.html
14648         * doc/manual/ja/sylpheed-10.html
14649         * doc/manual/ja/sylpheed-11.html
14650         * doc/manual/ja/sylpheed-12.html
14651         * doc/manual/ja/sylpheed-13.html
14652         * doc/manual/ja/sylpheed-14.html
14653         * doc/manual/ja/sylpheed-15.html
14654         * doc/manual/ja/sylpheed-16.html
14655         * doc/manual/ja/sylpheed-17.html
14656         * doc/manual/ja/sylpheed-18.html
14657         * doc/manual/ja/sylpheed-19.html
14658         * doc/manual/ja/sylpheed-2.html
14659         * doc/manual/ja/sylpheed-20.html
14660         * doc/manual/ja/sylpheed-3.html
14661         * doc/manual/ja/sylpheed-4.html
14662         * doc/manual/ja/sylpheed-5.html
14663         * doc/manual/ja/sylpheed-6.html
14664         * doc/manual/ja/sylpheed-7.html
14665         * doc/manual/ja/sylpheed-8.html
14666         * doc/manual/ja/sylpheed-9.html
14667         * doc/manual/ja/sylpheed.html
14668         * doc/manual/ja/sylpheed.sgml
14669         * po/de.po
14670         * src/Makefile.am
14671         * src/compose.c
14672         * src/procmime.c
14673         * src/pixmaps/regular.xpm **REMOVED**
14674         * src/plugins/pgpmime/pgpmime.c
14675         * src/plugins/pgpmime/plugin.c
14676         * src/plugins/pgpmime/prefs_gpg.c
14677                 sync with HEAD
14678
14679 2004-12-03 [paul]       0.9.12cvs180.1
14680
14681         * ChangeLog
14682         * ChangeLog.claws
14683         * ChangeLog.jp
14684         * configure.ac
14685         * src/Makefile.am
14686         * src/pop.c
14687         * src/common/utils.c
14688         * src/common/utils.h
14689         * src/pixmaps/continue.xpm
14690         * src/pixmaps/dir_close.xpm
14691         * src/pixmaps/dir_open.xpm
14692         * src/pixmaps/drafts_close.xpm
14693         * src/pixmaps/drafts_open.xpm
14694         * src/pixmaps/folder.xpm **REMOVED**
14695         * src/pixmaps/group.xpm
14696         * src/pixmaps/unread.xpm
14697                 sync with HEAD
14698
14699 2004-12-02 [colin]      0.9.12cvs179.1
14700
14701         * src/compose.c
14702                 Sync with HEAD (non-duplicated reedition)
14703
14704 2004-12-02 [colin]      0.9.12cvs178.1
14705
14706         * src/compose.c
14707                 Sync with HEAD (linewrap_quote fix)
14708
14709 2004-12-01 [colin]      0.9.12cvs177.3
14710
14711         * src/addrharvest.c
14712                 Replace sizeof with strlen
14713
14714 2004-12-01 [paul]       0.9.12cvs177.2
14715
14716         * src/addrharvest.c
14717                 fix 'harvest addresses'
14718
14719 2004-11-30 [colin]      0.9.12cvs177.1
14720
14721         * src/gtk/prefswindow.c
14722         * src/gtk/pluginwindow.c
14723                 Sync with HEAD
14724
14725 2004-11-29 [colin]      0.9.12cvs176.1
14726
14727         * src/folderview.c
14728                 sync with HEAD (Fix disappearing separators in folderview's popup)
14729
14730 2004-11-29 [colin]      0.9.12cvs175.1
14731
14732         * src/procmime.c
14733                 Sync with head (another format fix)
14734
14735 2004-11-29 [colin]      0.9.12cvs174.1
14736
14737         * src/pop.c
14738                 Sync with HEAD (format string fix)
14739
14740 2004-11-26 [colin]      0.9.12cvs173.1
14741
14742         * src/common/smtp.c
14743         * src/common/smtp.h
14744                 Sync with HEAD
14745
14746 2004-11-24 [colin]      0.9.12cvs172.1
14747
14748         * src/plugins/pgpmime/pgpmime.c
14749                 Sync with HEAD
14750
14751 2004-11-24 [colin]      0.9.12cvs171.1
14752
14753         * src/plugins/pgpmime/pgpmime.c
14754                 Sync with head (gpgmectx leaks)
14755
14756 2004-11-24 [colin]      0.9.12cvs169.1
14757
14758         * src/plugins/pgpmime/plugin.c
14759         * src/plugins/trayicon/Makefile.am
14760         * src/plugins/trayicon/newmarkedmail.xpm
14761         * src/plugins/trayicon/trayicon.c
14762         * src/plugins/trayicon/unreadmarkedmail.xpm
14763                 Sync with HEAD
14764
14765 2004-11-23 [colin]      0.9.12cvs168.1
14766
14767         * src/partial_download.c
14768         * src/partial_download.h
14769         * src/plugins/pgpmime/plugin.c
14770                 Sync with HEAD
14771
14772 2004-11-23 [colin]      0.9.12cvs166.1
14773
14774         * src/Makefile.am
14775         * src/codeconv.c
14776         * src/compose.c
14777         * src/folderview.c
14778         * src/main.c
14779         * src/partial_download.c
14780         * src/partial_download.h
14781         * src/prefs_account.c
14782         * src/prefs_account.h
14783         * src/privacy.c
14784         * src/privacy.h
14785         * src/procmime.c
14786         * src/common/Makefile.am
14787         * src/common/base64.h
14788         * src/common/partial_download.c
14789         * src/common/partial_download.h
14790         * src/gtk/prefswindow.c
14791         * src/gtk/prefswindow.h
14792         * src/plugins/pgpmime/pgpmime.c
14793         * src/plugins/pgpmime/prefs_gpg.c
14794         * src/plugins/pgpmime/prefs_gpg.h
14795         * src/plugins/pgpmime/sgpgme.c
14796         * src/plugins/pgpmime/sgpgme.h
14797                 Sync with HEAD
14798
14799 2004-11-23 [colin]      0.9.12cvs163.1
14800
14801         * src/main.c
14802                 Sync with HEAD (cursor optimization)
14803
14804 2004-11-23 [colin]      0.9.12cvs162.1
14805
14806         * src/prefs_common.c
14807         * src/prefs_themes.c
14808         * src/procmsg.c
14809                 Sync with HEAD
14810
14811 2004-11-23 [colin]      0.9.12cvs158.9
14812
14813         * src/compose.c
14814                 Fix double-free when forwarding
14815         * src/msgcache.c
14816                 Fix leak on error path
14817                 
14818
14819 2004-11-23 [colin]      0.9.12cvs158.8
14820
14821         * src/compose.c
14822                 Fix possible double-free
14823                 Spotted by Alfons
14824
14825 2004-11-23 [colin]      0.9.12cvs158.7
14826
14827         * src/compose.c
14828                 Fix some signal handlers' prototypes
14829                 Spotted by Alfons
14830
14831 2004-11-22 [colin]      0.9.12cvs158.6
14832
14833         * src/compose.c
14834                 Remove unneeded code and duplicated
14835                 wrapping - patch by Alfons
14836
14837 2004-11-22 [colin]      0.9.12cvs158.5
14838
14839         * src/prefs_themes.c
14840                 Fix oversized selector
14841
14842 2004-11-22 [colin]      0.9.12cvs158.4
14843
14844         * src/compose.c
14845                 fix dump_text()
14846                 patch by Alfons
14847
14848 2004-11-19 [colin]      0.9.12cvs158.3
14849
14850         * src/textview.c
14851                 Add a context menu on links (open, copy)
14852
14853 2004-11-18 [paul]       0.9.12cvs158.2
14854
14855         * src/addrgather.c
14856         * src/exphtmldlg.c
14857         * src/expldifdlg.c
14858         * src/mimeview.c
14859         * src/prefs_common.c
14860         * src/plugins/image_viewer/viewer.c
14861         * src/plugins/spamassassin/spamassassin_gtk.c
14862                 replace deprecated gtk_notebook_set_page
14863                 and gtk_notebook_current_page
14864
14865 2004-11-18 [paul]       0.9.12cvs158.1
14866
14867         * configure.ac
14868         * src/compose.c
14869         * src/mainwindow.c
14870         * src/messageview.c
14871         * src/prefs_common.c
14872         * src/common/utils.c
14873         * src/common/utils.h
14874                 sync with HEAD
14875
14876 2004-11-17 [colin]      0.9.12cvs156.1
14877
14878         * src/prefs_account.c
14879         * src/prefs_account.h
14880         * src/procmsg.c
14881                 Sync with HEAD (add pref to store encrypted mails encrypted)
14882
14883 2004-11-17 [paul]       0.9.12cvs155.1
14884
14885         * ChangeLog
14886         * ChangeLog.claws
14887         * ChangeLog.jp
14888         * NEWS
14889         * configure.ac
14890         * src/compose.c
14891         * src/jpilot.c
14892         * src/privacy.c
14893         * src/procmime.c
14894         * src/procmime.h
14895         * src/procmsg.c
14896         * src/toolbar.c
14897         * src/pixmaps/error.xpm
14898                 sync with HEAD
14899
14900 2004-11-17 [colin]      0.9.12cvs151.1
14901
14902         * src/plugins/pgpmime/pgpmime.c
14903                 Sync with HEAD (remove debug printf)
14904
14905 2004-11-17 [colin]      0.9.12cvs150.1
14906
14907         * src/plugins/pgpmime/pgpmime.c
14908                 Sync with HEAD (off-by-one fix)
14909
14910 2004-11-17 [colin]      0.9.12cvs149.1
14911
14912         * src/procmsg.c
14913                 Sync with HEAD (coding style fixes)
14914
14915 2004-11-16 [colin]      0.9.12cvs148.1
14916
14917         * src/procmsg.c
14918                 Sync with head (Fix the fix)
14919
14920 2004-11-16 [colin]      0.9.12cvs147.1
14921
14922         * src/procmsg.c
14923                 Sync with Main (leak fix)
14924
14925 2004-11-16 [colin]      0.9.12cvs146.14
14926
14927         * src/compose.c
14928                 Remove useless chunk of code
14929                 Patch by Alfons
14930
14931 2004-11-15 [colin]      0.9.12cvs146.13
14932
14933         * src/compose.c
14934                 Fix drafting after insertion
14935                 Patch by Alfons
14936
14937 2004-11-15 [colin]      0.9.12cvs146.12
14938
14939         * src/compose.c
14940         * src/prefs_filtering.c
14941         * src/prefs_filtering_action.c
14942         * src/prefs_toolbar.c
14943                 Fix some const-correctness
14944
14945 2004-11-15 [colin]      0.9.12cvs146.11
14946
14947         * src/summaryview.c
14948         * src/prefs_themes.c
14949         * src/messageview.c
14950                 Fix some leaks
14951
14952 2004-11-15 [colin]      0.9.12cvs146.10
14953
14954         * src/codeconv.c
14955                 More unreadable locale fixes
14956
14957 2004-11-14 [colin]      0.9.12cvs146.9
14958
14959         * src/textview.c
14960                 Fix uri_security_check
14961                 Patch by Alfons
14962
14963 2004-11-13 [paul]       0.9.12cvs146.8
14964
14965         * src/folder.c
14966         * src/procmime.c
14967                 fix 2 bugs introduced in last commit
14968
14969 2004-11-13 [paul]       0.9.12cvs146.7
14970
14971         * src/compose.c
14972         * src/exporthtml.c
14973         * src/exportldif.c
14974         * src/folder.c
14975         * src/imap.c
14976         * src/imap_gtk.c
14977         * src/main.c
14978         * src/mainwindow.c
14979         * src/messageview.c
14980         * src/mh_gtk.c
14981         * src/prefs_themes.c
14982         * src/procmime.c
14983         * src/setup.c
14984         * src/summaryview.c
14985                 replace deprecated g_basename
14986
14987 2004-11-13 [paul]       0.9.12cvs146.6
14988
14989         * src/compose.c
14990         * src/imap.c
14991         * src/matcher_parser.h
14992         * src/matcher_parser_parse.y
14993         * src/prefs_filtering.c
14994         * src/prefs_filtering_action.c
14995         * src/prefs_themes.c
14996         * src/prefs_toolbar.c
14997         * src/common/utils.c
14998                 various small fixes/cleanups
14999
15000 2004-11-12 [colin]      0.9.12cvs146.5
15001
15002         * src/textview.c
15003                 Validate event's origin on visibility notify
15004                 Patch by Alfons.
15005
15006 2004-11-12 [paul]       0.9.12cvs146.4
15007
15008         * src/exporthtml.c
15009         * src/exportldif.c
15010         * src/imap.c
15011         * src/mh.c
15012         * src/mimeview.c
15013         * src/prefs_spelling.c
15014         * src/prefs_themes.c
15015                 replace deprecated g_dirname    
15016
15017 2004-11-12 [colin]      0.9.12cvs146.3
15018
15019         * src/textview.c
15020                 Some coding style fixes
15021
15022 2004-11-12 [colin]      0.9.12cvs146.2
15023
15024         * src/codeconv.c
15025                 We want to replace _all_ extended chars in
15026                 conv_unreadable_*, because any string containing
15027                 extended chars not parsing as UTF8 is 
15028                 undisplayed on gtk2.
15029
15030 2004-11-12 [paul]       0.9.12cvs146.1
15031
15032         * ChangeLog
15033         * ChangeLog.claws
15034         * ChangeLog.jp
15035         * NEWS
15036         * configure.ac
15037         * src/account.c
15038         * src/folderview.c
15039         * src/folderview.h
15040         * src/imap.c
15041         * src/imap_gtk.c
15042         * src/inc.c
15043         * src/mainwindow.c
15044         * src/mh_gtk.c
15045         * src/news_gtk.c
15046         * src/pop.c
15047         * src/prefs_account.c
15048         * src/prefs_account.h
15049         * src/prefs_ext_prog.c
15050         * src/procmime.c
15051         * src/procmime.h
15052         * src/procmsg.c
15053         * src/procmsg.h
15054         * src/summary_search.c
15055         * src/summaryview.c
15056         * src/textview.c
15057         * src/common/defs.h
15058         * src/common/utils.c
15059         * src/common/utils.h
15060         * src/gtk/menu.c
15061         * src/gtk/menu.h
15062                 sync with HEAD
15063
15064 2004-11-11 [colin]      0.9.12cvs144.2
15065
15066         * src/textview.c
15067                 Fix URI range selection (patch by Alfons)
15068
15069 2004-11-09 [colin]      0.9.12cvs144.1
15070
15071         * ChangeLog.claws
15072         * src/compose.c
15073         * src/folder.c
15074         * src/folder_item_prefs.c
15075         * src/prefs_account.c
15076         * src/prefs_account.h
15077         * src/plugins/pgpmime/pgpmime.c
15078                 Sync with HEAD
15079
15080 2004-11-08 [colin]      0.9.12cvs143.1
15081
15082         * src/summaryview.c
15083                 Sync with HEAD (optimize quicksearch)
15084
15085 2004-11-08 [colin]      0.9.12cvs142.2
15086
15087         * src/compose.c
15088                 Don't wrap when Edit/Auto wrapping is disabled
15089
15090 2004-11-08 [colin]      0.9.12cvs142.1
15091
15092         * src/textview.c
15093                 Sync with HEAD
15094
15095 2004-11-08 [colin]      0.9.12cvs141.1
15096
15097         * src/textview.c
15098                 Sync with HEAD (fix some mail URIs)
15099
15100 2004-11-08 [colin]      0.9.12cvs140.3
15101
15102         * src/textview.c
15103                 o Use text cursor instead of arrow when
15104                   not on a link
15105                 o Fix handling of contiguous links (as in
15106                   "colin@colino.net" <colin@colino.net>)
15107                   This one unveils a bug in get_email_part()
15108
15109 2004-11-07 [colin]      0.9.12cvs140.2
15110
15111         * src/textview.c
15112                 Fix memleak. Patch by Alfons.
15113
15114 2004-11-06 [colin]      0.9.12cvs140.1
15115
15116         * src/compose.c
15117                 Sync with HEAD (don't ask passphrase
15118                 when drafting)
15119
15120 2004-11-06 [paul]       0.9.12cvs139.2
15121
15122         * AUTHORS
15123         * src/textview.c
15124         * src/textview.h
15125                 textview URI handling. hovering over a 
15126                 link displays it in the status bar,
15127                 and changes the mouse pointer to a hand 
15128                 cursor. a link is activated with a single 
15129                 click. (Modified from the) patch by Jean-Yves 
15130                 Lefort <jylefort@users.sourceforge.net>
15131                 
15132
15133 2004-11-05 [colin]      0.9.12cvs139.1
15134
15135         * src/compose.c
15136         * src/procmime.c
15137                 Sync with HEAD again ^^
15138
15139 2004-11-05 [colin]      0.9.12cvs139.1
15140
15141         * src/compose.c
15142         * src/procmime.c
15143                 Sync with HEAD
15144
15145 2004-11-03 [paul]       0.9.12cvs138.1
15146
15147         * ChangeLog.claws
15148         * configure.ac
15149         * po/POTFILES.in
15150         * src/prefs_ext_prog.c
15151         * src/procmime.c
15152         * tools/kdeservicemenu/README
15153         * tools/kdeservicemenu/template_sylpheed-attach-files.desktop
15154         * tools/kdeservicemenu/template_sylpheed-compress-attach.desktop
15155                 sync with HEAD
15156
15157 2004-11-01 [christoph]  0.9.12cvs136.2
15158
15159         * src/procmime.c
15160                 convert MIME parameters to UTF-8
15161
15162 2004-10-29 [colin]      0.9.12cvs136.1
15163
15164         * src/common/utils.c
15165                 Sync with HEAD (don't use '=' in mime boundary)
15166
15167 2004-10-29 [paul]       0.9.12cvs135.1
15168
15169         * configure.ac
15170         * doc/src/rfc2231.txt
15171         * src/procmime.c
15172         * src/common/quoted-printable.c
15173         * src/common/utils.c
15174         * src/common/utils.h
15175                 sync with HEAD
15176
15177 2004-10-27 [paul]       0.9.12cvs134.1
15178
15179         * configure.ac
15180         * src/main.c
15181         * src/procmime.c
15182         * src/plugins/pgpmime/pgpmime.c
15183                 sync with HEAD
15184
15185 2004-10-26 [paul]       0.9.12cvs132.3
15186
15187         * src/account.c
15188         * src/addressbook.c
15189         * src/addrgather.c
15190         * src/addrharvest.c
15191         * src/codeconv.c
15192         * src/compose.c
15193         * src/customheader.c
15194         * src/editaddress.c
15195         * src/editgroup.c
15196         * src/enriched.c
15197         * src/expldifdlg.c
15198         * src/exporthtml.c
15199         * src/exportldif.c
15200         * src/folder.c
15201         * src/foldersel.c
15202         * src/folderview.c
15203         * src/grouplistdialog.c
15204         * src/html.c
15205         * src/imap.c
15206         * src/jpilot.c
15207         * src/ldapserver.c
15208         * src/ldif.c
15209         * src/mimeview.c
15210         * src/news.c
15211         * src/news_gtk.c
15212         * src/pop.c
15213         * src/prefs_display_header.c
15214         * src/prefs_gtk.c
15215         * src/prefs_msg_colors.c
15216         * src/prefs_toolbar.c
15217         * src/procheader.c
15218         * src/procmime.c
15219         * src/summaryview.c
15220         * src/textview.c
15221         * src/toolbar.c
15222         * src/vcard.c
15223         * src/common/mgutils.c
15224         * src/common/nntp.c
15225         * src/common/smtp.c
15226         * src/common/template.c
15227         * src/common/utils.c
15228         * src/common/xmlprops.c
15229         * src/plugins/pgpmime/pgpmime.c
15230         * src/plugins/pgpmime/select-keys.c
15231         * src/plugins/pgpmime/sgpgme.c
15232                 replace deprecated g_strcasecmp(), g_strncasecmp(),
15233                 g_string_sprintfa(), gtk_notebook_current_page()
15234
15235 2004-10-26 [colin]      0.9.12cvs132.2
15236
15237         * src/prefs_folder_item.c
15238                 Fix default-account selection
15239
15240 2004-10-21 [colin]      0.9.12cvs133
15241
15242         * src/compose.c
15243                 Sync with HEAD (Remove extra separator in compose's Options)
15244         * src/textview.c
15245                 Set wrapping to char
15246
15247 2004-10-21 [paul]       0.9.12cvs131.2
15248
15249         * src/compose.c
15250         * src/sourcewindow.c
15251                 fix wrapping
15252                 fix window shrinking 
15253
15254 2004-10-21 [colin]      0.9.12cvs131.1
15255
15256         * ChangeLog.claws
15257         * src/compose.c
15258                 Sync with HEAD
15259
15260 2004-10-21 [paul]       0.9.12cvs130.2
15261
15262         * src/prefs_folder_item.c
15263                 sync with HEAD (Apply to subfolders)
15264
15265 2004-10-19 [colin]      0.9.12cvs130.1
15266
15267         * ChangeLog.claws
15268         * src/compose.c
15269         * src/common/utils.c
15270         * src/gtk/menu.c
15271                 Sync with HEAD
15272
15273 2004-10-19 [colin]      0.9.12cvs128.1
15274
15275         * src/addrbook.c
15276         * src/addrcache.c
15277         * src/addressbook.c
15278         * src/codeconv.c
15279         * src/compose.c
15280         * src/customheader.c
15281         * src/editaddress.c
15282         * src/editgroup.c
15283         * src/exporthtml.c
15284         * src/folder.c
15285         * src/folderview.c
15286         * src/imap.c
15287         * src/jpilot.c
15288         * src/main.c
15289         * src/matcher_parser_parse.y
15290         * src/mbox.c
15291         * src/pop.c
15292         * src/prefs_account.c
15293         * src/prefs_gtk.c
15294         * src/prefs_msg_colors.c
15295         * src/procheader.c
15296         * src/procmime.c
15297         * src/procmime.h
15298         * src/procmsg.c
15299         * src/summaryview.c
15300         * src/textview.c
15301         * src/common/base64.c
15302         * src/common/partial_download.c
15303         * src/common/socket.c
15304         * src/common/sylpheed.c
15305         * src/common/utils.c
15306         * src/common/utils.h
15307         * src/gtk/pluginwindow.c
15308         * src/gtk/quicksearch.c
15309         * src/plugins/clamav/clamav_plugin.c
15310         * src/plugins/clamav/clamav_plugin.h
15311         * src/plugins/clamav/clamav_plugin_gtk.c
15312         * src/plugins/pgpmime/passphrase.c
15313         * src/plugins/pgpmime/pgpmime.c
15314         * src/plugins/pgpmime/plugin.c
15315         * src/plugins/pgpmime/prefs_gpg.c
15316         * src/plugins/pgpmime/prefs_gpg.h
15317         * src/plugins/pgpmime/select-keys.c
15318         * src/plugins/pgpmime/sgpgme.c
15319         * src/plugins/spamassassin/libspamc.c
15320         * src/plugins/spamassassin/spamassassin.c
15321         * src/plugins/spamassassin/spamassassin.h
15322         * src/plugins/spamassassin/spamassassin_gtk.c
15323         * src/plugins/trayicon/trayicon.c
15324         * src/plugins/trayicon/libeggtrayicon/gtkplugxembed.c
15325                 Sync with HEAD
15326
15327 2004-10-14 [colin]      0.9.12cvs126.2
15328
15329         * src/codeconv.c
15330         * src/textview.c
15331                 Fix conv_unreadable_locale
15332
15333 2004-10-13 [colin]      0.9.12cvs126.1
15334
15335         * src/compose.c
15336                 Sync with HEAD (don't convert charset for 
15337                 drafted messages, minor cleanup)
15338
15339 2004-10-13 [colin]      0.9.12cvs125.1
15340
15341         * po/POTFILES.in
15342                 Sync with HEAD (POTFILES fix)
15343
15344 2004-10-12 [colin]      0.9.12cvs124.3
15345
15346         * src/compose.c
15347                 Fix encoding bug from latest sync
15348
15349 2004-10-12 [paul]       0.9.12cvs124.2
15350
15351         * src/plugins/pgpmime/prefs_gpg.c
15352         * src/plugins/pgpmime/prefs_gpg.h
15353                 forgotten in last commit        
15354
15355 2004-10-12 [paul]       0.9.12cvs124.1
15356
15357         * ChangeLog.claws
15358         * configure.ac
15359         * m4/spamassassin.m4
15360         * src/Makefile.am
15361         * src/account.c
15362         * src/compose.c
15363         * src/compose.h
15364         * src/crash.c
15365         * src/main.c
15366         * src/mimeview.c
15367         * src/passphrase.c
15368         * src/passphrase.h
15369         * src/prefs_account.c
15370         * src/prefs_account.h
15371         * src/prefs_common.c
15372         * src/privacy.c
15373         * src/privacy.h
15374         * src/procmime.c
15375         * src/procmime.h
15376         * src/procmsg.c
15377         * src/rfc2015.c
15378         * src/rfc2015.h
15379         * src/select-keys.c
15380         * src/select-keys.h
15381         * src/textview.c
15382         * src/common/utils.c
15383         * src/common/utils.h
15384         * src/gtk/about.c
15385         * src/plugins/pgpmime/Makefile.am
15386         * src/plugins/pgpmime/passphrase.c
15387         * src/plugins/pgpmime/passphrase.h
15388         * src/plugins/pgpmime/pgpmime.c
15389         * src/plugins/pgpmime/plugin.c
15390         * src/plugins/pgpmime/select-keys.c
15391         * src/plugins/pgpmime/select-keys.h
15392         * src/plugins/pgpmime/sgpgme.c
15393         * src/plugins/pgpmime/sgpgme.h
15394                 sync with HEAD
15395
15396 2004-10-04 [colin]      0.9.12cvs122.1
15397
15398         * src/mainwindow.c
15399         * src/messageview.c
15400         * src/messageview.h
15401         * src/textview.c
15402                 Sync with HEAD
15403
15404 2004-10-04 [colin]      0.9.12cvs121.1
15405
15406         * src/summaryview.c
15407                 Sync with HEAD
15408
15409 2004-10-04 [paul]       0.9.12cvs120.1
15410
15411         * configure.ac
15412                 sync with HEAD [don't try to build 
15413                 pgpmime plugin when gpgme is disabled]
15414
15415 2004-10-03 [colin]      0.9.12cvs119.3
15416
15417         * src/gtk/gtksctree.c
15418                 Lots of side effects. Put back as before 117.2.
15419         * src/summaryview.c
15420                 Fix bug #602
15421
15422 2004-10-03 [colin]      0.9.12cvs119.2
15423
15424         * src/gtk/gtksctree.c
15425                 Revert 608 fix that doesn't work that good
15426
15427 2004-10-02 [colin]      0.9.12cvs119.1
15428
15429         * src/mainwindow.c
15430         * src/messageview.c
15431         * src/prefs_common.h
15432         * src/procmime.c
15433         * src/procmime.h
15434         * src/textview.c
15435                 Sync with HEAD
15436         * src/gtk/gtksctree.c
15437                 Close bug #608
15438
15439 2004-10-01 [colin]      0.9.12cvs118.1
15440
15441         * src/mimeview.c
15442                 Sync with HEAD (better Save All fix)
15443
15444 2004-10-01 [colin]      0.9.12cvs117.2
15445
15446         * src/gtk/gtksctree.c
15447                 Faster on selection
15448
15449 2004-10-01 [colin]      0.9.12cvs117.1
15450
15451         * src/mimeview.c
15452                 Sync with HEAD (Save All: only attachments)
15453
15454 2004-10-01 [paul]       0.9.12cvs116.1
15455
15456         * ChangeLog.claws
15457         * configure.ac
15458         * src/account.c
15459         * src/prefs_common.c
15460         * src/gtk/colorlabel.c
15461                 sync with HEAD
15462
15463 2004-09-30 [colin]      0.9.12cvs115.1
15464
15465         * src/stock_pixmap.c
15466         * src/stock_pixmap.h
15467         * src/folderview.c
15468         * src/Makefile.am
15469         * src/pixmaps/read.xpm
15470                 Sync with HEAD (new pixmap)
15471
15472 2004-09-29 [colin]      0.9.12cvs114.1
15473
15474         * src/compose.c
15475                 Sync with HEAD
15476                 Fix focus handling in headers
15477
15478 2004-09-29 [paul]       0.9.12cvs113.1
15479
15480         * src/quote_fmt_parse.y
15481                 sync with HEAD
15482  
15483
15484 2004-09-28 [colin]      0.9.12cvs112.1
15485
15486         * src/folderview.c
15487         * src/mainwindow.c
15488                 Sync with HEAD
15489
15490 2004-09-28 [colin]      0.9.12cvs110.1
15491
15492         * src/folderview.c
15493                 Sync with HEAD (Contextual Empty trash menu)
15494
15495 2004-09-28 [colin]      0.9.12cvs108.1
15496
15497         * src/addressbook.c
15498                 Sync with HEAD (addressbook edit on double-click)
15499
15500 2004-09-28 [colin]      0.9.12cvs106.1
15501
15502         * src/inc.c
15503                 Sync with HEAD (folder_item freeze on inc)
15504
15505 2004-09-27 [colin]      0.9.12cvs105.1
15506
15507         * src/folderview.c
15508                 Sync with HEAD (right-align new and unread column)
15509
15510 2004-09-27 [colin]      0.9.12cvs104.1
15511
15512         * src/main.c
15513                 Sync with HEAD (revert 0.9.12cvs101)
15514
15515 2004-09-24 [colin]      0.9.12cvs103.2
15516
15517         * src/wizard.c
15518                 Fix gtk warnings and use domain part of the email address 
15519                 when domain detection fails (no dot in domain name)
15520
15521 2004-09-23 [colin]      0.9.12cvs103.1
15522
15523         * src/plugins/spamassassin/libspamc.c
15524         * src/plugins/spamassassin/libspamc.h
15525         * src/plugins/spamassassin/utils.c
15526         * src/plugins/spamassassin/utils.h
15527                 Sync with HEAD (Update spamassassin to 3.0)
15528
15529 2004-09-21 [colin]      0.9.12cvs102.3
15530
15531         * src/action.c
15532                 Add horizontal scrollbar in action io dialog as needed
15533                 Patch by Alfons.
15534
15535 2004-09-20 [colin]      0.9.12cvs102.2
15536
15537         * src/plugins/image_viewer/viewer.c
15538                 Remove imlib stuff
15539                 use gtk_pixmap_set when clearing
15540                 (would be better to use gtkImages, but causes size-allocate 
15541                 signals storm)
15542
15543 2004-09-17 [paul]       0.9.12cvs102.1
15544
15545         * ChangeLog
15546         * ChangeLog.claws
15547         * ChangeLog.jp
15548         * configure.ac
15549         * src/inc.c
15550                 sync with HEAD
15551
15552
15553 2004-09-17 [colin]      0.9.12cvs101.1
15554
15555         * ChangeLog.claws
15556         * src/main.c
15557                 Sync with HEAD (fix segs at exit)
15558
15559 2004-09-14 [colin]      0.9.12cvs99.5
15560
15561         * src/common/socket.c
15562         * AUTHORS
15563                 Fix send error on 64bit platforms
15564                 Patch by Guy Rouillier <guy-rouillier@speakeasy.net>
15565
15566 2004-09-14 [colin]      0.9.12cvs99.4
15567
15568         * src/action.c
15569                 Fix action output with utf8 
15570                 Patch by Alfons.
15571
15572 2004-09-14 [colin]      0.9.12cvs99.3
15573
15574         * ChangeLog.claws
15575         * src/folder.c
15576                 Sync with HEAD
15577
15578 2004-09-09 [colin]      0.9.12cvs99.2
15579
15580         * src/action.c
15581                 Fix progress bar (displaying "Completed %v/%u")
15582                 Patch by Alfons.
15583
15584 2004-09-08 [colin]      0.9.12cvs99.1
15585
15586         * src/account.c
15587         * src/folder.c
15588         * src/procmsg.c
15589         * src/procmsg.h
15590         * src/plugins/pgpmime/pgpmime.c
15591                 Sync with HEAD
15592
15593 2004-09-08 [colin]      0.9.12cvs97.2
15594
15595         * src/summaryview.c
15596                 Don't select mails in collapsed threads 
15597                 when navigating with up/down
15598
15599 2004-09-07 [colin]      0.9.12cvs97.1
15600
15601         * src/inc.c
15602                 Sync with HEAD (meaningful error messages)
15603
15604 2004-09-06 [colin]      0.9.12cvs96.1
15605
15606         * src/toolbar.c
15607                 Sync with HEAD (fix Redirect graying out)
15608
15609 2004-09-06 [colin]      0.9.12cvs95.1
15610
15611         * src/summaryview.c
15612         * src/mimeview.c
15613                 Sync with HEAD (fix dropped URIs)
15614
15615 2004-09-06 [colin]      0.9.12cvs94.1
15616
15617         * src/addressbook.c
15618         * src/addressitem.h
15619         * src/addritem.c
15620         * src/addritem.h
15621                 Sync with HEAD (addressbook DnD)
15622
15623 2004-09-03 [colin]      0.9.12cvs93.1
15624
15625         * src/summaryview.c
15626                 Sync with HEAD (next/prev unread)
15627
15628 2004-09-03 [colin]      0.9.12cvs92.1
15629
15630         * src/prefs_common.c
15631         * src/prefs_common.h
15632         * src/summaryview.c
15633                 Sync with HEAD ('mark_as_read_delay' pref)
15634
15635 2004-09-02 [colin]      0.9.12cvs91.2
15636
15637         * src/common/xml.c
15638                 Fix leak
15639
15640 2004-09-02 [colin]      0.9.12cvs91.1
15641
15642         * src/gtk/menu.c
15643                 Sync with HEAD (menu accel don't work, but whatever)
15644
15645 2004-09-02 [colin]      0.9.12cvs90.1
15646
15647         * src/account.c
15648                 Sync with HEAD (fix bug 582)
15649
15650 2004-09-02 [colin]      0.9.12cvs89.1
15651
15652         * src/addrindex.c
15653                 Sync with HEAD (free deleted queries)
15654
15655 2004-09-02 [colin]      0.9.12cvs88.1
15656
15657         * src/ldapquery.c
15658                 Sync with HEAD (fix LDAP freezes)
15659
15660 2004-09-02 [colin]      0.9.12cvs87.1
15661
15662         * src/prefs_spelling.c
15663                 Sync with HEAD (add default dictionary)
15664
15665 2004-09-01 [colin]      0.9.12cvs86.1
15666
15667         * src/filtering.c
15668         * src/folderview.c
15669         * src/imap.c
15670         * src/prefs_matcher.c
15671         * src/stock_pixmap.c
15672         * src/summary_search.c
15673         * src/summaryview.c
15674         * src/wizard.c
15675         * src/wizard.h
15676                 Sync with HEAD (uninitialized vars fixes)
15677                 + gtk2 specific warning fixes
15678
15679 2004-08-31 [colin]      0.9.12cvs85.1
15680
15681         * src/folder.c
15682                 Sync with HEAD (Fix memory corruption due to 
15683                 uninitialized var)
15684
15685 2004-08-31 [colin]      0.9.12cvs84.4
15686
15687         * src/summary_search.c
15688                 Fix segfaults when searching in folders with broken headers
15689
15690 2004-08-31 [colin]      0.9.12cvs84.3
15691
15692         * src/compose.c
15693         * src/textview.c
15694                 Fix some more encoding/decoding issues
15695
15696 2004-08-30 [colin]      0.9.12cvs84.2
15697
15698         * src/mimeview.c
15699         * src/prefs_themes.c
15700         * src/gtk/filesel.c
15701         * src/gtk/filesel.h
15702                 Add a folder-mode selection (fixes mimeview's "Save all")
15703
15704 2004-08-29 [colin]      0.9.12cvs84.1
15705
15706         * src/mimeview.c
15707                 Sync with HEAD (don't escape saved filenames)
15708
15709 2004-08-27 [colin]      0.9.12cvs83.1
15710
15711         * ChangeLog
15712         * ChangeLog.claws
15713         * ChangeLog.jp
15714         * src/mh.c
15715         * src/procheader.c
15716         * src/procmsg.c
15717         * src/procmsg.h
15718         * src/common/utils.c
15719         * src/gtk/menu.h
15720         * po/
15721                 Sync with HEAD 0.9.12cvs83 (sync with main)
15722
15723 2004-08-26 [colin]      0.9.12cvs82.4
15724
15725         * src/codeconv.c
15726                 Fix strange stack corruption
15727                 Convert to utf8 after unmime, not before
15728
15729 2004-08-26 [colin]      0.9.12cvs82.3
15730
15731         * src/main.c
15732         * src/wizard.c
15733                 Fix account folders duplication
15734
15735 2004-08-25 [colin]      0.9.12cvs82.2
15736
15737         * src/wizard.c
15738                 Remove ports
15739                 Add SSL selection
15740                 Use login@server as account name
15741
15742 2004-08-25 [colin]      0.9.12cvs82.1
15743
15744         * src/plugins/pgpmime/pgpmime.c
15745                 Sync with HEAD (leak fix).
15746
15747 2004-08-25 [colin]      0.9.12cvs81.1
15748
15749         * src/plugins/pgpmime/pgpmime.c
15750         * src/plugins/pgpmime/sgpgme.c
15751         * src/plugins/pgpmime/sgpgme.h
15752                 Sync with HEAD (Handle combined messages).
15753
15754 2004-08-24 [colin]      0.9.12cvs80.3
15755
15756         * src/wizard.c
15757                 Fix full name, ports, and imap
15758
15759 2004-08-24 [colin]      0.9.12cvs80.2
15760
15761         * src/Makefile.am
15762         * src/main.c
15763         * src/setup.c
15764         * src/setup.h
15765         * src/stock_pixmap.c
15766         * src/stock_pixmap.h
15767         * src/wizard.c ** ADDED **
15768         * src/wizard.h ** ADDED ** 
15769         * src/pixmaps/sylpheed_icon.xpm ** ADDED **
15770                 Add a setup wizard 
15771
15772 2004-08-24 [colin]      0.9.12cvs80.1
15773
15774         * src/folder.c
15775                 Sync with HEAD (set mimeflags on all messages)
15776
15777 2004-08-24 [colin]      0.9.12cvs79.3
15778
15779         * src/matcher_parser_lex.l
15780                 Fix 8bits strings not in utf8
15781
15782 2004-08-24 [colin]      0.9.12cvs79.2
15783
15784         * src/compose.c
15785                 Check conversion result before replacing buffer
15786
15787 2004-08-23 [colin]      0.9.12cvs79.1
15788
15789         * src/compose.c
15790                 Sync with HEAD (create message header in memory)
15791
15792 2004-08-23 [colin]      0.9.12cvs78.1
15793
15794         * src/rfc2015.c
15795         * src/rfc2015.h
15796                 Sync with HEAD (fix bug 197 again)
15797
15798 2004-08-23 [colin]      0.9.12cvs77.3
15799
15800         * src/compose.c
15801                 Fix again inline gpg signing (which outputs utf8
15802                 in gtk2). Not syncing this fix to HEAD as this 
15803                 code is meant to die.
15804
15805 2004-08-23 [colin]      0.9.12cvs77.2
15806
15807         * src/prefs_account.h
15808                 Remove useless include
15809
15810 2004-08-23 [colin]      0.9.12cvs77.1
15811
15812         * src/imap.c
15813         * po/es.po
15814         * po/fr.po
15815         * po/it.po
15816         * po/pl.po
15817         * po/pt_BR.po
15818         * po/sk.po
15819         * po/sr.po
15820                 Sync with HEAD (fix bug 577)
15821
15822 2004-08-22 [colin]      0.9.12cvs76.1
15823
15824         * src/plugins/trayicon/trayicon.c
15825                 Sync with HEAD (fix formatting bug)
15826
15827 2004-08-21 [colin]      0.9.12cvs74.2
15828
15829         * src/gtk/colorsel.c
15830                 Fix bug 564 (Folder color selection window exits on any
15831                 keypress)
15832
15833 2004-08-21 [colin]      0.9.12cvs74.1
15834
15835         * ChangeLog.claws
15836         * src/compose.c
15837         * src/summaryview.c
15838         * src/toolbar.c
15839                 Sync with HEAD (fix bug 576)
15840
15841 2004-08-21 [colin]      0.9.12cvs70.1
15842
15843         * src/compose.c
15844         * src/mainwindow.c
15845                 Sync with HEAD
15846                 
15847
15848 2004-08-21 [paul]       0.9.12cvs66.4
15849
15850         * src/mainwindow.c
15851         * src/messageview.c
15852         * src/gtk/menu.c
15853         * src/plugins/spamassassin/spamassassin_gtk.c
15854                 remove some deprecated gtk1 functions
15855
15856
15857 2004-08-21 [colin]      0.9.12cvs66.3
15858
15859         * src/compose.c
15860         * src/codeconv.c
15861                 Fix warnings
15862                 Remove encoding hacks
15863                 Fix bug 575 (Strange character messes up message)
15864                 Don't display conversion error when drafting
15865
15866 2004-08-21 [paul]       0.9.12cvs66.2
15867
15868         * src/prefs_account.c
15869                 fix GnuPG mode bugs
15870
15871
15872 2004-08-20 [colin]      0.9.12cvs66.1
15873
15874         * src/codeconv.c
15875                 Sync with HEAD 0.9.12cvs66
15876
15877 2004-08-20 [paul]
15878
15879         * src/plugins/pgpmime/plugin.c
15880                 modify PGP/MIME plugin's description
15881
15882 2004-08-17 [colin]      0.9.12cvs65.1
15883
15884         * src/common/ssl.c
15885         * src/plugins/pgpmime/plugin.c
15886                 Sync with HEAD
15887
15888 2004-08-14 [colin]      0.9.12cvs60.3
15889
15890         * src/plugins/trayicon/trayicon.c
15891                 Put back resize callback, on size-request signal
15892                 rather than size-allocate to avoid infinite 
15893                 callback loop
15894
15895 2004-08-13 [colin]      0.9.12cvs60.2
15896
15897         * src/common/defs.h
15898                 Cache versions have been fixed
15899
15900 2004-08-13 [colin]      0.9.12cvs60.1
15901
15902         * src/folderutils.c
15903                 Sync with HEAD
15904
15905 2004-08-12 [colin]      0.9.12cvs59.1
15906
15907         * src/plugins/trayicon/trayicon.c
15908                 Sync with HEAD
15909
15910 2004-08-12 [colin]      0.9.12cvs57.5
15911
15912         * sylpheed.desktop
15913         * configure.ac
15914         * src/Makefile.am
15915         * src/main.c
15916                 Add support for Freedesktop.org's startup notification
15917
15918 2004-08-11 [colin]      0.9.12cvs57.4
15919
15920         * src/textview.c
15921                 Fix off-by-one
15922
15923 2004-08-11 [colin]      0.9.12cvs57.3
15924
15925         * src/message_search.c
15926         * src/summary_search.c
15927                 Make searches case insensitive by default
15928         * src/textview.c
15929                 Fix case-insensitive search in message
15930
15931 2004-08-11 [colin]      0.9.12cvs57.2
15932
15933         * src/summary_search.c
15934                 Let case-sensitive be specified
15935
15936 2004-08-10 [colin]      0.9.12cvs55.4
15937
15938         * src/common/socket.c
15939                 Fix the possible race condition
15940
15941 2004-08-09 [paul]       0.9.12cvs55.3
15942
15943         * configure.ac
15944         * src/Makefile.am
15945         * src/common/Makefile.am
15946                 sync with HEAD
15947
15948
15949 2004-08-09 [paul]       0.9.12cvs55.2
15950
15951         * autogen.sh
15952         * po/poconv.sh
15953                 remove unneeded script
15954
15955         * configure.ac
15956                 add forgotten USE_LDAP_TLS (sync with HEAD)
15957
15958
15959 2004-08-09 [colin]      0.9.12cvs55.1
15960
15961         * src/main.c
15962         * src/common/ssl.c
15963         * src/common/sylpheed.c
15964         * src/common/sylpheed.h
15965                 Sync from 0.9.12cvs55 HEAD (nonblocking SSL_connect)
15966
15967 2004-08-09 [paul]       0.9.12cvs54.1
15968
15969         * ChangeLog
15970         * ChangeLog.claws
15971         * ChangeLog.jp
15972         * configure.ac
15973         * po/POTFILES.in
15974         * src/Makefile.am
15975         * src/folderutils.c
15976         * src/main.c
15977         * src/pgpmime.c
15978         * src/pgpmime.h
15979         * src/sgpgme.c
15980         * src/sgpgme.h
15981         * src/plugins/Makefile.am
15982         * src/plugins/pgpmime/.cvsignore
15983         * src/plugins/pgpmime/Makefile.am
15984         * src/plugins/pgpmime/pgpmime.c
15985         * src/plugins/pgpmime/pgpmime.h
15986         * src/plugins/pgpmime/plugin.c
15987         * src/plugins/pgpmime/sgpgme.c
15988         * src/plugins/pgpmime/sgpgme.h
15989                 sync with HEAD
15990
15991 2004-08-08 [paul]       0.9.12cvs51.1
15992
15993         * configure.ac
15994         * src/folder.c
15995                 sync with HEAD
15996
15997 2004-08-07 [colin]      0.9.12cvs50.1
15998
15999         * src/pop.c
16000         * src/common/partial_download.c
16001                 fix warnings (sync from HEAD)
16002
16003 2004-08-07 [colin]      0.9.12cvs48.1
16004
16005         * src/prefs_folder_item.c
16006                 sync with HEAD 0.9.12cvs48
16007
16008 2004-08-06 [colin]      0.9.12cvs47.1
16009
16010         * src/compose.c
16011                 Sync with HEAD
16012
16013 2004-08-06 [christoph]  0.9.12cvs46.2
16014
16015         * src/main.c
16016         * src/plugins/clamav/clamav_plugin_gtk.c
16017         * src/plugins/dillo_viewer/dillo_viewer.c
16018         * src/plugins/image_viewer/plugin.c
16019         * src/plugins/mathml_viewer/mathml_viewer.c
16020         * src/plugins/spamassassin/spamassassin_gtk.c
16021         * src/plugins/trayicon/trayicon.c
16022                 don't mix GTK1.2 plugin with GTK2 plugins
16023
16024 2004-08-06 [colin]      0.9.12cvs46.1
16025
16026         * ChangeLog
16027         * ChangeLog.claws
16028         * ChangeLog.jp
16029         * configure.ac
16030         * sylpheed-claws.pc.in
16031         * src/folder.c
16032         * src/imap.c
16033         * src/localfolder.c
16034         * src/messageview.c
16035         * src/mimeview.c
16036         * src/mimeview.h
16037         * src/msgcache.c
16038         * src/news.c
16039         * src/prefs_ext_prog.c
16040         * src/prefs_folder_item.c
16041         * src/prefs_fonts.c
16042         * src/prefs_msg_colors.c
16043         * src/prefs_spelling.c
16044         * src/prefs_themes.c
16045         * src/prefs_toolbar.c
16046         * src/prefs_wrapping.c
16047         * src/procmime.h
16048         * src/common/defs.h
16049         * src/common/nntp.c
16050         * src/common/session.c
16051         * src/common/session.h
16052         * src/common/socket.c
16053         * src/common/utils.h
16054         * src/common/xml.c
16055         * src/common/xml.h
16056         * src/gtk/prefswindow.c
16057         * src/gtk/prefswindow.h
16058         * src/plugins/clamav/clamav_plugin_gtk.c
16059         * src/plugins/dillo_viewer/dillo_prefs.c
16060         * src/plugins/image_viewer/viewerprefs.c
16061         * src/plugins/spamassassin/spamassassin_gtk.c
16062         * m4/openssl.m4 *** REMOVED ***
16063                 Sync with HEAD 0.9.12cvs46
16064
16065 2004-08-03 [paul]       0.9.12cvs40.2
16066
16067         * src/action.c
16068         * src/addressadd.c
16069         * src/addressbook.c
16070         * src/addrgather.c
16071         * src/browseldap.c
16072         * src/compose.c
16073         * src/crash.c
16074         * src/editaddress.c
16075         * src/editgroup.c
16076         * src/editldap_basedn.c
16077         * src/foldersel.c
16078         * src/importldif.c
16079         * src/mimeview.c
16080         * src/prefs_common.c
16081         * src/prefs_template.c
16082         * src/sourcewindow.c
16083         * src/summaryview.c
16084         * src/gtk/about.c
16085         * src/gtk/foldersort.c
16086         * src/gtk/logwindow.c
16087         * src/gtk/pluginwindow.c
16088         * src/gtk/prefswindow.c
16089                 change all gtk_scrolled_window_set_policy from 
16090                 GTK_POLICY_ALWAYS to GTK_POLICY_AUTOMATIC
16091
16092 2004-08-02 [paul]       0.9.12cvs40.1
16093
16094         * AUTHORS
16095                 update translation team section
16096         * po/pt_BR.po
16097                 updated by Frederico Goncalves Guimaraes
16098                 <fggdebian@yahoo.com.br>
16099
16100 2004-07-31 [colin]      0.9.12cvs39.9
16101
16102         * src/exphtmldlg.c
16103                 Fix compilation
16104
16105 2004-07-31 [colin]      0.9.12cvs39.8
16106
16107         * src/exphtmldlg.c
16108                 Fix an alertpanel type
16109
16110 2004-07-30 [colin]      0.9.12cvs39.7
16111
16112         * src/alertpanel.c
16113                 Fix alertpanel_error_log's icon
16114
16115 2004-07-30 [colin]      0.9.12cvs39.6
16116
16117         * src/pop.c
16118                 Two of them should still be warnings
16119
16120 2004-07-30 [colin]      0.9.12cvs39.5
16121
16122         * src/pop.c
16123                 More warning -> error
16124 2004-07-29 [colin]      0.9.12cvs39.4
16125
16126         * src/pop.c
16127                 Warning -> error
16128
16129 2004-07-29 [colin]      0.9.12cvs39.3
16130
16131         * src/prefs_matcher.c
16132                 Fix segfault
16133
16134 2004-07-29 [colin]      0.9.12cvs39.2
16135
16136         * src/alertpanel.c
16137                 More nice-looking alertpanels
16138
16139 2004-07-29 [colin]      0.9.12cvs39.1
16140
16141         * src/messageview.c
16142                 sync with head
16143                 (inform user when partial mail is deleted on server)
16144
16145 2004-07-29 [colin]      0.9.12cvs38.1
16146
16147         * src/messageview.c
16148                 sync with head
16149
16150 2004-07-28 [paul]       0.9.12cvs37.7
16151
16152         * src/mainwindow.c
16153                 complete the replacement of deprecated gtk_progress_*
16154
16155 2004-07-28 [paul]       0.9.12cvs37.6
16156
16157         * src/action.c
16158         * src/inc.c
16159         * src/mainwindow.c
16160         * src/send_message.c
16161         * src/gtk/progressdialog.c
16162         * src/gtk/progressdialog.h
16163                 replace deprecated gtk_progress_*
16164
16165 2004-07-28 [paul]       0.9.12cvs37.5
16166
16167         * src/gtk/filesel.c
16168                 remove gtk_window_set_wmclass()
16169 2004-07-28 [paul]       0.9.12cvs37.4
16170
16171         * src/addressbook.c
16172         * src/compose.c
16173         * src/foldersel.c
16174         * src/mainwindow.c
16175         * src/messageview.c
16176         * src/sourcewindow.c
16177         * src/gtk/logwindow.c
16178                 remove gtk_window_set_wmclass()
16179                 
16180         * src/prefs_filtering.c
16181         * src/prefs_filtering_action.c
16182         * src/prefs_fonts.c
16183         * src/prefs_gtk.c
16184         * src/prefs_matcher.c
16185         * src/ssl_manager.c
16186         * src/gtk/prefswindow.c
16187                 replace gtk_window_position()
16188
16189 2004-07-28 [colin]      0.9.12cvs37.3
16190
16191         * src/alertpanel.c
16192         * src/alertpanel.h
16193                 Add a way to specify panel type for specific
16194                 panels (alertpanel())
16195         * src/account.c
16196         * src/addressbook.c
16197         * src/compose.c
16198         * src/expldifdlg.c
16199         * src/main.c
16200         * src/messageview.c
16201         * src/summaryview.c
16202         * src/textview.c
16203         * src/gtk/sslcertwindow.c
16204                 Fix alertpanel()s so that their icon match
16205                 their real type
16206
16207 2004-07-28 [paul]       0.9.12cvs37.2
16208
16209         * src/addr_compl.c
16210         * src/addressbook.c
16211         * src/alertpanel.c
16212         * src/compose.c
16213         * src/export.c
16214         * src/foldersel.c
16215         * src/folderview.c
16216         * src/grouplistdialog.c
16217         * src/import.c
16218         * src/mainwindow.c
16219         * src/message_search.c
16220         * src/messageview.c
16221         * src/passphrase.c
16222         * src/prefs_actions.c
16223         * src/prefs_common.c
16224         * src/prefs_customheader.c
16225         * src/prefs_display_header.c
16226         * src/prefs_filtering.c
16227         * src/prefs_filtering_action.c
16228         * src/prefs_gtk.c
16229         * src/prefs_matcher.c
16230         * src/prefs_msg_colors.c
16231         * src/prefs_summary_column.c
16232         * src/prefs_template.c
16233         * src/sourcewindow.c
16234         * src/ssl_manager.c
16235         * src/summary_search.c
16236         * src/gtk/colorsel.c
16237         * src/gtk/description_window.c
16238         * src/gtk/gtkaspell.c
16239         * src/gtk/inputdialog.c
16240         * src/gtk/logwindow.c
16241         * src/gtk/prefswindow.c
16242         * src/gtk/progressdialog.c
16243                 replace deprecated gtk_window_set_policy
16244
16245 2004-07-27 [colin]      0.9.12cvs37.1
16246
16247         * src/msgcache.c
16248                 More fixes (synced for head again)
16249
16250 2004-07-27 [colin]      0.9.12cvs35.3
16251
16252         * src/msgcache.c
16253                 Fix wrong test
16254
16255 2004-07-27 [colin]      0.9.12cvs35.2
16256
16257         * src/mimeview.c
16258                 Fix width a bit (by Paul)
16259         * src/alertpanel.c
16260         * src/alertpanel.h
16261                 Specialize icons, make alertpanel_message()
16262                 private
16263         * src/message_search.c
16264         * src/sgpgme.c
16265         * src/summary_search.c
16266                 Suit alertpanel changes
16267
16268 2004-07-27 [colin]      0.9.12cvs35.1
16269
16270         * src/alertpanel.c
16271                 Add an icon
16272         * src/passphrase.c
16273                 Add debug output - maybe someone will
16274                 want to look at the problem with Grab
16275                 Input :)
16276         Bump version as we're synced with HEAD
16277
16278 2004-07-26 [colin]      0.9.12cvs33.26
16279
16280         * src/pop.c
16281                 Fix uidl-file parsing when not in new
16282                 format
16283
16284 2004-07-26 [colin]      0.9.12cvs33.25
16285
16286         * src/gtk/menu.c
16287                 Move popup menu up if necessary (fixes 
16288                 account selector)
16289         * src/mainwindow.c
16290                 Set account selector's button height to
16291                 minimum
16292
16293 2004-07-26 [colin]      0.9.12cvs33.24
16294
16295         * src/alertpanel.c
16296                 Maybe fix 551 (Truncated font in alert window)
16297
16298 2004-07-26 [colin]      0.9.12cvs33.23
16299
16300         * po/de.po
16301         * po/es.po
16302         * po/fr.po
16303         * po/it.po
16304         * po/ja.po
16305         * po/pl.po
16306         * po/ru.po
16307         * po/sk.po
16308         * po/sr.po
16309         * po/zh_CN.po
16310                 Sync po files with HEAD
16311
16312 2004-07-26 [paul]       0.9.12cvs33.22
16313
16314         * src/compose.c
16315                 fix Bug 556 'Organisation-header is sent even if empty'
16316
16317 2004-07-24 [colin]      0.9.12cvs33.21
16318
16319         * src/compose.c
16320         * src/gtk/gtkaspell.c
16321         * src/gtk/gtkaspell.h
16322                 Fix speller accelerators (require hack)
16323
16324 2004-07-24 [colin]      0.9.12cvs33.20
16325
16326         * src/gtk/gtkaspell.c
16327                 Fix over-eager code deletion breaking
16328                 Check while typing
16329
16330 2004-07-24 [colin]      0.9.12cvs33.19
16331
16332         * src/browseldap.c
16333         * src/ldapctrl.c
16334         * src/ldapctrl.h
16335         * src/ldapserver.h
16336                 Sync ldap with HEAD
16337         (Fixes 546 LDAP completely broken)
16338
16339 2004-07-24 [colin]      0.9.12cvs33.18
16340
16341         * src/prefs_msg_colors.c
16342                 Fix prototype mismatch
16343         (Fixes 547 void function cannot return value)
16344
16345 2004-07-24 [colin]      0.9.12cvs33.17
16346
16347         * src/mainwindow.c
16348                 Fix sort going back to previous sort key
16349                 when changing sort direction
16350
16351 2004-07-24 [colin]      0.9.12cvs33.16
16352
16353         * src/compose.c
16354                 Fix space insertion when re-wrapping at 
16355                 cursor point
16356
16357 2004-07-24 [colin]      0.9.12cvs33.15
16358
16359         * src/gtk/gtkaspell.c
16360                 Don't change cursor position in insert-text
16361                 callback
16362         (Fixes 539 Word wrapping on input transposes letters)
16363
16364 2004-07-24 [colin]      0.9.12cvs33.14
16365
16366         * src/gtk/gtkaspell.c
16367                 Reencode non-ascii chars to dictionary's
16368                 encoding
16369         (Fixes 544 Spell check broken non english locale)
16370
16371 2004-07-24 [colin]      0.9.12cvs33.13
16372
16373         * src/summaryview.c
16374                 Fix Shift+Down, add Home/End/PgUp/PgDown
16375
16376 2004-07-21 [colin]      0.9.12cvs33.12
16377
16378         * src/prefs_common.c
16379                 Fix a gtk warning (Patch by Andrej Kacian)
16380
16381 2004-07-21 [colin]      0.9.12cvs33.11
16382
16383         * src/gtk/filesel.c
16384                 More check
16385
16386 2004-07-21 [colin]      0.9.12cvs33.10
16387
16388         * src/compose.c
16389         * src/crash.c
16390         * src/export.c
16391         * src/import.c
16392         * src/messageview.c
16393         * src/mimeview.c
16394         * src/prefs_spelling.c
16395         * src/prefs_themes.c
16396         * src/summaryview.c
16397         * src/gtk/filesel.c
16398         * src/gtk/filesel.h
16399         * src/gtk/pluginwindow.c
16400                 Untwist open/save mode guessing logic, make
16401                 it explicit
16402
16403 2004-07-20 [colin]      0.9.12cvs33.9
16404
16405         * src/codeconv.c
16406                 conv_encode_header: src_charset is UTF-8 on
16407                 gtk2
16408         * src/compose.c
16409                 Remove double encoding of the headers
16410
16411 2004-07-20 [colin]      0.9.12cvs33.8
16412
16413         * src/codeconv.c
16414                 Fix typo
16415
16416 2004-07-20 [colin]      0.9.12cvs33.7
16417
16418         * src/mainwindow.c
16419                 Set the separated messageview to the saved
16420                 size of Claws' messageview (Patch by Alfons)
16421                 Fix a callback prototype (me)
16422
16423 2004-07-20 [colin]      0.9.12cvs33.6
16424
16425         * src/codeconv.h
16426                 Forgot one hunk in 0.9.12cvs33.4
16427
16428 2004-07-19 [colin]      0.9.12cvs33.5
16429
16430         * src/action.c
16431                 Action output fix
16432                 Patch by Alfons
16433
16434 2004-07-19 [colin]      0.9.12cvs33.4
16435
16436         * src/compose.c
16437                 Fix outgoing charset bug in headers
16438         * src/codeconv.c
16439                 Clean for glib2 - Patch by Alfons
16440
16441 2004-07-19 [colin]      0.9.12cvs33.3
16442
16443         * src/statusbar.c
16444                 Remove grip from the statusbar
16445                 Patch by Alfons
16446
16447 2004-07-19 [colin]      0.9.12cvs33.2
16448
16449         * src/messageview.c
16450         * src/textview.c
16451                 Fix messageview remembering the previous
16452                 scroll position when loading a new message
16453                 Patch by Alfons
16454
16455 2004-07-19 [colin]      0.9.12cvs33.1
16456
16457         * src/folder.h
16458         * src/folderview.c
16459         * src/summaryview.c
16460                 Sync with HEAD
16461
16462 2004-07-18 [colin]      0.9.12cvs32.7
16463
16464         * configure.ac
16465                 Remove useless check for XIM - noticed
16466                 by Alfons
16467
16468 2004-07-18 [colin]      0.9.12cvs32.6
16469
16470         * src/summaryview.c
16471                 Remove non-modified and shift-modified
16472                 accelerators in summaryview's popup
16473                 menu, as that doesn't get catched by
16474                 the accel-activate signal catcher...
16475
16476 2004-07-18 [colin]      0.9.12cvs32.5
16477
16478         * src/prefs_common.c
16479                 Define sensible default prefs for 
16480                 wrapping
16481
16482 2004-07-18 [colin]      0.9.12cvs32.4
16483
16484         * src/compose.c
16485         * src/prefs_common.c
16486         * src/prefs_common.h
16487         * src/prefs_wrapping.c
16488                 Remove Smart Wrapping pref, which does
16489                 nothing on gtk2 branch
16490
16491 2004-07-18 [colin]      0.9.12cvs32.3
16492
16493         * src/sourcewindow.c
16494                 Proper utf8
16495
16496 2004-07-18 [colin]      0.9.12cvs32.2
16497
16498         * src/compose.c
16499                 Save attachment status when drafting
16500
16501 2004-07-18 [colin]      0.9.12cvs32.1
16502
16503         * src/gtk/filesel.c
16504                 Fix erratic folder selection in open mode
16505
16506 2004-07-18 [colin]      0.9.12cvs31.11
16507
16508         * src/pop.c
16509                 Don't let partial messages get deleted
16510                 even with "dowload all"
16511                 (0.9.12cvs31.8 fix extension)
16512 2004-07-18 [colin]      0.9.12cvs31.10
16513
16514         * src/gtk/logwindow.c
16515                 Fix log scrolling
16516
16517 2004-07-18 [colin]      0.9.12cvs31.9
16518
16519         * src/common/utils.c
16520                 Fix non-utf8 strings coming from commands
16521                 and files
16522
16523 2004-07-18 [colin]      0.9.12cvs31.8
16524
16525         * src/pop.c
16526                 Fix partial download bug with Download all
16527                 messages option
16528
16529 2004-07-18 [colin]      0.9.12cvs31.7
16530
16531         * src/textview.c
16532                 Fix bug introduced in 0.9.12cvs31.2
16533                 (blocked in select mode after double click)
16534
16535 2004-07-18 [colin]      0.9.12cvs31.6
16536
16537         * src/compose.c
16538         * src/gtk/menu.c
16539                 More glib-warning fixes
16540
16541 2004-07-18 [colin]      0.9.12cvs31.5
16542
16543         * src/compose.c
16544                 Fix trashing the primary clipboard when moving 
16545                 around with tab
16546         (Fix Bug 536 Unintuitive: "To:" copied to clipboard)
16547
16548 2004-07-18 [colin]      0.9.12cvs31.4
16549
16550         * src/codeconv.c
16551                 convert unencoded iso headers to utf8
16552         (Fix Bug 538 Unencoded local characters in subject make it 
16553          disappear)
16554
16555 2004-07-18 [colin]      0.9.12cvs31.3
16556
16557         * src/compose.c
16558                 Fix tab char handling in wrapping
16559         (Fix Bug 537 Line wrap problem - TAB character treated as 
16560          one character instead of 8)
16561
16562 2004-07-18 [colin]      0.9.12cvs31.2
16563
16564         * src/textview.c
16565                 return FALSE on GDK_MOTION_NOTIFY
16566         (Fix Bug 535 Hyperlinks/addresses are not selectable 
16567          (unable to highlight))
16568
16569 2004-07-18 [colin]      0.9.12cvs31.1
16570
16571         * src/folderview.c
16572                 Sync with 0.9.12cvs31
16573
16574 2004-07-18 [colin]      0.9.12cvs30.4
16575
16576         * src/compose.c
16577                 Also block text_inserted when inserting a file
16578
16579 2004-07-18 [colin]      0.9.12cvs30.3
16580
16581         * src/compose.c
16582                 Fix smart wrapping (block text_inserted handler
16583                 while putting quotation to avoid wrap on input,
16584                 don't join lines if next is sig separator)
16585
16586 2004-07-17 [colin]      0.9.12cvs30.2
16587
16588         * src/folderview.c
16589         * src/mainwindow.c
16590         * src/mimeview.c
16591         * src/summaryview.c
16592         * src/gtk/quicksearch.c
16593         * src/gtk/quicksearch.h
16594                 Block key events handlers *and* accels while
16595                 quicksearch is focused
16596         (Fixes Bug 534 quick-search bar not accepting certain letters)
16597
16598 2004-07-17 [colin]      0.9.12cvs30.1
16599
16600         * src/folder.h
16601         * src/folderview.c
16602         * src/summaryview.c
16603                 Sync with 0.9.12cvs30
16604
16605 2004-07-17 [colin]      0.9.12cvs28.2
16606
16607         * src/mimeview.c
16608         * src/procmime.c
16609         * src/summaryview.c
16610         * src/gtk/menu.c
16611                 Squash some compile and glib warnings
16612
16613 2004-07-17 [paul]       0.9.12cvs28.1
16614
16615         * src/mimeview.c
16616                 sync with 0.9.12cvs28 HEAD
16617
16618 2004-07-16 [paul]       0.9.12cvs26.1
16619         
16620         * src/gtk/quicksearch.c
16621         * src/account.c
16622         * src/account.h
16623         * src/compose.c
16624         * src/customheader.c
16625         * src/folder_item_prefs.c
16626         * src/main.c
16627         * src/mainwindow.c
16628         * src/messageview.c
16629         * src/mimeview.c
16630         * src/news.c
16631         * src/pgpmime.c
16632         * src/pop.c
16633         * src/pop.h
16634         * src/prefs_account.c
16635         * src/prefs_account.h
16636         * src/prefs_common.c
16637         * src/prefs_common.h
16638         * src/prefs_display_header.c
16639         * src/prefs_gtk.c
16640         * src/prefs_gtk.h
16641         * src/procheader.c
16642         * src/procmime.c
16643                 sync with 0.9.12cvs26 HEAD      
16644
16645 2004-07-15 [colin]      0.9.12cvs18.14
16646
16647         * src/folder.c
16648                 Disable GPG signature check during
16649                 folder move and scan
16650         (Closes Bug 521 Signature checking slows down Folder-Move)
16651
16652 2004-07-14 [colin]      0.9.12cvs18.13
16653
16654         * src/common/partial_download.c
16655                 update includes
16656
16657 2004-07-14 [colin]      0.9.12cvs18.12
16658
16659         * src/common/partial_download.c
16660         * src/common/partial_download.h
16661                 Move doc at top, add correct copyright
16662
16663 2004-07-14 [colin]      0.9.12cvs18.11
16664
16665         * src/folder.c
16666         * src/messageview.c
16667         * src/pop.c
16668         * src/pop.h
16669         * src/procmsg.c
16670         * src/summaryview.c
16671         * src/common/Makefile.am
16672         * src/common/partial_download.c ** NEW FILES **
16673         * src/common/partial_download.h ** NEW FILES **
16674                 Move partial-download related stuff to its
16675                 own file
16676
16677 2004-07-14 [colin]      0.9.12cvs18.10
16678
16679         * src/send_message.c
16680                 Fix smtp auth when user is null or empty
16681
16682 2004-07-13 [colin]      0.9.12cvs18.9
16683
16684         * src/gtk/quicksearch.c
16685                 Use alphabetic order
16686
16687 2004-07-13 [colin]      0.9.12cvs18.8
16688
16689         * src/pop.c
16690                 Be paranoid on the checks
16691
16692 2004-07-13 [colin]      0.9.12cvs18.7
16693
16694         * src/gtk/quicksearch.c
16695                 Fix Engrish once again
16696
16697 2004-07-13 [colin]      0.9.12cvs18.6
16698
16699         * src/procmsg.c
16700         * src/summaryview.c
16701                 Mark messages for deletion when they are about to
16702                 be removed from trash
16703
16704 2004-07-13 [colin]      0.9.12cvs18.5
16705
16706         * src/matcher.c
16707         * src/matcher.h
16708         * src/matcher_parser_parse.y
16709         * src/prefs_matcher.c
16710         * src/gtk/quicksearch.c
16711                 Add 'partial' ('p') match string to find partially
16712                 downloaded messages
16713
16714 2004-07-13 [colin]      0.9.12cvs18.4
16715
16716         * src/pop.c
16717                 Fix misplaced block
16718
16719 2004-07-13 [colin]      0.9.12cvs18.3
16720
16721         * src/pop.c
16722         * src/pop.h
16723         * src/messageview.c
16724                 Refactor API (to avoid passing 5+ params and code
16725                 duplication)
16726         * src/folder.c
16727         * src/msgcache.c
16728         * src/procheader.c
16729         * src/common/defs.h
16730                 Add planned_download to cache
16731                 Don't mess uidl file when moving partially downloaded
16732                 mails (they change folder, we should change it in the
16733                 uidl list too or we'll remove an incorrect message)
16734                 (this also helps removing hacks when changing 
16735                 planned_download in messageview.c)
16736
16737 2004-07-12 [colin]      0.9.12cvs18.2
16738
16739         * src/gtk/quicksearch.c
16740                 Fix missing status update in quicksearch
16741
16742 2004-07-12 [paul]       0.9.12cvs18.1
16743
16744         * po/POTFILES.in
16745         * src/Makefile.am
16746         * src/account.c
16747         * src/codeconv.c
16748         * src/compose.c
16749         * src/inc.c
16750         * src/main.c
16751         * src/prefs_common.c
16752         * src/procmsg.h
16753         * src/toolbar.c
16754         * src/prefs_msg_colors.[ch]     ** NEW FILES **
16755         * src/prefs_wrapping.[ch]       ** NEW FILES **
16756         * src/common/intl.h
16757         * src/common/utils.[ch]
16758         * src/gtk/quicksearch.[ch]
16759                 sync with 0.9.12cvs18 HEAD
16760
16761 2004-07-12 [colin]      0.9.11cvs17.25
16762
16763         * src/folder.c
16764         * src/folder.h
16765                 Remove unused function added by me in 0.9.11cvs17.10
16766
16767 2004-07-11 [colin]      0.9.11cvs17.24
16768
16769         * src/inc.c
16770         * src/messageview.c
16771         * src/pop.c
16772         * src/pop.h
16773                 Use folderitem and msgnum instead of filename to
16774                 know which mail to delete
16775                 Move old partial mail deletion to pop.c
16776
16777 2004-07-10 [colin]      0.9.11cvs17.23
16778
16779         * src/inc.c
16780                 Add debug
16781         * src/pop.c
16782         * src/pop.h
16783                 Don't re-use same enums for unrelated stuff: it's 
16784                 completely misleading !
16785                 Document a bit
16786
16787 2004-07-09 [colin]      0.9.11cvs17.22
16788
16789         * src/inc.c
16790                 Remove folder-type check and do
16791                 more tests to be sure everything's
16792                 ok
16793         * src/messageview.c
16794                 Punctuation update, remove useless
16795                 code, fix two warnings
16796         * src/noticeview.c
16797                 Layout cleaning, reset 2nd button
16798                 when specifying one
16799
16800 2004-07-09 [colin]      0.9.11cvs17.21
16801
16802         * src/messageview.c
16803         * src/pop.c
16804         * src/pop.h
16805                 Allow user to change his mind
16806                 and postpone decision (by
16807                 unmarking the mail)
16808
16809 2004-07-09 [colin]      0.9.11cvs17.20
16810
16811         * src/messageview.c
16812                 Fix bug with delete state
16813         * src/pop.c
16814         * src/pop.h
16815                 Fix buffer leak (fread doesn't 
16816                 terminate buffers with \0)
16817                 Refactoring (remove magic 
16818                 numbers)
16819
16820 2004-07-09 [colin]      0.9.11cvs17.19
16821
16822         * src/pop.c
16823                 Don't log "Skipping message" if 
16824                 we're going to TOP it two lines
16825                 later
16826
16827 2004-07-09 [colin]      0.9.11cvs17.18
16828
16829         * src/messageview.c
16830                 Fix Engrish
16831
16832 2004-07-09 [colin]      0.9.11cvs17.17
16833
16834         * src/pop.c
16835                 strlen checking...
16836         * src/messageview.c
16837                 refactoring a bit
16838
16839 2004-07-08 [colin]      0.9.11cvs17.16
16840
16841         * src/noticeview.c
16842         * src/noticeview.h
16843                 Add an optional second button
16844         * src/messageview.c
16845         * src/pop.c
16846         * src/pop.h
16847                 Don't delete partially received mails after a certain
16848                 time; rather, let the user decide.
16849
16850 2004-07-08 [colin]      0.9.11cvs17.15
16851
16852         * src/common/smtp.h
16853                 Sync with HEAD
16854
16855 2004-07-08 [colin]      0.9.11cvs17.14
16856
16857         * src/messageview.c
16858         * src/common/smtp.c
16859                 Use to_human_readable() for sizes
16860
16861 2004-07-08 [colin]      0.9.11cvs17.13
16862
16863         * src/inc.c
16864         * src/messageview.c
16865         * src/pop.c
16866         * src/pop.h
16867         * src/procmsg.c
16868                 Fix partial-downloading issues:
16869                         catch unsupported TOP
16870                         don't delete partially downloaded mails before 5 days
16871                         don't update existing with non-MH folders; that'll
16872                         make dups, but it's better than trashing the folder
16873                         free new msginfo parts
16874                 Fix indentation ;-)
16875
16876 2004-07-08 [colin]      0.9.11cvs17.12
16877
16878         * src/common/smtp.c
16879         * src/common/smtp.h
16880                 Sync smtp size verification with HEAD
16881
16882 2004-07-08 [colin]      0.9.11cvs17.11
16883
16884         * src/summaryview.c
16885         * src/prefs_common.c
16886         * src/prefs_common.h
16887         * src/gtk/quicksearch.c
16888         * src/gtk/quicksearch.h
16889                 Sync sticky pref with HEAD
16890
16891 2004-07-08 [colin]      0.9.11cvs17.10
16892
16893         * src/folder.c [1.213.2.6]
16894         * src/folder.h [1.87.2.6]
16895         * src/inc.c [1.149.2.7]
16896         * src/messageview.c [1.94.2.8]
16897         * src/procheader.c [1.47.2.6]
16898         * src/procmsg.c [1.150.2.4]
16899         * src/procmsg.h [1.60.2.5]
16900         * src/pop.c [1.56.2.4]
16901         * src/pop.h [1.17.2.3]
16902                 Let too big messages get downloaded, but truncated
16903                 Add a button to download them completely
16904                 
16905 2004-07-06 [colin]      0.9.11cvs17.9
16906
16907         * src/gtk/quicksearch.c [1.1.2.3]
16908                 Add a Clear button
16909         * commitHelper
16910         * PATCHSETS
16911                 Add a script to help with cvs
16912
16913 2004-07-03 [colin]      0.9.11cvs17.8
16914
16915         * src/plugins/imageviewer/viewer.c
16916                 fix imageviewer (which was staying on the first
16917                 displayed image)
16918
16919 2004-07-03 [colin]      0.9.11cvs17.7
16920
16921         Removed FIXME_GTK2 warnings
16922         * src/gtk/gtkutils.c
16923                 useless #warnings
16924         * src/gtk/menu.c
16925                 useless #warnings (no need to mess with menu rc)
16926         * src/gtk/menu.h
16927                 unused functions
16928         
16929
16930 2004-07-03 [colin]      0.9.11cvs17.6
16931
16932         Removed FIXME_GTK2 warnings
16933         * src/codeconv.c
16934                 useless #warnings (rewrite needed)
16935         * src/compose.c
16936                 useless #warnings (rewrite needed)
16937                 useless #warnings (gtk2 is like that)
16938                 useless #warnings (previously fixed)
16939         * src/main.c
16940                 useless #warnings (previously fixed)
16941         * src/message_search.c
16942                 useless #warnings (gtk2 is like that)
16943                 Made apparent that search is case-sensitive
16944         * src/mimeview.c
16945                 useless #warnings (rewrite needed)
16946                 useless #warnings (gtk2 is like that)
16947                 reimplemented real warnings
16948         * src/prefs_common.c
16949                 Removed block cursor option (not it gtk2)
16950         * src/prefs_gtk.c
16951                 useless #warnings (rewrite needed)
16952         * src/procheader.c
16953                 useless #warnings (rewrite needed)
16954         * src/sourcewindow.c
16955                 useless #warnings (incorrect placing)
16956         * src/summary_search.c
16957                 useless #warnings (gtk2 is like that)
16958                 Made apparent that search is case-sensitive
16959         * src/action.c
16960                 useless #warnings (gtk2 is like that)
16961         * src/textview.c
16962                 useless #warnings (rewrite needed)
16963         * src/toolbar.c
16964                 useless #warnings (rewrite needed)
16965
16966 2004-07-03 [colin]      0.9.11cvs17.5
16967
16968         * src/textview.c
16969                 Fix mismerge which broke URI opening
16970                 
16971 2004-07-01 [colin]      0.9.11cvs17.4
16972
16973         * src/gtk/filesel.c
16974                 Fill filename when saving
16975                 
16976 2004-06-27 [colin]      0.9.11cvs17.3
16977
16978         * src/gtk/filesel.[ch]
16979                 Use the new GTK file selector
16980                 Update prototype to match the reality: multiple file
16981                 selection is open-only          
16982         * src/compose.c
16983                 Match the new prototypes        
16984         * configure.ac
16985                 Match the new requirements (gtk 2.4.0)
16986                         
16987 2004-06-26 [colin]      0.9.11cvs17.2
16988
16989         * src/plugins/trayicon/trayicon.c
16990                 Remove useless signal handler on resize, which causes
16991                 an infinite "loop"
16992         
16993 2004-06-26 [colin]      0.9.11cvs17.1
16994         
16995         * tools/Makefile.am
16996                 remove launch_firebird and add nautilus2sylpheed.sh
16997         * src/quicksearch.c
16998           src/summaryview.c
16999                 Fix show/hide "Extended symbols" button problem
17000                 Fix apparition at startup
17001                 Fix const warnings
17002         * src/plugins/image_viewer/Makefile.am
17003                 Fix configure 
17004         * common/ssl.c
17005                 Re-enable certificate check, as it doesn't seem to
17006                 cause Xlib errors anymore
17007
17008 2004-06-25 [paul]       0.9.11cvs17
17009
17010         * sync with 0.9.11cvs17 HEAD
17011         
17012         NOTE: QuickSearch is broken
17013
17014 2004-06-07 [colin]      0.9.10claws67.10
17015         * src/plugins/trayicon/trayicon.c
17016           src/plugins/trayicon/libeggtrayicon/Makefile.am
17017           src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
17018                 Fix gettextization in trayicon plugin
17019
17020 2004-06-07 [colin]      0.9.10claws67.9
17021         
17022         * src/summaryview.c
17023           src/gtk/gtksctree.[ch]
17024                 Let Shift+{Up,Down} work in summaryview
17025                 (well, Down "works" and Up works)
17026                 Let the list scroll when using these keys
17027
17028 2004-06-06 [colin]      0.9.10claws67.8
17029
17030         * src/plugins/trayicon/trayicon.c
17031                 Fix pixmap update
17032
17033 2004-06-06 [colin]      0.9.10claws67.7
17034
17035         * src/addressbook.c
17036                 Fix signal handling causing system-wide focus grab
17037
17038 2004-05-25 [paul]       0.9.10claws67.6
17039
17040         * Makefile.am
17041           src/Makefile.am
17042                 clean up
17043
17044 2004-05-25 [paul]       0.9.10claws67.5
17045
17046         * replace deprecated gtk_signal... functions
17047
17048 2004-05-23 [colin]      0.9.10claws67.4
17049
17050         * src/compose.c
17051                 Fix wrapping
17052
17053 2004-05-22 [colin]      0.9.10claws67.3
17054
17055         * src/compose.c
17056                 Re-fix [Edited] in compose.c::compose_reedit()
17057
17058 2004-05-22 [colin]      0.9.10claws67.2
17059
17060         * src/procmime.c
17061                 Fix parsing of multiparts mails
17062
17063 2004-05-22 [colin]      0.9.10claws67.1
17064
17065         * src/summaryview.c
17066                 Fix quicksearch
17067
17068 2004-05-22 [paul]       0.9.10claws67
17069
17070         * sync with 0.9.10claws67 HEAD
17071
17072 2004-05-14 [alfons]
17073
17074         * src/procmime.h
17075                 add forgotton prototype
17076
17077 2004-05-10 [paul]       0.9.10claws57
17078
17079         * sync with 0.9.10claws57 HEAD
17080
17081 2004-05-05 [paul]       0.9.9.claws1
17082
17083         * ChangeLog-gtk2        ** REMOVED **
17084           ChangeLog-gtk2.claws  ** ADDED **
17085                 rename and adopt the normal claws format
17086                 
17087         * configure.ac
17088                 require gtkmathview >= 0.5
17089
17090         * ac/*                          ** REMOVED **
17091           ac/                           ** REMOVED **
17092           intl/Makefile.in              ** REMOVED **
17093           m4/                           ** ADDED **
17094           m4/missing                    ** ADDED **
17095           m4/missing/gdk-pixbuf.m4      ** ADDED **
17096           m4/missing/gettext.m4         ** ADDED **
17097           m4/missing/gpgme.m4           ** ADDED **
17098           m4/missing/imlib.m4           ** ADDED **
17099           m4/.cvsignore                 ** ADDED **
17100           m4/Makefile.am                ** ADDED **
17101           m4/README                     ** ADDED **
17102           m4/aclocal-include.m4         ** ADDED **
17103           m4/aspell.m4                  ** ADDED **
17104           m4/check-type.m4              ** ADDED **
17105           m4/gnupg-check-typedef.m4     ** ADDED **
17106           m4/openssl.m4                 ** ADDED **
17107           m4/spamassassin.m4            ** ADDED **
17108           po/ChangeLog                  ** REMOVED **
17109           po/Makefile.in.in             ** REMOVED **
17110           po/Rules-quot                 ** REMOVED **
17111           po/boldquot.sed               ** REMOVED **
17112           po/en@boldquot.header         ** REMOVED **
17113           po/en@quot.header             ** REMOVED **
17114           po/insert-header.sin          ** REMOVED **
17115           po/quot.sed                   ** REMOVED **
17116           po/remove-potcdate.sed        ** REMOVED **
17117           po/remove-potcdate.sin        ** REMOVED **
17118           po/stamp-po                   ** REMOVED **
17119           Makefile.am
17120           autogen.sh
17121           configure.ac
17122                 enable building with automake 1.8.x
17123                 add 'autopoint --force' to autogen.sh and remove all
17124                 auto-generated files, remove ac/ directory and use
17125                 m4/ directory instead
17126                 
17127         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
17128                 fix gettextization
17129
17130 2004-02-28 Colin Leroy <colin@colino.net>
17131         * src/prefs_matcher.c
17132           src/prefs_filtering.c
17133           src/prefs_filtering_action.c
17134                 Fix non-editable GtkEntries
17135
17136 2004-02-22 Thorsten Maerz <torte@netztorte.de>
17137         * src/prefs_themes.c
17138                 utf8 conversion for theme info
17139
17140 2004-02-21 Thorsten Maerz <torte@netztorte.de>
17141         * sync 0.9.9claws
17142
17143 2004-02-14 Thorsten Maerz <torte@netztorte.de>
17144         * src/grouplistdialog.c
17145                 allow multiple selections without ctrl key
17146
17147 2004-02-09 Thorsten Maerz <torte@netztorte.de>
17148         * src/main.c
17149                 enable customizable accelerators
17150
17151 2004-02-08 Thorsten Maerz <torte@netztorte.de>
17152         * src/prefs_common.c
17153                 re-enable different font settings for gtk1/2
17154         * src/prefs_folder_item.c
17155                 fix folder prefs displayed wrong
17156         * src/textview.c
17157                 set 'sunken' shadow type
17158
17159 2004-02-07 Colin Leroy <colin@colino.net>
17160         * src/compose.c
17161                 Fix message being always [Edited]
17162                 Encode headers correctly (utf8 buf)
17163
17164 2004-01-27 Thorsten Maerz <torte@netztorte.de>
17165         * src/socket.c
17166                 remove double g_source_attach()
17167                 (Thanks to Colin Leroy)
17168
17169 2004-01-27 Thorsten Maerz <torte@netztorte.de>
17170         * src/gtk/gtksctree.c
17171                 Fix SSL certificate list not shown
17172         * src/mimeview.c
17173                 Fix clicks in mime tree
17174
17175 2004-01-27 Thorsten Maerz <torte@netztorte.de>
17176         * src/common/socket.c
17177                 Fix SSL receive
17178         * src/compose.c
17179                 Fix clipboard menu hotkeys
17180
17181 2004-01-25 Thorsten Maerz <torte@netztorte.de>
17182         * src/gtk/gtkaspell.[ch]
17183           src/compose.c
17184                 reimplement spellchecker
17185
17186 2004-01-25 Thorsten Maerz <torte@netztorte.de>
17187         * src/gtk/filesel.c
17188                 crash when inserting file in compose window
17189                 (TODO: keep old selection on clicks)
17190         * src/main.c
17191                 use gtkrc-2.0 instead of gtkrc
17192
17193 2004-01-25 Thorsten Maerz <torte@netztorte.de>
17194         * src/messageview.c
17195                 remove orphaned mimeview unref()
17196
17197 2004-01-20 Thorsten Maerz <torte@netztorte.de>
17198         * src/grouplistdialog.c
17199                 expand nodes containing subscribed groups
17200
17201 2004-01-19 Thorsten Maerz <torte@netztorte.de>
17202         * src/textview.c
17203                 textview: hide cursor, restore old click behaviour
17204
17205 2004-01-18 Thorsten Maerz <torte@netztorte.de>
17206         * src/textview.c
17207                 variable names messed up
17208
17209 2004-01-17 Colin Leroy <colin@colino.net>
17210         * src/addr_compl.c
17211                 Fix completion address too thin
17212         * src/compose.c
17213                 Fix tab-to-subject behaviour
17214         * src/summaryview.c
17215                 Implement key up & down in summaryview
17216
17217 2004-01-12 Thorsten Maerz <torte@netztorte.de>
17218
17219         * sync 098claws
17220
17221 2004-01-08 Thorsten Maerz <torte@netztorte.de>
17222         * configure.ac
17223           Makefile.am
17224           doc/.cvsignore
17225           doc/Makefile.am
17226                 faq, man, manual moved to doc/
17227         * ac/aspell.m4
17228           ac/check-type.m4
17229           ac/gnupg-check-typedef.m4
17230           ac/openssl.m4
17231           ac/spamassassin.m4
17232           ac/missing/gdk-pixbuf.m4
17233           ac/missing/gpgme.m4
17234           ac/missing/imlib.m4
17235                 fix automake warnings
17236
17237 2003-12-06 Colin Leroy <colin@colino.net>
17238         * src/summaryview.c
17239                 Fix quicksearch
17240
17241 2003-12-05 Colin Leroy <colin@colino.net>
17242         * src/summaryview.c
17243                 Fix going to next unread folder
17244
17245 2003-12-05 Colin Leroy <colin@colino.net>
17246         * src/crash.c
17247                 Fix gtk2 compilation
17248         * src/session.c
17249                 Remove iotag source handler at disconnection
17250         * src/socket.[ch] 
17251                 Remove source handler when closing socket 
17252                 (fixes another seg)
17253
17254 2003-12-04 Colin Leroy <colin@colino.net>
17255         * src/compose.c
17256           src/prefs_account.c
17257           src/prefs_common.c
17258                 Fix some dropdown menus
17259
17260 2003-12-04 Colin Leroy <colin@colino.net>
17261         * src/compose.c
17262                 Fix event handlers on header fields
17263         * src/common/socket.c
17264           src/common/session.c
17265                 Fix segfault with callback (SSL)
17266                 Fix end of session 
17267
17268 2003-10-06 Thorsten Maerz <torte@netztorte.de>
17269
17270         * Fix compile bug in src/compose.c
17271         * removed src/gtk/gtkstext.[ch]
17272
17273 2003-09-17 Takuro Ashie <ashie@homa.ne.jp>
17274
17275         * Convert character set and escape "text" attributes in toolbar setting
17276         files.
17277         * Fixed bug in button-press-event handling.
17278
17279 2003-09-16 Thorsten Maerz <torte@netztorte.de>
17280
17281         * Fixed bug in key-press-event handling.
17282
17283 2003-09-16 Takuro Ashie <ashie@homa.ne.jp>
17284
17285         * Enabled to compile tray-icon plugin (Ad-hoc).
17286         * Avoid hang up bug of icon list in mime view (Ad-hoc).
17287
17288 2003-09-14 Takuro Ashie <ashie@homa.ne.jp>
17289
17290         * Enabled to compile on sylpheed-claws.
17291         (tray-icon plugin still cannot compile yet.)
17292
17293 2003-09-06 Takuro Ashie <ashie@homa.ne.jp>
17294
17295         * Updated to 0.9.5.
17296
17297 2003-08-02 Takuro Ashie <ashie@homa.ne.jp>
17298
17299         * Updated to 0.9.4.
17300         * Ported monitoring SSL mechanism to GSource of GLib2
17301         (I don't confirm it)
17302         * Added _gtk2 suffix to key name of font preference to avoid
17303         ovverwriting preference of Gtk+-1.2 version.
17304
17305 2003-06-09 Takuro Ashie <ashie@homa.ne.jp>
17306
17307         * Updated to 0.9.2.
17308
17309 2003-05-30 Takuro Ashie <ashie@homa.ne.jp>
17310
17311         * Updated to 0.9.1.
17312         * Translate po files into UTF-8 when execute autogen.sh.
17313
17314 2003-05-28 Takuro Ashie <ashie@homa.ne.jp>
17315
17316         * Updated to 0.9.0.
17317
17318 2003-04-29 Takuro Ashie <ashie@homa.ne.jp>
17319
17320         * Plugged GError related memory leaks.
17321
17322 2003-04-28 Takuro Ashie <ashie@homa.ne.jp>
17323
17324         * Changed default size of fonts.
17325         * Enabled to set titile font size of warning dialog.
17326
17327 2003-04-23 Takuro Ashie <ashie@homa.ne.jp>
17328
17329         * Embed a sylpheed icon into executable binary on Windows.
17330
17331 2003-04-21 Takuro Ashie <ashie@homa.ne.jp>
17332
17333         * I forgot to traslate character set of element string in src/xml.c.
17334
17335 2003-04-18 Takuro Ashie <ashie@homa.ne.jp>
17336
17337         * Fixed detecting bind_textdomain_codeset in configure.in.
17338         * The bug in which "Example" of "Date fromat" preference isn't displayed
17339         correctly has been fixed.
17340
17341 2003-04-04 Takuro Ashie <ashie@homa.ne.jp>
17342
17343         * Added bind_textdomain_codeset into AC_CHECK_FUNCS.
17344           Replaced AM_GLIB_GNU_GETTEXT to AM_GNU_GETTEXT.
17345           glib-gettextize
17346           Removed intl directory.
17347           Translated po files into UTF-8.
17348           (Thanks! Ryuji Abe)
17349
17350 2003-03-28 Takuro Ashie <ashie@homa.ne.jp>
17351
17352         * The bug which doesn't unscape string in xml.c has been fixed.
17353
17354 2003-03-27 Takuro Ashie <ashie@homa.ne.jp>
17355
17356         * The bug which is failed to translate encoding of file name thorough
17357         file dialog has been fixed.
17358
17359 2003-03-25 Takuro Ashie <ashie@homa.ne.jp>
17360
17361         * Modified to translate file names which is used in inporting/expoting
17362         mbox feature and "Save as" feature into locale encoding.
17363         * Translate file names into locale encoding when "Attache file" and
17364         "Insert file".
17365         * Force set G_BROKEN_FILENAMES environment variable.
17366         * Other minor fixes.
17367
17368 2003-03-17 Takuro Ashie <ashie@homa.ne.jp>
17369
17370         * Modified to treat MH folder's name as locale encoding.
17371
17372 2003-03-16 Takuro Ashie <ashie@homa.ne.jp>
17373
17374         * The bug which clash on switching candidates of auto completion of
17375         addresses, cannot use auto completion in Japanesse is fixed
17376         (Thanks! Tokunaga-san)¡¥
17377
17378 2003-03-14 Takuro Ashie <ashie@homa.ne.jp>
17379
17380         * The bug which cannot switch key accelerator preference has been fixed
17381         (Thanks! smbd-san)¡¥
17382
17383 2003-03-14 Takuro Ashie <ashie@homa.ne.jp>
17384
17385         * version 0.8.11-gtk2-20030314
17386
17387 2003-03-14 Takuro Ashie <ashie@homa.ne.jp>
17388
17389         * The bug in which character set conversion of filtering messages has
17390         been fixed.(Thanks! COCOA-san).
17391
17392 2003-03-13 Takuro Ashie <ashie@homa.ne.jp>
17393
17394         * Revived "Leave space on head" preference in "Message" category.
17395         * A bug which clash when put the cursor to end of buffer and execute
17396         "Wrap current paragraph" was fixed.(Thanks! Tokunaga-san)
17397
17398 2003-03-12 Takuro Ashie <ashie@homa.ne.jp>
17399
17400         * version 0.8.11-gtk2-20030312
17401
17402 2003-03-12 Takuro Ashie <ashie@homa.ne.jp>
17403
17404         * Fixed position of  switching account popup (Thanks! Ikezoe-san)¡¥
17405         * Modified to use Pango's API directly for font preference.
17406         * Integrated GtkTextView of textview to one widget.
17407         * Set fonts of header title in textview by "header_title" tag.
17408         * Removed some deprecated codes.
17409
17410 2003-03-11 Takuro Ashie <ashie@homa.ne.jp>
17411
17412         * Updated to 0.8.11.
17413         * Merged cygwin patch(Thanks! Sakai-san).
17414
17415 2003-03-09 Takuro Ashie <ashie@homa.ne.jp>
17416
17417         * version 0.8.10-gtk2-20030309