2012-10-31 [colin] 3.8.1cvs110
[claws.git] / ChangeLog
1 2012-10-31 [colin]      3.8.1cvs110
2
3         * src/prefs_folder_item.c
4                 Fix prefs text and extra semi-colon. Thanks to Paul!
5
6 2012-10-31 [colin]      3.8.1cvs109
7
8         * src/folder_item_prefs.c
9         * src/folder_item_prefs.h
10         * src/messageview.c
11         * src/prefs_folder_item.c
12                 Implement feature from bug #2569, 
13                 "select html part on folder specific properties"
14                 Patch based on Andrej's patch.
15
16 2012-10-29 [wwp]        3.8.1cvs108
17
18         * src/textview.c
19         Revert cvs107, cvs106 and parts of cvs105 (all in textview.c), fixing
20         broken URL parsing.
21
22 2012-10-25 [colin]      3.8.1cvs107
23
24         * src/textview.c
25                 Verify the previous URI wasn't the same...
26                 fixes http://www. URIs.
27
28 2012-10-25 [colin]      3.8.1cvs106
29
30         * src/common/utils.c
31         * src/common/utils.h
32         * src/textview.c
33                 Avoid strlen() on inner loop in textview_make_clickable_parts*()
34                 reduces cost of strcasestr() in textview_make_clickable_parts*()
35                 from 30% to 15%. Patch by Igor Mammedov
36
37 2012-10-25 [colin]      3.8.1cvs105
38
39         * src/textview.c
40                 Do not allow search cost to explode in case of bad message
41                 parsing in textview_make_clickable_parts_later(); reduces
42                 cost of textview_make_clickable_parts_later() from 99% to
43                 17% for big bad-case message. Patch by Igor Mammedov
44
45 2012-10-25 [colin]      3.8.1cvs104
46
47         * src/textview.c
48         * src/textview.h
49                 Avoid strlen() on big buffers, use precomputed length instead
50                 it reduces cost of textview_write_line() from 32% to 3% for
51                 big messages. Patch by Igor Mammedov
52         * AUTHORS
53         * src/gtk/authors.h
54                 Add Igor
55
56 2012-10-24 [mones]      3.8.1cvs103
57
58         * src/advsearch.c
59                 Trust on IMAP core on-line/off-line management
60                 Patch by Sean Buckheister
61
62 2012-10-19 [paul]       3.8.1cvs102
63
64         * AUTHORS
65         * src/crash.c
66         * src/gtk/authors.h
67                 fix bug 2760, 'display correct libc version in crash dialog 
68                 when uclibc is used'.
69                 fixes build with uclibc. patch by Natanael Copa.
70
71 2012-10-18 [mones]      3.8.1cvs101
72
73         * claws-mail.desktop
74                 Fix bug #2761 and remove invalid GTK main category
75
76 2012-10-17 [colin]      3.8.1cvs100
77
78         * src/common/ssl_certificate.c
79                 Fix bug #2759, "Error messages regarding bad
80                 client certificates are less than helpful"
81                 Based on patch by bug reporter.
82
83 2012-10-13 [paul]       3.8.1cvs99
84
85         * src/common/ssl_certificate.c
86                 fix build with gnutls 3.1.3
87                 Patch by Sean Buckheister.
88
89 2012-10-12 [mones]      3.8.1cvs98
90
91         * src/compose.c
92         * src/grouplistdialog.c
93         * src/imap.c
94         * src/news_gtk.c
95         * src/procmime.c
96         * src/procmsg.c
97         * src/common/utils.c
98         * src/common/utils.h
99         * src/etpan/imap-thread.c
100                 New slist_free_strings_full wrapper for g_slist_free_full
101                 and simplify calls where it was being used
102
103 2012-10-12 [colin]      3.8.1cvs97
104
105         * src/common/defs.h
106                 Drop include of internal glib header
107                 Patch by Werner Koch
108
109 2012-10-12 [colin]      3.8.1cvs96
110
111         * src/gtk/gtkcmctree.c
112         * src/gtk/gtksctree.c
113                 Fix bug #2581, "expander arrows are too tiny to hit with the 
114                 mouse". Patch mostly by Tom Horsley
115
116 2012-10-12 [iwkse]      3.8.1cvs95
117
118         * src/common/utils.c
119                         g_free *mutex
120
121 2012-10-12 [mones]      3.8.1cvs94
122
123         * src/common/utils.c
124                 Remove undeclared mutex symbol
125
126 2012-10-12 [colin]      3.8.1cvs93
127
128         * src/compose.c
129         * src/prefs_account.c
130         * src/common/utils.c
131         * src/common/utils.h
132                 Fix bug #2751 'g_mutex_new/g_mutex_free removed from GLib 2.32'
133                 Thanks to Salvatore de Paolis
134
135 2012-10-10 [colin]      3.8.1cvs92
136
137         * src/folder.c
138                 Fix bug #2744, "Quick search throws bad command 
139                 argument error on Microsoft Exchange". Fall back
140                 to local search if folder-specific search fails.
141         * src/gtk/quicksearch.c
142                 Typo fix.
143
144 2012-10-10 [colin]      3.8.1cvs91
145
146         * src/procmsg.h
147                 Make what the tags list contain more clear
148
149 2012-10-10 [colin]      3.8.1cvs90
150
151         * src/inc.c
152         * src/mbox.c
153         * src/common/smtp.c
154         * src/common/smtp.h
155                 Fix bug #2639, "The MSGBUFSIZE definition collides with a definition of OpenBSD"
156                 Patch by "madroach"
157
158 2012-10-10 [colin]      3.8.1cvs89
159
160         * autogen.sh
161                 Fix bug #2638, "Respect $LEX environment variable in autogen.sh"
162
163 2012-10-10 [colin]      3.8.1cvs88
164
165         * src/compose.c
166                 Leak fix (thanks Ricardo!)
167
168 2012-10-10 [colin]      3.8.1cvs87
169
170         * src/common/utils.c
171                 Fix O(n^2) algorithm in remove_numbered_files_not_in_list
172                 Initial patch by Igor Mammedov <imammedo@redhat.com> with
173                 fixes by Michael Rasmussen and myself.
174                 Also revert part of 3.8.1cvs86, g_slist_free_full() 
175                 semantics are different from slist_free_strings() in that
176                 slist_free_strings does not free the list itself.
177
178 2012-10-09 [mones]      3.8.1cvs86
179
180         * doc/man/claws-mail.1
181         * src/compose.c
182         * src/common/utils.c
183                 New extra headers feature for adding user-defined
184                 extra headers to the combobox in the compose window
185                 Headers are stablished in 'extraheaderrc', one per
186                 line with a final colon
187
188 2012-10-06 [mones]      3.8.1cvs85
189
190         * po/POTFILES.in
191                 Added src/gtk/menu.c
192         * src/common/defs.h
193         * src/gtk/menu.c
194         * src/gtk/menu.h
195                 New function cm_menu_item_new_label_from_url to
196                 avoid crashing on huge URL strings and warn user
197                 about the possible causes
198         * src/mainwindow.c
199                 Use it to create List menu items safely
200
201 2012-10-04 [colin]      3.8.1cvs84
202
203         * src/imap.c
204                 Fix keywords with spaces
205
206 2012-10-04 [colin]      3.8.1cvs83
207
208         * src/advsearch.c
209                 Fix double-tag search. Maybe fixes bug #2744,
210                 'Quick search throws bad command argument 
211                 error since recent change'. Patch by Sean.
212
213 2012-10-03 [mones]      3.8.1cvs82
214
215         * src/procmime.c
216                 Fix bug #2743 'null pointer crash in procmime strchr'
217                 Patch by Michael Schwendt (from RedHat bug 862578) 
218
219 2012-09-28 [colin]      3.8.1cvs81
220
221         * src/advsearch.c
222                 Never search on server if we're offline
223                 (Asking the user would and will be better)
224         * src/imap.c
225                 Fix uninitialized variable (bogus) warning
226                 Fix SELECT of the folder before searching
227
228 2012-09-27 [colin]      3.8.1cvs80
229
230         * src/advsearch.c
231         * src/imap.c
232         * src/etpan/imap-thread.c
233         * src/etpan/imap-thread.h
234                 Implement IMAP server search. Patch by
235                 Sean Buckheister again.
236
237 2012-09-26 [colin]      3.8.1cvs79
238
239         * src/main.c
240         * src/matcher.c
241         * src/matcher.h
242                 Prepare the context strings, their translation take
243                 CPU time. Shaves 6 seconds out of 17 on my reference
244                 folder body search.
245         * src/summary_search.c
246                 Fix a warning
247
248 2012-09-26 [colin]      3.8.1cvs78
249
250         * src/matcher.c
251         * src/procmime.c
252         * src/procmime.h
253                 Unlock I/O in procmime, give a way
254                 for matcher to avoid having to
255                 read/write tmp/rewind/read tmp for
256                 body matches.
257
258 2012-09-26 [colin]      3.8.1cvs77
259
260         * src/summary_search.c
261                 Fix unresponsive stop button
262         * src/gtk/quicksearch.c
263                 Fix busy cursor
264
265 2012-09-26 [colin]      3.8.1cvs76
266
267         * src/summary_search.c
268         * src/summaryview.c
269         * src/summaryview.h
270         * src/gtk/quicksearch.c
271                 Factorize search code in summary_search and
272                 add a progress indicator as that slows down
273                 the first result in case of body search.
274
275 2012-09-26 [colin]      3.8.1cvs75
276
277         * src/folder.c
278                 Fix body search triggering GUI updates
279                 for every message when it gets MSG_SCANNED
280                 set.
281
282 2012-09-26 [colin]      3.8.1cvs74
283
284         * src/folder.c
285         * src/folder.h
286         * src/imap.c
287         * src/procmsg.c
288         * src/procmsg.h
289         * src/summaryview.c
290                 Factorize msg list to num list code;
291                 Make search faster using cache instead
292                 of network I/O
293
294 2012-09-25 [mones]      3.8.1cvs73
295
296         * src/gtk/quicksearch.c
297                 Fix new expressions not being added to quicksearch
298                 history in extended mode; patch by Sean Buckheister
299
300 2012-09-22 [mir]        3.8.1cvs72
301
302         * src/advsearch.c
303                 Fix for not searching in folders marked 'no_select'
304                 patch provided by Colin.
305
306 2012-09-22 [mones]      3.8.1cvs71
307
308         * src/advsearch.c
309                 Add missing copyright header
310
311 2012-09-21 [colin]      3.8.1cvs70
312
313         * src/folder.c
314                 Fix warning where msgcount was used
315                 uninitialized in case the search was
316                 to be performed on a message list subset.
317
318 2012-09-21 [colin]      3.8.1cvs69
319
320         * src/gtk/quicksearch.c
321                 Fix error background not appearing
322
323 2012-09-21 [colin]      3.8.1cvs68
324
325         * src/Makefile.am
326         * src/advsearch.c ** ADDED **
327         * src/advsearch.h ** ADDED **
328         * src/folder.c
329         * src/folder.h
330         * src/folderview.c
331         * src/imap.c
332         * src/main.c
333         * src/matcher.c
334         * src/matcher.h
335         * src/matchertypes.h ** ADDED **
336         * src/mh.c
337         * src/mimeview.c
338         * src/news.c
339         * src/proctypes.h
340         * src/summary_search.c
341         * src/summaryview.c
342         * src/summaryview.h
343         * src/gtk/quicksearch.c
344         * src/gtk/quicksearch.h
345                 Separated GUI and logic for search
346                 Use same logic for quicksearch and folder search
347                 Patch by Sean Buckheister <s_buckhe@cs.uni-kl.de>
348
349 2012-09-19 [mones]      3.8.1cvs67
350
351         * src/mainwindow.c
352                 Remove spurious parameter from get_url_part and
353                 fix potential buffer overflow
354
355 2012-09-19 [colin]      3.8.1cvs66
356
357         * src/addressbook.c
358         * src/addrselect.c
359                 Un-mix mixed enum comparison which happened
360                 to work because multiple enums define the same
361                 values.
362
363 2012-09-19 [colin]      3.8.1cvs65
364
365         * src/addrindex.c
366         * src/editaddress.c
367         * src/editldap.c
368         * src/exporthtml.c
369         * src/jpilot.c
370         * src/procmime.c
371         * src/plugins/bogofilter/bogofilter_gtk.c
372         * src/plugins/pgpcore/prefs_gpg.c
373         * src/plugins/smime/smime.c
374         * src/plugins/spamassassin/spamassassin_gtk.c
375                 More warning fixes, casts, useless variables and
376                 unchecked return values
377
378 2012-09-19 [colin]      3.8.1cvs64
379
380         * src/mainwindow.c
381                 Check possible overflow
382         * src/prefs_account.c
383         * src/prefs_compose_writing.c
384         * src/prefs_logging.c
385         * src/prefs_message.c
386         * src/prefs_msg_colors.c
387         * src/prefs_other.c
388         * src/prefs_receive.c
389         * src/prefs_summaries.c
390         * src/prefs_wrapping.c
391                 fix GtkAdjustment casts
392         * src/common/ssl.c
393                 fix warnings
394         * src/gtk/gtkaspell.c
395                 fix warnings
396
397 2012-09-19 [mones]      3.8.1cvs63
398
399         * src/addritem.c
400                 Fix leak and follow function specification
401
402 2012-09-19 [mones]      3.8.1cvs62
403
404         * src/action.c
405                 Use unused var c to check result and emit messages on error
406         * src/addrbook.c
407                 Remove unused vars: attr (several functions), element
408         * src/addrclip.c
409                 Use unused var newGroup to check result
410         * src/addrcustomattr.c
411                 Remove unused var summaryview and related code
412         * src/addressbook.c
413                 Use unused vars nn, newNode, idleID to check result
414                 Remove unused var aoType and refactor logic around it
415                 Comment var enabled and related debug code
416         * src/msgcache.c
417                 Use unused var error to check result and emit debug messages
418         * src/textview.c
419                 Remove unused var link_color
420         * src/toolbar.c
421                 Remove unused vars: attr, retVal
422
423 2012-09-19 [colin]      3.8.1cvs61
424
425         * src/imap.c
426         * src/inc.c
427         * src/news.c
428         * src/send_message.c
429         * src/common/socket.c
430                 More precise error logging
431
432 2012-09-16 [mones]      3.8.1cvs60
433
434         * src/action.c                                                          
435                 Removed dup calls with ignored result
436         * src/addr_compl.c                                                    
437                 Removed unused var is_group and simplified logic around it      
438         * src/addrharvest.c                                                  
439         * src/matcher.c
440         * src/procmsg.c                                                  
441         * src/etpan/etpan-thread-manager.c                                    
442                 Use unused var r to verify result and emit messages on error
443         * src/compose.c                                                  
444                 Move color variable into conditional usage blocks
445                 Remove assigned but not used vars: lock, titles, count    
446         * src/edittags.c
447                 Remove assigned but not used var actions                        
448         * src/folderview.c
449                 Remove assigned but not used vars: from_parent, src_node        
450         * src/imap_gtk.c
451         * src/mh_gtk.c                                                    
452                 Remove malloc-ed but not used var: old_path                  
453         * src/news.c
454                 Comment unused vars from commented block: tofetch, fetched      
455         * src/prefs_account.c
456                 Remove assigned but not used var: privacy_enabled
457         * src/prefs_actions.c
458         * src/prefs_customheader.c
459                 Remove assigned but not used var: store
460         * src/prefs_filtering.c
461                 Remove assigned but not used var: n_rows
462         * src/prefs_template.c
463                 Remove assigned but not used vars: model, list_store
464         * src/prefs_toolbar.c
465                 Remove assigned but not used var: win_titles
466         * src/printing.c
467                 Remove assigned but not used vars: orientation, line, baseline,
468                 off_chars 
469         * src/etpan/imap-thread.c
470                 Remove assigned but not used var: value, r
471                 Refactor to check correct memory allocation
472         * src/etpan/nntp-thread.c
473                 Remove assigned but not used var: value
474         * src/gtk/gtkaspell.c
475                 Remove assigned but not used vars: textbuf, exist
476                 Remove unused function: find_gtkaspeller
477         * src/gtk/gtkcmctree.c
478                 Remove unused function: gtk_cmctree_get_offset
479         * src/gtk/gtkshruler.c
480                 Remove assigned but not used vars: ruler, priv
481
482 2012-09-14 [mones]      3.8.1cvs59
483
484         * src/common/log.c
485                 Check file operation results (and remove and
486                 unused var warning)
487
488 2012-09-14 [colin]      3.8.1cvs58
489
490         * src/gtk/inputdialog.c
491                 Remove unused var, thanks Ticho
492
493 2012-09-13 [colin]      3.8.1cvs57
494
495         * src/stock_pixmap.c
496                 Fix missing \n in debug line
497
498 2012-09-13 [colin]      3.8.1cvs56
499
500         * src/main.c
501                 Don't listen on the Unix socket before we're
502                 ready. The 'popup' order from another instance
503                 may provoke a race and trash configuration files.
504
505 2012-09-13 [colin]      3.8.1cvs55
506
507         * src/imap.c
508                 Maybe fix bug #2096, "MEMORY-ERROR w/ 
509                 Claws-Mail/IMAP and Lotus Domino". Use
510                 correct types for start/end and test if
511                 start is indeed before end.
512
513 2012-09-12 [mones]      3.8.1cvs54
514
515         * src/prefs_other.c
516                 Fix bug #1975 'preference mutt key bindings do not take
517                 effect' (and the other invalid paths too)
518
519 2012-09-12 [colin]      3.8.1cvs53
520
521         * src/procmsg.c
522                 Revert that hunk, logic is unclear.
523
524 2012-09-12 [colin]      3.8.1cvs52
525
526         * src/addressbook.c
527         * src/addrharvest.c
528         * src/addrindex.c
529         * src/addritem.c
530         * src/compose.c
531         * src/edittags.c
532         * src/folder.c
533         * src/imap.c
534         * src/inc.c
535         * src/ldif.c
536         * src/mainwindow.c
537         * src/mbox.c
538         * src/mimeview.c
539         * src/mutt.c
540         * src/partial_download.c
541         * src/prefs_filtering_action.c
542         * src/prefs_toolbar.c
543         * src/printing.c
544         * src/procheader.c
545         * src/procmime.c
546         * src/procmsg.c
547         * src/summaryview.c
548         * src/textview.c
549         * src/common/utils.c
550         * src/etpan/imap-thread.c
551         * src/gtk/gtkaspell.c
552         * src/plugins/pgpcore/sgpgme.c
553                 More fixes from bug #1961:
554                 - Write-only variables
555                 - Null pointer dereferences
556                 - A couple other fixes for which the reporter
557                   was unsure, but which showed problems.
558                 More details in bug #1961 comments.
559
560 2012-09-12 [colin]      3.8.1cvs51
561
562         * src/compose.c
563         * src/mh.c
564         * src/common/ssl.c
565         * src/plugins/pgpcore/passphrase.c
566                 Apply patches from bug #1961, "patches for
567                 a couple of clang warnings":
568                 - Check return codes
569                 - Remove dead code
570
571 2012-09-12 [colin]      3.8.1cvs50
572
573         * claws-mail.pc.in
574                 Put Claws-Mail CFLAGS first; fixes build on Fink/OS X
575                 where the included menu.h could come from Ncurses.
576                 Thanks to 'Stainless Steel Rat' <ratinox@gweep.net>
577
578 2012-09-11 [colin]      3.8.1cvs49
579
580         * src/main.c
581                 Fix race condition at start.
582
583 2012-09-10 [colin]      3.8.1cvs48
584
585         * src/main.c
586                 Create lock socket as soon as possible, not after
587                 a few things like caching all prefs.
588
589 2012-09-09 [mones]      3.8.1cvs47
590
591         * src/plugins/bogofilter/bogofilter.c
592                 Add missing include
593
594 2012-09-08 [colin]      3.8.1cvs46
595
596         * AUTHORS
597         * src/Makefile.am
598         * src/action.c
599         * src/addr_compl.c
600         * src/addrbook.c
601         * src/compose.c
602         * src/compose.h
603         * src/editaddress.c
604         * src/filtering.c
605         * src/folder.c
606         * src/folder.h
607         * src/folderview.h
608         * src/headerview.h
609         * src/imap_gtk.c
610         * src/localfolder.c
611         * src/main.c
612         * src/mainwindow.c
613         * src/mainwindow.h
614         * src/matcher.c
615         * src/matcher_parser_parse.y
616         * src/messageview.c
617         * src/messageview.h
618         * src/mh.c
619         * src/mh_gtk.c
620         * src/mimeview.c
621         * src/mimeview.h
622         * src/noticeview.h
623         * src/prefs_account.c
624         * src/prefs_account.h
625         * src/prefs_filtering.c
626         * src/prefs_filtering_action.c
627         * src/prefs_gtk.h
628         * src/prefs_matcher.c
629         * src/prefs_template.c
630         * src/prefs_toolbar.c
631         * src/privacy.c
632         * src/procheader.h
633         * src/procmime.c
634         * src/procmime.h
635         * src/procmsg.c
636         * src/procmsg.h
637         * src/proctypes.h
638         * src/remotefolder.c
639         * src/summaryview.c
640         * src/summaryview.h
641         * src/textview.c
642         * src/textview.h
643         * src/toolbar.c
644         * src/uri_opener.c
645         * src/viewtypes.h
646         * src/common/defs.h
647         * src/gtk/authors.h
648         * src/gtk/description_window.c
649         * src/plugins/trayicon/trayicon.c
650                 Break circular dependencies in Claws' headers,
651                 Patch by Sean Buckheister <s_buckhe@cs.uni-kl.de>
652
653 2012-09-08 [colin]      3.8.1cvs45
654
655         * src/textview.c
656                 Fix shortcut getting
657
658 2012-09-05 [colin]      3.8.1cvs44
659
660         * src/matcher.c
661         * src/matcher.h
662         * src/prefs_matcher.c
663                 Drop matcherprop_new_create, which is just a copy of
664                 matcherprop_new, and staticalize what can be
665
666 2012-09-05 [colin]      3.8.1cvs43
667
668         * src/plugins/pgpcore/select-keys.c
669                 Fix bug #2390, "Non-fully-trusted-key-warning appears
670                 based on primary UID rather than recipient e-mail"
671
672 2012-08-29 [colin]      3.8.1cvs42
673
674         * src/gtk/gtkaspell.c
675                 Fix bug #2596, "Spell checker does not work properly"
676
677 2012-08-29 [colin]      3.8.1cvs41
678
679         * src/plugins/pgpcore/sgpgme.c
680                 Set gpgme's locale to UTF-8. Fixes bug #2650,
681                 "segfault in pgp when gpgme_strerror() returns a non utf-8 string"
682
683 2012-08-29 [colin]      3.8.1cvs40
684
685         * src/mainwindow.c
686         * src/messageview.c
687         * src/mimeview.c
688         * src/mimeview.h
689         * src/summaryview.c
690         * src/textview.c
691         * src/gtk/menu.c
692         * src/gtk/menu.h
693                 Move the hardcoded mimeview shortcuts to standard menus.
694
695 2012-08-27 [colin]      3.8.1cvs39
696
697         * src/main.c
698                 Fix double mainwindow presentation that confuses GNOME3
699                 when some plugins fail to load (subsequent Claws windows
700                 got no focus in that case)
701
702 2012-08-27 [colin]      3.8.1cvs38
703
704         * src/summaryview.c
705                 Make Mark all read confirmation button more clear
706
707 2012-08-27 [colin]      3.8.1cvs37
708
709         * src/mainwindow.c
710         * src/summaryview.c
711                 Separate "Mark all read" from "Mark as read"
712                 and "Ignore thread"
713
714 2012-08-27 [wwp]        3.8.1cvs36
715
716         * src/inc.c
717         * src/procmsg.c
718                 Remove session statistics debug statements (irrelevant in repo,
719                 that's dev stuff).
720
721 2012-08-24 [mones]      3.8.1cvs35
722
723         * manual/advanced.xml
724                 Keep alphabetic order of hidden options lost
725                 and update Clawsker URL.
726         * manual/de/advanced.xml
727         * manual/fr/advanced.xml
728                 Update Clawsker URL.
729         * manual/es/advanced.xml
730                 Sync with English version and update Clawsker URL.
731         * manual/de/dist/html/Makefile.am
732         * manual/es/dist/html/Makefile.am
733         * manual/fr/dist/html/Makefile.am
734         * manual/pl/dist/html/Makefile.am
735         * manual/dist/html/Makefile.am
736                 Fix bug 2723 'Missing encoding in generated html manual'
737
738 2012-08-23 [colin]      3.8.1cvs34
739
740         * src/mainwindow.c
741                 Fix --offline asking if one wants to sync,
742                 due to re-entering. Thanks <ebik@ucw.cz>.
743
744 2012-08-16 [colin]      3.8.1cvs33
745
746         * src/imap.c
747                 Always clear the tags list when fetching a folder, or
748                 Claws will never untag an untagged email. Patch by
749                 Igor Mammedov <imammedo@redhat.com>
750
751 2012-08-12 [colin]      3.8.1cvs32
752
753         * src/compose.c
754                 Exclude text/plain from the attachment thing
755
756 2012-08-12 [colin]      3.8.1cvs31
757
758         * src/messageview.c
759                 Fix comparison, thanks to Michael Gmelin
760
761 2012-08-12 [colin]      3.8.1cvs30
762
763         * src/messageview.c
764                 Only show HTML parts by default (if the pref
765                 is set so) if the part disposition-type is
766                 inline or unknown, but not attachment.
767         * src/common/ssl.c
768                 Remove useless hook that won't ever be used
769                 on windows
770
771 2012-08-12 [colin]      3.8.1cvs29
772
773         * src/compose.c
774                 Make sure text/* attachments are not made
775                 inline, regardless of the compose mode.
776                 Finishes fixing bug #2203 after auto-save
777                 switches mode to COMPOSE_REEDIT. Thanks to
778                 Michael Gmelin for finding this.
779
780 2012-08-09 [colin]      3.8.1cvs28
781
782         * src/prefs_filtering.c
783                 Make treeView type-ahead case insensitive
784                 Patch by Andreas Ronnquist
785
786 2012-08-09 [colin]      3.8.1cvs27
787
788         * src/gtk/sslcertwindow.c
789                 Fix leak
790
791 2012-08-09 [colin]      3.8.1cvs26
792
793         * src/common/ssl.c
794         * src/common/ssl_certificate.c
795         * src/common/ssl_certificate.h
796         * src/gtk/sslcertwindow.c
797                 Fix bug 2718, "Failure to check peer hostname
798                 when checking certificate"
799
800 2012-08-05 [ticho]      3.8.1cvs25
801
802         * src/compose.c
803                 Avoid header combo box to get focus twice (first text within,
804                 then combobox widget itself) when switching focus with TAB.
805
806 2012-07-28 [ticho]      3.8.1cvs24
807
808         * src/compose.c
809                 Properly fix setting "transient for" for attachment properties
810                 dialog when called via popup menu (since we're stealing focus
811                 few lines before, we need to do it directly, not via
812                 manage_window_*).
813
814 2012-07-28 [ticho]      3.8.1cvs23
815
816         * src/gtk/pluginwindow.c
817         * src/gtk/prefswindow.c
818                 Fixed setting "transient for" property for plugin load/unload
819                 file dialog. Connected manage_window signals to prefswindow events.
820
821 2012-07-27 [ticho]      3.8.1cvs22
822
823         * src/summaryview.c
824         * src/textview.c
825                 Fixed setting "transient for" property for summaryview file
826                 dialog and messageview's image save dialog.
827
828 2012-07-27 [ticho]      3.8.1cvs21
829
830         * src/crash.c
831         * src/mimeview.c
832                 Fix setting "transient for" property for file select dialogs
833                 in crash report and mimeview.
834
835 2012-07-27 [ticho]      3.8.1cvs20
836
837         * src/compose.c
838                 Fixed "transient for" property for file attach dialog when
839                 called from Attachments list popup menu. Simplified menu item
840                 sensitivities setting code logic for this menu.
841
842 2012-07-25 [ticho]      3.8.1cvs19
843
844         * manual/advanced.xml
845                 Add the three hidden preferences related to colored display
846                 of unified diffs to manual.
847
848 2012-07-25 [ticho]      3.8.1cvs18
849
850         * src/gtk/gtkaspell.c
851                 Create "Change directory" submenu in a separate function, change
852                 wording a bit, and make the submenu always available in a context
853                 menu of body edit box in compose window.
854
855 2012-07-25 [ticho]      3.8.1cvs17
856
857         * src/gtk/prefswindow.c
858                 Correctly set transient_for property for preferences window,
859                 as well as for color picker dialogs. Fixes bug #2710.
860
861 2012-07-25 [ticho]      3.8.1cvs16
862
863         * src/gtk/quicksearch.c
864                 Allow quicksearch syntax description window to be correctly
865                 set transient for main window.
866
867 2012-07-15 [wwp]        3.8.1cvs15
868
869         * src/procmime.c
870                 Fix bug 2697, thanks to Mikhail Efremov (wrong list ptr used).
871
872 2012-07-10 [paul]       3.8.1cvs14
873
874         * src/procmime.c
875                 forgot this in last commit
876
877 2012-07-10 [paul]       3.8.1cvs13
878
879         * src/messageview.c
880         * src/common/defs.h
881         * src/common/quoted-printable.c
882         * src/common/quoted-printable.h
883                 revert 3.8.1cvs2,3,4,5  because they (somewhere!) cause
884                 the bug: partial message text loss
885
886 2012-07-10 [mones]      3.8.1cvs12
887
888         * src/plugins/pgpcore/sgpgme.c
889                 Fix bug 2689, 'segfault when trying to view info
890                 about pgp/smime sign'
891
892 2012-07-08 [ticho]      3.8.1cvs11
893
894         * src/plugins/pgpcore/sgpgme.c
895                 Consider marginal signature validity as untrusted. Suggested by
896                 Jean-Benoist Leger (leger at crans.org).
897
898 2012-07-08 [paul]       3.8.1cvs10
899
900         * src/gtk/icon_legend.c
901                 fix (reveal) hidden icon in gui and build warning
902
903 2012-07-07 [paul]       3.8.1cvs9
904
905         * src/plugins/pgpcore/prefs_gpg.c
906                 fix build
907
908 2012-07-07 [colin]      3.8.1cvs8
909
910         * claws-features.h.in
911         * src/codeconv.h
912         * src/imap_gtk.h
913         * src/inc.h
914         * src/jpilot.h
915         * src/messageview.h
916         * src/msgcache.h
917         * src/news_gtk.h
918         * src/partial_download.h
919         * src/pop.h
920         * src/prefs_account.h
921         * src/prefs_common.h
922         * src/printing.h
923         * src/procmime.h
924         * src/procmsg.h
925         * src/stock_pixmap.c
926         * src/textview.h
927         * src/common/defs.h
928         * src/common/log.h
929         * src/common/session.h
930         * src/common/smtp.h
931         * src/common/socket.h
932         * src/common/ssl.h
933         * src/common/ssl_certificate.h
934         * src/common/timing.h
935         * src/common/utils.h
936         * src/gtk/gtkaspell.h
937         * src/gtk/gtkutils.h
938         * src/gtk/pluginwindow.h
939         * src/gtk/spell_entry.h
940         * src/gtk/sslcertwindow.h
941                 Don't export config.h in public headers
942
943 2012-07-07 [colin]      3.8.1cvs7
944
945         * claws-features.h.in
946         * configure.ac
947         * Makefile.am
948         * src/account.c
949         * src/action.c
950         * src/addr_compl.c
951         * src/addrcustomattr.c
952         * src/addrduplicates.c
953         * src/addressadd.c
954         * src/addressbook.c
955         * src/addressbook_foldersel.c
956         * src/addrgather.c
957         * src/addrindex.c
958         * src/alertpanel.c
959         * src/autofaces.c
960         * src/browseldap.c
961         * src/codeconv.c
962         * src/codeconv.h
963         * src/compose.c
964         * src/crash.c
965         * src/customheader.c
966         * src/displayheader.c
967         * src/editaddress.c
968         * src/editaddress_other_attributes_ldap.c
969         * src/editbook.c
970         * src/editgroup.c
971         * src/editjpilot.c
972         * src/editldap.c
973         * src/editldap_basedn.c
974         * src/edittags.c
975         * src/editvcard.c
976         * src/exphtmldlg.c
977         * src/expldifdlg.c
978         * src/export.c
979         * src/exporthtml.c
980         * src/exportldif.c
981         * src/folder.c
982         * src/folder_item_prefs.c
983         * src/grouplistdialog.c
984         * src/headerview.c
985         * src/image_viewer.c
986         * src/imap.c
987         * src/imap_gtk.c
988         * src/imap_gtk.h
989         * src/import.c
990         * src/importldif.c
991         * src/importmutt.c
992         * src/importpine.c
993         * src/inc.c
994         * src/inc.h
995         * src/jpilot.c
996         * src/jpilot.h
997         * src/ldapctrl.c
998         * src/ldaplocate.c
999         * src/ldapquery.c
1000         * src/ldapserver.c
1001         * src/ldapupdate.c
1002         * src/ldaputil.c
1003         * src/main.c
1004         * src/manual.c
1005         * src/matcher.c
1006         * src/mbox.c
1007         * src/message_search.c
1008         * src/messageview.h
1009         * src/mh.c
1010         * src/mh_gtk.c
1011         * src/mimeview.c
1012         * src/msgcache.c
1013         * src/msgcache.h
1014         * src/news.c
1015         * src/news_gtk.c
1016         * src/news_gtk.h
1017         * src/noticeview.c
1018         * src/partial_download.c
1019         * src/partial_download.h
1020         * src/pop.c
1021         * src/pop.h
1022         * src/prefs_account.c
1023         * src/prefs_account.h
1024         * src/prefs_actions.c
1025         * src/prefs_common.c
1026         * src/prefs_common.h
1027         * src/prefs_compose_writing.c
1028         * src/prefs_customheader.c
1029         * src/prefs_display_header.c
1030         * src/prefs_ext_prog.c
1031         * src/prefs_filtering.c
1032         * src/prefs_filtering_action.c
1033         * src/prefs_folder_column.c
1034         * src/prefs_folder_item.c
1035         * src/prefs_fonts.c
1036         * src/prefs_gtk.c
1037         * src/prefs_image_viewer.c
1038         * src/prefs_logging.c
1039         * src/prefs_matcher.c
1040         * src/prefs_message.c
1041         * src/prefs_msg_colors.c
1042         * src/prefs_other.c
1043         * src/prefs_quote.c
1044         * src/prefs_receive.c
1045         * src/prefs_send.c
1046         * src/prefs_spelling.c
1047         * src/prefs_summaries.c
1048         * src/prefs_summary_column.c
1049         * src/prefs_summary_open.c
1050         * src/prefs_toolbar.c
1051         * src/prefs_wrapping.c
1052         * src/printing.c
1053         * src/printing.h
1054         * src/procheader.c
1055         * src/procmime.c
1056         * src/procmime.h
1057         * src/procmsg.h
1058         * src/quote_fmt.c
1059         * src/recv.c
1060         * src/send_message.c
1061         * src/setup.c
1062         * src/ssl_manager.c
1063         * src/statusbar.c
1064         * src/summary_search.c
1065         * src/textview.c
1066         * src/textview.h
1067         * src/toolbar.c
1068         * src/undo.c
1069         * src/unmime.c
1070         * src/uri_opener.c
1071         * src/wizard.c
1072         * src/common/claws.c
1073         * src/common/defs.h
1074         * src/common/hooks.c
1075         * src/common/log.c
1076         * src/common/log.h
1077         * src/common/plugin.c
1078         * src/common/prefs.c
1079         * src/common/session.c
1080         * src/common/session.h
1081         * src/common/smtp.c
1082         * src/common/smtp.h
1083         * src/common/socket.c
1084         * src/common/socket.h
1085         * src/common/ssl.c
1086         * src/common/ssl.h
1087         * src/common/ssl_certificate.c
1088         * src/common/ssl_certificate.h
1089         * src/common/string_match.c
1090         * src/common/tags.c
1091         * src/common/timing.h
1092         * src/common/utils.c
1093         * src/common/utils.h
1094         * src/etpan/etpan-thread-manager.c
1095         * src/etpan/imap-thread.c
1096         * src/etpan/nntp-thread.c
1097         * src/gtk/about.c
1098         * src/gtk/combobox.c
1099         * src/gtk/description_window.c
1100         * src/gtk/filesel.c
1101         * src/gtk/gtkaspell.c
1102         * src/gtk/gtkaspell.h
1103         * src/gtk/gtkshruler.c
1104         * src/gtk/gtkunit.c
1105         * src/gtk/gtkutils.c
1106         * src/gtk/gtkutils.h
1107         * src/gtk/gtkvscrollbutton.c
1108         * src/gtk/icon_legend.c
1109         * src/gtk/inputdialog.c
1110         * src/gtk/logwindow.c
1111         * src/gtk/menu.c
1112         * src/gtk/pluginwindow.c
1113         * src/gtk/pluginwindow.h
1114         * src/gtk/prefswindow.c
1115         * src/gtk/progressdialog.c
1116         * src/gtk/quicksearch.c
1117         * src/gtk/spell_entry.c
1118         * src/gtk/spell_entry.h
1119         * src/gtk/sslcertwindow.c
1120         * src/gtk/sslcertwindow.h
1121         * src/plugins/bogofilter/bogofilter.c
1122         * src/plugins/bogofilter/bogofilter_gtk.c
1123         * src/plugins/dillo_viewer/dillo_prefs.c
1124         * src/plugins/dillo_viewer/dillo_viewer.c
1125         * src/plugins/pgpcore/pgp_viewer.c
1126         * src/plugins/pgpcore/plugin.c
1127         * src/plugins/pgpcore/sgpgme.c
1128         * src/plugins/pgpinline/pgpinline.c
1129         * src/plugins/pgpinline/plugin.c
1130         * src/plugins/pgpmime/pgpmime.c
1131         * src/plugins/pgpmime/plugin.c
1132         * src/plugins/smime/plugin.c
1133         * src/plugins/smime/smime.c
1134         * src/plugins/spamassassin/libspamc.c
1135         * src/plugins/spamassassin/spamassassin.c
1136         * src/plugins/spamassassin/spamassassin_gtk.c
1137         * src/plugins/trayicon/trayicon.c
1138         * src/plugins/trayicon/trayicon_prefs.c
1139                 Specify Claws compile-time features in a specific header
1140
1141 2012-07-06 [wwp]        3.8.1cvs6
1142
1143         * src/main.c
1144         * src/gtk/about.c
1145                 Session statistics: format date following global prefs,
1146                 and fix stats output a little bit.
1147
1148 2012-07-03 [mir]        3.8.1cvs5
1149
1150         * src/procmime.c
1151             fix bug 2642, 'improve transfer encoding selection'.
1152             Patch provided by Christopher Zimmermann
1153             (madroach claws at gmerlin dot de)
1154
1155 2012-07-03 [mir]        3.8.1cvs4
1156
1157         * src/procmime.c
1158         * src/common/defs.h
1159             fix bug 2641, '7bit or 8bit encoded attachments can
1160             have lines longer than 998 characters'.
1161             Patch provided by Christopher Zimmermann
1162             (madroach claws at gmerlin dot de)
1163
1164
1165 2012-07-03 [mir]        3.8.1cvs3
1166
1167         * src/procmime.c
1168         * src/common/defs.h
1169             fix bug 2641, '7bit or 8bit encoded attachments can
1170             have lines longer than 998 characters'.
1171             Patch provided by Christopher Zimmermann
1172             (madroach claws at gmerlin dot de)
1173
1174 2012-07-03 [mir]        3.8.1cvs2
1175
1176         * src/messageview.c
1177         * src/procmime.c
1178         * src/common/quoted-printable.c
1179         * src/common/quoted-printable.h
1180             fix bug 2640, 'improve quoted-printable encoding'
1181             Patch provided by madroach claws at gmerlin dot de
1182
1183 2012-06-30 [paul]       3.8.1cvs1
1184
1185         * Makefile.am
1186                 fix bug 2579, 'Installed headers redefine autotools-specific constants'
1187
1188 2012-06-27 [paul]       3.8.1
1189         * NEWS
1190         * README
1191         * RELEASE_NOTES 
1192                 3.8.1 unleashed!
1193                 
1194 2012-06-27 [paul]       3.8.0cvs58
1195
1196         * configure.ac
1197                 fix minimum required GTK+, which got mistakenly bumped
1198                 in 3.8.0cvs36
1199
1200 2012-06-27 [paul]       3.8.0cvs57
1201
1202         * configure.ac
1203         * po/cs.po
1204         * po/de.po
1205         * po/es.po
1206         * po/fr.po
1207         * po/hu.po
1208         * po/id_ID.po
1209         * po/lt.po
1210         * po/pt_BR.po
1211         * po/sk.po
1212         * po/sv.po
1213         * po/zh_CN.po
1214         * po/zh_TW.po
1215                 updated translations
1216         * src/gtk/authors.h
1217         * tools/claws.i18n.status.pl
1218                 updated based on currently active
1219
1220 2012-06-25 [mir]        3.8.0cvs56
1221
1222         * src/folder.c
1223             If a folder class returns <> 0 then the message has not
1224             been removed from the file system and therefore it should
1225             not be removed from the cache either.
1226
1227 2012-06-20 [ticho]      3.8.0cvs55
1228
1229         * src/mh.c
1230                 Fix for bug #1090 - Standard-folders appear again
1231                 after rescanning tree
1232
1233 2012-06-20 [paul]       3.8.0cvs54
1234
1235         * src/prefs_common.c
1236         * src/prefs_common.h
1237         * src/textview.c
1238         * src/textview.h
1239                 colourise attached patches.
1240                 Patch by Ticho
1241
1242 2012-06-02 [wwp]        3.8.0cvs53
1243
1244         * src/gtk/progressdialog.c
1245                 Add a hide button to the retrieve/send progress dialogs. WM's close button
1246                 now hides (as well as pressing Esc) instead of doing nothing.
1247
1248 2012-06-02 [wwp]        3.8.0cvs52
1249
1250         * doc/man/claws-mail.1
1251         * src/main.c
1252         * src/main.h
1253         * src/inc.c
1254         * src/procmsg.c
1255         * src/gtk/about.c
1256                 Introduce a new feature: basic session statistics (from the about dialog
1257                 or the command-line).
1258
1259 2012-06-02 [wwp]        3.8.0cvs51
1260
1261         * src/compose.c
1262                 Fix bug 2620: shift+tab from subject field not working.
1263
1264 2012-06-02 [wwp]        3.8.0cvs50
1265
1266         * src/compose.c
1267         * src/mainwindow.c
1268         * src/messageview.c
1269                 Normalize capitalization of strings in UI.
1270
1271 2012-05-30 [paul]       3.8.0cvs49
1272
1273         * src/common/ssl.c
1274                 don't do TLS if not requested by user. fixes connecting to
1275                 servers which, for example, want SSL 3 only
1276
1277 2012-05-27 [paul]       3.8.0cvs48
1278
1279         * *
1280                 update copyright headers to 2012
1281
1282 2012-05-27 [paul]       3.8.0cvs47
1283
1284         * src/editldap.c
1285         * src/prefs_actions.c
1286         * src/gtk/about.c
1287                 fix some typos in strings, thanks to Thomas Bellmann
1288
1289 2012-05-16 [paul]       3.8.0cvs46
1290
1291         * src/prefs_filtering_action.c
1292                 fix disabled 'select...' button that never goes away
1293                 when using the new addr book
1294                 
1295
1296 2012-05-16 [colin]      3.8.0cvs45
1297
1298         * src/common/utils.c
1299                 And fix leak
1300
1301 2012-05-16 [colin]      3.8.0cvs44
1302
1303         * src/common/utils.c
1304                 Make remove_numbered_files much faster when there's
1305                 just one file to remove.
1306
1307 2012-05-16 [paul]       3.8.0cvs43
1308
1309         * src/matcher.c
1310                 fix bug 2662, '"ag" quicksearch adds "1" to value'
1311
1312 2012-05-16 [paul]       3.8.0cvs42
1313
1314         * src/gtk/description_window.c
1315                 fix bug 2624, 'dialog "Action Configuration" cannot be closed'
1316
1317 2012-05-16 [paul]       3.8.0cvs41
1318
1319         * src/common/ssl_certificate.c
1320                 fix bug 2646, 'Compile fails with gnutls-3.0.18'
1321                 Patch by Christian Hesse
1322
1323 2012-05-11 [colin]      3.8.0cvs40
1324
1325         * src/mimeview.c
1326         * src/common/utils.c
1327                 Fix bug 2659, 'E-mail attachments are handled
1328                 inconsistently'
1329                 Fix problems iterating the mime tree, and determine
1330                 whether a file is an email without To:
1331
1332 2012-04-03 [colin]      3.8.0cvs39
1333
1334         * src/Makefile.am
1335                 Fix build (damn whitespace-sensitive file format)
1336
1337 2012-04-02 [colin]      3.8.0cvs38
1338
1339         * src/Makefile.am
1340                 Fix incomplete make dist
1341
1342 2012-04-02 [colin]      3.8.0cvs37
1343
1344         * src/compose.c
1345                 Fix mistakenly removed function call
1346
1347 2012-04-01 [colin]      3.8.0cvs36
1348
1349         * configure.ac
1350         * src/.cvsignore
1351         * src/Makefile.am
1352         * src/addr_compl.c
1353         * src/addressadd.c
1354         * src/addressadd.h
1355         * src/addressbook-dbus.c
1356         * src/addressbook-dbus.h
1357         * src/addrgather.c
1358         * src/addrgather.h
1359         * src/addrharvest.c
1360         * src/addrharvest.h
1361         * src/claws-contacts.xml
1362         * src/compose.c
1363         * src/compose.h
1364         * src/filtering.c
1365         * src/headerview.c
1366         * src/main.c
1367         * src/mainwindow.c
1368         * src/messageview.c
1369         * src/prefs_common.c
1370         * src/prefs_filtering_action.c
1371         * src/prefs_matcher.c
1372         * src/summaryview.c
1373         * src/textview.c
1374         * src/toolbar.c
1375         * src/plugins/bogofilter/bogofilter_gtk.c
1376         * src/plugins/dillo_viewer/dillo_prefs.c
1377         * src/plugins/spamassassin/spamassassin_gtk.c
1378         * src/plugins/trayicon/trayicon.c
1379                 Import new addressbook code from the new-contacts branch
1380
1381 2012-03-29 [paul]       3.8.0cvs35
1382
1383         * AUTHORS
1384         * src/gtk/authors.h
1385         * src/gtk/quicksearch.c
1386                 add 'ha', short version of 'has_attachment' in quick search
1387                 Patch by Andreas Rönnquist
1388
1389 2012-03-26 [mones]      3.8.0cvs34
1390
1391         * src/common/plugin.c
1392                 Support 2 and 3-clause BSD licensed plugins
1393
1394 2012-03-15 [pawel]      3.8.0cvs33
1395
1396         * src/messageview.c
1397         * src/textview.c
1398                 - Make separate window info more accurate about
1399                 move to trash/deletion.
1400                 - Fix busy cursor
1401
1402 2012-03-14 [pawel]      3.8.0cvs32
1403
1404         * src/folder.c
1405         * src/messageview.c
1406         * src/messageview.h
1407         * src/procmsg.h
1408         * src/summaryview.c
1409         * src/textview.c
1410         * src/textview.h
1411                 Better fix for bug #2501
1412                 Instead of leaving blank window after message move or delete,
1413                 update separate view to next message in message list or
1414                 display info why view is blank. This was discussed
1415                 in bug #2621 comments.
1416
1417 2012-03-11 [colin]      3.8.0cvs31
1418
1419         * src/gtk/gtkcmctree.c
1420         * src/gtk/authors.h
1421         * AUTHORS
1422                 Fix focus rectangle on unfocused rows
1423                 Patch by Michael Shell
1424
1425 2012-02-29 [colin]      3.8.0cvs30
1426
1427         * src/gtk/gtkcmctree.c
1428                 Fix bug #2577, "Focus rectangle on folder list and message 
1429                 list headings doesn't get properly cleared when switching 
1430                 heading and horizontally scrolling list (underlines and 
1431                 vertical lines remain on screen)". Patch by Michael Shell
1432
1433 2012-02-13 [pawel]      3.8.0cvs29
1434
1435         * src/messageview.c
1436                 Fix crasher when double clicking on IMAP message and
1437                 MessageView is not shown introduced in cvs21
1438                 Patch by mones
1439
1440 2012-02-10 [pawel]      3.8.0cvs28
1441
1442         * src/filtering.c
1443                 Fix bug #2598 'Actions can move locked messages'
1444
1445 2012-02-08 [pawel]      3.8.0cvs27
1446
1447         * src/prefs_actions.c
1448         * src/prefs_actions.h
1449         * src/prefs_toolbar.c
1450         * src/prefs_toolbar.h
1451         * src/toolbar.c
1452         * src/toolbar.h
1453                 - Implement automatic removal of toolbar action buttons when
1454                   associated action is removed
1455                 - Don't allow creation of two actions with the same name,
1456                   before all executions/removals were performed on first action
1457                   with duplicated name in linked list which wasn't always
1458                   correct behaviour
1459
1460 2012-02-05 [colin]      3.8.0cvs26
1461
1462         * src/main.c
1463         * src/mainwindow.c
1464         * src/messageview.c
1465         * src/messageview.h
1466         * src/prefs_common.c
1467         * src/prefs_common.h
1468         * src/procmsg.c
1469         * src/procmsg.h
1470         * src/summaryview.c
1471         * src/summaryview.h
1472                 Add an history to navigate in mails
1473
1474 2012-02-05 [colin]      3.8.0cvs25
1475
1476         * src/procmime.c
1477                 Fix inverted comparison in list_find_custom.
1478
1479 2012-02-03 [wwp]        3.8.0cvs24
1480
1481         * src/gtk/progressdialog.c
1482         Make translators life easier: use View log instead of Show log
1483         (thanks, gusnan!).
1484
1485 2012-02-02 [pawel]      3.8.0cvs23
1486
1487         * src/folderview.c
1488                 Fix bug #2590 'Un-capitalize strings'
1489                 Patch by Christian Hesse
1490
1491 2012-02-02 [pawel]      3.8.0cvs22
1492
1493         * src/mainwindow.c
1494                 Fix bug #2595 
1495                 'Change expand behavior for message list / message view'
1496                 Patch by Christian Hesse
1497
1498 2012-02-02 [pawel]      3.8.0cvs21
1499
1500         * src/folder.c
1501         * src/messageview.c
1502         * src/messageview.h
1503         * src/procmsg.h
1504                 Fix bug #2501 'opened message blanks when moved to other folder'
1505                 Detect message move and update message window contents 
1506                 accordingly, if message is moved to trash close window
1507
1508 2012-02-01 [pawel]      3.8.0cvs20
1509
1510         * src/jpilot.c
1511         * src/mutt.c
1512         * src/pine.c
1513         * src/procmsg.c
1514         * src/vcard.c
1515         * src/gtk/sslcertwindow.c
1516                 More strncat boundary checks
1517
1518 2012-01-31 [wwp]        3.8.0cvs19
1519
1520         * src/gtk/gtkutils.c
1521         Fix warnings in gtkutils: wrong function name, missing newline, typo and
1522         long line wrapping.
1523
1524 2012-01-31 [wwp]        3.8.0cvs18
1525
1526         * src/gtk/progressdialog.c
1527         * src/gtk/progressdialog.h
1528         * src/inc.c
1529         * src/send_message.c
1530         Add a button to the retrieve/send dialogs to
1531         open the network log.
1532
1533 2012-01-25 [wwp]        3.8.0cvs17
1534
1535         * src/addr_compl.c
1536         Remove debug statement.
1537
1538 2012-01-20 [pawel]      3.8.0cvs16
1539
1540         * src/addrbook.c
1541         * src/exportldif.c
1542                 Fix bug #2574 'Statement might be overflowing a
1543                 buffer in strncat'
1544
1545 2012-01-20 [pawel]      3.8.0cvs15
1546
1547         * src/mimeview.c
1548                 Fix bug #2582 'Expanded mimeview drag n drop no longer works'
1549
1550 2012-01-14 [colin]      3.8.0cvs14
1551
1552         * commitHelper
1553                 Update tracker trigger url
1554
1555 2012-01-10 [wwp]        3.8.0cvs13
1556
1557         * src/mainwindow.c
1558         * src/mainwindow.h
1559         * src/toolbar.c
1560                 Fix sensitivity of toolbar's get_btn (retrieve mail from current
1561                 account) and of mainwindows's relevant entry when current account
1562                 is not able to retrieve (SMTP-only).
1563
1564 2012-01-09 [colin]      3.8.0cvs12
1565
1566         * src/summaryview.c
1567                 Fix bug 1924, 'Messages marked move to Trash appear 
1568                 identical to messages marked move to $FOLDER'
1569
1570 2012-01-05 [colin]      3.8.0cvs11
1571
1572         * src/main.c
1573                 Fix crasher infinite loop
1574
1575 2012-01-03 [colin]      3.8.0cvs10
1576
1577         * src/gtk/gtkcmctree.c
1578                 Revert previous patch, it's buggy on headers
1579
1580 2012-01-03 [colin]      3.8.0cvs9
1581
1582         * src/gtk/gtkcmctree.c
1583                 Fix bug #2566, 'wrapped Subject not bounded'
1584
1585 2011-12-29 [pawel]      3.8.0cvs8
1586
1587         * src/compose.c
1588         * src/compose.h
1589         * src/main.c
1590         * src/mimeview.c
1591                 Make forwarding selected attachment possible from
1592                 mimeview's context menu
1593                 Fixex bug #2047 'forward attachments'
1594
1595 2011-12-28 [paul]       3.8.0cvs7
1596
1597         * src/prefs_account.c
1598                 show 'Generate X-Mailer header' option on new IMAP account creation dialogue
1599
1600 2011-12-28 [colin]      3.8.0cvs6
1601
1602         * src/mimeview.c
1603                 Fix fix
1604
1605 2011-12-28 [colin]      3.8.0cvs5
1606
1607         * src/mimeview.c
1608                 Fix GTK+2.16 build (w32)
1609
1610 2011-12-18 [mir]        3.8.0cvs4
1611
1612         * src/ldapctrl.c
1613             Fix bug in search criteria when doing a
1614             complete directory search using '*'
1615
1616 2011-12-16 [mir]        3.8.0cvs3
1617
1618         * src/Makefile.am
1619             Added forgotten replied_and_forwarded.xpm to EXTRA_DIST
1620
1621 2011-12-16 [wwp]        3.8.0cvs2
1622
1623         * src/procmsg.c
1624         * src/stock_pixmap.c
1625         * src/stock_pixmap.h
1626         * src/summaryview.c
1627         * src/gtk/icon_legend.c
1628         * src/pixmaps/replied_and_forwarded.xpm
1629           Make replied and forwarded status flags non exclusive.
1630           Introduce a new message state (and relevant icon in message list)
1631           where both the replied and forwarded flags are set.
1632
1633 2011-12-16 [paul]       3.8.0cvs1
1634
1635         * tools/claws.i18n.status.pl
1636                 update id to id_ID
1637
1638 2011-12-16 [paul]       3.8.0
1639         * NEWS
1640         * README
1641         * RELEASE_NOTES 
1642                 3.8.0 unleashed!                
1643
1644 2011-12-16 [paul]       3.7.10cvs113
1645
1646         * configure.ac
1647         * po/cs.po
1648         * po/es.po
1649         * po/fr.po
1650         * po/hu.po
1651         * po/id.po **REMOVED**
1652         * po/id_ID.po **ADDED**
1653         * po/pt_BR.po
1654         * po/ru.po
1655         * po/sk.po
1656         * po/uk.po
1657                 updates
1658
1659 2011-12-09 [pawel]      3.7.10cvs112
1660
1661         * src/summaryview.c
1662         * src/gtk/quicksearch.c
1663         * src/gtk/quicksearch.h
1664                 Invalidate quicksearch root folder when removed
1665                 Fixes bug #2560 'crash when unsubscribing newsgroup and
1666                 having active search field'
1667
1668 2011-12-08 [pawel]      3.7.10cvs111
1669
1670         * src/mimeview.c
1671                 Better fix for cvs94
1672
1673 2011-12-08 [wwp]        3.7.10cvs110
1674
1675         * src/compose.c
1676         Make "From" widget set independant from recipient lists below,
1677         so that it doesn't scroll when several recipients headers
1678         are added and eventually are scrolling the view.
1679         Path by Christian Hesse <mail@earthworm.de>.
1680         Fixes bug #2481 'do not scroll "from" dropdown list and sender
1681         address'.
1682
1683 2011-12-02 [paul]       3.7.10cvs109
1684
1685         * src/mainwindow.c
1686         * src/messageview.c
1687                 consistent label style
1688
1689 2011-11-29 [wwp]        3.7.10cvs108
1690
1691         * src/plugins/trayicon/libeggtrayicon/.cvsignore
1692         More generated stuff to ignore.
1693
1694 2011-11-29 [wwp]        3.7.10cvs107
1695
1696         * src/prefs_folder_item.c
1697         Fix CLAWS_TIP_DECL (undefined).
1698
1699 2011-11-28 [pawel]      3.7.10cvs106
1700
1701         * src/addrbook.c
1702         * src/addrbook.h
1703         * src/addressbook.c
1704                 Fix bug #2177 'addrbook/addrbook-00000?.xml is not deleted
1705                 after removing the address book in the GUI'
1706
1707 2011-11-26 [pawel]      3.7.10cvs105
1708
1709         * src/folder.c
1710                 Fix bug #2505 'tagsdb becomes polluted with old folder entries'
1711
1712 2011-11-25 [colin]      3.7.10cvs104
1713
1714         * src/imap_gtk.c
1715         * src/mh_gtk.c
1716                 Warning fixes
1717
1718 2011-11-24 [pawel]      3.7.10cvs103
1719
1720         * src/prefs_filtering.c
1721                 Complete cvs102, forgot to commit this
1722
1723 2011-11-24 [pawel]      3.7.10cvs102
1724
1725         * src/account.c
1726         * src/filtering.c
1727         * src/filtering.h
1728         * src/imap_gtk.c
1729         * src/mh_gtk.c
1730         * src/prefs_actions.c
1731         * src/prefs_actions.h
1732                 Implement actions updating on folder/account rename
1733                 This fixes bug #2543 'filter actions in actionsrc not
1734                 updated upon account renaming'
1735
1736 2011-11-24 [wwp]        3.7.10cvs101
1737
1738         * src/gtk/gtkcmctree.c
1739                 Remove irrelevant cairo directive (thanks to Hanno).
1740
1741 2011-11-23 [wwp]        3.7.10cvs100
1742
1743         * src/gtk/gtkcmctree.c
1744                 Make arrows in gtkcmctree's less big (get rid of the outlining),
1745                 patch by Hanno Meyer-Thurow (h.mth@web.de), with few adaptations in offsets/sizes
1746                 calculation.
1747
1748 2011-11-22 [colin]      3.7.10cvs99
1749
1750         * src/account.c
1751         * src/prefs_filtering.c
1752         * src/prefs_filtering.h
1753                 Partly revert 3.7.10cvs97 (bug #2404, bug #2406):
1754                 The existing functions should do the job as well
1755                 if not better, as they take into account the
1756                 separator.
1757
1758 2011-11-21 [pawel]      3.7.10cvs98
1759
1760         * src/prefs_account.c
1761                 Fix bug #2116 'Rip spaces off server names in account
1762                 configuration'
1763                 g_strstrip() domain names to be sure they are valid
1764
1765 2011-11-21 [pawel]      3.7.10cvs97
1766
1767         * src/account.c
1768         * src/prefs_filtering.c
1769         * src/prefs_filtering.h
1770                 Fix bug #2404 'matcherrc updates upon account renaming'
1771                 Fix bug #2406 'some part of accountrc not updated upon
1772                 account rename'
1773                 Renaming account cause changing of it's root folder prefix
1774                 from #<type>/<old_name> to #<type>/<new_name> so every
1775                 path directing to it must be altered. Fix paths in account
1776                 preferences, global processing and filtering rules, folder
1777                 processing rules upon rename
1778
1779 2011-11-20 [pawel]      3.7.10cvs96
1780
1781         * src/filtering.c
1782         * src/filtering.h
1783         * src/prefs_actions.c
1784                 Fix bug #1489 'Filter action mark_as_read inoperative
1785                 following move action'
1786                 Sort actions lists to have proper order of execution
1787
1788 2011-11-20 [pawel]      3.7.10cvs95
1789
1790         * src/prefs_actions.c
1791         * src/prefs_filtering.c
1792         * src/prefs_template.c
1793                 Fix bug #1870 'arrow scrolling in filters'
1794                 Allow arrow scrolling in dialogs with list view widgets
1795                 plus couple fixes of issues I found along the way
1796
1797 2011-11-19 [pawel]      3.7.10cvs94
1798
1799         * src/mimeview.c
1800                 Don't highlight icons on right-click, they are not
1801                 selected and other part is shown which is confusing
1802
1803 2011-11-19 [mones]      3.7.10cvs93
1804
1805         * manual/advanced.xml
1806                 Fix manual build
1807
1808 2011-11-19 [mones]      3.7.10cvs92
1809
1810         * manual/advanced.xml
1811         * manual/es/advanced.xml
1812                 Document undocumented hidden option 'zero_replacement_char'
1813                 Synchronize Spanish manual with English version
1814
1815 2011-11-19 [pawel]      3.7.10cvs91
1816
1817         * src/mainwindow.c
1818         * src/messageview.c
1819         * src/prefs_common.c
1820         * src/prefs_common.h
1821         * src/summaryview.c
1822         * src/textview.c
1823         * src/textview.h
1824                 Fix bug #2377 'Show All Headers - make change persistent
1825                 between sessions'
1826
1827 2011-11-19 [pawel]      3.7.10cvs90
1828
1829         * src/folder.c
1830         * src/folder.h
1831         * src/folder_item_prefs.c
1832         * src/folderview.c
1833         * src/mainwindow.c
1834         * src/mainwindow.h
1835         * src/summaryview.c
1836         * src/summaryview.h
1837         * src/gtk/authors.h
1838                 Fix bug #1563 'Folder view: show complete threads if they
1839                 contain unread messages'
1840                 Add option to show only threads with unread messages
1841                 initial patch by Paul Ollis, my small additions:
1842                 - when checking thread for unread finish on first unread
1843                 - make thread options unavailable when threading is off
1844                 - hide_unread_msgs and hide_unread_threads are mutually
1845                   exclusive options, set menus sensitivity accordingly
1846                 - set folder item icon type similiar to hide_unread_msgs
1847
1848 2011-11-19 [colin]      3.7.10cvs89
1849
1850         * src/procheader.c
1851                 Constness fix
1852
1853 2011-11-18 [pawel]      3.7.10cvs88
1854
1855         * src/compose.c
1856         * src/mainwindow.c
1857         * src/mimeview.c
1858         * src/mimeview.h
1859         * src/prefs_common.c
1860         * src/prefs_common.h
1861                 Fix bug #2408 'Some UI elements are not persistent
1862                 between sessions'
1863                 Remember size of main window, compose notebook, mimeview
1864                 tree widgets between claws-mail runs. Compose window
1865                 size saving was already done in cvs74
1866
1867 2011-11-18 [mones]      3.7.10cvs87
1868
1869         * src/compose.c
1870         * src/procheader.c
1871         * src/procheader.h
1872                 Fixes bug #2509, "manually added headers are lost unless
1873                 mail is sent inmediately"
1874
1875 2011-11-17 [pawel]      3.7.10cvs86
1876
1877         * src/mimeview.c
1878                 Fix crasher reported in bug #2543
1879
1880 2011-11-13 [colin]      3.7.10cvs85
1881
1882         * src/compose.c
1883                 Make compose windows printable
1884
1885 2011-11-11 [colin]      3.7.10cvs84
1886
1887         * configure.ac
1888                 Fix build on Fedora 16. -lm was probably pulled by something
1889                 else previously.
1890
1891 2011-11-11 [pawel]      3.7.10cvs83
1892
1893         * src/mainwindow.c
1894         * src/mimeview.c
1895         * src/mimeview.h
1896         * src/summaryview.c
1897                 Port MimeView to GtkTreeView
1898
1899 2011-11-11 [colin]      3.7.10cvs82
1900
1901         * src/prefs_common.c
1902                 Use %x (The preferred date representation for the current locale
1903                 without the time)
1904
1905 2011-11-10 [paul]       3.7.10cvs81
1906
1907         * src/prefs_common.c
1908                 use european date format as default
1909
1910 2011-11-08 [pawel]      3.7.10cvs80
1911
1912         * src/summaryview.c
1913                 Fix bug #2422 'Toggle Message View w/ V crashes Claws'
1914                 Fix race condition - don't try to hide messageview while
1915                 being in the middle of message displaying routine.
1916
1917 2011-11-08 [colin]      3.7.10cvs79
1918
1919         * src/codeconv.c
1920                 Make sure we break line when we need to. Very probably
1921                 fixes bug #2310 "Crash when hitting Ctrl+R to reply to a 
1922                 particular mail"
1923
1924 2011-11-07 [pawel]      3.7.10cvs78
1925
1926         * src/imap_gtk.c
1927                 Fix bug #2493 'Subscription pull down should be alphabetized'
1928
1929 2011-11-07 [pawel]      3.7.10cvs77
1930
1931         * src/mimeview.c
1932         * src/textview.c
1933         * src/textview.h
1934                 Make Home & End keys work in textview
1935
1936 2011-11-06 [colin]      3.7.10cvs76
1937
1938         * src/mainwindow.c
1939                 Oops, some unwanted undo got commited.
1940
1941 2011-11-06 [colin]      3.7.10cvs75
1942
1943         * src/mainwindow.c
1944                 Don't iconify/deiconify. Instead, just show nothing
1945                 before asked to.
1946
1947 2011-11-06 [pawel]      3.7.10cvs74
1948
1949         * src/compose.c
1950                 Fix compose window size saving / restoring
1951
1952 2011-11-06 [pawel]      3.7.10cvs73
1953
1954         * src/mimeview.c
1955         * src/messageview.c
1956                 Optimize message displaying, in some conditions parts were
1957                 displayed twice causing flickering. For example first html
1958                 source and then rendering output from html plugin of the
1959                 same part.
1960
1961 2011-11-05 [wwp]        3.7.10cvs72
1962
1963         * src/gtk/gtkaspell.c
1964                 Fix compilation where 'null' is undefined (use NULL instead).
1965
1966 2011-11-05 [colin]      3.7.10cvs71
1967
1968         * src/gtk/gtkaspell.c
1969                 No need to show a backtrace if gtkaspell is null
1970
1971 2011-11-05 [pawel]      3.7.10cvs70
1972
1973         * src/gtk/gtkaspell.c
1974                 Fix crasher when spellchecking is not enabled
1975
1976 2011-11-02 [mones]      3.7.10cvs69
1977
1978         * doc/man/claws-mail.1
1979                 fixed hyphens (patch from Debian packaging)
1980                 fixed header to follow man style closely 
1981                 documented new option --compose-from-file
1982                 removed INSTALLATION section, doesn't belong to manpage
1983                 added ENVIRONMENT, COPYRIGHT and BUGS sections
1984                 expanded FILES section to include certs and autofaces dirs
1985                 expanded SEE ALSO section to include manual and plugins
1986
1987 2011-11-01 [colin]      3.7.10cvs68
1988
1989         * src/common/utils.c
1990                 Fix wrong debug stuff commited.
1991
1992 2011-11-01 [colin]      3.7.10cvs67
1993
1994         * src/compose.c
1995         * src/main.c
1996         * src/common/utils.c
1997         * src/gtk/gtkaspell.c
1998         * src/gtk/gtkaspell.h
1999                 Fix huge slowness induced by spellcheck "while typing"
2000                 during initial quote rewraps.
2001
2002 2011-10-31 [pawel]      3.7.10cvs66
2003
2004         * src/messageview.c
2005         * src/mimeview.c
2006         * src/mimeview.h
2007         * src/summaryview.c
2008                 Fix bug #2526 'When reading message in separate window,
2009                 n and p keys do not work'
2010                 - fix key event handling in messageview
2011                 - remove bindings for 'n' and 'p' keys in mimeview (next-part
2012                   and prev-part actions)
2013                 - instead add 'z' key for prev-part, we have 'a' key 
2014                   for next-part already
2015
2016 2011-10-31 [colin]      3.7.10cvs65
2017
2018         * src/common/defs.h
2019                 Fix build with GLib 2.31. Thanks to Charles A. Edwards
2020
2021 2011-10-31 [pawel]      3.7.10cvs64
2022
2023         * src/summaryview.c
2024         * src/gtk/gtkutils.c
2025                 Fix bug #2303 'Next unread message enables message view'
2026                 Don't show previously hidden message view in main window
2027                 when user reads messages in external window
2028
2029 2011-10-31 [paul]       3.7.10cvs63
2030
2031         * src/prefs_template.c
2032                 revert part of 3.7.10cvs60 - it was a subjective change, all widgets
2033                 fit at 540 here, for those where they don't the dialogue can be made
2034                 larger by the user
2035
2036 2011-10-31 [paul]       3.7.10cvs62
2037
2038         * src/compose.c
2039                 revert 3.7.10cvs61, these entries _should_ be editable
2040
2041 2011-10-30 [pawel]      3.7.10cvs61
2042
2043         * src/compose.c
2044                 Those entries should not be editable
2045
2046 2011-10-30 [pawel]      3.7.10cvs60
2047
2048         * src/prefs_template.c
2049                 - Dialog needs more height to fit all widgets
2050                 - Clear template contents on delete
2051
2052 2011-10-30 [pawel]      3.7.10cvs59
2053
2054         * src/prefs_folder_item.c
2055                 Update summaryview after changing folder prefs when needed
2056
2057 2011-10-30 [pawel]      3.7.10cvs58
2058
2059         * src/mimeview.c
2060                 Remove key-press-event blocking, it only
2061                 emits GLib-GObject warnings
2062
2063 2011-10-29 [colin]      3.7.10cvs57
2064
2065         * src/addr_compl.c
2066                 Fix focus of completion window with gnome shell
2067                 Fixes bug #2525, "Address completion window does not get
2068                 keyboard focus"
2069
2070 2011-10-29 [colin]      3.7.10cvs56
2071
2072         * src/folderview.c
2073                 Fix flicker on recursive quicksearch
2074
2075 2011-10-28 [colin]      3.7.10cvs55
2076
2077         * src/alertpanel.c
2078         * src/mainwindow.c
2079                 Fix a bit the focus problem on Gnome shell
2080
2081 2011-10-26 [mones]      3.7.10cvs54
2082
2083         * src/compose.c
2084                 Add missing accelerator
2085
2086 2011-10-25 [colin]      3.7.10cvs53
2087
2088         * src/gtk/gtkcmclist.c
2089         * src/gtk/gtkcmctree.c
2090                 Fix colors, fix warnings
2091
2092 2011-10-25 [colin]      3.7.10cvs52
2093
2094         * src/gtk/gtkcmclist.c
2095         * src/gtk/gtkcmctree.c
2096                 Fix focus things.
2097
2098 2011-10-25 [colin]      3.7.10cvs51
2099
2100         * src/stock_pixmap.c
2101                 Fix build with gtk + 2.20
2102
2103 2011-10-25 [colin]      3.7.10cvs50
2104
2105         * src/compose.c
2106         * src/messageview.c
2107         * src/procmsg.c
2108         * src/procmsg.h
2109                 Fix locking when sending a single message
2110
2111 2011-10-25 [colin]      3.7.10cvs49
2112
2113         * src/gtk/colorlabel.c
2114                 GDK_ => GDK_KEY
2115         * src/gtk/gtkcmclist.c
2116                 Make row height closer to what it was
2117
2118 2011-10-25 [colin]      3.7.10cvs48
2119
2120         * src/stock_pixmap.c
2121                 Always use cairo to draw
2122
2123 2011-10-25 [colin]      3.7.10cvs47
2124
2125         * src/mimeview.c
2126                 Fix bug #2529, 'crash in mimeview_start_drag after
2127                 deleting message'. Patch by Ricardo
2128
2129 2011-10-23 [colin]      3.7.10cvs46
2130
2131         * src/gtk/gtkcmclist.c
2132         * src/gtk/gtkcmclist.h
2133         * src/gtk/gtkcmctree.c
2134                 Draw CMClist with cairo too.
2135
2136 2011-10-23 [colin]      3.7.10cvs45
2137
2138         * src/gtk/gtkcmclist.h
2139                 Fix build (this was not meant to be commited)
2140
2141 2011-10-23 [colin]      3.7.10cvs44
2142
2143         * src/addressadd.c
2144         * src/addressbook.c
2145         * src/addressbook_foldersel.c
2146         * src/editgroup.c
2147         * src/foldersel.c
2148         * src/folderview.c
2149         * src/grouplistdialog.c
2150         * src/prefs_common.c
2151         * src/prefs_common.h
2152         * src/summaryview.c
2153         * src/gtk/gtkcmclist.c
2154         * src/gtk/gtkcmclist.h
2155         * src/gtk/gtkcmctree.c
2156         * src/gtk/gtkcmctree.h
2157         * src/gtk/gtksctree.c
2158                 Refactor some tree stuff (lots of code duplication there)
2159                 and switch to cairo for tree rendering.
2160
2161 2011-10-23 [holger]     3.7.10cvs43
2162
2163         * src/filtering.c
2164                 Don't issue a warning for designed behaviour of the stop rule.
2165                 Fixes bug #2520, 'Please remove verbose "No further processing after rule %s" message.'
2166
2167 2011-10-22 [colin]      3.7.10cvs42
2168
2169         * src/printing.c
2170         * src/gtk/gtkshruler.c
2171         * src/gtk/gtkutils.h
2172                 Fix GTK+2.16 build
2173
2174 2011-10-22 [colin]      3.7.10cvs41
2175
2176         * src/account.c
2177         * src/addr_compl.c
2178         * src/addrgather.c
2179         * src/compose.c
2180         * src/editldap.c
2181         * src/expldifdlg.c
2182         * src/folderview.c
2183         * src/grouplistdialog.c
2184         * src/headerview.c
2185         * src/importldif.c
2186         * src/main.c
2187         * src/mainwindow.c
2188         * src/mimeview.c
2189         * src/noticeview.c
2190         * src/prefs_account.c
2191         * src/prefs_actions.c
2192         * src/prefs_ext_prog.c
2193         * src/prefs_filtering.c
2194         * src/prefs_folder_item.c
2195         * src/prefs_image_viewer.c
2196         * src/prefs_logging.c
2197         * src/prefs_msg_colors.c
2198         * src/prefs_other.c
2199         * src/prefs_send.c
2200         * src/prefs_spelling.c
2201         * src/prefs_summaries.c
2202         * src/prefs_template.c
2203         * src/printing.c
2204         * src/quote_fmt.c
2205         * src/send_message.c
2206         * src/statusbar.c
2207         * src/summary_search.c
2208         * src/summaryview.c
2209         * src/wizard.c
2210         * src/gtk/gtkcmclist.c
2211         * src/gtk/gtkcmctree.c
2212         * src/gtk/gtkcmoptionmenu.c
2213         * src/gtk/gtksctree.c
2214         * src/gtk/gtkutils.c
2215         * src/gtk/gtkutils.h
2216         * src/gtk/gtkvscrollbutton.c
2217         * src/gtk/inputdialog.c
2218         * src/gtk/pluginwindow.c
2219         * src/gtk/quicksearch.c
2220         * src/gtk/spell_entry.c
2221         * src/plugins/bogofilter/bogofilter_gtk.c
2222         * src/plugins/dillo_viewer/dillo_prefs.c
2223         * src/plugins/pgpcore/prefs_gpg.c
2224         * src/plugins/spamassassin/spamassassin_gtk.c
2225         * src/plugins/trayicon/trayicon.c
2226         * src/plugins/trayicon/trayicon_prefs.c
2227                 Remove all possible #if GTK_CHECK_VERSION() checks,
2228                 and make Claws build with GTK+2.16 (untested right
2229                 now), as the Gpg4Win project uses GTK+2.16 currently.
2230
2231 2011-10-22 [colin]      3.7.10cvs40
2232
2233         * src/gtk/gtkutils.h
2234         * configure.ac
2235                 Fix (hopefully) build with GTK+ 2.18.
2236
2237 2011-10-20 [paul]       3.7.10cvs39
2238
2239         * AUTHORS
2240         * src/ldif.c
2241         * src/gtk/authors.h
2242                 fix bug 2479, 'LDIF address book import matches tags case sensitive'
2243                 Patch by Bodo Graumann <mail@bodograumann.de>
2244
2245 2011-10-20 [mones]      3.7.10cvs38
2246
2247         * po/fr.po
2248         * src/common/defs.h
2249                 Fix references to old dotsrc mailing lists
2250
2251 2011-10-19 [mones]      3.7.10cvs37
2252
2253         * src/prefs_msg_colors.c
2254                 Fix Ok/Cancel buttons in color selector of preferences
2255
2256 2011-10-17 [colin]      3.7.10cvs36
2257
2258         * src/gtk/gtkshruler.c
2259                 (Probably) fix GTK+ <= 2.22
2260
2261 2011-10-17 [colin]      3.7.10cvs35
2262
2263         * src/gtk/gtkshruler.c
2264                 Fix GTK+2.22 build
2265
2266 2011-10-17 [mones]      3.7.10cvs34
2267
2268         * src/addrbook.c
2269         * src/exportldif.c
2270         * src/jpilot.c
2271         * src/mutt.c
2272         * src/pine.c
2273         * src/procmsg.c
2274         * src/vcard.c
2275                 Fix potential out-of-buffer writes
2276
2277 2011-10-17 [mones]      3.7.10cvs33
2278
2279         * src/main.c
2280                 Use just one g_print call per option; correct indentation
2281
2282 2011-10-17 [colin]      3.7.10cvs32
2283
2284         * src/compose.c
2285         * src/compose.h
2286         * src/gtk/Makefile.am
2287         * src/gtk/gtkshruler.c
2288         * src/gtk/gtkshruler.h
2289         * src/gtk/gtkunit.c
2290         * src/gtk/gtkunit.h
2291                 Reimplement ruler using the GTK widgets. Thanks
2292                 to Hanno for the initial patch.
2293
2294 2011-10-17 [colin]      3.7.10cvs31
2295
2296         * src/action.c
2297         * src/main.c
2298         * src/gtk/gtkutils.c
2299         * src/gtk/gtkutils.h
2300                 Undeprecate GIO/GdkCondition
2301
2302 2011-10-16 [mones]      3.7.10cvs30
2303
2304         * src/main.c
2305                 Add --compose-from-file option to open composition
2306                 window with the headers and body from a file; based
2307                 on Debian patch to fix http://bugs.debian.org/544868
2308
2309 2011-10-15 [mones]      3.7.10cvs29
2310
2311         * manual/advanced.xml
2312                 Document new summary_from_show hidden preference
2313
2314 2011-10-15 [paul]       3.7.10cvs28
2315
2316         * src/compose.c
2317                 compose_create_tags() - fix misplaced 'int i'
2318                 compose_entry_mark_default_to() - fix To field highlighting
2319
2320 2011-10-09 [colin]      3.7.10cvs27
2321
2322         * src/addr_compl.c
2323                 Fix address completion
2324
2325 2011-10-07 [colin]      3.7.10cvs26
2326
2327         * src/prefs_filtering_action.c
2328         * src/gtk/gtkutils.h
2329                 Fix build with GTK+2.20
2330
2331 2011-10-07 [colin]      3.7.10cvs25
2332
2333         * src/gtk/Makefile.am
2334         * src/gtk/gdkkeysyms-new.h
2335         * src/gtk/gtkutils.h
2336                 Copy the new GDK_KEY_* definitions for older GTKs
2337
2338 2011-10-07 [colin]      3.7.10cvs24
2339
2340         * configure.ac
2341                 Fix typos (thanks to Hanno)
2342
2343 2011-10-07 [colin]      3.7.10cvs23
2344
2345         * src/compose.c
2346         * src/gtk/gtkshruler.c
2347         * src/gtk/gtkshruler.h
2348                 Disable ruler starting from 2.24.
2349
2350 2011-10-07 [colin]      3.7.10cvs22
2351
2352         * configure.ac
2353         * src/messageview.c
2354         * src/gtk/Makefile.am
2355                 GTK2 build fix
2356
2357 2011-10-07 [colin]      3.7.10cvs21
2358
2359         * configure.ac
2360         * src/action.c
2361         * src/addr_compl.c
2362         * src/addrgather.c
2363         * src/compose.c
2364         * src/compose.h
2365         * src/editldap.c
2366         * src/mainwindow.c
2367         * src/message_search.c
2368         * src/mimeview.c
2369         * src/mimeview.h
2370         * src/prefs_account.c
2371         * src/prefs_compose_writing.c
2372         * src/prefs_filtering_action.c
2373         * src/prefs_folder_item.c
2374         * src/prefs_logging.c
2375         * src/prefs_matcher.c
2376         * src/prefs_message.c
2377         * src/prefs_other.c
2378         * src/prefs_receive.c
2379         * src/prefs_summaries.c
2380         * src/prefs_wrapping.c
2381         * src/printing.c
2382         * src/ssl_manager.c
2383         * src/statusbar.c
2384         * src/stock_pixmap.c
2385         * src/summary_search.c
2386         * src/textview.c
2387         * src/gtk/Makefile.am
2388         * src/gtk/colorlabel.c
2389         * src/gtk/gtkutils.c
2390         * src/gtk/gtkutils.h
2391         * src/gtk/logwindow.c
2392         * src/gtk/menu.c
2393         * src/gtk/menu.h
2394         * src/gtk/quicksearch.c
2395         * src/gtk/spell_entry.c
2396         * src/plugins/bogofilter/bogofilter_gtk.c
2397         * src/plugins/dillo_viewer/dillo_viewer.c
2398         * src/plugins/pgpcore/prefs_gpg.c
2399         * src/plugins/spamassassin/spamassassin_gtk.c
2400                 Bug #2371, "Port to GTK+ 3.0". Third patch from Hanno, starting
2401                 the real job. GtkCMOptionMenu and GTKHSRuler disabled, should be
2402                 ported (especially GtkCMOptionMenu)
2403
2404 2011-10-07 [colin]      3.7.10cvs20
2405
2406         * src/account.c
2407         * src/action.c
2408         * src/addr_compl.c
2409         * src/addrcustomattr.c
2410         * src/addrduplicates.c
2411         * src/addressadd.c
2412         * src/addressbook.c
2413         * src/addressbook_foldersel.c
2414         * src/addrgather.c
2415         * src/alertpanel.c
2416         * src/browseldap.c
2417         * src/compose.c
2418         * src/editaddress.c
2419         * src/editaddress_other_attributes_ldap.c
2420         * src/editbook.c
2421         * src/editgroup.c
2422         * src/editjpilot.c
2423         * src/editldap.c
2424         * src/editldap_basedn.c
2425         * src/edittags.c
2426         * src/editvcard.c
2427         * src/exphtmldlg.c
2428         * src/expldifdlg.c
2429         * src/export.c
2430         * src/foldersel.c
2431         * src/folderview.c
2432         * src/grouplistdialog.c
2433         * src/import.c
2434         * src/importldif.c
2435         * src/importmutt.c
2436         * src/importpine.c
2437         * src/mainwindow.c
2438         * src/message_search.c
2439         * src/messageview.c
2440         * src/mimeview.c
2441         * src/prefs_actions.c
2442         * src/prefs_customheader.c
2443         * src/prefs_display_header.c
2444         * src/prefs_filtering.c
2445         * src/prefs_filtering_action.c
2446         * src/prefs_folder_column.c
2447         * src/prefs_matcher.c
2448         * src/prefs_msg_colors.c
2449         * src/prefs_other.c
2450         * src/prefs_summaries.c
2451         * src/prefs_summary_column.c
2452         * src/prefs_summary_open.c
2453         * src/prefs_template.c
2454         * src/prefs_toolbar.c
2455         * src/printing.c
2456         * src/sourcewindow.c
2457         * src/ssl_manager.c
2458         * src/summary_search.c
2459         * src/summaryview.c
2460         * src/textview.c
2461         * src/uri_opener.c
2462         * src/gtk/about.c
2463         * src/gtk/colorsel.c
2464         * src/gtk/combobox.c
2465         * src/gtk/description_window.c
2466         * src/gtk/foldersort.c
2467         * src/gtk/gtkaspell.c
2468         * src/gtk/gtkcmclist.c
2469         * src/gtk/gtkcmctree.c
2470         * src/gtk/gtkcmoptionmenu.c
2471         * src/gtk/gtkutils.c
2472         * src/gtk/icon_legend.c
2473         * src/gtk/inputdialog.c
2474         * src/gtk/logwindow.c
2475         * src/gtk/pluginwindow.c
2476         * src/gtk/prefswindow.c
2477         * src/gtk/quicksearch.c
2478         * src/plugins/pgpcore/passphrase.c
2479         * src/plugins/pgpcore/select-keys.c
2480                 Bug #2371, "Port to GTK+ 3.0". Monster-patch by Hanno Meyer-Thurow
2481                 to replace GDK_* by GDK_KEY_*.
2482
2483 2011-10-07 [colin]      3.7.10cvs19
2484
2485         * AUTHORS
2486         * src/account.c
2487         * src/action.c
2488         * src/addr_compl.c
2489         * src/addressbook.c
2490         * src/alertpanel.c
2491         * src/compose.c
2492         * src/edittags.c
2493         * src/folderview.c
2494         * src/grouplistdialog.c
2495         * src/image_viewer.c
2496         * src/mainwindow.c
2497         * src/mimeview.c
2498         * src/noticeview.c
2499         * src/prefs_filtering_action.c
2500         * src/prefs_folder_column.c
2501         * src/prefs_msg_colors.c
2502         * src/prefs_summary_column.c
2503         * src/prefs_toolbar.c
2504         * src/printing.c
2505         * src/stock_pixmap.c
2506         * src/summaryview.c
2507         * src/textview.c
2508         * src/undo.c
2509         * src/wizard.c
2510         * src/gtk/about.c
2511         * src/gtk/authors.h
2512         * src/gtk/colorlabel.c
2513         * src/gtk/colorsel.c
2514         * src/gtk/gtkcmclist.c
2515         * src/gtk/gtkcmctree.c
2516         * src/gtk/gtkcmoptionmenu.c
2517         * src/gtk/gtksctree.c
2518         * src/gtk/gtkutils.c
2519         * src/gtk/gtkvscrollbutton.c
2520         * src/gtk/inputdialog.c
2521         * src/gtk/logwindow.c
2522         * src/gtk/menu.c
2523         * src/gtk/prefswindow.c
2524         * src/gtk/progressdialog.c
2525         * src/plugins/pgpcore/passphrase.c
2526         * src/plugins/trayicon/trayicon.c
2527                 Bug #2371, "Port to GTK+ 3.0": Use accessor functions.
2528                 Patch by Hanno Thurow-Meyer, many thanks to him !
2529
2530 2011-09-20 [colin]      3.7.10cvs18
2531
2532         * src/common/ssl.c
2533                 Fix bug #2502, 'gnutls_transport_set_lowat removed in
2534                 gnutls 3.0.3'
2535
2536 2011-09-18 [colin]      3.7.10cvs17
2537
2538         * src/news.c
2539                 Fix segfault when connection fails
2540
2541 2011-09-03 [colin]      3.7.10cvs16
2542
2543         * src/common/ssl.c
2544                 Use NORMAL instead of EXPORT priorities.
2545
2546 2011-09-02 [colin]      3.7.10cvs15
2547
2548         * configure.ac
2549         * src/common/ssl.c
2550                 Linking against gcrypt explicitely in order to call
2551                 gcry_control() for mutex setup isn't necessary anymore
2552                 starting from gnuTLS 2.11.
2553
2554 2011-08-31 [colin]      3.7.10cvs14
2555
2556         * src/plugins/pgpinline/pgpinline.c
2557         * src/plugins/pgpmime/pgpmime.c
2558                 Fix bug #2431, "Major memory leak in PGP message handling".
2559
2560 2011-08-31 [colin]      3.7.10cvs13
2561
2562         * AUTHORS
2563         * src/gtk/authors.h
2564         * src/mainwindow.c
2565         * src/messageview.c
2566         * src/gtk/authors.h
2567                 Apply Steve Rader's patch from bug #2388, "Add 
2568                 message view scrolling menu items"
2569
2570 2011-08-30 [colin]      3.7.10cvs12
2571
2572         * src/gtk/prefswindow.c
2573                 Fix layout issues (i.e. on SSL page if changing account
2574                 type prior to visiting it).
2575
2576 2011-08-30 [colin]      3.7.10cvs11
2577
2578         * configure.ac
2579         * src/common/ssl.c
2580                 Don't use deprecated functions for GnuTLS priorities.
2581                 Require GnuTLS 2.2 that is the first version with the
2582                 new function.
2583
2584 2011-08-30 [colin]      3.7.10cvs10
2585
2586         * src/common/socket.c
2587         * src/common/ssl.c
2588                 Long-term fix for bug #2402, "GnuTLS change breaks socket
2589                 communication", as per http://savannah.gnu.org/support/?107660
2590
2591 2011-08-30 [colin]      3.7.10cvs9
2592
2593         * src/etpan/imap-thread.c
2594         * src/etpan/nntp-thread.c
2595                 Remove dead openSSL code
2596
2597 2011-08-30 [colin]      3.7.10cvs8
2598
2599         * src/ssl_manager.c
2600         * src/common/ssl.c
2601         * src/common/ssl_certificate.c
2602         * src/common/ssl_certificate.h
2603         * src/etpan/imap-thread.c
2604         * src/etpan/nntp-thread.c
2605                 Fix bug #2127, "SSL cert check uses canonical name instead of
2606                 specified name"
2607
2608 2011-08-29 [colin]      3.7.10cvs7
2609
2610         * src/prefs_account.c
2611                 Fix X-Mailer option not appearing on IMAP
2612
2613 2011-08-29 [colin]      3.7.10cvs6
2614
2615         * src/plugins/pgpcore/Makefile.am
2616         * src/plugins/pgpinline/Makefile.am
2617         * src/plugins/pgpmime/Makefile.am
2618         * src/plugins/smime/Makefile.am
2619                 Windows build fix:
2620                 libtool: link: require no space between `-L' and `.'
2621
2622 2011-08-29 [colin]      3.7.10cvs5
2623
2624         * src/account.c
2625         * src/compose.c
2626         * src/prefs_account.c
2627         * src/prefs_account.h
2628                 Revert cvs4 which is rather illogical and instead
2629                 use Fabian's patch from bug #2471
2630
2631 2011-08-29 [colin]      3.7.10cvs4
2632
2633         * src/compose.c
2634                 Don't insert custom headers that have empty values.
2635                 Allows not inserting X-Mailer if it's set to nothing.
2636                 Fixes bug #2471, "Make setting an X-Mailer header optional".
2637
2638 2011-08-29 [colin]      3.7.10cvs3
2639
2640         * src/image_viewer.c
2641         * src/textview.c
2642         * src/gtk/gtkutils.c
2643         * src/gtk/gtkutils.h
2644                 Handle EXIF orientation in images (both in textview's
2645                 preview and image viewer)
2646
2647 2011-08-28 [paul]       3.7.10cvs2
2648
2649         * src/prefs_common.c
2650         * src/prefs_common.h
2651         * src/summaryview.c
2652                 add new hidden option to control the display in the From
2653                 column in the Message List: 0 (default): show name,
2654                 1: show address, 2: show name + address
2655
2656 2011-08-27 [paul]       3.7.10cvs1
2657
2658         * po/POTFILES.in
2659         * src/common/ssl_certificate.c
2660         * src/etpan/imap-thread.c
2661         * src/etpan/nntp-thread.c
2662                 offer up some missing log_error() strings to translators
2663
2664 2011-08-27 [paul]       3.7.10
2665         * NEWS
2666         * README
2667         * RELEASE_NOTES 
2668                 3.7.10 unleashed!               
2669
2670 2011-08-27 [paul]       3.7.9cvs52
2671
2672         * po/cs.po
2673         * po/fr.po
2674         * po/hu.po
2675         * po/lt.po
2676         * po/pt_BR.po
2677         * po/sk.po
2678                 updated by David Vachulka, wwp, Pader Rezso, Mindaugas
2679                 Baranauskas, Frederico Goncalves Guimaraes, and Slavko
2680
2681 2011-08-27 [mones]      3.7.9cvs51
2682
2683         * claws-mail.desktop
2684                 Include generic name and comment translations
2685                 Thanks to all the people on the translators ML!
2686
2687 2011-08-23 [paul]       3.7.9cvs50
2688
2689         * src/common/ssl.c
2690                 probable/possible fix/workaround for bug 2402,
2691                 'can't download message from pop3 server'
2692
2693 2011-08-18 [paul]       3.7.9cvs49
2694
2695         * manual/handling.xml
2696                 fix typos. thanks to vilpan
2697
2698 2011-08-17 [paul]       3.7.9cvs48
2699
2700         * tools/claws.i18n.status.pl
2701                 add Mindaugas Baranauskas (Lithuanian)
2702
2703 2011-08-14 [mir]        3.7.9cvs47
2704
2705         * src/news.c
2706         * src/etpan/nntp-thread.c
2707                 Fix bug 2418. Patch provided by Sébastien Bigaret with
2708                 some minor contribution by me.
2709
2710 2011-08-13 [mir]        3.7.9cvs46
2711
2712         * src/etpan/nntp-thread.c
2713                 Fix bug when NNTP server sends authentication warning
2714                 as part of the connection session. Privously etpan would
2715                 bail out for any return code other than NEWSNNTP_NO_ERROR
2716                 but as early as the connection session a return code like
2717                 NEWSNNTP_WARNING_REQUEST_AUTHORIZATION_USERNAME and
2718                 NEWSNNTP_WARNING_REQUEST_AUTHORIZATION_PASSWORD should not
2719                 be considered as an error.
2720
2721 2011-08-12 [paul]       3.7.9cvs45
2722
2723         * src/mimeview.c
2724                 3.7.9cvs43 mistakenly dropped off the info
2725                 about the mime part from the tooltip
2726
2727 2011-08-12 [wwp]        3.7.9cvs44
2728
2729         * src/gtk/quicksearch.c
2730          Fix duplicate key accel (thanks to Ra-Mones-Mones II).
2731
2732 2011-08-09 [paul]       3.7.9cvs43
2733
2734         * src/mimeview.c
2735                 fix bug 2420, 'Invalid markup in icon tooltip text after signature check'
2736
2737 2011-08-06 [paul]       3.7.9cvs42
2738
2739         * src/compose.c
2740                 fix cursor placement in Forward template
2741
2742 2011-08-06 [paul]       3.7.9cvs41
2743
2744         * src/gtk/description_window.c
2745                 fix bug 1963, 'Preferences Templates Information Window Focus loss'
2746
2747 2011-08-05 [holger]     3.7.9cvs40
2748
2749         * claws-mail.desktop
2750                 Revert 3.7.9cvs35 for now, it may be problematic
2751                 (see bug #2450)
2752
2753 2011-08-05 [paul]       3.7.9cvs39
2754
2755         * src/mainwindow.c
2756         * src/messageview.c
2757                 use 'Collapse quotes' rather than 'Fold quotes' on
2758                 labels, for consistency
2759         * src/toolbar.c
2760                 use 'Receive mail from account' rather than 'on account'
2761
2762 2011-07-30 [mir]        3.7.9cvs38
2763
2764         * src/etpan/Makefile.am
2765         * src/plugins/pgpcore/Makefile.am
2766         * src/plugins/pgpmime/Makefile.am
2767         * src/plugins/smime/Makefile.am
2768                 Fix broken build on Debian Sid. enchant.h cannot be
2769                 found unless $(ENCHANT_CFLAGS) and $(ENCHANT_LIBS) are
2770                 present in Makefile.am. Apparently enchant.h in older
2771                 versions were placed in /usr/include which is always
2772                 scanned be default.
2773
2774 2011-07-21 [mones]      3.7.9cvs37
2775
2776         * src/common/plugin.c
2777         * src/common/plugin.h
2778                 Make licences allowed for plugins more explicit and also
2779                 accept dual (or more) licences when properly formatted.
2780                 Doesn't require any change on current plugins.
2781
2782 2011-07-18 [mones]      3.7.9cvs36
2783
2784         * manual/advanced.xml
2785                 Document briefly tags feature.
2786         * manual/glossary.xml
2787                 Fix definition to avoid confussion with tags.
2788         * manual/es/advanced.xml
2789         * manual/es/glossary.xml
2790                 Synchronize Spanish translation with the above.
2791
2792 2011-07-07 [holger]     3.7.9cvs35
2793
2794         * claws-mail.desktop
2795                 Add indicator stuff to the desktop file
2796                 Taken from bug #2450
2797
2798 2011-07-06 [paul]       3.7.9cvs34
2799
2800         * src/edittags.c
2801                 fix English usage
2802
2803 2011-07-06 [mones]      3.7.9cvs33
2804
2805         * src/edittags.c
2806                 Do not create an empty tag name row in panel and
2807                 warn user about using a non-reserved tag instead
2808
2809 2011-07-05 [mones]      3.7.9cvs32
2810
2811         * src/imap.c
2812         * src/common/tags.c
2813         * src/common/tags.h
2814         * src/etpan/imap-thread.c
2815                 Make constants for reserved tags and use them
2816                 Removed also duplicate comparison while at it
2817
2818 2011-07-05 [paul]       3.7.9cvs31
2819
2820         * src/compose.c
2821                 when using a Compose template, only place the cursor
2822                 in the body when the cursor symbol, %cursor (%X), is used
2823
2824 2011-07-03 [paul]       3.7.9cvs30
2825
2826         * src/main.c
2827                 do main_window_popup(mainwin); on plugin load error, or
2828                 else the warning dialogue and mainwindow stays minimised
2829                 and hidden
2830
2831 2011-07-03 [paul]       3.7.9cvs29
2832
2833         * src/wizard.c
2834                 fix bug 2462, 'Building without GnuTLS support leads to a
2835                 failure in wizard.c'
2836
2837 2011-07-03 [paul]       3.7.9cvs28
2838
2839         * src/mainwindow.c
2840         * src/mainwindow.h
2841         * src/summaryview.c
2842                 fix bug #2461, 'popup menu in message list displays
2843                 'move to trash' and 'delete''.
2844                 Add a new sensitivity condition 'M_NOT_TRASH' and
2845                 remove the broken workaround for right-click in summaryview.c.
2846                 Fix broken main menu sensitivity for "Menu/Message/Move" in
2847                 News folder.
2848
2849 2011-06-21 [paul]       3.7.9cvs27
2850
2851         * src/mainwindow.c
2852                 revert 3.7.9cvs2, it does no good
2853
2854 2011-06-18 [mir]        3.7.9cvs26
2855
2856         * configure.ac
2857                 Fix autoconf warnings introduced in autoconf >= 2.64
2858
2859 2011-06-05 [paul]       3.7.9cvs25
2860
2861         * po/ca.po
2862         * po/cs.po
2863         * po/de.po
2864         * po/it.po
2865         * po/ja.po
2866         * po/pt_PT.po
2867         * po/sk.po
2868         * po/uk.po
2869                 fix strings where an informational message has been
2870                 wrongly entered into the translated string
2871         * src/toolbar.c
2872                 enable 'Trash' and 'Sender' to be translated based on
2873                 the context, e.g. as button text and as mail header
2874         * src/gtk/about.c
2875                 fix english in Info tab
2876
2877 2011-05-25 [colin]      3.7.9cvs24
2878
2879         * src/action.c
2880                 Fix bug #2439, "use bitwise operator for bitmask instead of
2881                 logical operator". Thanks to Nicolas Kaiser for the patch.
2882
2883 2011-05-18 [colin]      3.7.9cvs23
2884
2885         * src/news.c
2886                 Fix missing group selection before xover if the
2887                 connection was reset before.
2888
2889 2011-05-12 [colin]      3.7.9cvs22
2890
2891         * src/common/utils.c
2892                 Fix bug #2412, "Send account mail address in Message-ID
2893                 wrongly implemented". Patch by Fabian Keil.
2894
2895 2011-05-12 [mones]      3.7.9cvs21
2896
2897         * src/etpan/nntp-thread.c
2898                 Fix bug #2418 "NNTP authentication is broken"
2899
2900 2011-05-09 [pawel]      3.7.9cvs20
2901
2902         * src/mainwindow.c
2903         * src/prefs_folder_item.c
2904                 Small UI fixes
2905
2906 2011-05-05 [colin]      3.7.9cvs19
2907
2908         * src/imap.c
2909         * src/inc.c
2910         * src/news.c
2911         * src/send_message.c
2912                 Fix bug #2184, "Add account name information inside network log".
2913                 Initial patch by MSulchan Darmawan, expanded to other protocols.
2914                 This stuff is too much copy-pasted.
2915
2916
2917 2011-04-30 [colin]      3.7.9cvs18
2918
2919         * src/main.c
2920                 Fix bug #2414, 'Claws segfaults on startup with
2921                 notification plugin enabled". Thanks Christian
2922                 Faulhammer for the patch.
2923
2924 2011-04-27 [colin]      3.7.9cvs17
2925
2926         * src/codeconv.c
2927                 Make Windows' encoding CP1251 for ru_RU locale
2928                 Part of bug #2397, "Gtkhtml2 viewer ignores message encoding"
2929
2930 2011-04-24 [paul]       3.7.9cvs16
2931
2932         * manual/claws-mail-manual.xml
2933         * manual/de/claws-mail-manual.xml
2934         * manual/es/claws-mail-manual.xml
2935         * manual/fr/claws-mail-manual.xml
2936         * manual/it/claws-mail-manual.xml
2937                 update copyright year
2938
2939 2011-04-24 [paul]       3.7.9cvs15
2940
2941         * src/summaryview.c
2942                 fix bug #2353, 'Right-clicking on spam in order to delete
2943                 it causes it to show in message window'
2944
2945 2011-04-24 [paul]       3.7.9cvs14
2946
2947         * src/mainwindow.c
2948         * src/gtk/foldersort.c
2949         * src/gtk/foldersort.h
2950                 fix labelling, 'change folder order' to 'change mailbox order'
2951
2952 2011-04-23 [paul]       3.7.9cvs13
2953
2954         * configure.ac
2955                 fix bug #2409, 'Failed to compile under GCC 3.x : option
2956                  -Wno-pointer-sign badly set in configure.ac'. mistakenly
2957                 committed in 3.7.8cvs19 
2958
2959 2011-04-11 [paul]       3.7.9cvs12
2960
2961         * src/plugins/trayicon/trayicon.c
2962                 fix build bug: gtk_status_icon_set_title() is available
2963                 since gtk 2.18.x not 2.14.x
2964
2965 2011-04-11 [paul]       3.7.9cvs11
2966
2967         * po/hu.po
2968                 updated by Páder RezsÅ‘
2969
2970 2011-04-10 [colin]      3.7.9cvs10
2971
2972         * src/addr_compl.c
2973         * src/addressbook.c
2974         * src/compose.c
2975         * src/editaddress.c
2976         * src/editaddress_other_attributes_ldap.c
2977         * src/main.c
2978         * src/message_search.c
2979         * src/prefs_display_header.c
2980         * src/prefs_filtering_action.c
2981         * src/prefs_matcher.c
2982         * src/prefs_other.c
2983         * src/prefs_toolbar.c
2984         * src/summary_search.c
2985         * src/gtk/colorlabel.c
2986         * src/gtk/combobox.c
2987         * src/gtk/gtkcmoptionmenu.c
2988         * src/gtk/gtkshruler.c
2989         * src/gtk/gtkshruler.h
2990         * src/gtk/gtkutils.h
2991         * src/gtk/inputdialog.c
2992         * src/gtk/quicksearch.c
2993                 Revert the whole pile of crap introduced in
2994                 cvs9,8,7,4.
2995
2996 2011-04-10 [colin]      3.7.9cvs9
2997
2998         * src/compose.c
2999         * src/editaddress.c
3000         * src/editaddress_other_attributes_ldap.c
3001         * src/main.c
3002         * src/message_search.c
3003         * src/prefs_display_header.c
3004         * src/prefs_matcher.c
3005         * src/prefs_toolbar.c
3006         * src/summary_search.c
3007         * src/gtk/combobox.c
3008         * src/gtk/gtkutils.h
3009         * src/gtk/inputdialog.c
3010         * src/gtk/quicksearch.c
3011                 Finish fun with combo boxes. (hopefully)
3012
3013 2011-04-10 [colin]      3.7.9cvs8
3014
3015         * src/compose.c
3016         * src/prefs_filtering_action.c
3017         * src/gtk/combobox.c
3018         * src/gtk/gtkshruler.c
3019         * src/gtk/gtkshruler.h
3020                 More undeprecation. GTKSHRuler is #if'ed out. We can
3021                 still decide to maintain the old GtkRuler widget in-tree
3022                 if the lack of ruler in Compose window is too
3023                 annoying.
3024
3025 2011-04-10 [colin]      3.7.9cvs7
3026
3027         * src/addr_compl.c
3028         * src/addressbook.c
3029         * src/compose.c
3030         * src/editaddress_other_attributes_ldap.c
3031         * src/message_search.c
3032         * src/prefs_display_header.c
3033         * src/prefs_filtering_action.c
3034         * src/prefs_other.c
3035         * src/prefs_toolbar.c
3036         * src/summary_search.c
3037         * src/gtk/colorlabel.c
3038         * src/gtk/combobox.c
3039         * src/gtk/gtkcmoptionmenu.c
3040         * src/gtk/gtkutils.h
3041                 More comboboxtext undeprecation
3042
3043 2011-04-10 [colin]      3.7.9cvs6
3044
3045         * src/messageview.c
3046                 Fix it better.
3047
3048 2011-04-10 [colin]      3.7.9cvs5
3049
3050         * src/messageview.c
3051                 Fix age-old typo.
3052
3053 2011-04-10 [colin]      3.7.9cvs4
3054
3055         * src/compose.c
3056         * src/editaddress_other_attributes_ldap.c
3057         * src/message_search.c
3058         * src/prefs_display_header.c
3059         * src/prefs_filtering_action.c
3060         * src/prefs_other.c
3061         * src/prefs_toolbar.c
3062         * src/summary_search.c
3063         * src/gtk/combobox.c
3064         * src/gtk/gtkutils.h
3065                 gtk_combo_box_*_text() is deprecated, and
3066                 gtk_combo_box_text_*() is the new hotness.
3067
3068 2011-04-10 [colin]      3.7.9cvs3
3069
3070         * src/addr_compl.c
3071         * src/addressbook.c
3072         * src/browseldap.c
3073         * src/compose.c
3074         * src/folder.c
3075         * src/folderview.c
3076         * src/gtk/gtkvscrollbutton.c
3077         * src/gtk/gtkvscrollbutton.h
3078                 s/GtkFunction/GSourceFunc
3079
3080 2011-04-10 [colin]      3.7.9cvs2
3081
3082         * src/mainwindow.c
3083                 Use gtkut_window_popup() to work around a bug in Gnome Shell.
3084                 This is the patch from bug #2396, it should be innocuous even
3085                 if that's useless to do deiconify + present window...
3086
3087 2011-04-09 [paul]       3.7.9cvs1
3088
3089         * src/prefs_summaries.c
3090                 fix typo in string. (thanks, Brad!)
3091
3092 2011-04-09 [paul]       3.7.9
3093         * NEWS
3094         * README
3095         * RELEASE_NOTES 
3096                 3.7.9 unleashed!        
3097
3098 2011-04-09 [paul]       3.7.8cvs78
3099
3100         * po/cs.po
3101         * po/es.po
3102         * po/fi.po
3103         * po/fr.po
3104         * po/lt.po
3105         * po/pt_BR.po
3106         * po/sk.po
3107         * po/uk.po
3108                 updated by David Vachulka, Ricardo Mones, Flammie Pirinen,
3109                 wwp, Mindaugas Baranauskas, Frederico Goncalves Guimaraes,
3110                 Slavko, and Yarema
3111
3112 2011-04-09 [colin]      3.7.8cvs77
3113
3114         * src/gtk/filesel.c
3115                 Revert part of yesterday's patch. While gtk_file_chooser_set_current_name()
3116                 wants an UTF-8 string, gtk_file_chooser_set_current_folder() wants a glib-
3117                 encoding filename. Hooray for stupid.
3118
3119 2011-04-08 [colin]      3.7.8cvs76
3120
3121         * src/action.c
3122                 Fix action Stop: if child does not react to SIGTERM, it'll
3123                 probably start behaving when it'll get a SIGKILL on the user's
3124                 second press on Stop.
3125                 Fixes bug #2237, "User action makes Claws unresponsive".
3126
3127 2011-04-08 [colin]      3.7.8cvs75
3128
3129         * src/account.c
3130         * src/folder.c
3131         * src/folder.h
3132         * src/folder_item_prefs.c
3133         * src/folder_item_prefs.h
3134         * src/prefs_account.c
3135                 Fix bug #2382, "folderitemrc not updated when account
3136                 name is changed". Indeed, this wasn't done.
3137
3138 2011-04-08 [wwp]        3.7.8cvs74
3139
3140         * src/procmime.c
3141         Add support for quoted values (*="value").
3142         This commonly fixes a trailing quote appearing to filenames
3143         sent by iphone Mail (not sure if it's culprit at all, though).
3144
3145 2011-04-08 [colin]      3.7.8cvs73
3146
3147         * src/gtk/filesel.c
3148                 Fix bug #2393, "Crashes and rendering problems in the "Save as" menu 
3149                 caused by attachments with extended chars in the file name". Patch
3150                 derived from a patch bt Fabien Keil
3151
3152 2011-04-05 [wwp]        3.7.8cvs72
3153
3154         * src/compose.c
3155                 A debug string not to translate.
3156
3157 2011-04-03 [colin]      3.7.8cvs71
3158
3159         * src/common/utils.h
3160                 Fix bug #2394, "backtrace() crashes on FreeBSD"
3161                 That's not the first bug-report where internal
3162                 debug-only backtrace() crashes on FreeBSD.
3163
3164 2011-04-03 [colin]      3.7.8cvs70
3165
3166         * src/compose.c
3167                 Fix bug #2365 again, "Crash when auto-scrolling headers in
3168                 compose window".
3169                 Batch-mode compose windows (from filtering actions) shouldn't
3170                 try to access stuff after flushing events...
3171
3172 2011-03-31 [paul]       3.7.8cvs69
3173
3174         * INSTALL
3175                 update as gtk >= 2.10 now required
3176                 (because I'll never remember to do this later)
3177
3178 2011-03-26 [paul]       3.7.8cvs68
3179
3180         * src/messageview.c
3181                 fix separators in Go To menu
3182
3183 2011-03-20 [colin]      3.7.8cvs67
3184
3185         * configure.ac
3186                 Drop the *_DISABLE_DEPRECATED. We'll put them back
3187                 when we'll have time to handle them
3188
3189 2011-03-18 [paul]       3.7.8cvs66
3190
3191         * src/textview.c
3192                 make user-facing message more accurate -
3193                 'Network Log' not 'View Log'
3194
3195 2011-03-17 [wwp]        3.7.8cvs65
3196
3197         * po/fr.po
3198                 Fix a typo around plural form, as reported by
3199                 Yannick Palanque.
3200
3201 2011-03-15 [colin]      3.7.8cvs64
3202
3203         * AUTHORS
3204         * src/gtk/authors.h
3205         * src/main.c
3206                 Fix bug #2381, "Support for NetworkManager 0.9".
3207                 Patch by Mikhail Efremov
3208
3209 2011-03-04 [colin]      3.7.8cvs63
3210
3211         * src/mimeview.c
3212         * src/mimeview.h
3213                 Fix segfault on Windows
3214         * src/exporthtml.c
3215         * src/common/utils.c
3216         * src/common/w32_unistd.c
3217         * src/common/w32lib.h
3218                 Rationalize use of time_r() funcs (pthread do define them)
3219
3220 2011-03-02 [pawel]      3.7.8cvs62
3221
3222         * src/wizard.c
3223                 Re-implement widgets aligning, switch from GtkSizeGroup
3224                 to GtkTable - this should fix disappearing labels
3225
3226 2011-03-01 [pawel]      3.7.8cvs61
3227
3228         * src/wizard.c
3229                 Wizard GUI cleanups. Make it look and behave more
3230                 like account preferences.
3231
3232 2011-02-23 [colin]      3.7.8cvs60
3233
3234         * src/common/Makefile.am
3235                 Fix make dist
3236
3237 2011-02-23 [colin]      3.7.8cvs59
3238
3239         * src/Makefile.am
3240         * src/main.c
3241         * src/common/Makefile.am
3242         * src/common/plugin.c
3243         * src/common/valgrind.h
3244                 Fix bug #2369, "valgrind.h should NOT be part of claws-mail"
3245                 Use valgrind's own header.
3246
3247 2011-02-22 [colin]      3.7.8cvs58
3248
3249         * src/prefs_account.c
3250                 Fix bug #2367 (Win32): Disable "Always sign messages when replying to a
3251                 signed message" upon new installation. This is disturbing when PGP
3252                 plugins are loaded by default.
3253
3254 2011-02-16 [paul]       3.7.8cvs57
3255
3256         * src/*
3257                 update copyright headers throughout
3258
3259 2011-02-16 [paul]       3.7.8cvs56
3260
3261         * src/summaryview.c
3262                 use gettext plural form for "item selected"/"items selected"
3263
3264 2011-02-13 [colin]      3.7.8cvs55
3265
3266         * src/mimeview.c
3267         * src/mimeview.h
3268                 Fix bug #2361, "Claws crashes after PGP Check in separate
3269                 msg view". Don't let the cancel thread lie around after
3270                 the verification ended.
3271
3272 2011-02-13 [paul]       3.7.8cvs54
3273
3274         * po/lt.po
3275                 updated by Mindaugas Baranauskas
3276
3277 2011-02-11 [mones]      3.7.8cvs53
3278
3279         * manual/es/advanced.xml
3280                 Sync with English manual
3281         * src/imap.c
3282                 Fix remaining mismatched alloc/free from cppcheck
3283
3284 2011-02-10 [pawel]      3.7.8cvs52
3285
3286         * src/ldapupdate.c
3287                 Fix memleaks
3288
3289 2011-02-10 [pawel]      3.7.8cvs51
3290
3291         * src/prefs_toolbar.c
3292                 - set menus sensitivity in item type combo depending on
3293                   availability of actions / plugin hooks
3294                 - style fixes, spaces instead of tabs mostly
3295
3296 2011-02-10 [paul]       3.7.8cvs50
3297
3298         * src/prefs_account.c
3299                 move the 'send acc mail addr in msg-id" option to
3300                 the send page
3301
3302 2011-02-10 [paul]       3.7.8cvs49
3303
3304         * src/prefs_account.c
3305                 move the 'expunge immediately' option to a more
3306                 suitable page
3307
3308 2011-02-05 [pawel]      3.7.8cvs48
3309
3310         * manual/advanced.xml
3311                 Document new hidden pref
3312         * src/folder.c
3313                 Dont treat mimeparts referenced by others as
3314                 real attachments
3315         * src/mimeview.c
3316         * src/prefs_common.c
3317         * src/prefs_common.h
3318                 Add ability to hide inline attachments referenced
3319                 by other mimeparts in MimeView. To enable this
3320                 feature set show_inline_attachments=0 in your clawsrc
3321
3322 2011-01-25 [colin]      3.7.8cvs47
3323
3324         * src/matcher.c
3325                 Fix matcher body parsing: decode mails with our
3326                 MIME parser. This speeds up body search a bit as
3327                 binary attachments are not searched anymore, slows
3328                 down a bit full message searches, but not awfully.
3329         * src/summary_search.c
3330                 Use matcher API to search, in all cases (advanced search or
3331                 not). Also, fix little logic bugs related to combos history
3332         * src/common/utils.c
3333         * src/common/utils.h
3334         * src/procmime.c
3335         * src/procmime.h
3336                 Remove dead code, export functions needed by matcher.c
3337
3338 2011-01-25 [colin]      3.7.8cvs46
3339
3340         * src/compose.c
3341         * src/prefs_common.c
3342         * src/common/md5.c
3343         * src/common/ssl_certificate.c
3344                 Fix mismatched alloc/free (thanks to cppcheck)
3345
3346 2011-01-25 [colin]      3.7.8cvs45
3347
3348         * src/pop.c
3349                 Fix leak on error path
3350
3351 2011-01-23 [mones]      3.7.8cvs44
3352
3353         * manual/es/advanced.xml
3354                 Sync with English manual
3355
3356 2011-01-23 [paul]       3.7.8cvs43
3357
3358         * src/gtk/about.c
3359                 it's 2011, update copyright line
3360
3361 2011-01-23 [paul]       3.7.8cvs42
3362
3363         * manual/advanced.xml
3364         * src/prefs_common.c
3365         * src/prefs_common.h
3366         * src/textview.c
3367                 fix bug #2350, 'Make displaying localized date/time in
3368                 message view optional'.
3369                 This introduces a new hidden option (why do more?),
3370                 'msgview_date_format', which defaults to OFF, maintaining
3371                 the current and expected behaviour.
3372
3373 2011-01-21 [colin]      3.7.8cvs41
3374
3375         * src/procmime.c
3376                 Fix bug #2050, Clawsmail sends return receipt every seconds
3377                 We forgot to close the file when parsing 
3378                 disposition-notification fields, which made unlinking of the
3379                 corresponding emails in tempfolder/processing impossible in
3380                 Windows. Causing them to be re-fetched every time.
3381
3382 2011-01-21 [colin]      3.7.8cvs40
3383
3384         * claws-mail.desktop
3385                 Fix again bug #2346: We should have a %u parameter.
3386
3387 2011-01-21 [colin]      3.7.8cvs39
3388
3389         * src/plugins/spamassassin/spamassassin.c
3390                 Fix sa-learn when offline (its command line parsing is
3391                 space-dependant). Patch by Wolfgang Lorenz
3392
3393 2011-01-19 [pawel]      3.7.8cvs38
3394
3395         * claws-mail.desktop
3396                 Fix Bug 2346 'Please register x-handler-scheme
3397                  in .desktop file' patch by Laurent Bigonville
3398                 While I'm here update things to current
3399                 standards, fix desktop-file-validate warnings/errors
3400
3401 2011-01-18 [colin]      3.7.8cvs37
3402
3403         * src/common/smtp.c
3404                 Fix logic on SMTP AUTH: If the selected method isn't
3405                 available, say so instead of supposing it'll work.
3406                 Fixes bug #2039, 'SMTP AUTHENTICATION'
3407
3408 2011-01-15 [pawel]      3.7.8cvs36
3409
3410         * src/prefs_folder_item.c
3411                 Rework subject regexp simplify gui a bit, this give us better
3412                 options page layout (window with min width was too short to 
3413                 show all contents and thigs were unwieldy) and better preview
3414                 of regexp working/not working
3415
3416 2011-01-14 [pawel]      3.7.8cvs35
3417
3418         * src/textview.c
3419                 strncpy2() NULLify strings just fine, no need to be
3420                 extra "clever"
3421
3422 2011-01-14 [pawel]      3.7.8cvs34
3423
3424         * src/textview.c
3425                 Fix Bug #2165 'The date not localized in the message view'
3426                 Display Date header in messageview in the same way as in
3427                 summaryview by respecting date format set in preferences.
3428
3429 2011-01-06 [pawel]      3.7.8cvs33
3430
3431         * src/prefs_account.c
3432         * src/prefs_folder_item.c
3433         * src/prefs_quote.c
3434         * src/quote_fmt.c
3435                 Make quote templates widgets more compact
3436
3437 2011-01-06 [pawel]      3.7.8cvs32
3438
3439         * src/plugins/trayicon/trayicon.c
3440                 - fix logic bug which caused icon to be
3441                   always set no-mail status on plugin load
3442                 - force icon hide on plugin_done(), without
3443                   it empty space(?!) is left in tray under KDE3 and KDE4
3444
3445 2011-01-06 [colin]      3.7.8cvs31
3446
3447         * src/addrharvest.c
3448         * src/codeconv.c
3449         * src/codeconv.h
3450         * src/compose.c
3451         * src/news.c
3452         * src/procheader.c
3453         * src/procmime.c
3454         * src/unmime.c
3455         * src/unmime.h
3456                 Unmime headers differently whether they're addresses or not:
3457                 It's useless to quote things containing commas if it's in
3458                 subject, for example. (introduced in 3.7.8cvs26)
3459
3460 2011-01-06 [colin]      3.7.8cvs30
3461
3462         * src/gtk/gtkaspell.c
3463                 Complete previous patch
3464         * src/messageview.c
3465         * src/plugins/pgpinline/pgpinline.c
3466                 Coding style
3467
3468 2011-01-06 [paul]       3.7.8cvs29
3469
3470         * AUTHORS
3471         * configure.ac
3472         * po/lt.po
3473         * src/gtk/authors.h
3474                 add Lithuanian translation (approx. 65% complete)
3475                 submitted by Mindaugas Baranauskas
3476
3477 2011-01-06 [pawel]      3.7.8cvs28
3478
3479         * src/export.c
3480         * src/import.c
3481         * src/messageview.c
3482         * src/prefs_actions.c
3483         * src/procmime.c
3484         * src/gtk/gtkaspell.c
3485         * src/plugins/pgpinline/pgpinline.c
3486         * src/plugins/pgpmime/pgpmime.c
3487         * src/plugins/smime/smime.c
3488                 Fix memory/file descriptors leaks
3489
3490 2011-01-06 [paul]       3.7.8cvs27
3491
3492         * src/plugins/pgpcore/sgpgme.c
3493                 fix bug #2322, 'GPG Full info: showing subkey
3494                 ID instead of primary key fingerprint'
3495                 Patch by Sébastien Bigaret.
3496
3497 2011-01-03 [colin]      3.7.8cvs26
3498
3499         * src/unmime.c
3500                 Better quote-checking when unmim-ing headers
3501                 that may have comas.
3502
3503 2011-01-03 [colin]      3.7.8cvs25
3504
3505         * src/unmime.c
3506                 Fix bug #2299, "Incorrect handling of quoted printable coma
3507                 in headers". As this is really painful to fix by switching
3508                 the whole stuff to a list of headers tokens, we workaround
3509                 the problem by adding quotes around the encoded-word (making
3510                 it a quoted-string which continuity is already handled).
3511
3512 2011-01-03 [colin]      3.7.8cvs24
3513
3514         * src/procheader.c
3515                 Remove dead code
3516
3517 2010-12-23 [colin]      3.7.8cvs23
3518
3519         * src/compose.c
3520                 Finish fixing bug #2203: When forwarding (inline) and there
3521                 are some text/* parts with no name, set them a name and
3522                 set their disposition to attachment, so that recipients with
3523                 MUAs preferring HTML parts don't show them by default.
3524
3525 2010-12-22 [paul]       3.7.8cvs22
3526
3527         * src/compose.h
3528                 fix missing file in 3.7.8cvs20
3529
3530 2010-12-22 [colin]      3.7.8cvs21
3531
3532         * src/folderview.c
3533         * src/folderview.h
3534                 Implement a nicer scroll when drag and dropping
3535
3536 2010-12-22 [colin]      3.7.8cvs20
3537
3538         * src/compose.c
3539                 Store charset if available when attaching text/* parts
3540                 Fixes bug #2203, 'Problems in forwarding multipart/
3541                 alternative messages with HTML part'
3542
3543 2010-12-22 [colin]      3.7.8cvs19
3544
3545         * src/textview.c
3546                 Fix wrong free
3547
3548 2010-12-21 [colin]      3.7.8cvs18
3549
3550         * src/inc.c
3551         * src/send_message.c
3552         * src/common/session.c
3553         * src/common/session.h
3554                 Differentiate between running sessions and connected
3555                 sessions. Fixes bug #2332, "Crash when hitting cancel
3556                 on the SMTP status window"
3557
3558 2010-12-21 [colin]      3.7.8cvs17
3559
3560         * src/etpan/etpan-thread-manager.c
3561                 Dead code removal
3562
3563 2010-12-21 [colin]      3.7.8cvs16
3564
3565         * src/textview.c
3566                 Check whether we should continue loading the
3567                 current textview after inserting a possibly
3568                 big image.
3569
3570 2010-12-20 [colin]      3.7.8cvs15
3571
3572         * src/addrcindex.c
3573         * src/addrcindex.h
3574                 Removed. Dead code since ages!
3575         * src/addr_compl.c
3576         * src/gtk/gtkcmclist.c
3577         * src/gtk/gtkcmctree.c
3578         * src/gtk/gtksctree.c
3579                 undefine *_DISABLE_DEPRECATED in the files that
3580                 use deprecated interfaces. Implicit declarations
3581                 can lead to crashes as prototypes are unknown, as
3582                 evidenced by bug #2315.
3583
3584 2010-12-20 [colin]      3.7.8cvs14
3585
3586         * src/compose.c
3587                 Don't flush events when adding an header entry. This
3588                 can mess up the keypresses in the previous header.
3589                 Instead, make the scroll happen later (doing it on the
3590                 spot without flushing events doesn't work as the new
3591                 requisitions aren't set yet).
3592
3593 2010-12-20 [colin]      3.7.8cvs13
3594
3595         * src/mainwindow.c
3596                 Don't iconify at start on w32. This un-iconifies in the
3597                 background.
3598
3599 2010-12-20 [colin]      3.7.8cvs12
3600
3601         * src/common/base64.c
3602                 Fix bug #2331, "Base64 is broken in 3.7.7 and 3.7.8"
3603                 Patch by pochini at shiny.it
3604
3605 2010-12-19 [colin]      3.7.8cvs11
3606
3607         * src/ldapserver.c
3608                 Better debug.
3609
3610 2010-12-18 [colin]      3.7.8cvs10
3611
3612         * src/compose.c
3613                 Fix bug #2148, "Attachment content-transfer-encoding 
3614                 incorrectly set when signing emails". The RFC 2045
3615                 states that message/* and multipart/* encoding must
3616                 be either 7-bit, 8-bit or binary.
3617
3618 2010-12-18 [mones]      3.7.8cvs9
3619
3620         * src/ldaputil.c
3621                 Fix crash when searching or adding a LDAP server
3622
3623 2010-12-17 [colin]      3.7.8cvs8
3624
3625         * configure.ac
3626         * src/editldap.c
3627         * src/ldapquery.c
3628         * src/ldapserver.c
3629         * src/ldapupdate.c
3630         * src/ldaputil.c
3631         * src/ldaputil.h
3632                 Better error logging. Disable LDAP SSL/TLS on
3633                 Windows, it's crashy/non-worky.
3634
3635 2010-12-17 [colin]      3.7.8cvs7
3636
3637         * src/folder.c
3638                 Fix bug #2325, "messages remains in folder cache after moving
3639                 from MH to IMAP boxes". Bug introduced in 3.7.6cvs53.
3640
3641 2010-12-17 [colin]      3.7.8cvs6
3642
3643         * src/addressadd.c
3644         * src/addressbook.c
3645         * src/addrindex.c
3646         * src/ldapquery.c
3647         * src/ldapquery.h
3648         * src/ldapserver.c
3649         * src/ldapserver.h
3650         * src/ldapupdate.c
3651         * src/ldaputil.c
3652         * src/ldaputil.h
3653                 Windows build fixes (w32 LDAP completely untested!)
3654
3655 2010-12-16 [colin]      3.7.8cvs5
3656
3657         * src/addrindex.c
3658         * src/editldap.c
3659         * src/ldapctrl.c
3660         * src/ldapquery.c
3661         * src/ldapserver.c
3662         * src/ldapserver.h
3663         * src/ldapupdate.c
3664         * src/ldaputil.c
3665                 Try to rationalize a bit LDAP connections
3666
3667 2010-12-16 [colin]      3.7.8cvs4
3668
3669         * src/prefs_spelling.c
3670         * src/common/defs.h
3671                 Add a button to get dictionaries (win32)
3672
3673 2010-12-16 [colin]      3.7.8cvs3
3674
3675         * src/prefs_matcher.c
3676                 Fix bug #2279, "crash when clicking 'define' in filter
3677                 configuring". Thanks to Theodor Ciobanu for the hint at
3678                 the problem.
3679
3680 2010-12-14 [colin]      3.7.8cvs2
3681
3682         * src/gtk/gtkaspell.c
3683                 Add missing guard for sys/wait.h
3684
3685 2010-12-05 [colin]      3.7.8cvs1
3686
3687         * tools/make.themes.project
3688                 Seems wget has changed naming of targets downloaded.
3689                 Fix it by always providing our own name.
3690                 [Pushing mones' patch again after messing with CVSROOT]
3691
3692 2010-12-04 [paul]       3.7.8
3693         * NEWS
3694         * README
3695         * RELEASE_NOTES 
3696                 3.7.8 unleashed!
3697
3698 2010-12-03 [paul]       3.7.7cvs11
3699
3700         * configure.ac
3701         * manual/xml2pdf ** REMOVED **
3702         * manual/dist/pdf/Makefile.am
3703         * manual/es/dist/pdf/Makefile.am
3704         * manual/fr/dist/pdf/Makefile.am
3705         * manual/pl/dist/pdf/Makefile.am
3706                 simplify check for tools needed for manual building,
3707                 remove xml2pdf and use docbook2pdf instead
3708
3709 2010-12-03 [mir]        3.7.7cvs10
3710
3711         * configure.ac
3712                 Fix bug so that configure option --disable-manual
3713                 actually disable building the manuals
3714
3715 2010-12-01 [pawel]      3.7.7cvs9
3716
3717         * src/crash.c
3718                 One more GTK+ 2.22 build fix
3719
3720 2010-11-30 [colin]      3.7.7cvs8
3721
3722         * src/action.c
3723                 Fix bug #2317, 'Action results in "Bad file descriptor"'
3724                 Introduced in 3.7.6cvs57. In fact the error has been there
3725                 since ages, and only new thing is the verification of the
3726                 various functions return code. Let the stuff work as it
3727                 does, as it seems to do the right thing since ages.
3728
3729 2010-11-28 [colin]      3.7.7cvs7
3730
3731         * src/gtk/quicksearch.c
3732                 Fix bug #2313, 'CLI quicksearch sometimes returns 
3733                 the same messages twice'. Patch by Sebastien Bigaret
3734
3735 2010-11-25 [paul]       3.7.7cvs6
3736
3737         * src/prefs_common.c
3738                 make "gtk_can_change_accels" FALSE by default.
3739                 fixes bug #2309, 'Shortcuts should not be modifiable
3740                 by default' (RFE)
3741
3742 2010-11-24 [mones]      3.7.7cvs5
3743
3744         * src/mainwindow.c
3745                 Add missing shortcuts for marking as spam and ham
3746                 Fixes Debian bug #599547
3747
3748 2010-11-22 [colin]      3.7.7cvs4
3749
3750         * src/compose.c
3751                 Revert 3.7.6cvs{39,38,37,35,34}. The fact that
3752                 five patches were needed to fix a corner case
3753                 is a good indicator that is was bound to break
3754                 something.
3755
3756 2010-11-21 [colin]      3.7.7cvs3
3757
3758         * src/plugins/pgpcore/claws.def
3759                 Win32 build fix
3760
3761 2010-11-20 [wwp]        3.7.7cvs2
3762
3763         * src/main.c
3764           Fix either a typo or an irrelevant iff word there.
3765           IMO type and recursive possible values should be changed to
3766           smth simple and neat here, and help strings be really
3767           translatable.
3768
3769 2010-11-20 [colin]      3.7.7cvs1
3770
3771         * AUTHORS
3772                 Damn, forgot to commit this file twice.
3773
3774 2010-11-19 [paul]       3.7.7
3775         * NEWS
3776         * README
3777         * RELEASE_NOTES 
3778                 3.7.7 unleashed!
3779
3780 2010-11-19 [paul]       3.7.6cvs66
3781
3782         * po/ca.po
3783         * po/cs.po
3784         * po/de.po
3785         * po/es.po
3786         * po/fi.po
3787         * po/fr.po
3788         * po/hu.po
3789         * po/id.po
3790         * po/pt_BR.po
3791         * po/sk.po
3792         * po/uk.po
3793                 updated by Miquel Oliete, David Vachulka, Stephan Sachse,
3794                 Ricardo Mones, Flammie Pirinen, wwp, Pader Rezso, MSulchan
3795                 Darmawan, Frederico Goncalves Guimaraes, Slavko, Yarema
3796
3797 2010-11-17 [colin]      3.7.6cvs65
3798
3799         * src/common/utils.c
3800                 Separate email address from timestamp with a dot.
3801                 Fix coding style.
3802
3803 2010-11-17 [colin]      3.7.6cvs64
3804
3805         * src/common/utils.c
3806                 Fix multiple @ in generated message-ids.
3807                 That's not allowed in RFC 2822.
3808
3809 2010-11-16 [mones]      3.7.6cvs63
3810
3811         * manual/es/advanced.xml
3812                 Synchronise with English version
3813
3814 2010-11-04 [wwp]        3.7.6cvs62
3815
3816         * src/filtering.c
3817                 Fix bug 2293, "filtering: simplify expression", as simplifying
3818                 this expression doesn't make it less easy to understand and we
3819                 gain few cycles by making the logical expression more simple
3820                 by applying. Patch by Nicolas Kaiser.
3821
3822 2010-11-03 [colin]      3.7.6cvs61
3823
3824         * src/addrindex.c
3825                 Fix bug 2294, "addrindex.c: address index conversion always
3826                 fails". Clearly a copy-paste-bug. Patch by Nicolas Kaiser.
3827
3828 2010-11-02 [wwp]        3.7.6cvs60
3829
3830         * src/action.c
3831         * src/statusbar.c
3832         * src/toolbar.c
3833                 Enlarge the progress bar (main window) a bit when compiling
3834                 for UMPCs like maemo: this solves truncated text that might
3835                 appear in the progress bar while processing messages.
3836                 Also use a more compact string format when displaying
3837                 progress like 'number/total', still for UMPCs, this fixes
3838                 a previous inconsistency with these format strings where
3839                 no space around the / were used sometimes.
3840
3841 2010-10-26 [ticho]      3.7.6cvs59
3842
3843         * src/news.c
3844                 Recreate NNTP session if server port setting has changed. Fixes
3845                 bug #2092.
3846
3847 2010-10-26 [colin]      3.7.6cvs58
3848
3849         * src/imap_gtk.c
3850         * src/mh_gtk.c
3851                 Fix copy-paste error, thanks to David Relson
3852                 for spotting it.
3853
3854 2010-10-18 [colin]      3.7.6cvs57
3855
3856         * src/action.c
3857         * src/addrharvest.c
3858         * src/alertpanel.c
3859         * src/filtering.c
3860         * src/jpilot.c
3861         * src/prefs_themes.c
3862         * src/procmime.c
3863         * src/textview.c
3864         * src/gtk/gtkutils.c
3865         * src/gtk/quicksearch.c
3866         * src/gtk/quicksearch.h
3867         * src/plugins/pgpcore/passphrase.c
3868         * src/plugins/spamassassin/libspamc.c
3869                 Fix warnings
3870
3871 2010-10-17 [colin]      3.7.6cvs56
3872
3873         * src/prefs_themes.c
3874         * src/gtk/gtkaspell.c
3875         * src/gtk/gtkutils.c
3876         * src/gtk/gtkutils.h
3877         * src/gtk/inputdialog.c
3878         * src/gtk/progressdialog.c
3879                 Undeprecate a few things
3880
3881 2010-10-17 [colin]      3.7.6cvs55
3882
3883         * src/main.c
3884         * src/gtk/authors.h
3885         * src/gtk/quicksearch.c
3886         * src/gtk/quicksearch.h
3887                 Add ability to search from the command-line.
3888                 Closes bug 2249, ' Making QuickSearch independent from the GUI'
3889                 Patch by Sebastien Bigarret.
3890
3891 2010-10-04 [mones]      3.7.6cvs54
3892
3893         * manual/dist/pdf/Makefile.am
3894                 Fix build of English PDF manual
3895                 (sh: Can't open ../../../xml2pdf)
3896
3897 2010-10-03 [colin]      3.7.6cvs53
3898
3899         * src/folder.c
3900         * src/folder.h
3901         * src/imap.c
3902         * src/mh.c
3903         * src/procmsg.c
3904                 Get rid of GRelation which were, mostly, used as
3905                 GHashTables. Probably fixes bug #2277, 'Segfault when
3906                 loading inbox for the first time'
3907
3908 2010-10-03 [mir]        3.7.6cvs52
3909
3910         * manual/de/dist/html/Makefile.am
3911         * manual/de/dist/pdf/Makefile.am
3912         * manual/de/dist/ps/Makefile.am
3913         * manual/de/dist/txt/Makefile.am
3914         * manual/dist/html/Makefile.am
3915         * manual/dist/pdf/Makefile.am
3916         * manual/dist/ps/Makefile.am
3917         * manual/dist/txt/Makefile.am
3918         * manual/es/dist/html/Makefile.am
3919         * manual/es/dist/pdf/Makefile.am
3920         * manual/es/dist/ps/Makefile.am
3921         * manual/es/dist/txt/Makefile.am
3922         * manual/fr/dist/html/Makefile.am
3923         * manual/fr/dist/pdf/Makefile.am
3924         * manual/fr/dist/ps/Makefile.am
3925         * manual/fr/dist/txt/Makefile.am
3926         * manual/pl/dist/html/Makefile.am
3927         * manual/pl/dist/pdf/Makefile.am
3928         * manual/pl/dist/ps/Makefile.am
3929         * manual/pl/dist/txt/Makefile.am
3930             Missing Makefile.am's for 3.7.6cvs49
3931
3932
3933 2010-10-03 [colin]      3.7.6cvs51
3934
3935         * po/POTFILES.in
3936                 Fix build
3937
3938 2010-10-02 [mir]        3.7.6cvs50
3939
3940         * manual/de/dist/html/Makefile.am
3941         * manual/de/dist/pdf/Makefile.am
3942         * manual/de/dist/ps/Makefile.am
3943         * manual/de/dist/txt/Makefile.am
3944         * manual/dist/html/Makefile.am
3945         * manual/dist/pdf/Makefile.am
3946         * manual/dist/ps/Makefile.am
3947         * manual/dist/txt/Makefile.am
3948         * manual/es/dist/html/Makefile.am
3949         * manual/es/dist/pdf/Makefile.am
3950         * manual/es/dist/ps/Makefile.am
3951         * manual/es/dist/txt/Makefile.am
3952         * manual/fr/dist/html/Makefile.am
3953         * manual/fr/dist/pdf/Makefile.am
3954         * manual/fr/dist/ps/Makefile.am
3955         * manual/fr/dist/txt/Makefile.am
3956         * manual/pl/dist/html/Makefile.am
3957         * manual/pl/dist/pdf/Makefile.am
3958         * manual/pl/dist/ps/Makefile.am
3959         * manual/pl/dist/txt/Makefile.am
3960             Part 2 of last commit which broke due to a permission error
3961             Avoid claws trying to build manuals if the required
3962             tools are not present.
3963
3964 2010-10-02 [mir]        3.7.6cvs49
3965
3966         * configure.ac
3967         * manual/de/dist/html/Makefile.am
3968         * manual/de/dist/pdf/Makefile.am
3969         * manual/de/dist/ps/Makefile.am
3970         * manual/de/dist/txt/Makefile.am
3971         * manual/dist/html/Makefile.am
3972         * manual/dist/pdf/Makefile.am
3973         * manual/dist/ps/Makefile.am
3974         * manual/dist/txt/Makefile.am
3975         * manual/es/dist/html/Makefile.am
3976         * manual/es/dist/pdf/Makefile.am
3977         * manual/es/dist/ps/Makefile.am
3978         * manual/es/dist/txt/Makefile.am
3979         * manual/fr/dist/html/Makefile.am
3980         * manual/fr/dist/pdf/Makefile.am
3981         * manual/fr/dist/ps/Makefile.am
3982         * manual/fr/dist/txt/Makefile.am
3983         * manual/pl/dist/html/Makefile.am
3984         * manual/pl/dist/pdf/Makefile.am
3985         * manual/pl/dist/ps/Makefile.am
3986         * manual/pl/dist/txt/Makefile.am
3987             1) Downgrade autoconf requirements to 2.59 to allow
3988             building on oldest supported Linux distributions.
3989             2) Only try to build manuals if the needed software
3990             is present.
3991
3992 2010-10-02 [colin]      3.7.6cvs48
3993
3994         * src/plugins/trayicon/trayicon.c
3995                 And fix theme updating.
3996
3997 2010-10-02 [colin]      3.7.6cvs47
3998
3999         * src/plugins/trayicon/trayicon.c
4000                 Got burnt by wrong indentation!
4001
4002 2010-10-02 [colin]      3.7.6cvs46
4003
4004         * configure.ac
4005                 Forgot to remove the directory from top-level
4006
4007 2010-10-02 [colin]      3.7.6cvs45
4008
4009         * src/plugins/trayicon/Makefile.am
4010         * src/plugins/trayicon/trayicon.c
4011         * src/plugins/trayicon/libeggtrayicon/.cvsignore
4012         * src/plugins/trayicon/libeggtrayicon/Makefile.am
4013         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
4014         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.h
4015         * src/plugins/trayicon/libeggtrayicon/gtk2-funcs.c
4016         * src/plugins/trayicon/libeggtrayicon/gtk2-funcs.h
4017         * src/plugins/trayicon/libeggtrayicon/gtkplugxembed.c
4018         * src/plugins/trayicon/libeggtrayicon/gtkplugxembed.h
4019         * src/plugins/trayicon/libeggtrayicon/xembed.h
4020                 Finally get rid of Eggtrayicon, use GtkStatusIcon
4021                 instead (which can be done safely now that we 
4022                 require GTK+ 2.10).
4023
4024 2010-10-02 [colin]      3.7.6cvs44
4025
4026         * src/action.c
4027         * src/addr_compl.c
4028         * src/addressbook.c
4029         * src/addrgather.c
4030         * src/alertpanel.c
4031         * src/editaddress.c
4032         * src/editaddress_other_attributes_ldap.c
4033         * src/editgroup.c
4034         * src/folderview.c
4035         * src/grouplistdialog.c
4036         * src/headerview.c
4037         * src/image_viewer.c
4038         * src/importldif.c
4039         * src/main.c
4040         * src/mainwindow.c
4041         * src/message_search.c
4042         * src/mimeview.c
4043         * src/prefs_themes.c
4044         * src/summary_search.c
4045         * src/summaryview.c
4046         * src/toolbar.c
4047         * src/etpan/imap-thread.c
4048         * src/gtk/authors.h
4049         * src/gtk/gtkcmclist.c
4050         * src/gtk/gtkcmoptionmenu.c
4051         * src/gtk/gtkutils.c
4052         * src/gtk/gtkutils.h
4053         * src/gtk/gtkvscrollbutton.c
4054         * src/plugins/pgpcore/select-keys.c
4055         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
4056                 Undeprecate for GTK+2.22. Patch by Reed Loden.
4057                 Fixes bug #2276, 'Compile in maintainer mode
4058                 fails on GTK+ 2.22'.
4059
4060 2010-10-02 [colin]      3.7.6cvs43
4061
4062         * configure.ac
4063                 It's now time to remove the temporary enable-openssl
4064                 option that was used when we removed OpenSSL. See 
4065                 bug #2276 comment #14.
4066
4067 2010-09-30 [wwp]        3.7.6cvs42
4068
4069         * src/prefs_account.c
4070         * src/prefs_filtering_action.c
4071         * src/prefs_matcher.c
4072                         Fix bug #2274, wrong color label index range
4073                         used w/ gtk_cmoption_menu (behaviour change
4074                         has been introduced w/ 3.5.0cvs49 apparently),
4075                         now it must be 1..N so let's use colorlabel value
4076                         (0..N) + 1.
4077                         
4078
4079 2010-09-20 [pawel]      3.7.6cvs41
4080
4081         * src/compose.c
4082         * src/mainwindow.c
4083         * src/summaryview.c
4084                 revert last patch
4085
4086 2010-09-19 [pawel]      3.7.6cvs40
4087
4088         * src/compose.c
4089         * src/mainwindow.c
4090         * src/summaryview.c
4091                 Set ML menus sensitivity accordingly to
4092                 possibility of reply to ML
4093
4094 2010-09-19 [colin]      3.7.6cvs39
4095
4096         * src/compose.c
4097                 Fix cvs34 and cvs35. NNTP accounts are mandatory to post
4098                 to newsgroups, and NNTP accounts *can* send email. We 
4099                 should not force an email account when replying to_ml or
4100                 anything...
4101
4102 2010-09-19 [colin]      3.7.6cvs38
4103
4104         * src/compose.c
4105                 Revert previous commit (which breaks Reply to newsgroups)
4106
4107 2010-09-17 [pawel]      3.7.6cvs37
4108
4109         * src/compose.c
4110                 Respect reply_account_autosel when changing compose
4111                 account to email one while replying to NNTP post
4112
4113 2010-09-17 [wwp]        3.7.6cvs36
4114
4115         * doc/man/claws-mail.1
4116         Update --compose documentation in `man claws-mail`.
4117
4118 2010-09-12 [pawel]      3.7.6cvs35
4119
4120         * src/compose.c
4121                 Add forgotten bit to previous commit,
4122                 select email account when replying to ML
4123
4124 2010-09-12 [pawel]      3.7.6cvs34
4125
4126         * src/compose.c
4127                 Fix bug #2247 "nntp reply-to-all broken?"
4128                 Make reply-to-all and reply-to-ml work as expected in
4129                 mailing list through NNTP case
4130
4131 2010-09-11 [pawel]      3.7.6cvs33
4132
4133         * src/mainwindow.c
4134         * src/summaryview.c
4135         * src/toolbar.c
4136                 gtk_widget_set_can_focus() -> GTK_WIDGET_UNSET_FLAGS()
4137                 fixes build with GTK+ < 2.18
4138
4139 2010-09-10 [pawel]      3.7.6cvs32
4140
4141         * src/mainwindow.c
4142         * src/summaryview.c
4143         * src/toolbar.c
4144                 Make Tab key switch between FolderView, MsgView and
4145                 SummaryView only, other widgets have/can have their own
4146                 keybindings anyway
4147
4148 2010-08-25 [colin]      3.7.6cvs31
4149
4150         * src/procmime.c
4151         * AUTHORS
4152         * src/gtk/authors.h
4153         * src/common/base64.c
4154         * src/common/base64.h
4155                 Fix bug #2245, "base64 decoding fails with line breaks"
4156                 Patch by Yotam Medini
4157
4158 2010-08-25 [colin]      3.7.6cvs30
4159
4160         * src/main.c
4161                 Fix bug #2241, "Empty trash on exit fails on scripted exit"
4162
4163 2010-08-23 [pawel]      3.7.6cvs29
4164
4165         * src/inc.c
4166         * src/send_message.c
4167         * src/statusbar.c
4168         * src/toolbar.c
4169                 Hide progressbar on statusbar when not needed
4170
4171 2010-08-17 [colin]      3.7.6cvs28
4172
4173         * src/main.c
4174                 Fix previous patch (our own tmp dir is inside
4175                 our rc dir)
4176
4177 2010-08-16 [colin]      3.7.6cvs27
4178
4179         * src/main.c
4180                 Use temp dir to store logs in Windows. Avoids doing
4181                 get_rc_dir() early, which prevents set_rc_dir()
4182                 working correctly.
4183
4184 2010-07-31 [holger]     3.7.6cvs26
4185
4186         * src/gtk/gtkshruler.c
4187                 Yet more GdkGC to Cairo porting
4188
4189 2010-07-30 [holger]     3.7.6cvs25
4190
4191         * src/stock_pixmap.c
4192                 More GdkGC to Cairo porting
4193
4194 2010-07-30 [holger]     3.7.6cvs24
4195
4196         * src/gtk/colorlabel.c
4197                 One GdkGC usage less
4198
4199 2010-07-29 [holger]     3.7.6cvs23
4200
4201         * src/printing.c
4202                 Replace some gdk drawing with cairo, as the former
4203                 is going towards deprecation.
4204
4205 2010-07-25 [colin]      3.7.6cvs22
4206
4207         * src/common/utils.c
4208                 And now for a real fix. g_list_remove() doesn't, of
4209                 course, free the data. But we have to have a solid
4210                 pointer to it in order to free it ourselves instead
4211                 of relying on the old freed list pointer.
4212                 Maybe that's the last patch on the subject now ? :)
4213
4214 2010-07-25 [colin]      3.7.6cvs21
4215
4216         * src/common/utils.c
4217                 Remove stupid and extraneous g_free() of elements
4218                 which have just been freed by g_list_remove(). (see
4219                 GList documentation). I don't know how it worked before
4220
4221 2010-07-25 [colin]      3.7.6cvs20
4222
4223         * src/common/utils.c
4224                 Reverse free/use with more logical and safe
4225                 use/free. Thanks to Michael Rasmussen !
4226
4227 2010-07-24 [colin]      3.7.6cvs19
4228
4229         * src/gtk/quicksearch.c
4230                 Finish 3.7.5cvs42 patch. Probably fixes bug 2232,
4231                 'freeze when using quick search'
4232
4233 2010-07-11 [iwkse]      3.7.6cvs18
4234
4235         * src/gtk/quicksearch.c
4236                 Add SMALL_LAYOUT to quicksearch_relayout
4237
4238 2010-07-10 [iwkse]      3.7.6cvs17
4239
4240         * src/mainwindow.h
4241                         Remove forgotten variable from
4242                         the last bugfix #2224
4243
4244 2010-07-10 [colin]      3.7.6cvs16
4245
4246         * src/mainwindow.c
4247         * src/gtk/quicksearch.c
4248                 Clean fix for bug #2224: don't mess with GTK settings when
4249                 handling the layout ourselves is enough
4250
4251 2010-07-09 [iwkse]      3.7.6cvs15
4252
4253         * src/mainwindow.h
4254         * src/mainwindow.c
4255                         Better fix for Bug #2224
4256
4257 2010-07-09 [iwkse]      3.7.6cvs14
4258
4259         * src/mainwindow.c
4260                         Bug #2224
4261                         Always use stock icons on buttons
4262
4263 2010-07-08 [colin]      3.7.6cvs13
4264
4265         * src/gtk/filesel.c
4266                 Fix bug 2223, 'Compilation fails with GTK+
4267                 2.21.3'. Thanks to Jan Psota !
4268
4269 2010-06-29 [pawel]      3.7.6cvs12
4270
4271         * src/compose.c
4272                 Revert 3.7.5cvs41, it breaks templates that use %X
4273
4274 2010-06-23 [wwp]        3.7.6cvs11
4275
4276         * src/gtk/colorlabel.c
4277                 Silent up a warning by avoiding possible confusion
4278                 in logical expression evaluation, thanks to TuxCM.
4279
4280 2010-06-21 [iwkse]      3.7.6cvs10
4281
4282         * src/gtk/quicksearch.c
4283                 Do not add into quicksearch history
4284                 matching rules with bad syntax
4285
4286 2010-05-26 [holger]     3.7.6cvs9
4287
4288         * src/summaryview.c
4289         * src/summaryview.h
4290                 Add function to select rows given a list of messages,
4291                 complementary to summary_get_selected_msg_list()
4292
4293 2010-05-22 [mir]        3.7.6cvs8
4294
4295         * src/ldapctrl.c
4296                 Fix bug 2208. Encode encrypted password to qouted
4297                 printable to avoid making invalid XML. Encoding
4298                 will be activated the first time the password is
4299                 changed.
4300
4301 2010-05-22 [paul]       3.7.6cvs7
4302
4303         * manual/advanced.xml
4304         * src/compose.c
4305         * src/prefs_common.c
4306         * src/prefs_common.h
4307                 after using the compose margin for several days
4308                 I wanted the old style back - add a new hidden
4309                 pref 'show_compose_margin' to restore the old
4310                 behaviour (defaults to FALSE)
4311
4312 2010-05-14 [paul]       3.7.6cvs6
4313
4314         * src/compose.c
4315                 add a margin to the compose window text that matches
4316                 the margin in textview
4317
4318 2010-05-14 [colin]      3.7.6cvs5
4319
4320         * src/gtk/sslcertwindow.c
4321                 Fix dangling pointer. Thanks to Michael R!
4322
4323 2010-05-14 [colin]      3.7.6cvs4
4324
4325         * src/gtk/sslcertwindow.c
4326                 Fix bug 1993, 'Cannot send mail when SSL certificate is 
4327                 expired but certificate check is skipped' and maybe
4328                 bug 2200, 'SSL is not working with POP3'
4329
4330 2010-05-14 [colin]      3.7.6cvs3
4331
4332         * src/plugins/pgpinline/pgpinline.c
4333                 Fix bug 2205, 'PGPInline: segfault on malformed mails'
4334
4335 2010-05-04 [iwkse]      3.7.6cvs2
4336
4337         * src/prefs_message.c
4338                         Get a generic name as 'Quotation' for
4339                         the frame
4340
4341 2010-05-04 [iwkse]      3.7.6cvs1
4342
4343         * src/prefs_message.c
4344         * src/prefs_common.h
4345         * src/prefs_common.c
4346         * src/textview.c
4347                         Fix #2188
4348                         Option for collapsing via double-click
4349
4350 2010-05-01 [paul]       3.7.6
4351         * NEWS
4352         * README
4353         * RELEASE_NOTES 
4354                 3.7.6 unleashed!
4355
4356 2010-05-01 [paul]       3.7.5cvs55
4357
4358         * tools/claws.i18n.status.pl
4359                 add Ukrainian stat
4360
4361 2010-05-01 [paul]       3.7.5cvs54
4362
4363         * src/gtk/authors.h
4364                 add YUP, new Ukrainian translator
4365
4366 2010-04-30 [paul]       3.7.5cvs53
4367
4368         * configure.ac
4369         * po/uk.po
4370                 add Ukrainian translation, submitted by YUP
4371         * po/cs.po
4372         * po/de.po
4373         * po/fi.po
4374         * po/hu.po
4375         * po/nl.po
4376         * po/pt_BR.po
4377         * po/pt_PT.po
4378         * po/sk.po
4379                 updated by David Vachulka, Stephan Sachse, Flammie Pirinen,
4380                 Páder RezsÅ‘, Marcel Pol, Frederico Goncalves Guimaraes,
4381                 Tiago Faria, and Slavko
4382
4383 2010-04-26 [wwp]        3.7.5cvs52
4384
4385         * po/fr.po
4386                 Fix capitalization.
4387
4388 2010-04-26 [mones]      3.7.5cvs51
4389
4390         * po/es.po
4391                 Updated for release
4392
4393 2010-04-22 [pawel]      3.7.5cvs50
4394
4395         * src/addressbook.c
4396                 fix compile warning
4397         * src/vcard.c
4398                 first NULL check pointer, then use it
4399
4400 2010-04-22 [colin]      3.7.5cvs49
4401
4402         * src/imap.c
4403                 Fix error message when session isn't established
4404         * po/fr.po
4405                 Update translation and fix a typo in it
4406
4407 2010-04-15 [pawel]      3.7.5cvs48
4408
4409         * src/prefs_account.c
4410                 Fix Bug 2144 'When creating an account with IMAP4+SSL,
4411                                 the port isn't configured properly'
4412                 When using SSL/TLS tunneling automatically use default
4413                 ports for encrypted connections: smtps, pop3s, imaps, nntps
4414
4415 2010-04-15 [pawel]      3.7.5cvs47
4416
4417         * src/action.c
4418                 Fix crasher in actions using '%f' argument
4419                 on multiple files with external scripts which
4420                 don't return any output.
4421
4422 2010-04-14 [colin]      3.7.5cvs46
4423
4424         * src/mainwindow.c
4425                 Fix hand cursor after error symbol appears
4426
4427 2010-04-12 [colin]      3.7.5cvs45
4428
4429         * configure.ac
4430                 Fix bug 2162, 'configure check for libetpan 
4431                 fails with libetpan 1.0'
4432
4433
4434 2010-04-09 [mones]      3.7.5cvs44
4435
4436         * manual/de/glossary.xml
4437                 Fix encoding to match main document's
4438                 Also fixes make dist with Debian's openjade
4439
4440 2010-03-29 [pawel]      3.7.5cvs43
4441
4442         * src/matcher_parser.h
4443         * src/matcher_parser_parse.y
4444         * src/gtk/quicksearch.c
4445                 Disable matcher warnings when populating quicksearch
4446                 completion lists on startup
4447
4448 2010-03-27 [colin]      3.7.5cvs42
4449
4450         * src/gtk/quicksearch.c
4451                 Fix double-free later in code. Optimize
4452                 list creation
4453
4454 2010-03-27 [pawel]      3.7.5cvs41
4455
4456         * src/compose.c
4457                 Make sure that quote ends with new line char
4458
4459 2010-03-26 [pawel]      3.7.5cvs40
4460
4461         * src/compose.c
4462         * src/compose.h
4463         * src/textview.c
4464                 Fix Bug 1928 Add "reply to this address" pop menu 
4465                              on Message View
4466                 - Set composing account to email one when creating/replying
4467                   from NNTP folder by clicking link or choosing option
4468                   from popup menu
4469                 - Factorize code
4470
4471 2010-03-25 [paul]       3.7.5cvs39
4472
4473         * src/gtk/gtkcmclist.c
4474                 Fix build with GTK+ 2.20
4475
4476 2010-03-24 [pawel]      3.7.5cvs38
4477
4478         * src/addr_compl.c
4479         * src/compose.c
4480         * src/folderview.c
4481         * src/grouplistdialog.c
4482         * src/headerview.c
4483         * src/mainwindow.c
4484         * src/mimeview.c
4485         * src/prefs_account.c
4486         * src/gtk/gtkcmclist.c
4487         * src/gtk/gtkcmctree.c
4488         * src/gtk/gtkcmoptionmenu.c
4489         * src/gtk/gtksctree.c
4490         * src/gtk/gtkshruler.c
4491         * src/gtk/gtkutils.c
4492         * src/gtk/gtkutils.h
4493         * src/gtk/gtkvscrollbutton.c
4494         * src/gtk/inputdialog.c
4495         * src/gtk/spell_entry.c
4496         * src/plugins/trayicon/trayicon.c
4497         * src/plugins/trayicon/libeggtrayicon/Makefile.am
4498         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
4499         * src/plugins/trayicon/libeggtrayicon/gtkplugxembed.c
4500                 Fix build with GTK+ 2.19
4501
4502 2010-03-23 [pawel]      3.7.5cvs37
4503
4504         * src/mainwindow.c
4505         * src/mimeview.c
4506                 Respect view->show_col_headers option
4507         * src/gtk/gtkcmctree.c
4508                 Fix GtkCmcTree column width calculation when it has
4509                 auto_resize set and new node is added
4510
4511 2010-03-22 [pawel]      3.7.5cvs36
4512
4513         * src/grouplistdialog.c
4514         * src/prefs_common.c
4515         * src/prefs_common.h
4516                 - remember newsgroups list dialog size
4517                 - respect use_dotted_lines hidden pref
4518                 - respect use_stripes_everywhere hidden pref
4519
4520 2010-03-21 [pawel]      3.7.5cvs35
4521
4522         * src/addrgather.c
4523                 Remove superfluous gtk_widget_show_all()
4524         * src/mimeview.c
4525                 Add forgotten colon
4526         * src/common/utils.c
4527                 Return correct type
4528
4529 2010-03-21 [pawel]      3.7.5cvs34
4530
4531         * src/main.c
4532         * src/gtk/quicksearch.c
4533         * src/gtk/quicksearch.h
4534                 Implement separate search phrase completion for
4535                 normal/extended quicksearch
4536
4537 2010-03-11 [paul]       3.7.5cvs33
4538
4539         * po/zh_CN.po
4540                 fix bug 2110, 'Patch to use GB18030 for GB2312 and GBK X-GBK'
4541                 submitted by Yuwei Yu
4542
4543 2010-03-09 [colin]      3.7.5cvs32
4544
4545         * manual/de/glossary.xml
4546                 Fix build
4547
4548 2010-03-02 [colin]      3.7.5cvs31
4549
4550         * manual/de/glossary.xml
4551                 Sort alphabetically. Done by Volker Ribbert.
4552
4553 2010-03-02 [mones]      3.7.5cvs30
4554
4555         * README
4556                 Fix mailing list archives location
4557                 Remove currently unavailable CVS webview
4558
4559 2010-03-01 [iwkse]      3.7.5cvs29
4560
4561         * src/common/plugin.c
4562                         Other indentation issues
4563
4564 2010-03-01 [iwkse]      3.7.5cvs28
4565
4566         * src/common/plugin.c
4567                         Fix indentation of the previous commit
4568
4569 2010-03-01 [iwkse]      3.7.5cvs27
4570
4571         * src/common/plugin.h
4572         * src/common/plugin.c
4573                         Add API for getting a loaded Plugin from the
4574                         plugin's name, plugin_get_loaded_by_name (const gchar *name)
4575                         Thanks to Colin, Michael
4576
4577 2010-02-27 [colin]      3.7.5cvs26
4578
4579         * configure.ac
4580         * AUTHORS
4581         * src/gtk/authors.h
4582         * manual/Makefile.am
4583         * manual/de/Makefile.am
4584         * manual/de/account.xml
4585         * manual/de/ack.xml
4586         * manual/de/addrbook.xml
4587         * manual/de/advanced.xml
4588         * manual/de/claws-mail-manual.xml
4589         * manual/de/faq.xml
4590         * manual/de/glossary.xml
4591         * manual/de/gpl.xml
4592         * manual/de/handling.xml
4593         * manual/de/intro.xml
4594         * manual/de/keyboard.xml
4595         * manual/de/plugins.xml
4596         * manual/de/starting.xml
4597         * manual/de/dist/.cvsignore
4598         * manual/de/dist/Makefile.am
4599         * manual/de/dist/html/.cvsignore
4600         * manual/de/dist/html/Makefile.am
4601         * manual/de/dist/pdf/.cvsignore
4602         * manual/de/dist/pdf/Makefile.am
4603         * manual/de/dist/ps/.cvsignore
4604         * manual/de/dist/ps/Makefile.am
4605         * manual/de/dist/txt/.cvsignore
4606         * manual/de/dist/txt/Makefile.am
4607                 Add the german translation of the manual, done by
4608                 Volker Ribbert <thoraki@arcor.de>.
4609
4610 2010-02-27 [holger]     3.7.5cvs25
4611
4612         * src/prefs_toolbar.c
4613                 Don't make toolbar item description for
4614                 plugin registered items editable
4615
4616 2010-02-26 [colin]      3.7.5cvs24
4617
4618         * src/toolbar.c
4619                 Don't translate empty description
4620
4621 2010-02-22 [colin]      3.7.5cvs23
4622
4623         * src/compose.c
4624                 Don't make In-Reply-To visible when reediting
4625                 a draft or sent mail.
4626
4627 2010-02-20 [colin]      3.7.5cvs22
4628
4629         * src/imap.c
4630         * src/imap.h
4631         * src/main.c
4632         * src/mainwindow.c
4633         * src/etpan/imap-thread.c
4634         * src/etpan/imap-thread.h
4635         * src/etpan/nntp-thread.c
4636         * src/etpan/nntp-thread.h
4637                 When going offline from NetworkManager, just
4638                 delete IMAP connections. That'll avoid timeouts
4639                 when coming back online in certain cases when
4640                 the TCP socket will have timed out.
4641
4642 2010-02-20 [holger]     3.7.5cvs21
4643
4644         * .cvsignore
4645                 More files to ignore
4646
4647 2010-02-17 [ticho]      3.7.5cvs20
4648
4649         * src/summaryview.c
4650         * src/summaryview.h
4651         * src/toolbar.c
4652                 Revert 3.7.5cvs19.
4653
4654 2010-02-16 [ticho]      3.7.5cvs19
4655
4656         * src/summaryview.c
4657         * src/summaryview.h
4658         * src/toolbar.c
4659                 Removed unused argument from summary_open_row().
4660
4661 2010-02-10 [pawel]      3.7.5cvs18
4662
4663         * src/compose.c
4664                 - fix headers filtering when prefs_common.trans_hdr is on
4665                 - fix headers setting when changing composing account 
4666                 - plug memleak
4667         * src/prefs_template.c
4668                 Re-add template's name for translation
4669
4670 2010-02-10 [colin]      3.7.5cvs17
4671
4672         * src/prefs_matcher.c
4673                 Fix bug 2099, 'add List-Id in Configuration>Filtering>
4674                 Condition>Define>Header>Name combo box'. Patch by
4675                 Francois Cami
4676
4677 2010-02-10 [colin]      3.7.5cvs16
4678
4679         * src/codeconv.c
4680         * src/codeconv.h
4681         * src/compose.c
4682         * src/mainwindow.c
4683         * src/messageview.c
4684         * src/prefs_send.c
4685         * src/procmime.c
4686         * src/textview.c
4687                 Add the GB18030 Chinese charset, which is a superset
4688                 of GB2312 and (X-)GBK. Patch mostly by Yuwei Yu.
4689
4690 2010-02-09 [holger]     3.7.5cvs15
4691
4692         * configure.ac
4693                 GTK+ 2.10 related cleanup
4694
4695 2010-02-09 [pawel]      3.7.5cvs14
4696
4697         * src/prefs_account.c
4698         * src/prefs_folder_item.c
4699         * src/prefs_template.c
4700         * src/quote_fmt.c
4701                 Respect prefs_common.trans_hdr in couple more places to avoid
4702                 confusion with translated/non-translated header names
4703
4704 2010-02-09 [colin]      3.7.5cvs13
4705
4706         * po/POTFILES.in
4707                 Fix make dist
4708
4709 2010-02-09 [colin]      3.7.5cvs12
4710
4711         * src/mimeview.c
4712                 And fix 2.10 build :)
4713
4714 2010-02-09 [colin]      3.7.5cvs11
4715
4716         * configure.ac
4717                 Bump up GTK+ requirement to 2.10
4718         * src/Makefile.am
4719         * src/compose.c
4720         * src/crash.c
4721         * src/foldersel.c
4722         * src/main.c
4723         * src/mainwindow.c
4724         * src/messageview.c
4725         * src/messageview.h
4726         * src/prefs_actions.c
4727         * src/prefs_common.c
4728         * src/prefs_common.h
4729         * src/prefs_ext_prog.c
4730         * src/prefs_filtering_action.c
4731         * src/prefs_fonts.c
4732         * src/prefs_image_viewer.c
4733         * src/prefs_matcher.c
4734         * src/prefs_msg_colors.c
4735         * src/prefs_summaries.c
4736         * src/prefs_template.c
4737         * src/printing.c
4738         * src/printing.h
4739         * src/quote_fmt.c
4740         * src/summaryview.c
4741         * src/textview.c
4742         * src/gtk/Makefile.am
4743         * src/gtk/about.c
4744         * src/gtk/gtkcmclist.c
4745         * src/gtk/gtkcmctree.c
4746         * src/gtk/gtkutils.c
4747         * src/gtk/quicksearch.c
4748                 Remove all compile-time conditionals depending on
4749                 GTK+ < 2.10
4750         * src/gedit-print.c
4751         * src/gedit-print.h
4752         * src/gtk/gtksourceprintjob.c
4753         * src/gtk/gtksourceprintjob.h
4754                 Remove libgnomeprint-based printing system (and
4755                 command-line-based printing system) as GTK+ 2.10
4756                 ships with print support.
4757
4758 2010-02-08 [mir]        3.7.5cvs10
4759
4760         * src/compose.c
4761             Avoid displaying Bcc headers in message sent
4762             to NNTP servers. Thanks to Henning Mersch.
4763
4764
4765 2010-02-08 [pawel]      3.7.5cvs9
4766
4767         * src/mimeview.c
4768                 Make tooltips less cryptic
4769         * src/gtk/description_window.c
4770                 Improve window size calculation
4771
4772 2010-02-08 [pawel]      3.7.5cvs8
4773
4774         * src/compose.c
4775         * src/compose.h
4776         * src/common/utils.c
4777         * src/common/utils.h
4778         * src/gtk/authors.h
4779                 Fix Bug 2058 "use in-reply-to info passed in mailto: links"
4780                 Patch by Laurent Bigonville with slight modifications
4781
4782 2010-02-03 [pawel]      3.7.5cvs7
4783
4784         * m4/.cvsignore
4785                 Add some libtool files to ignore
4786
4787 2010-02-03 [pawel]      3.7.5cvs6
4788
4789         * src/plugins/trayicon/trayicon.c
4790                 Save and then restore focus when closing/minimizing to tray
4791
4792 2010-02-03 [mir]        3.7.5cvs5
4793
4794         * src/addrindex.c
4795         * src/editldap.c
4796         * src/ldapctrl.c
4797         * src/ldapctrl.h
4798         * src/ldapquery.c
4799         * src/ldapupdate.c
4800             Save LDAP password encrypted. See bug 2113.
4801
4802
4803 2010-02-03 [colin]      3.7.5cvs4
4804
4805         * src/privacy.c
4806                 Fix again decoding of encrypted parts. The
4807                 reverting of the patch was wrong, as the
4808                 double-decoding was fixed in smime itself.
4809                 Thanks to Matthias Drochner again...
4810
4811 2010-02-02 [colin]      3.7.5cvs3
4812
4813         * src/plugins/smime/smime.c
4814         * src/privacy.c
4815                 Revert 3.7.4cvs2 and make a better patch for bug
4816                 2059 and 2076. Patch by Matthias Drochner
4817
4818 2010-01-31 [pawel]      3.7.5cvs2
4819
4820         * src/gtk/authors.h
4821                 Fix hungarian translator's name
4822
4823 2010-01-31 [pawel]      3.7.5cvs1
4824
4825         * src/messageview.c
4826         * src/mimeview.c
4827                 Fix Bug 2107 - Arrow keys don't work in message view window
4828
4829 2010-01-31 [paul]       3.7.5
4830
4831         * NEWS
4832         * README
4833         * RELEASE_NOTES 
4834                 3.7.5 released!
4835
4836 2010-01-23 [pawel]      3.7.4cvs10
4837
4838         * src/addressbook.c
4839                 Fix button sensitivity in compose mode
4840
4841 2010-01-23 [pawel]      3.7.4cvs9
4842
4843         * commitHelper
4844         * tools/kdeservicemenu/install.sh
4845         * tools/make.themes.project
4846         * tools/nautilus2claws-mail.sh
4847         * tools/popfile-link.sh
4848         * tools/textviewer.sh
4849                 Not all systems have bash installed in /bin, use env(1) to find
4850                 it`s location
4851
4852 2010-01-22 [pawel]      3.7.4cvs8
4853
4854         * src/prefs_account.c
4855         * src/prefs_filtering.c
4856         * src/prefs_send.c
4857         * src/gtk/colorlabel.c
4858                 Add some separators in combos
4859
4860 2010-01-22 [pawel]      3.7.4cvs7
4861
4862         * autogen.sh
4863                 --disable-aspell -> --disable-enchant
4864         * configure.ac
4865                 Fix options spacing in configure --help
4866         * src/wizard.c
4867                 Make wizard's window centered on the screen
4868
4869 2010-01-19 [holger]     3.7.4cvs6
4870
4871         * src/folder.c
4872         * src/folder.h
4873                 Introduce folder_get_item_from_identifier().
4874                 In contrast to folder_find_item_from_identifier(), this
4875                 function recursively creates the FolderItems in the id path.
4876                 Useful for programmatically creating folders (e.g. by plugins)
4877
4878 2010-01-17 [pawel]      3.7.4cvs5
4879
4880         * src/gtk/authors.h
4881                 Fix my lastname
4882
4883 2010-01-16 [colin]      3.7.4cvs4
4884
4885         * src/plugins/pgpcore/sgpgme.c
4886                 Probably fix bug 2098, 'claws-mails crashes frequently 
4887                 with pgpcore'. Fix double-free.
4888
4889 2010-01-16 [holger]     3.7.4cvs3
4890
4891         * src/prefs_toolbar.h
4892                 Forgotten header
4893
4894 2010-01-15 [colin]      3.7.4cvs2
4895
4896         * src/privacy.c
4897                 Decode mimeinfo before decrypting it. Probably
4898                 fixes bug 2059 'gpgme >=1.1.8 not compatible 
4899                 with S/MIME encryption' and bug 2076 'having 
4900                 worked 2 times properly CLAWS ceased to 
4901                 decrypt incoming PGP mails -displays base64 
4902                 instead - sucks completely'
4903                 Let's hope complete suckage ends here!
4904                 Thanks to Matthias Drochner.
4905
4906 2010-01-08 [paul]       3.7.4cvs1
4907
4908         * tools/claws.i18n.status.pl
4909                 fix typos
4910
4911 2010-01-08 [paul]       3.7.4
4912
4913         * NEWS
4914         * README
4915         * RELEASE_NOTES 
4916                 3.7.4 released!
4917
4918 2010-01-08 [paul]       3.7.3cvs57
4919
4920         * po/ca.po
4921         * po/cs.po
4922         * po/de.po
4923         * po/fi.po
4924         * po/hu.po
4925         * po/id.po
4926         * po/ja.po
4927         * po/nl.po
4928         * po/pt_BR.po
4929         * po/pt_PT.po
4930         * po/ru.po
4931         * po/sk.po
4932                 updated translations by Miquel Oliete, David Vachulka, Stephan Sachse,
4933                 Tommi Pirinen, Pader Rezso, MSulchan Darmawan, kazken3, Marcel Pol,
4934                 Frederico Goncalves Guimaraes, Tiago Faria, Aleksei Miheev, and
4935                 Slavko
4936
4937 2010-01-08 [paul]       3.7.3cvs56
4938
4939         * src/common/utils.c
4940                 fix bug 2089, 'URLs ending with an underscore ('_')
4941                 are not correctly parsed'. thanks to Johan
4942
4943 2010-01-05 [colin]      3.7.3cvs55
4944
4945         * po/fr.po
4946                 Update french translation
4947
4948 2010-01-04 [mones]      3.7.3cvs54
4949
4950         * po/es.po
4951                 Update Spanish translation
4952
4953 2010-01-04 [mones]      3.7.3cvs53
4954
4955         * manual/plugins.xml
4956                 Some format
4957         * manual/es/claws-mail-manual.xml
4958         * manual/es/intro.xml
4959         * manual/es/plugins.xml
4960                 Synchronise with English version
4961
4962 2010-01-03 [paul]       3.7.3cvs52
4963
4964         * ChangeLog
4965                 fix format
4966         * src/gtk/authors.h
4967                 update TEAM_LIST, fix encoding
4968
4969 2010-01-03 [mir]        3.7.3cvs51
4970
4971         * src/compose.c
4972                 When composing to a NNTP list TO: will always be preset
4973                 to the NNTP list unless user has chosen some other default
4974                 in which case we will handle this the normal way. Therefore
4975                 mfield will be set to TO_FIELD_PRESENT if mailto is NULL.
4976
4977 2010-01-01 [paul]       3.7.3cvs50
4978
4979         * src/gtk/about.c
4980                 bump copyright year whilst it's in mind
4981
4982 2009-12-31 [paul]       3.7.3cvs49
4983
4984         * manual/claws-mail-manual.xml
4985         * manual/intro.xml
4986         * manual/plugins.xml
4987                 fix links so that they make sense in the context of the
4988                 text version of the manual
4989
4990 2009-12-31 [paul]       3.7.3cvs48
4991
4992         * manual/intro.xml
4993         * manual/plugins.xml
4994                 updates, improvements, corrections, additions
4995
4996 2009-12-29 [pawel]      3.7.3cvs47
4997
4998         * src/prefs_filtering_action.c
4999                 Fix Bug 2082 'Wrong color rectangle position when replacing
5000                 "color" processing rule'
5001
5002 2009-12-29 [colin]      3.7.3cvs46
5003
5004         * src/compose.c
5005                 Fix bug 2074, 'Remember sending account 
5006                 for sent messages'
5007
5008 2009-12-20 [holger]     3.7.3cvs45
5009
5010         * src/compose.c
5011                 Delay CREATED_HOOKLIST invokation until
5012                 after the modifications to the compose window
5013                 are done, to allow hooks to further modify the
5014                 window without getting overridden again
5015
5016 2009-12-20 [holger]     3.7.3cvs44
5017
5018         * src/prefs_toolbar.h
5019                 Fix last commit
5020
5021 2009-12-20 [holger]     3.7.3cvs43
5022
5023         * src/prefs_toolbar.c
5024         * src/prefs_toolbar.h
5025         * src/toolbar.c
5026                 Pass window struct to caller
5027
5028 2009-12-20 [holger]     3.7.3cvs42
5029
5030         * src/compose.c
5031         * src/compose.h
5032                 Add hooklist after creation of a compose window
5033
5034 2009-12-19 [holger]     3.7.3cvs41
5035
5036         * src/prefs_toolbar.c
5037         * src/prefs_toolbar.h
5038         * src/toolbar.c
5039                 Allow plugins to choose to which toolbar they want
5040                 to add actions (main window, compose window, or message view)
5041
5042 2009-12-19 [paul]       3.7.3cvs40
5043
5044         * src/statusbar.c
5045                 fix statusbar in GTK+ 2.19.1
5046
5047 2009-12-10 [pawel]      3.7.3cvs39
5048
5049         * src/compose.c
5050                 Better fix for cvs28 regression
5051
5052 2009-12-10 [iwkse]      3.7.3cvs38
5053
5054         * src/compose.c
5055             Fix some indentation
5056
5057 2009-12-10 [iwkse]      3.7.3cvs37
5058
5059         * src/compose.c
5060             Add missing checks for gtkaspell: avoid
5061             crashing in some cases when Enchant is 
5062             enabled but the spell checker is disabled 
5063             in preferences.
5064
5065 2009-12-09 [colin]      3.7.3cvs36
5066
5067         * src/compose.c
5068                 Fix leak and unchecked accesses.
5069
5070 2009-12-09 [mir]        3.7.3cvs35
5071
5072         * src/compose.c
5073         Fix Bug 2072 "template at folder properties is not working"
5074         introduced in cvs24.
5075
5076 2009-12-08 [pawel]      3.7.3cvs34
5077
5078         * src/compose.c
5079                 When 'Reply All' remove current compose address from
5080                 Cc/Bcc list - fix for regression introduced in cvs28
5081
5082 2009-12-05 [pawel]      3.7.3cvs33
5083
5084         * src/messageview.c
5085                 Fix memory management, duh!
5086
5087 2009-12-04 [pawel]      3.7.3cvs32
5088
5089         * src/messageview.c
5090                 Use case insensitive comparison in search for
5091                 duplicate urls
5092         * src/uri_opener.c
5093                 Refresh scrollbars on every window open
5094
5095 2009-12-04 [pawel]      3.7.3cvs31
5096
5097         * src/compose.c
5098                 Highlight misspelled words when applying template and
5099                 check_while_typing option is on
5100
5101 2009-12-03 [pawel]      3.7.3cvs30
5102
5103         * src/compose.c
5104                 Highlight misspelled words in text inserted from file(s)
5105                 or pasted to message body when check_while_typing
5106                 options is on
5107
5108 2009-12-02 [pawel]      3.7.3cvs29
5109
5110         * src/compose.c
5111                 Revert first part of previous commit
5112
5113 2009-12-02 [pawel]      3.7.3cvs28
5114
5115         * src/compose.c
5116                 Fix Bug 2055 "duplicate mailing list reply if
5117                 List-Post + Reply-To present"
5118                 - Ignore Reply-To if answering to ML
5119                 - Improve parsing of List-Post header
5120
5121 2009-12-02 [pawel]      3.7.3cvs27
5122
5123         * src/compose.c
5124         * src/compose.h
5125                 Fix Bug 1850 "Reply All" duplicates "To" user in "CC" if original
5126                 email had user in "From" and "CC"
5127                 Don't allow duplicate addresses in compose window headers
5128
5129 2009-12-02 [mones]      3.7.3cvs26
5130
5131         * manual/intro.xml
5132         * manual/es/intro.xml
5133         * manual/fr/intro.xml
5134         * manual/it/intro.xml
5135         * manual/pl/intro.xml
5136                 Make URL to point current site
5137
5138 2009-12-01 [holger]     3.7.3cvs25
5139
5140         * src/summaryview.c
5141         * src/summaryview.h
5142                 Introduce new drag type "claws-mail/msg-path-list" for
5143                 drag'n'drop of a message selection from the summaryview
5144                 into other applications. The drag data gets set to the
5145                 folder-item-id followed by message ids, separated by newlines.
5146                 This enables other applications to back-link to Claws Mail
5147                 via a "claws-mail --select" call after they received a drop.
5148
5149 2009-11-30 [mir]        3.7.3cvs24
5150
5151         * src/compose.c
5152            Place cursor in compose window according to provided input
5153            If to: is present place cursor in subject field and if both
5154            to: and subject: is present place cursor in body. If body: is
5155            present insert a new line after text and place cursor there.
5156
5157 2009-11-27 [mones]      3.7.3cvs23
5158
5159         * src/gtk/quicksearch.c
5160                 Allow viewing longer expressions if there's space
5161
5162 2009-11-25 [holger]     3.7.3cvs22
5163
5164         * Makefile.am
5165         * src/common/Makefile.am
5166         * src/common/utils.c
5167         * src/common/utils.h
5168                 Add a function to query the
5169                 filepath of the .desktop file
5170
5171 2009-11-25 [colin]      3.7.3cvs21
5172
5173         * src/imap.c
5174                 Fix bug 2063, 'glib assertion in GRelation use in 
5175                 imap.c'
5176
5177 2009-11-24 [pawel]      3.7.3cvs20
5178
5179         * src/common/utils.c
5180                 Fix Bug 2053 'Inconsistent application of Coloration 
5181                 of Message text'
5182                 Don't allow '<' character between quotation marks
5183
5184 2009-11-21 [holger]     3.7.3cvs19
5185
5186         * src/printing.c
5187                 Modify cairo clip handling in preview windows,
5188                 to prevent print preview windows from being blank
5189                 with GTK+ 2.18. Follow recommendation of the GTK+
5190                 documentation (section "Migrating to client side windows")
5191                 and create a new cairo context for each expose event.
5192
5193 2009-11-19 [pawel]      3.7.3cvs18
5194
5195         * Makefile.am
5196                 complete 3.7.3cvs15 so install is DESTDIR safe
5197                 remove icons with changed names on uninstall
5198
5199 2009-11-18 [pawel]      3.7.3cvs17
5200
5201         * src/news_gtk.c
5202                 remove unneeded and code-duplicating function
5203
5204 2009-11-18 [pawel]      3.7.3cvs16
5205
5206         * src/news_gtk.c
5207                 Fix Bug 2057 'Claws mail does not keep renamed names
5208                 of nntp-subscribed groups'
5209                 Check for already subscribed group using item->path for group
5210                 comparision as folders item->path != item->name may be truth 
5211                 since we allowed renaming of newsgroups folders -> 3.5.0cvs11
5212
5213 2009-11-17 [pawel]      3.7.3cvs15
5214
5215         * Makefile.am
5216                 Fix Bug 2049 'some icons not copied?'
5217                 Install additional 64x64 and 128x128 icons
5218
5219 2009-11-17 [holger]     3.7.3cvs14
5220
5221         * src/prefs_toolbar.c
5222         * src/prefs_toolbar.h
5223         * src/toolbar.c
5224         * src/toolbar.h
5225                 Allow plugins to register toolbar items
5226
5227 2009-11-11 [pawel]      3.7.3cvs13
5228
5229         * src/addressbook.c
5230         * src/compose.c
5231         * src/compose.h
5232         * src/filtering.c
5233                 Fix Bug 1867 Changing account does not change BCC address
5234                 Set account specific headers when changing account
5235                 in compose window.
5236
5237 2009-11-07 [colin]      3.7.3cvs12
5238
5239         * src/gtk/prefswindow.c
5240                 Fix bug 2041, "add autonomical scrolled windows to prefs pages"
5241                 Patch by Pawel
5242
5243 2009-11-07 [colin]      3.7.3cvs11
5244
5245         * src/gtk/spell_entry.c
5246                 Fix bug 2040, 'numbers in subject entry marked as misspelled'
5247                 Patch by Pawel Pekala
5248
5249 2009-10-27 [colin]      3.7.3cvs10
5250
5251         * src/folder.c
5252                 Fix bug 2028, 'Attempts to connect to all accounts on exit'
5253                 Don't try to check whether the folder is up-to-date if
5254                 the folder class doesn't implement set_mtime, as we don't
5255                 care in this case. This code exists since a long time, but
5256                 the bug was triggered by more scanning of queue folders 
5257                 since recently (when we added \Deleted handling).
5258
5259 2009-10-27 [colin]      3.7.3cvs9
5260
5261         * src/mainwindow.c
5262                 Try to fix registering as default client
5263                 on windows 7
5264
5265 2009-10-21 [wwp]        3.7.3cvs8
5266
5267         * src/common/utils.c
5268                 Fix 3.7.3cvs7 (accidentally committed a CVS conflict mark, say bravo).
5269
5270 2009-10-21 [wwp]        3.7.3cvs7
5271
5272         * src/common/utils.c
5273                 Don't core dump when attempting to insert a non-existing
5274                 file using a mailto: uri (g_error does core dump).
5275
5276 2009-10-20 [colin]      3.7.3cvs6
5277
5278         * src/common/utils.c
5279                 Don't g_error on normal warnings...
5280
5281 2009-10-20 [colin]      3.7.3cvs5
5282
5283         * src/plugins/pgpcore/sgpgme.c
5284                 Fix bug 1996, 'S/MIME key not selected'
5285                 Check for S/MIME certs too
5286
5287 2009-10-20 [colin]      3.7.3cvs4
5288
5289         * src/common/w32lib.h
5290                 Fix win32 build on latest mingw32
5291
5292 2009-10-20 [colin]      3.7.3cvs3
5293
5294         * src/exportldif.c
5295         * src/ldif.c
5296         * src/ldif.h
5297                 Fix LDIF export. Patch by Michael Rasmussen
5298
5299 2009-10-18 [paul]       3.7.3cvs2
5300
5301         * tools/claws.i18n.status.pl
5302                 increase the value of $transolddays since we're relasing less
5303                 often now.
5304                 rework the en_GB.po hack so that en_GB is always 100% translated
5305                 and recently updated
5306
5307 2009-10-17 [paul]       3.7.3cvs1
5308
5309         * src/prefs_account.c
5310         * src/prefs_compose_writing.c
5311         * src/prefs_receive.c
5312         * src/prefs_summaries.c
5313         * src/prefs_wrapping.c
5314                 reword a few labels. (this incorporates everything
5315                 that seemed worthwhile from bug 2020)
5316         * src/prefs_customheader.c
5317                 use a 'Browse' button instead of button with
5318                 label 'From file...'
5319
5320 2009-10-12 [colin]
5321
5322         * CVS repository change
5323
5324 2009-10-09 [paul[       3.7.3
5325
5326         version 3.7.3 unleashed!!
5327
5328 2009-10-07 [paul]       3.7.2cvs49
5329
5330         * src/folderview.c
5331         * src/folderview.h
5332         * src/mainwindow.c
5333                 fix  Bug 1994 -  Changing colors required restart.
5334                 in the process rename folderview_reflect_prefs_pixmap_theme() to the
5335                 more accurate folderview_reinit_fonts()
5336
5337 2009-10-07 [paul]       3.7.2cvs48
5338
5339         * src/addrgather.c
5340         * src/prefs_common.c
5341         * src/prefs_common.h
5342                 fix  Bug 2003 -  Address gathering dialog minor bugs/annoyances,
5343                 patch by Pawel Pekala
5344
5345 2009-10-07 [paul]       3.7.2cvs47
5346
5347         * po/cs.po
5348         * po/de.po
5349         * po/hu.po
5350         * po/id.po
5351         * po/ja.po
5352         * po/pt_BR.po
5353                 updated by David Vachulka, Stephan Sachse and Marc Arens,
5354                 Pader Rezso, MSulchan Darmawan, kazken3, and Frederico
5355                 Goncalves Guimaraes
5356
5357 2009-10-06 [colin]      3.7.2cvs46
5358
5359         * po/fr.po
5360                 French translation update
5361
5362 2009-10-05 [paul]       3.7.2cvs45
5363
5364         * src/printing.c
5365                 enable Page Size and Orientation in the print dialog,
5366                 GTK+ >= 2.18.x only. Patch by Mark__T
5367
5368 2009-10-05 [paul]       3.7.2cvs44
5369
5370         * src/prefs_summaries.c
5371                 fix label, startup --> start-up, to match other uses of the
5372                 term
5373
5374 2009-10-05 [paul]       3.7.2cvs43
5375
5376         * po/pl.po
5377                 updated by Emilian Nowak
5378
5379 2009-10-03 [colin]      3.7.2cvs42
5380
5381         * src/mimeview.c
5382         * src/noticeview.c
5383         * src/gtk/gtkcmclist.c
5384         * src/gtk/gtkvscrollbutton.c
5385         * src/gtk/logwindow.c
5386                 GTK+ 2.18 fixes:
5387                 Fix bug 2008, 'Claws-Mail doesn't refresh after deletion'
5388                 Fix bug 2009, 'Incorrect pointer representation with GTK+2.18'
5389                 Fix warning at start
5390
5391 2009-09-28 [colin]      3.7.2cvs41
5392
5393         * src/matcher.c
5394         * src/mimeview.c
5395         * src/prefs_folder_item.c
5396                 Fix bug 2007, 'Small memory leaks'. Patch by Pawel
5397
5398 2009-09-28 [colin]      3.7.2cvs40
5399
5400         * src/prefs_summaries.c
5401         * src/gtk/sslcertwindow.c
5402                 Fix bug 2006, 'Non-utf8 strftime(3) date strings 
5403                 shows up garbled in GUI'. Patch by Pawel Pekala
5404
5405 2009-09-24 [iwkse]      3.7.2cvs39
5406
5407         * configure.ac
5408             That's only for statistics, of course :)
5409
5410 2009-09-24 [iwkse]      3.7.2cvs38
5411
5412         * configure.ac
5413             ...
5414
5415 2009-09-24 [iwkse]      3.7.2cvs37
5416
5417         * configure.ac
5418             Revert unwanted change
5419
5420 2009-09-24 [iwkse]      3.7.2cvs36
5421
5422         * src/action.c
5423             Fix issue with filtering actions and 
5424             parsed parameters
5425
5426 2009-09-20 [mones]      3.7.2cvs35
5427
5428         * tools/convert_mbox.pl
5429                 Add -R flag to support recursive conversions
5430                 of arbitrary Evolution mail folders, based on
5431                 bash script by Daniel Dickinson (fixes debian 
5432                 bug #461435) 
5433         * tools/popfile-link.sh
5434                 Set required shell for script (fixes debian 
5435                 bug #530057)
5436
5437 2009-09-16 [colin]      3.7.2cvs34
5438
5439         * src/main.c
5440                 Go grab files in /etc/skel if they exist
5441                 at first startup 
5442
5443 2009-09-15 [colin]      3.7.2cvs33
5444
5445         * src/procmime.c
5446                 Complete 3.7.1cvs42: only output directly to
5447                 final file if we get NULL byes at the start.
5448                 Still fixes saving UTF16 files, but also
5449                 fixes displaying Base64 parts with decoding
5450                 errors (parts without errors get displayed)
5451
5452 2009-09-14 [colin]      3.7.2cvs32
5453
5454         * src/matcher.c
5455         * src/matcher.h
5456         * src/matcher_parser_parse.y
5457         * src/prefs_matcher.c
5458                 Add 'has_attachment' and 'signed' matcher
5459                 expressions. Patch by Aleksei Miheev, fixes
5460                 bug 1997. 
5461
5462 2009-09-14 [colin]      3.7.2cvs31
5463
5464         * src/common/utils.c
5465                 Add "Re :" prefix from french Yahoo mail.
5466                 Patch by Didier Barvaux, fixes bug 1999
5467
5468 2009-09-10 [mones]      3.7.2cvs30
5469
5470         * manual/plugins.xml
5471                 Fix sites supported by SpamReport
5472         * manual/es/plugins.xml
5473                 Synchronise Spanish manual
5474
5475 2009-09-07 [holger]     3.7.2cvs29
5476
5477         * Makefile.am
5478                 Also update the icon cache on uninstall.
5479                 This prevents possible problems when Claws Mail was
5480                 uninstalled and installed again into a different location,
5481                 see http://bugzilla.gnome.org/show_bug.cgi?id=362604
5482                 and the blog post linked therein
5483
5484 2009-09-07 [paul]       3.7.2cvs28
5485
5486         * src/prefs_toolbar.c
5487                 when updating the main toolbar icons just update
5488                 the main toolbar (and consequently fix a bug where
5489                 folderview icons would disappear)
5490
5491 2009-08-30 [holger]     3.7.2cvs27
5492
5493         * src/compose.c
5494                 Do case-insensitive comparison against
5495                 header names when extracting recipients
5496                 from composed mails
5497
5498 2009-08-23 [colin]      3.7.2cvs26
5499
5500         * src/mbox.c
5501                 Probably fix RH bug 512024, " folder.c:3543 
5502                 Condition msglist != NULL failed"
5503
5504 2009-08-23 [colin]      3.7.2cvs25
5505
5506         * src/prefs_compose_writing.c
5507                 Make the maximum size warning bigger. Patch
5508                 by Didier Barvaux on bug 1986.
5509
5510 2009-08-21 [colin]      3.7.2cvs24
5511
5512         * src/compose.c
5513                 Previous commit: move the function into compose_insert_file
5514                 so that it's also used on drag-n-drop
5515
5516 2009-08-21 [colin]      3.7.2cvs23
5517
5518         * src/compose.c
5519                 Fix scrolling when adding an header
5520
5521 2009-08-21 [colin]      3.7.2cvs22
5522
5523         * src/compose.c
5524         * src/prefs_common.c
5525         * src/prefs_common.h
5526         * src/prefs_compose_writing.c
5527         * src/common/utils.c
5528                 Fix bug 1986, "New feature: warn user when inserting 
5529                 a large file in the message body". Patch by Didier
5530                 Barvaux
5531
5532 2009-08-21 [colin]      3.7.2cvs21
5533
5534         * AUTHORS
5535         * src/gtk/authors.h
5536         * src/common/utils.c
5537                 Fix bug 1984: Add R�f. : reply prefix (french 
5538                 Lotus Notes); patch by Didier Barvaux
5539
5540 2009-08-21 [colin]      3.7.2cvs20
5541
5542         * src/codeconv.c
5543         * src/codeconv.h
5544                 Fix bug 1969, 'Bad guess for outgoing encoding'
5545                 Make sure the specific converters (japanese in
5546                 this case) can return success/error in strict
5547                 mode, instead of silently failing back to 
5548                 strncpy
5549
5550 2009-08-20 [holger]     3.7.2cvs19
5551
5552         * src/compose.c
5553         * src/compose.h
5554                 Make it possible for code outside
5555                 compose (e.g. plugins) to attach files
5556
5557 2009-08-20 [colin]      3.7.2cvs18
5558
5559         * src/main.c
5560                 Fix crash when accessing IMAP soon
5561
5562 2009-08-18 [colin]      3.7.2cvs17
5563
5564         * src/ldapquery.c
5565                 Maybe fix crash on non-existent LDAP server
5566
5567 2009-08-04 [colin]      3.7.2cvs16
5568
5569         * src/toolbar.c
5570                 Fix toolbar's spacing that breaks dark
5571                 themes (patch from http://blogs.igalia.com/aperez/
5572                 2009/07/making-claws-mail-look-better/)
5573
5574 2009-07-28 [colin]      3.7.2cvs15
5575
5576         * src/account.c
5577         * src/addrcustomattr.c
5578         * src/addressadd.c
5579         * src/addressbook_foldersel.c
5580         * src/addrgather.c
5581         * src/browseldap.c
5582         * src/compose.c
5583         * src/editbook.c
5584         * src/editgroup.c
5585         * src/editjpilot.c
5586         * src/editldap.c
5587         * src/editldap_basedn.c
5588         * src/edittags.c
5589         * src/editvcard.c
5590         * src/exphtmldlg.c
5591         * src/expldifdlg.c
5592         * src/export.c
5593         * src/foldersel.c
5594         * src/import.c
5595         * src/importldif.c
5596         * src/importmutt.c
5597         * src/importpine.c
5598         * src/prefs_actions.c
5599         * src/prefs_customheader.c
5600         * src/prefs_display_header.c
5601         * src/prefs_filtering.c
5602         * src/prefs_folder_column.c
5603         * src/prefs_matcher.c
5604         * src/prefs_summary_column.c
5605         * src/prefs_summary_open.c
5606         * src/prefs_template.c
5607         * src/textview.c
5608         * src/uri_opener.c
5609                 Fix bug 1950, 'Program freeze up during folder selection'
5610                 Don't leave hidden windows modal
5611
5612 2009-07-28 [colin]      3.7.2cvs14
5613
5614         * src/ldapquery.c
5615                 Fix bug 1957, 'LDAP errs out after searching too 
5616                 many search bases'
5617
5618 2009-07-28 [colin]      3.7.2cvs13
5619
5620         * src/summaryview.c
5621                 Fix bug 1966, '"Collapse all threads" slower than 
5622                 "Expand all threads"'
5623
5624 2009-07-28 [colin]      3.7.2cvs12
5625
5626         * src/common/session.c
5627                 Fix bug 1967, 'Claws gets stuck after accepting 
5628                 a certificate warning dialog'
5629
5630 2009-07-19 [paul]       3.7.2cvs11
5631
5632         * manual/plugins.xml
5633                 a few small changes to the English
5634
5635 2009-07-18 [mones]      3.7.2cvs10
5636
5637         * manual/plugins.xml
5638                 Add new bsfilter and fancy plugins to the docs
5639                 and a note about dealing with plugins of the same class
5640         * src/prefs_account.c
5641                 Fix extra space at the end typo
5642
5643 2009-07-16 [colin]      3.7.2cvs9
5644
5645         * src/summaryview.c
5646                 Fix wrong return without unlocking; thanks
5647                 to mupuf_
5648
5649 2009-07-14 [colin]      3.7.2cvs8
5650
5651         * src/imap.c
5652                 Fix bug 1954, 'Segfault on reading wrong STATUS'
5653
5654 2009-07-10 [colin]      3.7.2cvs7
5655
5656         * src/plugins/pgpcore/plugin.def
5657         * src/common/utils.h
5658                 Fix windows port
5659
5660 2009-07-10 [colin]      3.7.2cvs6
5661
5662         * src/prefs_display_header.c
5663                 Fix bug 1951, 'C-Mail dumps core when editing 
5664                 displayed headers'. Patch by Alexey Rusakov
5665
5666 2009-07-10 [colin]      3.7.2cvs5
5667
5668         * src/folderview.c
5669                 Fix bug 1952, 'Deleted mails in Queue folder 
5670                 highlight it'.
5671
5672 2009-07-09 [colin]      3.7.2cvs4
5673
5674         * src/gtk/spell_entry.c
5675                 Fix bug 1949, 'Spell checker doesn't recognise 
5676                 certain word in Subject header, but does in 
5677                 message body'. Patch by Pawel Pekala.
5678
5679 2009-07-09 [paul]       3.7.2cvs3
5680
5681         * configure.ac
5682                 use pkgconfig to check for the minimum required
5683                 version of GnuTLS
5684
5685 2009-07-06 [colin]      3.7.2cvs2
5686
5687         * src/prefs_customheader.c
5688                 Fix build failure
5689
5690 2009-07-04 [paul]       3.7.2cvs1
5691
5692         * tools/claws.i18n.status.pl
5693                 updated
5694
5695 2009-07-03 [paul]       3.7.2
5696
5697         * NEWS
5698         * README
5699         * RELEASE_NOTES 
5700                 3.7.2 released!
5701
5702 2009-07-03 [paul]       3.7.1cvs85
5703
5704         * AUTHORS
5705         * configure.ac
5706         * po/pt_PT.po
5707         * po/sk.po
5708         * src/gtk/authors.h
5709                 added new translations by Tiago Faria and Slavko
5710         * po/bg.po
5711         * po/cs.po
5712         * po/de.po
5713         * po/es.po
5714         * po/fi.po
5715         * po/fr.po
5716         * po/hu.po
5717         * po/id.po
5718         * po/it.po
5719         * po/ja.po
5720         * po/pt_BR.po
5721         * po/ru.po
5722                 updated by Yasen Pramatarov, David Vachulka, Stephan Sachse,
5723                 Ricardo Mones, Tommi Pirinen, Colin Leroy, Pader Rezso,
5724                 MSulchan Darmawan, Andrea Spadaccini, kazken3, Frederico
5725                 Goncalves Guimaraes, Aleksei Miheev
5726
5727 2009-07-01 [colin]      3.7.1cvs84
5728
5729         * src/prefs_common.c
5730                 Fix bug 1940, 'Doesn't open links in 
5731                 user's default browser'. Turn the preference
5732                 to TRUE by default; that will only change the
5733                 behaviour for new users.
5734
5735 2009-06-29 [colin]      3.7.1cvs83
5736
5737         * src/filtering.c
5738         * src/filtering.h
5739         * src/prefs_filtering_action.c
5740                 Fix bug 1935, 'problems with very long filtering actions':
5741                 Use a dynamic buffer in action to string, and a bigger
5742                 buffer in string to action
5743
5744 2009-06-29 [colin]      3.7.1cvs82
5745
5746         * src/matcher_parser_lex.l
5747                 Fix bug 1878, 'Processing rules for folders with brackets aren't saved'
5748
5749 2009-06-29 [colin]      3.7.1cvs81
5750
5751         * src/addressbook.c
5752                 Fix warnings
5753         * src/editgroup.c
5754                 Fix crash (out-of-bounds tree column)
5755         * src/gtk/gtkcmctree.c
5756         * src/gtk/gtksctree.c
5757                 Prevent using an out-of-bounds tree column
5758
5759 2009-06-29 [colin]      3.7.1cvs80
5760
5761         * src/ldapupdate.c
5762         * src/ldif.c
5763                 Leak fixes; patch by Pawel Pekala.
5764
5765 2009-06-26 [colin]      3.7.1cvs79
5766
5767         * src/summaryview.c
5768                 Sort by msgnum if dates are equal
5769
5770 2009-06-24 [paul]       3.7.1cvs78
5771
5772         * src/summaryview.c
5773                 make some (forgotten) strings translatable
5774
5775 2009-06-19 [colin]      3.7.1cvs77
5776
5777         * src/summaryview.c
5778                 Fix menu sensitiveness
5779
5780 2009-06-18 [colin]      3.7.1cvs76
5781
5782         * configure.ac
5783         * src/plugins/pgpcore/sgpgme.c
5784         * src/plugins/pgpcore/sgpgme.h
5785         * src/plugins/pgpmime/mypgpcore.def
5786         * src/plugins/pgpmime/pgpmime.c
5787         * src/plugins/smime/mypgpcore.def
5788         * src/plugins/smime/smime.c
5789                 Use largefile support (and stop using our old GPGME
5790                 hack on gpgme_data_seek/rewind)
5791                 (See 1.9.12cvs44 to 46 - if this breaks things we 
5792                 should soon know :)
5793
5794 2009-06-13 [colin]      3.7.1cvs75
5795
5796         * src/gtk/spell_entry.c
5797                 Fix assertion. We can put a NULL gtkaspell to
5798                 an entry; it just means it won't be spell-checked.
5799
5800 2009-06-12 [mones]      3.7.1cvs74
5801
5802         * src/compose.c
5803         * src/messageview.c
5804         * src/prefs_account.c
5805         * src/prefs_account.h
5806         * src/common/utils.c
5807         * src/common/utils.h
5808                 Added preference to use account address in generated
5809                 Message-Id. Fixes Debian bug #531052
5810
5811 2009-06-12 [colin]      3.7.1cvs73
5812
5813         * src/common/ssl.c
5814                 Better fix, API-compatible with libgnutls13
5815
5816 2009-06-12 [colin]      3.7.1cvs72
5817
5818         * src/common/ssl.c
5819                 Use compatibility mode in GnuTLS, and avoid problems with 
5820                 servers that don't comply 100% with the spec, but still
5821                 exist.
5822
5823 2009-06-06 [iwkse]      3.7.1cvs71
5824
5825         * src/compose.c
5826                 Ops..revert a mix with another patch
5827
5828 2009-06-06 [iwkse]      3.7.1cvs70
5829
5830         * src/compose.c
5831                 A better fix for the previous commit's issue
5832
5833 2009-06-06 [iwkse]      3.7.1cvs69
5834
5835         * src/compose.c
5836                 Fix shutting down of Claws Mail while a GTK_Return keypress 
5837                 event is sent to the Attach property window
5838
5839 2009-06-05 [colin]      3.7.1cvs68
5840
5841         * src/compose.c
5842                 Fix build on GTK+ 2.6
5843
5844 2009-06-03 [mones]      3.7.1cvs67
5845
5846         * tools/make.themes.project
5847                 Oops! fix header, sorry Paul ;-)
5848
5849 2009-06-03 [mones]      3.7.1cvs66
5850
5851         * tools/make.themes.project
5852                 Add support for PNG themes and other
5853                 fixes i don't remember now... :)
5854
5855 2009-06-02 [colin]      3.7.1cvs65
5856
5857         * src/compose.c
5858         * src/prefs_template.c
5859         * src/quote_fmt.c
5860                 Fix error messages in templates, and fix their
5861                 checking
5862
5863 2009-05-22 [colin]      3.7.1cvs64
5864
5865         * src/compose.c
5866                 And remove hbox too
5867
5868 2009-05-22 [colin]      3.7.1cvs63
5869
5870         * src/compose.c
5871                 Fix phantom button behind entry when
5872                 changing fields via Tools/Reply mode.
5873
5874 2009-05-22 [colin]      3.7.1cvs62
5875
5876         * src/compose.c
5877                 Fix icon size
5878
5879 2009-05-21 [mones]      3.7.1cvs61
5880
5881         * src/compose.c
5882         * src/compose.h
5883                 Add button to empty header lines with one click
5884
5885 2009-05-21 [paul]       3.7.1cvs60
5886
5887         * src/mainwindow.c
5888         * src/mainwindow.h
5889         * src/plugins/trayicon/trayicon.c
5890                 when quitting from the trayicon, honour
5891                 prefs_common.clean_on_exit
5892
5893 2009-05-21 [paul]       3.7.1cvs59
5894
5895         * src/gtk/Makefile.am
5896                 remove duplicate entry
5897                 thanks to Charles A Edwards
5898
5899 2009-05-19 [paul]       3.7.1cvs58
5900
5901         * src/send_message.c
5902                 clear progressbar in the statusbar on 'Cancel'
5903
5904 2009-05-16 [colin]      3.7.1cvs57
5905
5906         * AUTHORS
5907         * src/gtk/authors.h
5908                 Add Fabian
5909
5910 2009-05-16 [colin]      3.7.1cvs56
5911
5912         * src/msgcache.c
5913                 Remove msgnum>0 condition for removing messages
5914                 from caches. There's no such condition on add.
5915                 Fixes bug 1913, 'Allow to remove phantom 
5916                 messages from the cache'; patch by Fabian
5917                 Keil <fk at fabiankeil.de>
5918
5919 2009-05-12 [holger]     3.7.1cvs55
5920
5921         * src/messageview.c
5922         * src/messageview.h
5923                 Introduce hook after showing of the message view
5924
5925 2009-05-11 [colin]      3.7.1cvs54
5926
5927         * src/compose.c
5928                 Fix bug 1872, 'A: Cc: CCi: selector should 
5929                 default on same as preceding contact'
5930
5931 2009-05-10 [holger]     3.7.1cvs53
5932
5933         * src/addr_compl.c
5934         * src/addr_compl.h
5935                 Add a hook to make it possible for plugins to
5936                 modify the address completion list
5937
5938 2009-05-06 [paul]       3.7.1cvs52
5939
5940         * src/folder.c
5941         * src/mimeview.c
5942                 fix bug 1915, 'Mails signed with smime.p7s
5943                 display both signed and attachment icon.'
5944
5945 2009-05-05 [colin]      3.7.1cvs51
5946
5947         * src/common/utils.c
5948                 Fix patch :)
5949
5950 2009-05-05 [colin]      3.7.1cvs50
5951
5952         * src/common/utils.c
5953                 Fix bug 1895, '(imap) cache issues when cache dir is on a 
5954                 different mountpoint than tempdir'
5955
5956 2009-05-04 [colin]      3.7.1cvs49
5957
5958         * src/msgcache.c
5959                 Probably fix bug 1914, 'Crash reading
5960                 corrupted tags file'
5961
5962 2009-04-26 [paul]       3.7.1cvs48
5963
5964         * configure.ac
5965         * src/gtk/gtkaspell.h
5966                 fix bug 1904, 'build mechanism looks for
5967                 'enchant.h' in a wrong place'
5968
5969 2009-04-25 [paul]       3.7.1cvs47
5970
5971         * src/printing.c
5972                 gah! fix coding style!
5973
5974 2009-04-25 [paul]       3.7.1cvs46
5975
5976         * src/printing.c
5977         * src/toolbar.c
5978                 if building with GTK+ >= 2.16 use
5979                 gtk_orientable_set_orientation() instead of now
5980                 deprecated gtk_toolbar_set_orientation()
5981
5982 2009-04-24 [colin]      3.7.1cvs45
5983
5984         * src/compose.c
5985                 Ask before sending if an attached file has
5986                 disappeared.
5987
5988 2009-04-19 [paul]       3.7.1cvs44
5989
5990         * src/prefs_common.c
5991         * src/prefs_common.h
5992         * src/gtk/about.c
5993                 save About window size.
5994                 patch by Pawel Pekala
5995
5996 2009-04-12 [paul]       3.7.1cvs43
5997
5998         * tools/csv2addressbook.pl
5999                 add extra CSV fields that are now appended
6000                 by thunderbird (version 2.0.0.21)
6001
6002 2009-04-08 [colin]      3.7.1cvs42
6003
6004         * src/procmime.c
6005                 fix saving (but not displaying) of UTF-16
6006                 files
6007
6008 2009-04-08 [colin]      3.7.1cvs41
6009
6010         * src/gtk/manage_window.c
6011                 Disable transient windows on win32 - seems to
6012                 fix most focusing issues
6013
6014 2009-04-05 [colin]      3.7.1cvs40
6015
6016         * src/procmsg.c
6017                 Don't ask whether we want to send deleted mails in queue
6018                 folders; also, don't send deleted mails when flushing
6019                 queues
6020
6021 2009-04-04 [paul]       3.7.1cvs39
6022
6023         * AUTHORS
6024         * configure.ac
6025         * po/id.po
6026         * src/gtk/authors.h
6027         * tools/claws.i18n.status.pl
6028                 add new Indonesian translation, by
6029                 MSulchan Darmawan
6030
6031 2009-04-03 [paul]       3.7.1cvs38
6032
6033         * AUTHORS
6034         * src/gtk/authors.h
6035                 credit due
6036
6037 2009-04-03 [colin]      3.7.1cvs37
6038
6039         * src/compose.c
6040         * src/textview.c
6041                 Fix bug 1891, 'Add support for gopher:// links'
6042                 Patch by Jacob Head <clawsmail at jacob-head.com>
6043                 Let's go back to the roots! 
6044
6045 2009-04-03 [paul]       3.7.1cvs36
6046
6047         * m4/Makefile.am
6048                 complete cvs35
6049
6050 2009-04-03 [paul]       3.7.1cvs35
6051
6052         * configure.ac
6053                 add AC_CONFIG_MACRO_DIR([m4])
6054                 remove CLAWS_ACLOCAL_INCLUDE(m4)
6055         * m4/aclocal-include.m4
6056                 removed this now unneeded file
6057
6058 2009-04-02 [colin]      3.7.1cvs34
6059
6060         * src/common/utils.h
6061                 Fix previous (thanks to Marcus :)
6062
6063 2009-04-02 [colin]      3.7.1cvs33
6064
6065         * src/common/utils.h
6066         * src/etpan/etpan-thread-manager.c
6067                 pipe() was a macro from GLib on win32 until
6068                 glib 2.13.2. It's undefined after that.
6069                 Thanks to Marcus Brinkmann for the heads-up!
6070
6071 2009-03-31 [colin]      3.7.1cvs32
6072
6073         * src/folder_item_prefs.c
6074                 Copy folder settings with prefs
6075
6076 2009-03-31 [colin]      3.7.1cvs31
6077
6078         * src/prefs_account.c
6079                 Don't use un-sensitive checkboxes in Privacy tab
6080                 when privacy system in None (makes unchecking 
6081                 painful when no privacy plugin is loaded)
6082
6083 2009-03-30 [colin]      3.7.1cvs30
6084
6085         * src/folder.c
6086         * src/folder.h
6087         * src/imap.c
6088         * src/mainwindow.c
6089         * src/mainwindow.h
6090         * src/prefs_account.c
6091         * src/prefs_account.h
6092         * src/summaryview.c
6093         * src/summaryview.h
6094                 Fix bug 1866, 'Claws should make use of the IMAP 'deleted' flag'
6095                 Add an option on the Receive page of IMAP account preferences:
6096                 "Move deleted mails to trash and expunge immediately". This
6097                 option defaults to TRUE to avoid changing the existing behaviour.
6098                 Setting it to FALSE prevents automatic expunging. 
6099                 Also, add Tools/Expunge and View/Hide deleted messages menu items
6100                 (View/Hide deleted message being a per-folder setting, and behaving,
6101                 like View/Hide read messages).
6102
6103 2009-03-30 [colin]      3.7.1cvs29
6104
6105         * src/imap.c
6106                 Fix Redhat bug 486422, Ubuntu bug 486422: Don't
6107                 ask for IMAP password when using GSSAPI auth
6108
6109 2009-03-27 [colin]      3.7.1cvs28
6110
6111         * src/folder.c
6112                 Fix cvs14, make sure we mark non-existent caches dirty
6113                 (or they never get written)
6114
6115 2009-03-27 [colin]      3.7.1cvs27
6116
6117         * src/imap.c
6118                 Fix tag update when all tags are removed 
6119                 from another client
6120
6121 2009-03-25 [colin]      3.7.1cvs26
6122
6123         * configure.ac
6124                 Fix configure.ac, thanks to Pawel
6125
6126 2009-03-25 [colin]      3.7.1cvs25
6127
6128         * src/news.c
6129         * src/etpan/nntp-thread.c
6130                 Fix header fetching (NG/To/Cc). Fixes 
6131                 bug 1883, 'Message processing fails to 
6132                 act on Newsgroups: field'
6133
6134 2009-03-23 [colin]      3.7.1cvs24
6135
6136         * src/textview.c
6137                 Fix internal headers visible in queue/sent
6138
6139 2009-03-23 [colin]      3.7.1cvs23
6140
6141         * configure.ac
6142                 Fix check for RC (resource compiler) used
6143                 on win32 (AC_LIBTOOL_RC used to call it 
6144                 implicitely but stopped)
6145
6146 2009-03-19 [colin]      3.7.1cvs22
6147
6148         * src/toolbar.c
6149                 Put spam button in default toolbar even if
6150                 bogofilter and spamassassin are not built.
6151                 Other anti-spam plugin could exist! :)
6152         * src/common/utils.c
6153                 Fix exit status fetch on win32
6154
6155 2009-03-18 [paul]       3.7.1cvs21
6156
6157         * src/gtk/spell_entry.c
6158                 fix "[BUG] Wrong word replaced in 'Subject:'
6159                 when spell-checking correction used"
6160                 Patch by Pawel Pekala
6161
6162 2009-03-17 [colin]      3.7.1cvs20
6163
6164         * src/common/utils.c
6165                 Fix win32 build (from cvs12)
6166
6167 2009-03-17 [colin]      3.7.1cvs19
6168
6169         * src/compose.c
6170                 Fix bug 1735, 'Change To: and Newsgroups: 
6171                 recipient field according account type'
6172                 Patch by Pawel
6173
6174 2009-03-17 [colin]      3.7.1cvs18
6175
6176         * src/msgcache.c
6177         * src/prefs_common.c
6178         * src/prefs_common.h
6179         * src/prefs_other.c
6180         * src/common/prefs.c
6181                 Add preference for fsyncing metadata
6182
6183 2009-03-16 [paul]       3.7.1cvs17
6184
6185         * src/prefs_customheader.c
6186                 add forgotten #if HAVE_LIBCOMPFACE
6187
6188 2009-03-16 [paul]       3.7.1cvs16
6189
6190         * src/prefs_customheader.c
6191                 put the (X-)Face preview image below the up/down
6192                 buttons so they don't jump around.
6193                 make the list reorderable by drag'n'drop
6194
6195 2009-03-16 [colin]      3.7.1cvs15
6196
6197         * src/prefs_customheader.c
6198                 Add a (X-)Face preview. Patch by iwkse.
6199
6200 2009-03-16 [colin]      3.7.1cvs14
6201
6202         * src/compose.c
6203         * src/folder.c
6204         * src/folder.h
6205         * src/msgcache.c
6206         * src/common/prefs.c
6207                 Add fsync calls to make sure we don't
6208                 lose data on system crashes. (to do:
6209                 add a pref to allow people choosing raw
6210                 speed)
6211
6212 2009-03-15 [colin]      3.7.1cvs13
6213
6214         * src/gtk/gtkaspell.c
6215                 Fix empty menu when there are no
6216                 suggestions (using the Spelling menu)
6217
6218 2009-03-14 [colin]      3.7.1cvs12
6219
6220         * src/common/utils.c
6221                 Win32: fix subject prefix length
6222
6223 2009-03-11 [mones]      3.7.1cvs11
6224
6225         * po/es.po
6226                 fix encoding declared in header
6227                 update translation now we're at it
6228
6229 2009-03-10 [colin]      3.7.1cvs10
6230
6231         * src/messageview.c
6232                 Fix "wrong mime" message printed out multiple
6233                 times
6234
6235 2009-03-10 [colin]      3.7.1cvs9
6236
6237         * src/prefs_folder_item.c
6238                 Fix build
6239
6240 2009-03-09 [paul]       3.7.1cvs8
6241
6242         * src/prefs_folder_item.c
6243         * src/send_message.c
6244                 fixes to english text
6245
6246 2009-03-08 [paul]       3.7.1cvs7
6247
6248         * po/ja.po
6249                 correct errors in header
6250
6251 2009-03-08 [paul]       3.7.1cvs6
6252
6253         * AUTHORS
6254         * configure.ac
6255         * po/ja.po
6256         * src/gtk/authors.h
6257         * tools/claws.i18n.status.pl
6258                 add Japanese translation, submitted by kazken3
6259
6260 2009-03-07 [colin]      3.7.1cvs5
6261
6262         * src/messageview.c
6263                 Don't let the invalid MIME warning hide
6264                 other noticeview (Partial receive or 
6265                 return receipt).
6266
6267 2009-03-07 [colin]      3.7.1cvs4
6268
6269         * src/procmime.c
6270                 Fix build
6271
6272 2009-03-07 [colin]      3.7.1cvs3
6273
6274         * src/messageview.c
6275         * src/procmime.c
6276         * src/procmime.h
6277                 Handle mimeparts that lack an end boundary.
6278                 They're invalid but it's too annoying for
6279                 normal users to fix.
6280
6281 2009-03-06 [wwp]        3.7.1cvs2
6282
6283         * src/compose.c
6284         * src/folder_item_prefs.c
6285         * src/folder_item_prefs.h
6286         * src/prefs_folder_item.c
6287                 Add per-folder default cc, bcc and reply-to.
6288
6289 2009-03-06 [colin]      3.7.1cvs1
6290
6291         * src/gedit-print.c
6292         * src/gtk/gtksourceprintjob.c
6293                 Fix build with old print interface
6294
6295 2009-03-06 [paul]       3.7.1
6296
6297         * NEWS
6298         * README
6299         * RELEASE_NOTES 
6300                 3.7.1 released!
6301
6302 2009-03-06 [paul]       3.7.0cvs78
6303
6304         * po/cs.po
6305         * po/de.po
6306         * po/fi.po
6307         * po/fr.po
6308         * po/hu.po
6309         * po/nl.po
6310         * po/pt_BR.po
6311         * po/sv.po
6312         * po/zh_CN.po
6313                 updated by David Vachulka, Stephan Sachse, Flammie
6314                 Pirinen, Colin Leroy, Pader Rezso, Marcel Pol,
6315                 Frederico Goncalves Guimaraes, Lars Persson Fink,
6316                 and Ralph Young
6317
6318 2009-03-03 [colin]      3.7.0cvs77
6319
6320         * src/prefs_filtering.c
6321                 Win32: Fix bug 1865, 'IMAP account name changes 
6322                 are not followed at filter actions'
6323
6324 2009-03-02 [colin]      3.7.0cvs76
6325
6326         * src/imap.c
6327                 Fix Launchpad bug 335571: 'claws-mail crashed 
6328                 with SIGSEGV in strlen() while deleting 
6329                 large amount of e-mails on IMAP account
6330
6331 2009-02-27 [mones]      3.7.0cvs75
6332
6333         * manual/es/account.xml
6334         * manual/es/ack.xml
6335         * manual/es/addrbook.xml
6336         * manual/es/advanced.xml
6337         * manual/es/claws-mail-manual.xml
6338         * manual/es/faq.xml
6339         * manual/es/glossary.xml
6340         * manual/es/gpl.xml
6341         * manual/es/handling.xml
6342         * manual/es/intro.xml
6343         * manual/es/keyboard.xml
6344         * manual/es/plugins.xml
6345         * manual/es/starting.xml
6346                 Sync with English version, fix some typos
6347                 Changed encoding to UTF-8
6348         * po/es.po
6349                 Update for release, changed encoding to UTF-8
6350
6351 2009-02-24 [colin]      3.7.0cvs74
6352
6353         * src/printing.c
6354                 Don't print separation line if there
6355                 are no headers
6356
6357 2009-02-23 [cleroy]     3.7.0cvs73
6358
6359         * src/account.c
6360         * src/action.c
6361         * src/addr_compl.c
6362         * src/addrbook.c
6363         * src/addrcache.c
6364         * src/addrcindex.c
6365         * src/addrclip.c
6366         * src/addrduplicates.c
6367         * src/addressadd.c
6368         * src/addressbook.c
6369         * src/addressbook_foldersel.c
6370         * src/addrharvest.c
6371         * src/addrindex.c
6372         * src/addritem.c
6373         * src/addrquery.c
6374         * src/addrselect.c
6375         * src/codeconv.c
6376         * src/compose.c
6377         * src/customheader.c
6378         * src/editaddress.c
6379         * src/editaddress_other_attributes_ldap.c
6380         * src/editgroup.c
6381         * src/editldap.c
6382         * src/enriched.c
6383         * src/exporthtml.c
6384         * src/exportldif.c
6385         * src/filtering.c
6386         * src/folder.c
6387         * src/foldersel.c
6388         * src/folderutils.c
6389         * src/folderview.c
6390         * src/gedit-print.c
6391         * src/html.c
6392         * src/imap.c
6393         * src/imap_gtk.c
6394         * src/inc.c
6395         * src/jpilot.c
6396         * src/ldapctrl.c
6397         * src/ldapquery.c
6398         * src/ldapserver.c
6399         * src/ldapupdate.c
6400         * src/ldif.c
6401         * src/localfolder.c
6402         * src/main.c
6403         * src/mainwindow.c
6404         * src/matcher.c
6405         * src/mbox.c
6406         * src/messageview.c
6407         * src/mh.c
6408         * src/mh_gtk.c
6409         * src/mimeview.c
6410         * src/msgcache.c
6411         * src/mutt.c
6412         * src/news.c
6413         * src/news_gtk.c
6414         * src/noticeview.c
6415         * src/pine.c
6416         * src/pop.c
6417         * src/prefs_account.c
6418         * src/prefs_actions.c
6419         * src/prefs_common.c
6420         * src/prefs_filtering.c
6421         * src/prefs_filtering_action.c
6422         * src/prefs_folder_column.c
6423         * src/prefs_folder_item.c
6424         * src/prefs_gtk.c
6425         * src/prefs_matcher.c
6426         * src/prefs_quote.c
6427         * src/prefs_send.c
6428         * src/prefs_summaries.c
6429         * src/prefs_summary_column.c
6430         * src/prefs_template.c
6431         * src/prefs_themes.c
6432         * src/prefs_toolbar.c
6433         * src/printing.c
6434         * src/privacy.c
6435         * src/procheader.c
6436         * src/procmime.c
6437         * src/procmsg.c
6438         * src/quote_fmt.c
6439         * src/remotefolder.c
6440         * src/send_message.c
6441         * src/sourcewindow.c
6442         * src/statusbar.c
6443         * src/stock_pixmap.c
6444         * src/summary_search.c
6445         * src/summaryview.c
6446         * src/textview.c
6447         * src/toolbar.c
6448         * src/undo.c
6449         * src/uri_opener.c
6450         * src/vcard.c
6451         * src/common/base64.c
6452         * src/common/claws.c
6453         * src/common/hooks.c
6454         * src/common/plugin.c
6455         * src/common/prefs.c
6456         * src/common/session.c
6457         * src/common/smtp.c
6458         * src/common/socket.c
6459         * src/common/string_match.c
6460         * src/common/stringtable.c
6461         * src/common/utils.c
6462         * src/common/utils.h
6463         * src/common/xml.c
6464         * src/common/xmlprops.c
6465         * src/gtk/colorlabel.c
6466         * src/gtk/combobox.c
6467         * src/gtk/foldersort.c
6468         * src/gtk/gtkaspell.c
6469         * src/gtk/gtkcmclist.c
6470         * src/gtk/gtkcmctree.c
6471         * src/gtk/gtkcmoptionmenu.c
6472         * src/gtk/gtksctree.c
6473         * src/gtk/gtkshruler.c
6474         * src/gtk/gtksourceprintjob.c
6475         * src/gtk/gtkutils.c
6476         * src/gtk/gtkvscrollbutton.c
6477         * src/gtk/logwindow.c
6478         * src/gtk/menu.c
6479         * src/gtk/pluginwindow.c
6480         * src/gtk/prefswindow.c
6481         * src/gtk/quicksearch.c
6482         * src/gtk/spell_entry.c
6483         * src/plugins/pgpcore/select-keys.c
6484         * src/plugins/pgpinline/pgpinline.c
6485         * src/plugins/pgpmime/pgpmime.c
6486         * src/plugins/smime/smime.c
6487         * src/plugins/spamassassin/spamassassin_gtk.c
6488                 Mass commit changing g_return_* to cm_return_*
6489                 and making these more interesting
6490
6491 2009-02-23 [colin]      3.7.0cvs72
6492
6493         * src/imap.c
6494                 Always initialise error code to no error
6495
6496 2009-02-23 [colin]      3.7.0cvs71
6497
6498         * src/imap.c
6499                 Fix separator substitution
6500
6501 2009-02-23 [colin]      3.7.0cvs70
6502
6503         * src/stock_pixmap.c
6504         * src/gtk/colorlabel.c
6505                 don't use g_return on normal checks
6506
6507 2009-02-22 [colin]      3.7.0cvs69
6508
6509         * src/addressbook.c
6510         * src/procmime.c
6511                 More fixes
6512
6513 2009-02-22 [colin]      3.7.0cvs68
6514
6515         * src/addrduplicates.c
6516         * src/addressbook.c
6517         * src/addrharvest.c
6518         * src/codeconv.c
6519         * src/compose.c
6520         * src/filtering.c
6521         * src/folder.c
6522         * src/imap.c
6523         * src/imap_gtk.c
6524         * src/importldif.c
6525         * src/jpilot.c
6526         * src/mainwindow.c
6527         * src/matcher.c
6528         * src/mbox.c
6529         * src/messageview.c
6530         * src/mh_gtk.c
6531         * src/prefs_common.c
6532         * src/prefs_filtering.c
6533         * src/prefs_gtk.c
6534         * src/printing.c
6535         * src/privacy.c
6536         * src/procmime.c
6537         * src/procmsg.c
6538         * src/summaryview.c
6539         * src/textview.c
6540         * src/undo.c
6541         * src/wizard.c
6542         * src/common/md5.c
6543         * src/common/socket.c
6544         * src/common/template.c
6545         * src/etpan/imap-thread.c
6546         * src/gtk/gtkaspell.c
6547         * src/gtk/gtkcmctree.c
6548         * src/gtk/gtksctree.c
6549         * src/gtk/inputdialog.c
6550         * src/plugins/pgpcore/sgpgme.c
6551         * src/plugins/pgpmime/pgpmime.c
6552         * src/plugins/smime/smime.c
6553         * src/plugins/spamassassin/spamassassin.c
6554                 Fix errors caught by Coverity: NULL checks, leaks, overruns,
6555                 uninitialised accesses
6556
6557 2009-02-17 [colin]      3.7.0cvs67
6558
6559         * src/compose.c
6560                 Disable controls during queuing
6561
6562 2009-02-15 [colin]      3.7.0cvs66
6563
6564         * src/privacy.c
6565         * src/plugins/pgpcore/select-keys.c
6566         * src/plugins/pgpcore/sgpgme.c
6567                 Disable use of disabled keys
6568
6569 2009-02-15 [colin]      3.7.0cvs65
6570
6571         * src/folderview.c
6572         * src/summaryview.c
6573                 Fix font updating after changing 
6574                 prefs_common.derive_from_normal_font
6575
6576 2009-02-12 [paul]       3.7.0cvs64
6577
6578         * src/addressitem.h
6579         * src/export.h
6580         * src/headerview.c
6581         * src/headerview.h
6582         * src/common/version.h.in
6583         * src/gtk/about.h
6584         * src/gtk/menu.c
6585         * src/gtk/menu.h
6586                 more copyright header fixes
6587
6588 2009-02-12 [paul]       3.7.0cvs63
6589
6590         * src/gtk/progressdialog.c
6591         * src/gtk/progressdialog.h
6592                 fix copyright header
6593
6594 2009-02-12 [paul]       3.7.0cvs62
6595
6596         * src/gtk/spell_entry.c
6597         * src/gtk/spell_entry.h
6598                 better, more standard copyright header
6599
6600 2009-02-12 [paul]       3.7.0cvs61
6601
6602         * src/gtk/spell_entry.c
6603         * src/gtk/spell_entry.h
6604                 changes to copyright header
6605
6606 2009-02-12 [paul]       3.7.0cvs60
6607
6608         * src/gtk/spell_entry.c
6609         * src/gtk/spell_entry.h
6610                 fix broken build
6611
6612 2009-02-11 [colin]      3.7.0cvs59
6613
6614         * src/gtk/spell_entry.c
6615         * src/gtk/spell_entry.h
6616                 Forgot to add files
6617
6618 2009-02-11 [colin]      3.7.0cvs58
6619
6620         * src/compose.c
6621         * src/gtk/Makefile.am
6622         * src/gtk/gtkaspell.c
6623         * src/gtk/gtkaspell.h
6624                 Add spellcheck to subject. Patch by
6625                 Pawel.
6626
6627 2009-02-10 [holger]     3.7.0cvs57
6628
6629         * src/printing.c
6630         * src/common/defs.h
6631                 Move filename define for printing page setup cache to defs.h
6632
6633 2009-02-08 [mones]      3.7.0cvs56
6634
6635         * src/matcher.h
6636                 Fix build for bison 2.4.1
6637
6638 2009-02-06 [holger]     3.7.0cvs55
6639
6640         * src/prefs_common.c
6641         * src/prefs_common.h
6642         * src/printing.c
6643                 Fix restoring of custom page setups for printing by
6644                 temporarily caching the settings.
6645                 This is a workaround for Gnome Bug #39018, and fixes
6646                 Claws Mail Bug #1840.
6647
6648 2009-02-06 [colin]      3.7.0cvs54
6649
6650         * src/mainwindow.c
6651                 Fix hardcoded Shift-Q quits. Fixes
6652                 bug 1838, 'Claws-Mail sometimes quits 
6653                 when attempting to type a capital Q'
6654
6655 2009-01-31 [paul]       3.7.0cvs53
6656
6657         * src/compose.c
6658                 revert 3.7.0cvs49, until there is time to find out
6659                 why it causes a nasty crash!
6660
6661 2009-01-31 [paul]       3.7.0cvs52
6662
6663         * src/mainwindow.c
6664                 1 string that was forgotten for translation
6665
6666 2009-01-31 [paul]       3.7.0cvs51
6667
6668         * src/messageview.c
6669                 2 strings that were forgotten for translation
6670
6671 2009-01-31 [paul]       3.7.0cvs50
6672
6673         * src/gtk/prefswindow.c
6674                 build prefs tree in a slightly smarter way -
6675                 fix bug where if path[0] had same name as
6676                 path[1], (like in the de translation), path[1]
6677                 was lost and not shown in the window
6678
6679 2009-01-31 [paul]       3.7.0cvs49
6680
6681         * src/compose.c
6682                 fix bug 1836, 'Quoted text still blue after
6683                 removal of quote-character'
6684                 comment out some debug_print's that needlessly
6685                 slow things down
6686         * src/undo.c
6687                 comment out a debug_print that needlessly slows
6688                 things down
6689
6690 2009-01-31 [paul]       3.7.0cvs48
6691
6692         * src/summaryview.c
6693                 fix bug 1834, '"semi"-selection when collapsing thread'
6694
6695 2009-01-31 [paul]       3.7.0cvs47
6696
6697         * src/prefs_compose_writing.c
6698         * src/prefs_message.c
6699                 move 'quote_chars' pref to where it should be
6700
6701 2009-01-30 [paul]       3.7.0cvs46
6702
6703         * src/summaryview.c
6704                 fix updating of popup menu sensitivity
6705
6706 2009-01-28 [paul]       3.7.0cvs45
6707
6708         * tools/filter_conv_new.pl
6709                 move 'move' and 'delete' to end of @actions
6710                 so that they are always final actions in the
6711                 generated filtering rule
6712
6713 2009-01-27 [paul]       3.7.0cvs44
6714
6715         * src/messageview.c
6716                 always select text/calendar mimepart if suitable
6717                 plugin (i.e. vCalendar) is available
6718
6719 2009-01-27 [paul]       3.7.0cvs43
6720
6721         * src/folder.c
6722                 fix crash when right-clicking in summaryview when
6723                 processing is active
6724
6725 2009-01-22 [colin]      3.7.0cvs42
6726
6727         * src/compose.c
6728         * src/privacy.c
6729         * src/privacy.h
6730                 When replying to signed/encrypted mail and the
6731                 preference to sign/encrypt in this case is set,
6732                 choose the original mail's privacy system (if
6733                 available).
6734
6735 2009-01-21 [colin]      3.7.0cvs41
6736
6737         * src/addressbook.h
6738                 Fix warning (on-the-fly theming of
6739                 addressbook isn't complete yet)
6740
6741 2009-01-21 [colin]      3.7.0cvs40
6742
6743         * src/account.c
6744         * src/addressbook.c
6745                 Win32: Fix window placement
6746
6747 2009-01-21 [paul]       3.7.0cvs39
6748
6749         * src/inc.c
6750                 update timeout log msg
6751
6752 2009-01-17 [colin]      3.7.0cvs38
6753
6754         * src/main.c
6755         * src/mbox.c
6756         * src/common/md5.c
6757         * src/common/utils.c
6758         * src/etpan/imap-thread.c
6759                 Fix g_open calls (which don't ignore mode)
6760
6761 2009-01-17 [colin]      3.7.0cvs37
6762
6763         * src/addressbook.c
6764         * src/compose.c
6765         * src/foldersel.c
6766         * src/main.c
6767         * src/mainwindow.c
6768         * src/mbox.c
6769         * src/common/md5.c
6770         * src/common/ssl_certificate.c
6771         * src/common/tags.c
6772         * src/common/utils.c
6773         * src/etpan/imap-thread.c
6774         * src/plugins/bogofilter/bogofilter.c
6775         * src/plugins/pgpinline/pgpinline.c
6776         * src/plugins/smime/smime.c
6777                 Probably fix bug 1825, 'Unable to fetch messages from 
6778                 IMAP folders named with non-ASCII string'
6779                 Change remaining occurences of fopen and open with
6780                 g_fopen and g_open
6781
6782 2009-01-17 [paul]       3.7.0cvs36
6783
6784         * manual/faq.xml
6785                 update an old, outdated piece of info
6786
6787 2009-01-17 [paul]       3.7.0cvs35
6788
6789         * src/prefs_folder_item.c
6790                 fix bug where saving Folder Properties of a
6791                 sub-folder of outbox, queue, draft or trash
6792                 would change its parent's folder type to normal
6793
6794 2009-01-12 [mones]      3.7.0cvs34
6795
6796         * po/es.po
6797                 Updated translation
6798
6799 2009-01-12 [wwp]        3.7.0cvs33
6800
6801         * tools/fix_date.sh
6802         * tools/popfile-link.sh
6803         * tools/textviewer.sh
6804                 Fix bashisms and other portability glitches (thanks to
6805                 Steven M. Bellovin).
6806
6807 2009-01-11 [paul]       3.7.0cvs32
6808
6809         * src/addrindex.c
6810                 clean up some build warnings
6811
6812 2009-01-11 [colin]      3.7.0cvs31
6813
6814         * src/addrindex.c
6815                 Revert part of patch 3.7.0cvs29 
6816                 This function is used when jpilot
6817                 support is disabled
6818
6819 2009-01-11 [colin]      3.7.0cvs30
6820
6821         * src/folder.c
6822                 folder_find_child_item_by_name():
6823                 actually use name, not path's basename
6824
6825 2009-01-11 [paul]       3.7.0cvs29
6826
6827         * src/addrclip.c
6828         * src/addrindex.c
6829         * src/addritem.c
6830         * src/foldersel.h
6831         * src/folderview.c
6832         * src/prefs_folder_item.c
6833                 clean up some build warnings
6834
6835 2009-01-11 [paul]       3.7.0cvs28
6836
6837         * src/gtk/about.c
6838                 don't even mention printing support, assume its
6839                 presence, unless building with GTK+ < 2.10.0
6840
6841 2009-01-10 [colin]      3.7.0cvs27
6842
6843         * src/codeconv.c
6844                 Fix bug 1811, '[mime] Crash when there's no 
6845                 room for filename's start on the same line'
6846                 When the mimetype of the attachment is very 
6847                 long, there's no room at all to start the 
6848                 name=... parameter on the same line. This
6849                 caused an infinite loop as 0 characters of
6850                 the filename could be appended.
6851                 In such cases, insert linebreak before the
6852                 name parameter.
6853
6854 2009-01-09 [colin]      3.7.0cvs26
6855
6856         * src/compose.c
6857         * src/mainwindow.c
6858         * src/common/utils.c
6859                 Win32: Fix bug 1815, 'Drag-n-Drop of files on 
6860                 Compose Window does not attach'
6861
6862 2009-01-09 [colin]      3.7.0cvs25
6863
6864         * src/foldersel.c
6865                 Fix bug 1817, 'Changing Themes does not 
6866                 update the pixmaps in "Select folder" 
6867                 dialog box'
6868
6869 2009-01-09 [colin]      3.7.0cvs24
6870
6871         * src/main.c
6872                 Win32: Fix bug 1816, 'Attaching files with 
6873                 command-line generates error after attaching'
6874
6875 2009-01-09 [paul]       3.7.0cvs23
6876
6877         * src/gtk/about.c
6878                 forgot this '2009' in last commit
6879
6880 2009-01-09 [paul]       3.7.0cvs22
6881
6882         * src/*/*.[c,h]
6883                 it's 2009!
6884                 update copyright headers
6885
6886 2009-01-09 [paul]       3.7.0cvs21
6887
6888         * doc/man/claws-mail.1
6889                 update Team list
6890
6891 2009-01-09 [colin]      3.7.0cvs20
6892
6893         * src/messageview.c
6894                 Fix bug 1814, 'Windows' WM badly places 
6895                 message view'
6896
6897 2009-01-09 [colin]      3.7.0cvs19
6898
6899         * src/prefs_themes.c
6900         * src/stock_pixmap.c
6901         * src/stock_pixmap.h
6902         * src/common/utils.c
6903         * src/common/utils.h
6904                 Win32: Fix bug 1813, 'Installing Theme Creates Error'
6905
6906 2009-01-08 [colin]      3.7.0cvs18
6907
6908         * src/mimeview.c
6909                 Win32: Fix bug 1810, 'Pressing 'o' key 
6910                 crashes CM'
6911
6912 2009-01-07 [colin]      3.7.0cvs17
6913
6914         * src/html.c
6915                 Fix bug 1432, '&amp; not escaped in links (HTML 
6916                 rendered as text)'
6917
6918 2009-01-06 [colin]      3.7.0cvs16
6919
6920         * src/plugins/pgpcore/select-keys.c
6921                 Warn translators the usual way about
6922                 accels
6923
6924 2009-01-06 [colin]      3.7.0cvs15
6925
6926         * src/mainwindow.c
6927                 Fix synchronisation dialog that shouldn't
6928                 appear when network goes down (Network
6929                 Manager)
6930         * src/mimeview.c
6931         * src/textview.c
6932                 Fix save as when attach_save_dir isn't set
6933                 fixes bug 1804, 'attach_save_directory does 
6934                 not default to $HOME'
6935         * src/plugins/pgpcore/select-keys.c
6936                 Add mnemonics to buttons - warn translators!
6937
6938 2009-01-06 [wwp]        3.7.0cvs14
6939
6940         * src/common/utils.c
6941                 Fix cvs13, thanks to Colin.
6942
6943 2009-01-06 [wwp]        3.7.0cvs13
6944
6945         * src/common/utils.c
6946                 Better support for Spanish Outlook replies (RES).
6947
6948 2009-01-02 [colin]      3.7.0cvs12
6949
6950         * src/folderview.c
6951                 Fix (+) sign after collapsed folder names that 
6952                 have quicksearch-matching children.
6953                 Fixes bug 1506, 'Recursive search in collapsed 
6954                 folders'
6955
6956 2009-01-02 [colin]      3.7.0cvs11
6957
6958         * src/stock_pixmap.c
6959         * src/stock_pixmap.h
6960                 Remove now-unused stock_pixmap_gdk
6961
6962 2009-01-02 [colin]      3.7.0cvs10
6963
6964         * src/gtk/gtkutils.c
6965         * src/pixmaps/claws-mail_icon.xpm
6966                 Use pixbuf for app icon, and make the app icon
6967                 a bit nicer
6968
6969 2009-01-02 [colin]      3.7.0cvs9
6970
6971         * src/uri_opener.c
6972                 Show both link title and URI if possible
6973
6974 2009-01-02 [colin]      3.7.0cvs8
6975
6976         * src/addressadd.c
6977         * src/addressbook.c
6978         * src/addressbook_foldersel.c
6979         * src/addressitem.h
6980         * src/folderview.c
6981         * src/grouplistdialog.c
6982         * src/importldif.c
6983         * src/mimeview.c
6984         * src/summaryview.c
6985         * src/gtk/gtkcmclist.c
6986         * src/gtk/gtkcmclist.h
6987         * src/gtk/gtkcmctree.c
6988         * src/gtk/gtkcmctree.h
6989         * src/gtk/gtksctree.c
6990         * src/gtk/gtksctree.h
6991                 Implement pixbuf rendering in tree widgets
6992                 instead of pixmaps
6993         * src/plugins/trayicon/trayicon.c
6994         * src/noticeview.c
6995         * src/prefs_themes.c
6996                 Use pixbuf rendering here too
6997
6998 2008-12-30 [paul]       3.7.0cvs7
6999
7000         * src/textview.c
7001                 no need to prematurely trim the uri in the statusbar
7002
7003 2008-12-29 [paul]       3.7.0cvs6
7004
7005         * src/procmsg.c
7006                 prefer List-Id header to X-* headers when creating
7007                 filter rule automatically
7008
7009 2008-12-28 [colin]      3.7.0cvs5
7010
7011         * src/compose.c
7012                 Set minimum height to 440 instead of 480
7013
7014 2008-12-22 [colin]      3.7.0cvs4
7015
7016         * src/compose.c
7017                 Fix bug 1799, '"Discard message" deletes manually 
7018                 saved draft'. Switch rmode to REEDIT after 
7019                 manually saving.
7020
7021 2008-12-21 [paul]       3.7.0cvs3
7022
7023         * tools/claws.i18n.status.pl
7024                 updates
7025
7026 2008-12-21 [paul]       3.7.0cvs2
7027
7028         * AUTHORS
7029         * src/gtk/authors.h
7030                 (more) updates
7031
7032 2008-12-21 [paul]       3.7.0cvs1
7033
7034         * AUTHORS
7035         * src/gtk/authors.h
7036                 updates
7037
7038 2008-12-19 [paul]       3.7.0
7039
7040         * NEWS
7041         * README
7042         * RELEASE_NOTES 
7043                 3.7.0 released!
7044
7045 2008-12-19 [paul]       3.6.1cvs80
7046
7047         * configure.ac
7048                 remove unmaintained sk and sr from ALL_LINGUAS
7049                 add newly maintained cs to ALL_LINGUAS
7050         * po/bg.po
7051         * po/ca.po
7052         * po/cs.po
7053         * po/de.po
7054         * po/fi.po
7055         * po/hu.po
7056         * po/nl.po
7057         * po/pt_BR.po
7058         * po/ru.po
7059         * po/sv.po
7060                 updated by Yasen Pramatarov, Miquel Oliete, David Vachulka,
7061                 Stephan Sachse, Flammie Pirinen, P�der Rezso, Marcel Pol,
7062                 Frederico Goncalves Guimaraes, Aleksei Miheev, and Lars
7063                 Persson Fink
7064
7065 2008-12-16 [colin]      3.6.1cvs79
7066
7067         * src/plugins/pgpcore/sgpgme.c
7068                 Fix warning
7069
7070 2008-12-15 [colin]      3.6.1cvs78
7071
7072         * src/compose.c
7073         * src/privacy.c
7074         * src/privacy.h
7075         * src/plugins/pgpcore/sgpgme.c
7076         * src/plugins/pgpcore/sgpgme.h
7077         * src/plugins/pgpinline/pgpinline.c
7078         * src/plugins/pgpmime/pgpmime.c
7079         * src/plugins/smime/smime.c
7080                 Fix bug 1796, 'PGP/MIME setting: "select key by your 
7081                 email address" doesn't work'. Use custom from address
7082                 if set
7083
7084 2008-12-15 [colin]      3.6.1cvs77
7085
7086         * src/common/utils.c
7087                 Fix bug 1746, 'Makes a mailto link from several 
7088                 paragraphs'
7089
7090 2008-12-15 [paul]       3.6.1cvs76
7091
7092         * m4/spamassassin.m4
7093                 fix warnings thrown up by autoconf-2.63
7094
7095 2008-12-13 [colin]      3.6.1cvs75
7096
7097         * Makefile.am
7098         * src/Makefile.am
7099         * src/common/ssl.c
7100         * src/common/utils.c
7101         * src/common/utils.h
7102         * tools/Makefile.am
7103                 Finish previous patch
7104
7105 2008-12-13 [colin]      3.6.1cvs74
7106
7107         * tools/Makefile.am
7108                 Only install certs on windows
7109
7110 2008-12-13 [colin]      3.6.1cvs73
7111
7112         * tools/Makefile.am
7113         * tools/ca-certificates.crt
7114         * src/common/Makefile.am
7115         * src/common/ssl.c
7116                 First try to ship SSL certificates in Windows
7117                 build
7118
7119 2008-12-12 [colin]      3.6.1cvs72
7120
7121         * configure.ac
7122         * src/plugins/pgpinline/claws.def
7123                 Windows build fixes
7124
7125 2008-12-12 [paul]       3.6.1cvs71
7126
7127         * src/imap.c
7128         * src/mh.c
7129         * src/partial_download.c
7130         * src/textview.c
7131         * src/common/claws.c
7132         * src/common/prefs.c
7133         * src/common/utils.c
7134                 win32: fix unlinking, renaming and bug with
7135                 non-ascii username
7136                 Patch by Colin
7137
7138 2008-12-11 [colin]      3.6.1cvs70
7139
7140         * po/fr.po
7141         * manual/fr/advanced.xml
7142                 Update french translations
7143
7144 2008-12-10 [colin]      3.6.1cvs69
7145
7146         * manual/faq.xml
7147                 Correct bug submission guidelines
7148
7149 2008-12-10 [colin]      3.6.1cvs68
7150
7151         * src/plugins/pgpcore/pgp_viewer.c
7152                 Fix bug 1736, 'Key import does not work'
7153                 Kill the correct pid (and not the parent
7154                 shell), and increase the timeout a bit.
7155
7156 2008-12-09 [paul]       3.6.1cvs67
7157
7158         * src/messageview.c
7159                 ensure that any stray noticeview buttons are hidden,
7160                 as clicking them causes segfaults!
7161
7162 2008-12-09 [colin]      3.6.1cvs66
7163
7164         * src/compose.c
7165         * src/compose.h
7166         * src/folder_item_prefs.h
7167         * src/prefs_common.c
7168         * src/prefs_common.h
7169         * src/common/defs.h
7170                 Fix bug 1792, '"Save Message to" should 
7171                 retain list of recently selected folders'
7172                 Also, make Enchant-related prefs stick
7173                 even if the build doesn't enable enchant
7174
7175 2008-12-09 [paul]       3.6.1cvs65
7176
7177         * src/messageview.c
7178                 fix bug 1787, 'Prevent automatic PGP inline
7179                 decryption attempts' use the noticeview to display
7180                 decryption failure messages instead of the irritating
7181                 popup dialog
7182
7183 2008-12-09 [colin]      3.6.1cvs64
7184
7185         * src/prefs_filtering.c
7186                 Fix bug 1789, 'filtering account selection 
7187                 (regression)'. Filtering on sending-only
7188                 accounts can be a little useful when using
7189                 filtering via Tools menu.
7190
7191 2008-12-07 [paul]       3.6.1cvs63
7192
7193         * src/prefs_actions.c
7194                 don't auto-select first entry (same as other
7195                 similar dialogs)
7196         * src/gtk/pluginwindow.c
7197                 these parents don't have children so don't look
7198                 for them
7199
7200 2008-12-07 [paul]       3.6.1cvs62
7201
7202         * src/prefs_account.c
7203         * src/gtk/pluginwindow.c
7204         * src/gtk/prefswindow.c
7205         * src/gtk/prefswindow.h
7206                 auto-select first page
7207
7208 2008-12-05 [colin]      3.6.1cvs61
7209
7210         * src/codeconv.c
7211         * src/procmime.c
7212                 Fix bug 1788, 'CM crashes re-encoding 
7213                 encoded parameters' (introduced in cvs40)
7214
7215 2008-12-05 [paul]       3.6.1cvs60
7216
7217         * src/prefs_common.h
7218                 remove gpg prefs that are no longer needed here
7219
7220 2008-12-03 [colin]      3.6.1cvs59
7221
7222         * src/msgcache.c
7223                 Speed up cache reading (about 10% gain)
7224         * src/summaryview.c
7225         * src/gtk/gtksctree.c
7226                 Speed up expand/collapse all threads
7227                 (about 95% gain)
7228
7229 2008-12-03 [paul]       3.6.1cvs58
7230
7231         * configure.ac
7232                 eradicate gcc4's signedness warnings
7233                 fix building with gnuTLS on (Open)Solaris
7234
7235 2008-12-01 [colin]      3.6.1cvs57
7236
7237         * src/gtk/gtkcmclist.c
7238                 Fix column headers
7239
7240 2008-12-01 [colin]      3.6.1cvs56
7241
7242         * src/plugins/pgpinline/pgpinline.c
7243                 Fix bug 1779, 'PGP Inline badly handles 
7244                 multipart'. Properly dump the current part
7245                 instead of running around with scissors
7246
7247 2008-11-30 [paul]       3.6.1cvs55
7248
7249         * manual/advanced.xml
7250         * manual/plugins.xml
7251         * src/prefs_toolbar.c
7252                 remove the verb from the page title and
7253                 update references in the manual
7254
7255 2008-11-30 [paul]       3.6.1cvs54
7256
7257         * src/prefs_other.c
7258                 move Other/ page to Other/Miscellaneous
7259         * src/gtk/prefswindow.c
7260                 make parent page unselectable
7261
7262 2008-11-29 [paul]       3.6.1cvs53
7263
7264         * README
7265                 add the new 'primary_paste_unselects' hidden
7266                 option, add missing 'log_[...]_color' options,
7267                 and reformat the text
7268         * manual/advanced.xml
7269                 add the new 'primary_paste_unselects' hidden
7270                 option, add missing 'log_[...]_color' options
7271
7272 2008-11-28 [colin]      3.6.1cvs52
7273
7274         * src/mimeview.c
7275                 Fix leak
7276
7277 2008-11-28 [colin]      3.6.1cvs51
7278
7279         * po/fr.po
7280                 Update translation
7281
7282 2008-11-28 [colin]      3.6.1cvs50
7283
7284         * src/mainwindow.c
7285                 Fix account selection in Mailing list
7286                 menu
7287
7288 2008-11-28 [paul]       3.6.1cvs49
7289
7290         * po/Makefile.in.in
7291                 automatically remove obsolete strings
7292
7293 2008-11-28 [colin]      3.6.1cvs48
7294
7295         * src/plugins/pgpcore/sgpgme.c
7296                 Fix error message when key isn't available.
7297
7298 2008-11-27 [colin]      3.6.1cvs47
7299
7300         * src/filtering.c
7301         * src/matcher.c
7302                 Fix a little leak
7303
7304 2008-11-26 [colin]      3.6.1cvs46
7305
7306         * src/common/ssl.c
7307                 Fix new warning
7308
7309 2008-11-26 [colin]      3.6.1cvs45
7310
7311         * src/plugins/pgpcore/select-keys.c
7312         * src/plugins/pgpcore/sgpgme.c
7313                 Fix bug 1591, 'S/MIME: better key 
7314                 handling/selection dialog'
7315                 Really ignore revoked/expired keys
7316
7317 2008-11-26 [colin]      3.6.1cvs44
7318
7319         * src/main.c
7320         * src/common/claws.c
7321         * src/common/ssl.c
7322                 Make sure libgcrypt's threading is initialised
7323                 before gnutls. See also old bug 1539.
7324
7325 2008-11-26 [colin]      3.6.1cvs43
7326
7327         * src/imap.c
7328         * src/news.c
7329         * src/etpan/imap-thread.c
7330                 Fix possible crashes due to clist_begin()
7331                 not checking for NULLs (it should!)
7332
7333 2008-11-25 [colin]      3.6.1cvs42
7334
7335         * src/procmime.c
7336                 Fix line length in MIME parameters
7337
7338 2008-11-22 [paul]       3.6.1cvs41
7339
7340         * src/compose.c
7341                 grab Return key press in attachments Properties
7342                 dialog
7343
7344 2008-11-21 [colin]      3.6.1cvs40
7345
7346         * src/compose.c
7347         * src/procmime.c
7348                 Fix bug 1776, 'use encoded name parameters 
7349                 for attachments instead of ascii'.
7350                 Break the RFC 2047 by using B-encoded 
7351                 filename parameter, like everyone does,
7352                 following advice from the RFC author.
7353
7354 2008-11-21 [colin]      3.6.1cvs39
7355
7356         * src/common/socket.c
7357                 Rehandshake if server asks to
7358
7359 2008-11-21 [colin]      3.6.1cvs38
7360
7361         * src/mimeview.h
7362         * src/toolbar.h
7363         * src/common/session.h
7364         * src/common/smtp.h
7365                 Move conditional-compilation members to
7366                 end of structs
7367
7368 2008-11-19 [wwp]        3.6.1cvs37
7369
7370         * src/prefs_actions.c
7371                 Fixed wrong behaviour when pressing Escape (was not cancelling
7372                 the action).
7373
7374 2008-11-19 [wwp]        3.6.1cvs36
7375
7376         * src/compose.c
7377         * src/matcher.c
7378         * src/messageview.c
7379         * src/mimeview.c
7380         * src/prefs_actions.c
7381         * src/prefs_filtering_action.c
7382         * src/procmsg.c
7383         * src/summaryview.c
7384         * src/textview.c
7385         * src/common/utils.c
7386                 Replace occurrences of "command line" with "command-line" everywhere.
7387                 Enforce code style (mostly indentation) in prefs_actions.c.
7388
7389 2008-11-19 [colin]      3.6.1cvs35
7390
7391         * src/compose.c
7392         * src/prefs_common.c
7393         * src/prefs_common.h
7394                 Add primary_paste_unselects hidden preference
7395                 to change how middle-click pasting changes
7396                 the selection and insert point; defaults to
7397                 pre-3.6.1cvs31
7398
7399 2008-11-19 [colin]      3.6.1cvs34
7400
7401         * src/folderview.c
7402                 Always give focus to summaryview, even if
7403                 the folder is empty, in small screen layout.
7404                 Allows to go back to folderlist using the
7405                 keyboard.
7406
7407 2008-11-18 [colin]      3.6.1cvs33
7408
7409         * src/mainwindow.h
7410                 Put back conditional at the end of struct
7411
7412 2008-11-18 [colin]      3.6.1cvs32
7413
7414         * src/procmime.c
7415         * src/common/w32_reg.c
7416                 Fix crash on win32 when browsing to a
7417                 directory
7418
7419 2008-11-15 [colin]      3.6.1cvs31
7420
7421         * src/compose.c
7422                 After a mid-click paste, deselect selection
7423                 and go to end of paste.
7424
7425 2008-11-15 [colin]      3.6.1cvs30
7426
7427         * src/compose.c
7428                 Auto-save draft after external editor quits
7429
7430 2008-11-15 [colin]      3.6.1cvs29
7431
7432         * src/plugins/pgpcore/sgpgme.c
7433                 Fix wrong error display, thanks to
7434                 Charles A. Edwards
7435
7436 2008-11-14 [colin]      3.6.1cvs28
7437
7438         * src/prefs_actions.c
7439                 Comment out bogus (IMO) warning
7440
7441 2008-11-14 [colin]      3.6.1cvs27
7442
7443         * src/mainwindow.c
7444         * src/summaryview.c
7445         * src/summaryview.h
7446         * src/gtk/menu.c
7447         * src/gtk/menu.h
7448                 Share summaryview's context menu actions with
7449                 the equivalent menu items of the main menu;
7450                 this allows to share accelerators and de-
7451                 duplicate code.
7452
7453 2008-11-14 [colin]      3.6.1cvs26
7454
7455         * src/plugins/pgpcore/sgpgme.c
7456                 Fix bug 1768, 'claws-mail crashes while 
7457                 checking smime bad signature'
7458
7459 2008-11-13 [colin]      3.6.1cvs25
7460
7461         * src/account.c
7462         * src/filtering.c
7463                 Fix redefinition of PREFSBUFSIZE
7464
7465 2008-11-13 [wwp]        3.6.1cvs24
7466
7467         * tools/popfile-link.sh
7468                 Add support for reusing existing POPFile session ID.
7469
7470 2008-11-12 [colin]      3.6.1cvs23
7471
7472         * src/prefs_gtk.h
7473                 Fix bug 1771, 'Folder template gets 
7474                 truncated when exiting the application'
7475                 Use a 32k buffer for string preferences
7476
7477 2008-11-11 [colin]      3.6.1cvs22
7478
7479         * src/summaryview.c
7480                 Fix "display sender using addressbook" when
7481                 prefs_common.swap_from is in use. Patch by
7482                 H. Merijn Brand
7483
7484 2008-11-11 [colin]      3.6.1cvs21
7485
7486         * src/autofaces.c
7487         * src/common/md5.c
7488         * src/common/md5.h
7489                 Make a few functions static
7490
7491 2008-11-07 [colin]      3.6.1cvs20
7492
7493         * src/mainwindow.c
7494         * src/summaryview.c
7495                 Fix crash when rebuilding colorlabel
7496                 menu
7497         * src/addrgather.c
7498         * src/editldap.c
7499         * src/prefs_account.c
7500         * src/prefs_compose_writing.c
7501         * src/prefs_logging.c
7502         * src/prefs_message.c
7503         * src/prefs_other.c
7504         * src/prefs_receive.c
7505         * src/prefs_summaries.c
7506         * src/prefs_wrapping.c
7507         * src/plugins/bogofilter/bogofilter_gtk.c
7508         * src/plugins/pgpcore/prefs_gpg.c
7509         * src/plugins/spamassassin/spamassassin_gtk.c
7510                 Fix deprecated use of page_size in 
7511                 gtkspinbutton adjustments
7512
7513 2008-11-06 [mones]      3.6.1cvs19
7514
7515         * src/mainwindow.c
7516                 Fix missing "About" in Help menu
7517         * tools/claws.i18n.status.pl
7518                 Fix header
7519
7520 2008-11-05 [colin]      3.6.1cvs18
7521
7522         * src/action.c
7523         * src/main.c
7524         * src/mainwindow.c
7525         * src/common/socket.c
7526         * src/common/socket.h
7527         * src/gtk/gtkutils.c
7528         * src/gtk/gtkutils.h
7529                 w32: Implement single launch (lock
7530                 socket); always put debug log to
7531                 the rc_dir; fix Start menu update
7532                 after registering as default Mail 
7533                 app
7534
7535 2008-11-05 [colin]      3.6.1cvs17
7536
7537         * src/mainwindow.c
7538                 Setting the Mail start menu item in HKCU 
7539                 confuses the Internet Options dialog. Do 
7540                 it in HKLM as this dialog does.
7541
7542 2008-11-04 [colin]      3.6.1cvs16
7543
7544         * src/common/w32_reg.c
7545                 Fix off-by-one
7546
7547 2008-11-04 [colin]      3.6.1cvs15
7548
7549         * src/procmime.c
7550                 w32: Fix getting content-type 
7551         * src/mimeview.c
7552         * src/prefs_common.c
7553         * src/prefs_common.h
7554         * src/prefs_ext_prog.c
7555         * src/textview.c
7556                 w32: better integration (use the
7557                 standard file associations instead
7558                 of our platform-unadapted open
7559                 dialog)
7560         * src/mainwindow.c
7561         * src/common/utils.c
7562         * src/common/w32_reg.c
7563         * src/common/w32lib.h
7564                 w32: better integration (allow 
7565                 setting Claws as default MUA)
7566
7567 2008-11-01 [colin]      3.6.1cvs14
7568
7569         * src/codeconv.c
7570                 Fix wrongly converted non-ascii characters
7571                 when locale's charset is US-ASCII (strict-mode
7572                 was failing in this case)
7573
7574 2008-10-30 [colin]      3.6.1cvs13
7575
7576         * src/mimeview.c
7577         * src/mimeview.h
7578         * src/textview.c
7579         * src/textview.h
7580                 Use one UI Manager per mimeview, instead of
7581                 the global one -- else user_data pointer gets
7582                 broken if opening and closing another message-
7583                 view, then using right-click on a mimeview's 
7584                 mimepart. Probably fixes bug 1711, 'Save-as
7585                 attachment crashes'
7586
7587 2008-10-24 [paul]       3.6.1cvs12
7588
7589         * tools/Makefile.am
7590         * tools/kdeservicemenu/claws-mail-attach-files.desktop.kde4template
7591         * tools/kdeservicemenu/install.sh
7592                 another, possibly the final?, attempt on getting this
7593                 sorted for kde4
7594
7595 2008-10-24 [paul]       3.6.1cvs11
7596
7597         * tools/kdeservicemenu/install.sh
7598                 fix servicemenu installation directory on kde4
7599
7600 2008-10-24 [paul]       3.6.1cvs10
7601
7602         * tools/kdeservicemenu/README
7603         * tools/kdeservicemenu/install.sh
7604                 add support for kde4 in addition to kde3.
7605                 a rework involving checking for kde4-config, then
7606                 kde-config, finally prompting the user for the
7607                 location of either if they cannot be found
7608                 
7609
7610 2008-10-18 [paul]       3.6.1cvs9
7611
7612         * tools/claws.i18n.status.pl
7613                 updated with latest translator info.
7614                 only print for languages defined in %langname
7615
7616 2008-10-17 [paul]       3.6.1cvs8
7617
7618         * src/plugins/pgpcore/sgpgme.c
7619                 when listing the uid's, show the uid validity
7620
7621 2008-10-16 [paul]       3.6.1cvs7
7622
7623         * INSTALL
7624                 updated
7625
7626 2008-10-13 [wwp]        3.6.1cvs6
7627
7628         * po/fr.po
7629                 Updated French translation.
7630
7631 2008-10-11 [colin]      3.6.1cvs5
7632
7633         * src/gtk/authors.h
7634                 Fix bug 1756, "Outdated translators list in About 
7635                 dialogue". Patch by Aleksei Miheev.
7636
7637 2008-10-11 [colin]      3.6.1cvs4
7638
7639         * src/account.c
7640         * src/imap.c
7641         * src/inc.c
7642         * src/main.c
7643         * src/mainwindow.c
7644         * src/news.c
7645         * src/pop.c
7646         * src/pop.h
7647         * src/prefs_account.c
7648         * src/send_message.c
7649         * src/send_message.h
7650         * src/ssl_manager.c
7651         * src/ssl_manager.h
7652         * src/wizard.c
7653         * src/common/claws.c
7654         * src/common/defs.h
7655         * src/common/session.c
7656         * src/common/session.h
7657         * src/common/smtp.c
7658         * src/common/smtp.h
7659         * src/common/socket.c
7660         * src/common/socket.h
7661         * src/common/ssl.c
7662         * src/common/ssl.h
7663         * src/common/ssl_certificate.c
7664         * src/common/ssl_certificate.h
7665         * src/gtk/about.c
7666         * src/gtk/sslcertwindow.c
7667         * src/gtk/sslcertwindow.h
7668                 Remove OpenSSL code
7669
7670 2008-10-11 [colin]      3.6.1cvs3
7671
7672         * src/common/ssl_certificate.c
7673                 Make local function static
7674
7675 2008-10-10 [colin]      3.6.1cvs2
7676
7677         * src/common/ssl.h
7678         * src/common/ssl_certificate.c
7679         * src/gtk/sslcertwindow.c
7680                 Add offline certificate verification,
7681                 thanks to Nikos Mavrogiannopoulos for the
7682                 hints
7683
7684 2008-10-10 [colin]      3.6.1cvs1
7685
7686         * src/common/ssl_certificate.c
7687         * src/gtk/sslcertwindow.c
7688                 Fix warnings
7689
7690 2008-10-10 [paul]       3.6.1
7691
7692         * m4/spamassassin.m4
7693                 remove openssl dross
7694
7695         * NEWS
7696         * README
7697         * RELEASE_NOTES 
7698                 3.6.1 released!
7699
7700 2008-10-10 [colin]      3.6.0cvs25
7701
7702         * src/common/ssl.c
7703                 Tell libetpan it doesn't need to init
7704                 GnuTLS
7705
7706 2008-10-10 [colin]      3.6.0cvs24
7707
7708         * claws-mail.pc.in
7709                 Remove references to openssl
7710
7711 2008-10-09 [colin]      3.6.0cvs23
7712
7713         * configure.ac
7714                 Fix message
7715
7716 2008-10-09 [colin]      3.6.0cvs22
7717
7718         * configure.ac
7719                 Error out when building against openssl
7720
7721 2008-10-09 [colin]      3.6.0cvs21
7722
7723         * configure.ac
7724         * COPYING
7725         * src/crash.c
7726         * src/main.c
7727         * src/gtk/about.c
7728                 Disable OpenSSL due to requirement of
7729                 OpenSSL exception. Code not removed yet,
7730                 just in case, but disabled.
7731
7732 2008-10-09 [colin]      3.6.0cvs20
7733
7734         * configure.ac
7735         * src/Makefile.am
7736         * src/crash.c
7737         * src/gedit-print.c
7738         * src/gedit-print.h
7739         * src/main.c
7740         * src/mainwindow.c
7741         * src/messageview.c
7742         * src/prefs_ext_prog.c
7743         * src/prefs_fonts.c
7744         * src/prefs_image_viewer.c
7745         * src/printing.c
7746         * src/printing.h
7747         * src/summaryview.c
7748         * src/gtk/Makefile.am
7749         * src/gtk/about.c
7750         * src/gtk/gtksourceprintjob.c
7751         * src/gtk/gtksourceprintjob.h
7752                 Revert previous patch. It'd be better to remove
7753                 OpenSSL instead, as GnuTLS works as well.
7754
7755 2008-10-09 [colin]      3.6.0cvs19
7756
7757         * configure.ac
7758         * src/Makefile.am
7759         * src/crash.c
7760         * src/gedit-print.c
7761         * src/gedit-print.h
7762         * src/main.c
7763         * src/mainwindow.c
7764         * src/messageview.c
7765         * src/prefs_ext_prog.c
7766         * src/prefs_fonts.c
7767         * src/prefs_image_viewer.c
7768         * src/printing.c
7769         * src/printing.h
7770         * src/summaryview.c
7771         * src/gtk/Makefile.am
7772         * src/gtk/about.c
7773         * src/gtk/gtksourceprintjob.c
7774         * src/gtk/gtksourceprintjob.h
7775                 Remove the libgnomeprint interface (deprecated,
7776                 and fixes Debian's #501570, 'Copyright confusion')
7777
7778 2008-10-09 [colin]      3.6.0cvs18
7779
7780         * configure.ac
7781                 Require libetpan 0.57 (important fixes)
7782
7783 2008-10-08 [paul]       3.6.0cvs17
7784
7785         * src/prefs_filtering_action.c
7786         * src/prefs_matcher.c
7787                 enable re-ordering of the filtering/processing
7788                 condition and actions lists by drag'n'drop
7789
7790 2008-10-08 [colin]      3.6.0cvs16
7791
7792         * src/addressbook.c
7793                 Fix wrong menu title
7794
7795 2008-10-07 [colin]      3.6.0cvs15
7796
7797         * src/imap.c
7798                 After thinking, revert this. It's only a minor
7799                 annoyance to GSSAPI users, and I can't test this
7800                 right now. Postponed until after next good release.
7801
7802 2008-10-07 [colin]      3.6.0cvs14
7803
7804         * src/imap.c
7805                 Don't ask for a password when using GSSAPI
7806
7807 2008-10-07 [colin]      3.6.0cvs13
7808
7809         * src/mainwindow.c
7810                 Fix build with GTK+ < 2.14
7811
7812 2008-10-07 [colin]      3.6.0cvs12
7813
7814         * src/mainwindow.c
7815         * src/mainwindow.h
7816         * src/prefs_common.c
7817         * src/prefs_common.h
7818         * src/summaryview.c
7819         * src/gtk/colorlabel.c
7820                 Fix bug 1749, 'Shortcut keys for color labels 
7821                 not changeable'
7822                 Make fullscreen a setting remembered between
7823                 sessions
7824
7825 2008-10-07 [colin]      3.6.0cvs11
7826
7827         * src/prefs_other.c
7828                 Fix bug 1747, 'Wanderlust keybindings no longer 
7829                 working (regression)'
7830
7831 2008-10-07 [colin]      3.6.0cvs10
7832
7833         * src/mainwindow.c
7834                 Make fullscreen a real menu item
7835
7836 2008-10-07 [colin]      3.6.0cvs9
7837
7838         * src/mainwindow.c
7839                 Make sure we won't save size when
7840                 fullscreening
7841
7842 2008-10-06 [colin]      3.6.0cvs8
7843
7844         * src/mainwindow.c
7845         * src/mainwindow.h
7846                 Handle fullscreen via F11. Patch by
7847                 Michael Rasmussen
7848
7849 2008-10-06 [colin]      3.6.0cvs7
7850
7851         * src/common/ssl.c
7852                 Fix return value when setting client cert
7853
7854 2008-10-04 [colin]      3.6.0cvs6
7855
7856         * src/mimeview.c
7857                 Fix bug 1742, 'Attachment list contents not 
7858                 visible/scrollable'
7859
7860 2008-10-04 [paul]       3.6.0cvs5
7861
7862         * src/mainwindow.c
7863                 fix failure of Hide toolbar option on restart
7864
7865 2008-10-04 [colin]      3.6.0cvs4
7866
7867         * src/addressbook.c
7868         * src/compose.c
7869         * src/mainwindow.c
7870         * src/messageview.c
7871         * src/summaryview.c
7872                 Maemo: Fix bug 1737, Crashes upon opening
7873
7874 2008-10-04 [paul]       3.6.0cvs3
7875
7876         * po/pt_BR.po
7877                 submitted (just a little late) by Frederico
7878                 Goncalves Guimaraes
7879
7880 2008-10-03 [wwp]        3.6.0cvs2
7881
7882         * po/fr.po
7883                 Many fixes, mostly in menus and accelerators.
7884
7885 2008-10-03 [colin]      3.6.0cvs1
7886
7887         * src/gtk/filesel.c
7888                 Allow network mounts with new GTKs: they're
7889                 available via FUSE mounts and we don't need
7890                 GVFS.
7891
7892 2008-10-03 [paul]       3.6.0
7893
7894         * NEWS
7895         * README
7896         * RELEASE_NOTES 
7897                 3.6.0 released!
7898
7899 2008-10-03 [paul]       3.5.0cvs145
7900
7901         * configure.ac
7902         * po/bg.po
7903         * po/nl.po
7904         * po/ru.po
7905         * po/sv.po
7906                 new translations. added by Yasen Pramatarov,
7907                 Marcel Pol, Aleksei Miheev, and Lars Persson Fink
7908         * po/ca.po
7909         * po/de.po
7910         * po/fi.po
7911         * po/fr.po
7912         * po/hu.po
7913         * po/it.po
7914         * po/pl.po
7915         * po/zh_CN.po
7916                 updated translations. submitted by Miquel Oliete,
7917                 Stephan Sachse, Flammie Pirinen, wwp, Pader Rezo,
7918                 Andrea Spadaccini, Emilian Nowak, and Ralph Young
7919
7920 2008-10-02 [colin]      3.5.0cvs144
7921
7922         * src/common/session.c
7923                 Fix crash when connection fails on windows
7924
7925 2008-10-01 [colin]      3.5.0cvs143
7926
7927         * src/imap.c
7928                 Real fix for FS-unsafe chars on win32
7929
7930 2008-10-01 [colin]      3.5.0cvs142
7931
7932         * src/imap.c
7933                 Encode prohibited filenames on win32
7934
7935 2008-09-30 [mones]      3.5.0cvs141
7936
7937         * src/ldapctrl.c
7938         * src/main.c
7939         * src/prefs_themes.c
7940         * src/printing.c
7941                 Fix output of some debug messages
7942
7943 2008-09-30 [colin]      3.5.0cvs140
7944
7945         * src/addrbook.c
7946         * src/addrharvest.c
7947         * src/compose.c
7948         * src/jpilot.c
7949         * src/mh.c
7950         * src/prefs_themes.c
7951         * src/procheader.c
7952         * src/procmime.c
7953         * src/summaryview.c
7954         * src/common/utils.c
7955         * src/gtk/sslcertwindow.c
7956                 Win32: Fix time usage; use g_stat
7957
7958 2008-09-29 [colin]      3.5.0cvs139
7959
7960         * src/common/utils.c
7961                 Fix case-sensitive match of subject
7962                 prefixes on win32
7963
7964 2008-09-29 [colin]      3.5.0cvs138
7965
7966         * src/folder_item_prefs.c
7967         * src/folder_item_prefs.h
7968         * src/matcher.c
7969         * src/prefs_folder_item.c
7970         * src/prefs_matcher.c
7971         * src/summaryview.c
7972         * src/common/string_match.c
7973         * src/common/utils.c
7974                 Fix a huge leak (dozens of megs per folder
7975                 change) on Windows: disable regexps 
7976
7977 2008-09-28 [paul]       3.5.0cvs137
7978
7979         * po/en_GB.po
7980                 updated
7981
7982 2008-09-27 [colin]      3.5.0cvs136
7983
7984         * src/account.c
7985         * src/account.h
7986                 Add accessor for cur_account
7987
7988 2008-09-27 [colin]      3.5.0cvs135
7989
7990         * src/imap.c
7991                 Fix crash when error happen on session establishment
7992
7993 2008-09-26 [mones]      3.5.0cvs134
7994
7995         * po/es.po
7996                 Updated for release
7997
7998 2008-09-26 [colin]      3.5.0cvs133
7999
8000         * src/plugins/pgpcore/claws.def
8001                 Fix symbol
8002
8003 2008-09-26 [colin]      3.5.0cvs132
8004
8005         * src/prefs_common.c
8006         * src/prefs_common.h
8007         * src/plugins/pgpcore/pgp_viewer.c
8008                 Add an accessor to prefs_common for plugins
8009                 (Win32 fix)
8010
8011 2008-09-25 [colin]      3.5.0cvs131
8012
8013         * src/main.c
8014                 Fix bug 1725, 'useless lines in clawsrc'
8015         * src/plugins/smime/mypgpcore.def
8016                 Add a missing symbol
8017
8018 2008-09-25 [paul]       3.5.0cvs130
8019
8020         * src/plugins/smime/mypgpcore.def
8021         * src/plugins/smime/plugin.def
8022         * src/plugins/smime/version.rc
8023                 add these windows-specific files
8024                 (Thanks to Colin)
8025
8026 2008-09-25 [colin]      3.5.0cvs129
8027
8028         * src/main.c
8029                 Load standard plugins only on first run
8030
8031 2008-09-25 [colin]      3.5.0cvs128
8032
8033         * src/codeconv.c
8034                 Fix build...
8035
8036 2008-09-24 [colin]      3.5.0cvs127
8037
8038         * src/codeconv.c
8039                 Add nb_NO's charset (iso-8859-1)
8040
8041 2008-09-24 [colin]      3.5.0cvs126
8042
8043         * src/common/utils.c
8044                 Fix get_mail_base_dir() on windows
8045                 (was synced from main ages ago)
8046
8047 2008-09-24 [colin]      3.5.0cvs125
8048
8049         * src/main.c
8050         * src/wizard.c
8051                 Integrate better with Windows' style
8052
8053 2008-09-23 [paul]       3.5.0cvs124
8054
8055         * src/compose.c
8056         * src/mainwindow.c
8057         * src/messageview.c
8058                 offer these strings to translators too 
8059
8060 2008-09-23 [colin]      3.5.0cvs123
8061
8062         * configure.ac
8063                 Add a --disable-dbus flag in case we want
8064                 no DBUS even if headers are available (like
8065                 for building gpg4win)
8066         * src/filtering.c
8067         * src/mainwindow.c
8068         * src/prefs_logging.c
8069         * src/common/utils.c
8070         * src/plugins/pgpcore/sgpgme.c
8071         * src/plugins/smime/claws.def
8072                 Windows fixes:
8073                 - disable filtering log (it's crashy for
8074                   some reason)
8075                 - fix gmtime_r when time is -1 (before 01/01/70)
8076                 - add symbols for smime
8077
8078 2008-09-22 [colin]      3.5.0cvs122
8079
8080         * src/common/utils.c
8081         * src/account.c
8082                 Remove raw printf
8083         * src/compose.c
8084                 Fix cursor position after changing account
8085         * src/imap.c
8086         * src/mimeview.c
8087         * src/news.c
8088                 Fix absolute path detection 
8089
8090 2008-09-21 [colin]      3.5.0cvs121
8091
8092         * src/gtk/gtkaspell.c
8093                 Don't try to use empty dictionaries
8094
8095 2008-09-20 [colin]      3.5.0cvs120
8096
8097         * po/POTFILES.in
8098                 Add the new files to the translations
8099
8100 2008-09-20 [colin]      3.5.0cvs119
8101
8102         * configure.ac
8103         * src/plugins/Makefile.am
8104         * src/plugins/smime/Makefile.am
8105         * src/plugins/smime/plugin.c
8106         * src/plugins/smime/smime.c
8107         * src/plugins/smime/smime.deps
8108         * src/plugins/smime/smime.h
8109                 Include S/Mime plugin in the main plugins
8110                 Will ease the Gpg4win team's work
8111
8112 2008-09-20 [colin]      3.5.0cvs118
8113
8114         * src/autofaces.c
8115         * src/compose.c
8116         * src/ldapquery.c
8117         * src/main.c
8118         * src/news.c
8119         * src/common/socket.c
8120         * src/gtk/gtkutils.c
8121         * src/plugins/pgpcore/claws.def
8122                 Windows: more fixes, thanks to wwp and
8123                 Marcus Brinkmann
8124
8125 2008-09-20 [colin]      3.5.0cvs117
8126
8127         * src/imap.c
8128                 Tell on which server errors happened
8129
8130 2008-09-20 [colin]      3.5.0cvs116
8131
8132         * src/etpan/etpan-thread-manager.c
8133         * src/etpan/imap-thread.c
8134         * src/etpan/nntp-thread.c
8135                 Windows: Fix hang on IMAP/NNTP
8136
8137 2008-09-20 [colin]      3.5.0cvs115
8138
8139         * src/common/utils.c
8140                 Fix bug 1723, "Buffer overflow crash caused by 
8141                 preview in 'Date format help' dialog box"
8142                 Also, optimise fast_strftime a bit :)
8143
8144 2008-09-18 [colin]      3.5.0cvs114
8145
8146         * src/procmime.c
8147         * src/textview.c
8148                 Check for NULLs before str* functions
8149
8150 2008-09-18 [colin]      3.5.0cvs113
8151
8152         * src/messageview.c
8153         * src/procmime.c
8154         * src/textview.c
8155                 Handle html parts in multipart/related
8156                 Decode ISO-8859-1 as Windows-1252 (the former
8157                 is a subset of the latter) in order to 
8158                 workaround Outlook mails misencoding
8159         * src/gtk/logwindow.c
8160         * src/gtk/logwindow.h
8161                 Clear mainwindow's error pixmap when the
8162                 error scrolls out of the log
8163
8164 2008-09-17 [colin]      3.5.0cvs112
8165
8166         * src/image_viewer.c
8167                 Fix image loading (multiple childs added to 
8168                 scrolledwindow, break of the resize functionality)
8169         * src/account.c
8170         * src/prefs_folder_item.c
8171         * src/prefs_spelling.c
8172         * src/gtk/gtkaspell.c
8173                 Better fix problems with dictionaries updates
8174
8175 2008-09-17 [colin]      3.5.0cvs111
8176
8177         * src/common/utils.c
8178                 Fix double-opening (fixes multiple signatures when
8179                 using signify)
8180
8181 2008-09-16 [colin]      3.5.0cvs110
8182
8183         * src/prefs_account.c
8184         * src/prefs_folder_item.c
8185         * src/prefs_spelling.c
8186         * src/gtk/gtkaspell.c
8187                 Better stripping of aspell dictionaries names
8188
8189 2008-09-16 [colin]
8190
8191         * 3.6.0-rc1 released
8192
8193 2008-09-16 [colin]      3.5.0cvs109
8194
8195         * src/account.c
8196         * src/inc.c
8197         * src/mainwindow.c
8198         * src/prefs_account.h
8199         * src/prefs_other.c
8200         * src/send_message.c
8201         * src/gtk/inputdialog.c
8202                 Don't add a pref to allow remembering passwords
8203                 (Just not checking the checkbox is enough)
8204
8205 2008-09-16 [colin]      3.5.0cvs108
8206
8207         * configure.ac
8208                 Require libetpan 0.56 as 0.55 is crashy
8209         * src/messageview.c
8210                 Fix english
8211         * src/gtk/inputdialog.c
8212         * src/gtk/inputdialog.h
8213                 Fix warnings
8214
8215 2008-09-16 [wwp]        3.5.0cvs107
8216
8217         * src/compose.c
8218                 Complete 3.5.0cvs106 by removing a function that got
8219                 moved to account.[ch].
8220
8221 2008-09-16 [wwp]        3.5.0cvs106
8222
8223         * src/account.c
8224         * src/account.h
8225         * src/compose.c
8226         * src/quote_fmt.c
8227         * src/quote_fmt_lex.l
8228         * src/quote_fmt_parse.y
8229                 Add account signature (path and value string) manipulation
8230                 keywords to the template processor. It's now possible in
8231                 all templates to insert the account signature to an
8232                 arbitrary location or to pass it to a external script for
8233                 further editing.
8234
8235
8236 2008-09-16 [mones]      3.5.0cvs105
8237
8238         * src/imap.c
8239         * src/inc.c
8240         * src/mainwindow.c
8241         * src/mainwindow.h
8242         * src/news.c
8243         * src/prefs_account.h
8244         * src/prefs_common.c
8245         * src/prefs_common.h
8246         * src/prefs_other.c
8247         * src/send_message.c
8248         * src/gtk/inputdialog.c
8249         * src/gtk/inputdialog.h
8250                 Implement session passwords: unsaved passwords for receiving
8251                 or sending of accounts can be remembered while running to 
8252                 avoid repetitive typing.
8253                 As keeping passwords in memory is unsafe a new preference 
8254                 in Other page is added to activate or not such capability.
8255
8256 2008-09-14 [colin]      3.5.0cvs104
8257
8258         * src/codeconv.c
8259         * src/codeconv.h
8260                 Make conv_iconv_strdup static
8261
8262 2008-09-12 [colin]      3.5.0cvs103
8263
8264         * claws-mail.pc.in
8265         * src/Makefile.am
8266         * src/compose.c
8267         * src/compose.h
8268         * src/crash.c
8269         * src/folder_item_prefs.c
8270         * src/folder_item_prefs.h
8271         * src/main.c
8272         * src/prefs_account.c
8273         * src/prefs_common.c
8274         * src/prefs_common.h
8275         * src/prefs_folder_item.c
8276         * src/prefs_spelling.c
8277         * src/prefs_template.c
8278         * src/quote_fmt.h
8279         * src/quote_fmt_parse.y
8280         * src/toolbar.c
8281         * src/toolbar.h
8282         * src/gtk/Makefile.am
8283         * src/gtk/about.c
8284         * src/gtk/filesel.c
8285         * src/gtk/gtkaspell.c
8286         * src/gtk/gtkaspell.h
8287         * src/plugins/bogofilter/Makefile.am
8288         * src/plugins/dillo_viewer/Makefile.am
8289         * src/plugins/spamassassin/Makefile.am
8290         * src/plugins/trayicon/Makefile.am
8291                 Switch spellchecker to Enchant
8292
8293 2008-09-12 [paul]       3.5.0cvs102
8294
8295         * tools/README
8296         * tools/csv2addressbook.pl
8297                 add support for Fox Mail
8298
8299 2008-09-12 [paul]       3.5.0cvs101
8300
8301         * src/compose.c
8302         * src/prefs_wrapping.c
8303                 changes to English
8304
8305 2008-09-12 [paul]       3.5.0cvs100
8306
8307         * configure.ac
8308                 revert cvs99's libenchant commit error
8309
8310 2008-09-12 [colin]      3.5.0cvs99
8311
8312         * src/inc.c
8313                 Only go to inbox if there are new mails
8314                 (and fetch was manual)
8315
8316 2008-09-10 [colin]      3.5.0cvs98
8317
8318         * src/inc.c
8319         * src/summaryview.c
8320         * src/common/session.c
8321                 Use g_timeout_add_seconds instead of g_timeout_add
8322                 on glib >= 2.14 when we don't need precision on the 
8323                 delay. This helps reducing power consumption:
8324                 http://mjg59.livejournal.com/74651.html
8325
8326 2008-09-10 [colin]      3.5.0cvs97
8327
8328         * src/compose.c
8329                 Don't save window size and position when
8330                 compose is hidden (filtering action)
8331
8332 2008-09-09 [colin]      3.5.0cvs96
8333
8334         * src/action.h
8335         * src/addr_compl.c
8336         * src/addressadd.c
8337         * src/addressbook.h
8338         * src/addressbook_foldersel.c
8339         * src/addressitem.h
8340         * src/addrgather.c
8341         * src/alertpanel.c
8342         * src/browseldap.c
8343         * src/editaddress.c
8344         * src/editaddress_other_attributes_ldap.h
8345         * src/editbook.c
8346         * src/editjpilot.c
8347         * src/editldap.c
8348         * src/editldap_basedn.c
8349         * src/editvcard.c
8350         * src/exphtmldlg.c
8351         * src/expldifdlg.c
8352         * src/export.c
8353         * src/foldersel.c
8354         * src/foldersel.h
8355         * src/gedit-print.c
8356         * src/gedit-print.h
8357         * src/grouplistdialog.c
8358         * src/headerview.c
8359         * src/headerview.h
8360         * src/image_viewer.c
8361         * src/import.c
8362         * src/importldif.c
8363         * src/importmutt.c
8364         * src/importpine.c
8365         * src/inc.c
8366         * src/main.c
8367         * src/main.h
8368         * src/messageview.c
8369         * src/messageview.h
8370         * src/noticeview.c
8371         * src/prefs_actions.c
8372         * src/prefs_filtering.c
8373         * src/prefs_folder_column.c
8374         * src/prefs_gtk.h
8375         * src/prefs_summary_column.c
8376         * src/prefs_toolbar.c
8377         * src/send_message.c
8378         * src/setup.c
8379         * src/sourcewindow.c
8380         * src/sourcewindow.h
8381         * src/ssl_manager.c
8382         * src/statusbar.c
8383         * src/statusbar.h
8384         * src/stock_pixmap.c
8385         * src/stock_pixmap.h
8386         * src/summaryview.c
8387         * src/textview.c
8388         * src/textview.h
8389         * src/undo.h
8390         * src/uri_opener.c
8391         * src/wizard.c
8392         * src/wizard.h
8393         * src/common/ssl.h
8394         * src/common/utils.c
8395         * src/gtk/about.c
8396         * src/gtk/colorlabel.c
8397         * src/gtk/colorlabel.h
8398         * src/gtk/combobox.h
8399         * src/gtk/description_window.c
8400         * src/gtk/filesel.c
8401         * src/gtk/gtkaspell.c
8402         * src/gtk/gtkaspell.h
8403         * src/gtk/gtkcmclist.c
8404         * src/gtk/gtkcmclist.h
8405         * src/gtk/gtkcmctree.c
8406         * src/gtk/gtkcmctree.h
8407         * src/gtk/gtkcmoptionmenu.h
8408         * src/gtk/gtksctree.c
8409         * src/gtk/gtksctree.h
8410         * src/gtk/gtkshruler.c
8411         * src/gtk/gtkshruler.h
8412         * src/gtk/gtksourceprintjob.c
8413         * src/gtk/gtksourceprintjob.h
8414         * src/gtk/gtkutils.c
8415         * src/gtk/gtkutils.h
8416         * src/gtk/gtkvscrollbutton.c
8417         * src/gtk/gtkvscrollbutton.h
8418         * src/gtk/icon_legend.c
8419         * src/gtk/inputdialog.c
8420         * src/gtk/logwindow.c
8421         * src/gtk/logwindow.h
8422         * src/gtk/manage_window.c
8423         * src/gtk/manage_window.h
8424         * src/gtk/menu.c
8425         * src/gtk/prefswindow.c
8426         * src/gtk/progressdialog.c
8427         * src/gtk/progressdialog.h
8428         * src/plugins/bogofilter/bogofilter_gtk.c
8429         * src/plugins/pgpcore/passphrase.c
8430         * src/plugins/spamassassin/spamassassin_gtk.c
8431         * src/plugins/trayicon/trayicon.c
8432         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
8433         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.h
8434         * src/plugins/trayicon/libeggtrayicon/gtk2-funcs.c
8435         * src/plugins/trayicon/libeggtrayicon/gtkplugxembed.c
8436         * src/plugins/trayicon/libeggtrayicon/gtkplugxembed.h
8437                 Complete GTK+ 2.14 undeprecation
8438                 (thanks to "J.A. Magallon" <jamagallon@ono.com>)
8439
8440 2008-09-09 [colin]      3.5.0cvs95
8441
8442         * src/gtk/gtkcmclist.h
8443                 Fix build on GTK+ 2.14
8444
8445 2008-09-08 [colin]      3.5.0cvs94
8446
8447         * src/noticeview.c
8448         * src/noticeview.h
8449                 Remove GtkSignalFunc
8450
8451 2008-09-07 [colin]      3.5.0cvs93
8452
8453         * src/addressadd.c
8454         * src/addressbook_foldersel.c
8455         * src/gtk/gtkcmclist.c
8456         * src/gtk/gtkcmclist.h
8457         * src/gtk/gtkcmctree.c
8458         * src/gtk/gtkcmctree.h
8459         * src/gtk/gtksctree.c
8460         * src/gtk/prefswindow.c
8461         * src/gtk/prefswindow.h
8462                 Use GDestroyNotify instead of GtkDestroyNotify
8463                 (deprecated in GTK+ 2.14)
8464
8465 2008-09-07 [colin]      3.5.0cvs92
8466
8467         * src/textview.c
8468                 Fix bug 1712, 'invalid "Phishing attempt warning" 
8469                 when linked text ends with spaces'
8470
8471 2008-09-05 [colin]      3.5.0cvs91
8472
8473         * src/procmime.c
8474                 Maybe fix bug 1711, 'Save-as attachment crashes'
8475                 Possibly wrong free() due to pointer shifting
8476
8477 2008-09-05 [colin]      3.5.0cvs90
8478
8479         * src/compose.c
8480                 Fix bug 1710, 'User misreads "Discard Message" 
8481                 as "Discard Changes"'. Propose to save or discard
8482                 only the latest changes when closing an existing
8483                 draft. Autosave may still have saved parts of the
8484                 edit session.
8485
8486 2008-09-04 [colin]      3.5.0cvs89
8487
8488         * src/summaryview.c
8489                 Fix bug 1707, 'Segfault when sorting on non-visible column'
8490
8491 2008-09-01 [colin]      3.5.0cvs88
8492
8493         * src/imap.c
8494         * src/summaryview.c
8495         * src/common/tags.c
8496         * src/etpan/imap-thread.c
8497         * src/etpan/imap-thread.h
8498                 Store spam flag on IMAP (Junk/NonJunk, as 
8499                 ThunderBird does - this is nonstandard)
8500
8501 2008-08-31 [wwp]        3.5.0cvs87
8502
8503         * ChangeLog
8504                 Fix globish edition^Wediting.
8505
8506 2008-08-31 [wwp]        3.5.0cvs86
8507
8508         * src/addressbook.c
8509                 Don't break nickname editing for non-LDAP books (nickname
8510                 value was overwritten when editing existing contact, this
8511                 came from 3.0.2cvs109).
8512
8513 2008-08-30 [colin]      3.5.0cvs85
8514
8515         * src/mainwindow.c
8516         * src/summaryview.c
8517                 Fix "Apply tags..." key shortcut
8518
8519 2008-08-29 [iwkse]      3.5.0cvs84
8520
8521         * src/summaryview.c
8522                         Bit of clean:)
8523
8524 2008-08-29 [iwkse]      3.5.0cvs83
8525
8526         * src/summaryview.c
8527                         Disable "Move to trash" action if
8528                         we are in a trash-like folder.
8529                         Thanks to colinl
8530
8531 2008-08-29 [paul]       3.5.0cvs82
8532
8533         * configure.ac
8534                 bump up libetpan version requirement since
8535                 0.55 is released now
8536
8537 2008-08-28 [wwp]        3.5.0cvs81
8538
8539         * src/account.c
8540         * src/pop.c
8541         * src/prefs_account.c
8542         * src/prefs_account.h
8543                 Add finer granularity to the POP3's remove-after delay (now in
8544                 hours in addition to in days), patch by Paul Rolland.
8545
8546 2008-08-28 [wwp]        3.5.0cvs80
8547
8548         * src/gtk/combobox.c
8549                 Fix a typo in a comment.
8550
8551 2008-08-28 [iwkse]      3.5.0cvs79
8552
8553         * src/account.c
8554         * src/prefs_actions.c
8555         * src/prefs_filtering.c
8556         * src/prefs_template.c
8557                         Add search feature to the account, 
8558                         template and action dialog.
8559                         It's turned on selecting one row
8560                         of the list and typing some random
8561                         letter. Thanks to wwp, colinl
8562
8563 2008-08-28 [colin]      3.5.0cvs78
8564
8565         * src/Makefile.am
8566         * src/account.c
8567         * src/compose.c
8568         * src/prefs_account.c
8569         * src/prefs_account.h
8570         * src/privacy.c
8571         * src/privacy.h
8572         * src/procmime.c
8573         * src/stock_pixmap.c
8574         * src/stock_pixmap.h
8575         * src/summaryview.c
8576         * src/pixmaps/key_gpg_signed.xpm
8577                 Fix bug 1412, "Sign reply, if mail was signed"
8578                 Add an account preference to sign replies to signed mails
8579
8580 2008-08-28 [iwkse]      3.5.0cvs77
8581
8582         * src/prefs_filtering.c
8583                 Making the search more useful,
8584                 jumping directly to the relative rule.
8585
8586 2008-08-27 [colin]      3.5.0cvs76
8587
8588         * src/main.c
8589                 Add a bit of info
8590
8591 2008-08-27 [colin]      3.5.0cvs75
8592
8593         * src/gtk/gtkcmctree.c
8594                 Fix a few ifdefs
8595
8596 2008-08-26 [colin]      3.5.0cvs74
8597
8598         * src/gtk/gtkcmctree.c
8599                 Fix missing inits on old glib
8600
8601 2008-08-26 [wwp]        3.5.0cvs73
8602
8603         * src/common/utils.c
8604                 Added 'Fwd' to the list of known common subject prefixes.
8605
8606 2008-08-25 [iwkse]      3.5.0cvs72
8607
8608         * src/image_viewer.c
8609                 Add animated gif support to the
8610                 message preview.
8611
8612 2008-08-25 [colin]      3.5.0cvs71
8613
8614         * src/gtk/gtkcmctree.c
8615                 Make sure work isn't null
8616
8617 2008-08-24 [colin]      3.5.0cvs70
8618
8619         * src/common/ssl.c
8620                 Fix typo on SSL_CERT_DIR
8621
8622 2008-08-23 [holger]     3.5.0cvs69
8623
8624         * src/printing.c
8625                 Fix bug 1699 'Separator line mis-placed when
8626                 printing some e-mails'. The number of header lines
8627                 was not correctly calculated when Pango inserts
8628                 linebreaks
8629
8630 2008-08-23 [colin]      3.5.0cvs68
8631
8632         * src/mainwindow.c
8633                 Fix the account selector button; thanks
8634                 to wwp
8635
8636 2008-08-21 [colin]      3.5.0cvs67
8637
8638         * src/compose.c
8639         * src/compose.h
8640                 Add a compose preference for auto-indent
8641         * src/mainwindow.c
8642         * src/summaryview.c
8643                 Make colorlabel accels a bit less hacky
8644
8645 2008-08-21 [colin]      3.5.0cvs66
8646
8647         * src/compose.c
8648         * src/prefs_common.c
8649         * src/prefs_common.h
8650         * src/prefs_wrapping.c
8651                 Add a preference for autoindent; fix no_join tag
8652                 being applied to whole lines instead of just \n when
8653                 creating a line 
8654
8655 2008-08-21 [colin]      3.5.0cvs65
8656
8657         * src/compose.c
8658                 Add support for auto-indentation
8659
8660 2008-08-19 [colin]      3.5.0cvs64
8661
8662         * src/compose.c
8663                 Save Autowrap status in drafts/queued mails
8664
8665 2008-08-19 [colin]      3.5.0cvs63
8666
8667         * src/mainwindow.c
8668                 Fix a comment (in reality, test commit on
8669                 the new CVS server)
8670
8671 2008-08-17 [colin]      3.5.0cvs62
8672
8673         * src/prefs_actions.c
8674         * src/procmime.c
8675         * src/wizard.c
8676         * src/common/socket.h
8677         * src/gtk/gtkcmctree.c
8678                 Fix warnings
8679
8680 2008-08-16 [colin]      3.5.0cvs61
8681
8682         * src/editaddress_other_attributes_ldap.h
8683                 Add 'l' field (localityName)
8684
8685 2008-08-16 [colin]      3.5.0cvs60
8686
8687         * src/mainwindow.c
8688         * src/gtk/gtkcmclist.c
8689         * src/gtk/gtkcmclist.h
8690         * src/gtk/gtkcmctree.c
8691         * src/gtk/gtksctree.c
8692         * src/gtk/gtkutils.c
8693         * src/gtk/gtkvscrollbutton.c
8694                 Fix Maemo build (OS2007)
8695
8696 2008-08-14 [colin]      3.5.0cvs59
8697
8698         * src/folder.c
8699                 Don't crash if parent is null when creating
8700                 a folder
8701         * src/gtk/pluginwindow.c
8702                 Don't crash on race when closing window while
8703                 a plugin is loading and does gtk_iterations
8704
8705 2008-08-13 [colin]      3.5.0cvs58
8706
8707         * src/messageview.c
8708         * src/messageview.h
8709         * src/mimeview.c
8710                 Fix bug 1696, 'Viewing binary attachements 
8711                 as text over 1 MB' (various buglets)
8712
8713 2008-08-10 [colin]      3.5.0cvs57
8714
8715         * src/summaryview.c
8716         * src/gtk/gtkcmclist.c
8717                 Continue fixing GTK < 2.12 build, thanks to
8718                 Michael Hugues
8719
8720 2008-08-10 [colin]      3.5.0cvs56
8721
8722         * src/gtk/gtksctree.c
8723                 Fix build on GTK < 2.12
8724
8725 2008-08-09 [colin]      3.5.0cvs55
8726
8727         * src/mainwindow.c
8728                 Fix untranslatable strings, thanks to
8729                 Stephan Sachse
8730
8731 2008-08-07 [colin]      3.5.0cvs54
8732
8733         * src/compose.c
8734         * src/editaddress.c
8735         * src/folderview.c
8736         * src/mainwindow.c
8737         * src/message_search.c
8738         * src/mimeview.c
8739         * src/noticeview.c
8740         * src/prefs_account.c
8741         * src/prefs_common.c
8742         * src/prefs_customheader.c
8743         * src/prefs_ext_prog.c
8744         * src/prefs_filtering_action.c
8745         * src/prefs_gtk.c
8746         * src/prefs_logging.c
8747         * src/prefs_matcher.c
8748         * src/prefs_msg_colors.c
8749         * src/procmime.c
8750         * src/summary_search.c
8751         * src/summaryview.c
8752         * src/toolbar.c
8753         * src/gtk/colorsel.c
8754         * src/gtk/gtkaspell.c
8755         * src/gtk/gtkutils.c
8756         * src/gtk/gtkutils.h
8757         * src/gtk/inputdialog.c
8758         * src/gtk/pluginwindow.c
8759         * src/gtk/quicksearch.c
8760         * src/plugins/bogofilter/bogofilter_gtk.c
8761         * src/plugins/dillo_viewer/dillo_prefs.c
8762         * src/plugins/spamassassin/spamassassin_gtk.c
8763                 - Fix Ctrl-Space shortcut
8764                 - Fix mime-parsing bug in procmime (cvs52)
8765                 - Fix double-free in procmime (cvs52)
8766                 - Use gtk_bin_get_child instead of GTK_BIN()->child
8767                 - Fix Goto menu in mainwindow
8768
8769 2008-08-07 [mones]      3.5.0cvs53
8770
8771         * po/es.po
8772                 Updated translation (lots of changes!)
8773         * src/compose.c
8774                 Add missing accelerator key
8775         * src/mainwindow.c
8776                 Restored 'v' key function (thanks Colin!)
8777
8778 2008-08-06 [colin]      3.5.0cvs52
8779
8780         * src/addrbook.c
8781         * src/addrcindex.c
8782         * src/addrduplicates.c
8783         * src/addrharvest.c
8784         * src/enriched.c
8785         * src/html.c
8786         * src/ldif.c
8787         * src/mimeview.c
8788         * src/mutt.c
8789         * src/pine.c
8790         * src/procmime.c
8791         * src/vcard.c
8792         * src/wizard.c
8793                 Fix my use of g_utf8_strdown (it returns
8794                 a newly allocated string and doesn't
8795                 change the parameter)
8796
8797 2008-08-06 [colin]      3.5.0cvs51
8798
8799         * src/compose.c
8800                 Fix bug 1690, 'Copy/Paste in edit window may 
8801                 break Undo'; middle-click pastes aren't 
8802                 REPLACE_INSERT but just INSERT. 
8803                 Also, fix privacy menu selection
8804
8805 2008-08-05 [colin]      3.5.0cvs50
8806
8807         * src/action.c
8808         * src/addr_compl.c
8809         * src/addrbook.c
8810         * src/addrcindex.c
8811         * src/addrduplicates.c
8812         * src/addrharvest.c
8813         * src/enriched.c
8814         * src/html.c
8815         * src/ldif.c
8816         * src/main.c
8817         * src/mimeview.c
8818         * src/mutt.c
8819         * src/pine.c
8820         * src/procmime.c
8821         * src/vcard.c
8822         * src/wizard.c
8823         * src/common/socket.c
8824         * src/gtk/gtkutils.c
8825         * src/gtk/gtkutils.h
8826         * src/gtk/menu.c
8827         * src/plugins/spamassassin/spamassassin.c
8828                 More undeprecation (Glib)
8829
8830 2008-08-05 [colin]      3.5.0cvs49
8831
8832         * src/prefs_account.c
8833         * src/prefs_filtering_action.c
8834         * src/prefs_matcher.c
8835         * src/gtk/Makefile.am
8836         * src/gtk/claws-marshal.list
8837         * src/gtk/colorlabel.c
8838         * src/gtk/colorsel.c
8839         * src/gtk/foldersort.c
8840         * src/gtk/gtkaspell.c
8841         * src/gtk/gtkcmclist.c
8842         * src/gtk/gtkcmclist.h
8843         * src/gtk/gtkcmctree.c
8844         * src/gtk/gtkcmctree.h
8845         * src/gtk/gtkcmoptionmenu.c
8846         * src/gtk/gtkcmoptionmenu.h
8847         * src/gtk/gtksctree.c
8848         * src/gtk/gtksctree.h
8849         * src/gtk/gtkutils.c
8850         * src/gtk/gtkutils.h
8851         * src/gtk/gtkvscrollbutton.c
8852         * src/gtk/menu.c
8853         * src/gtk/menu.h
8854         * src/gtk/quicksearch.c
8855         * src/plugins/dillo_viewer/dillo_viewer.c
8856         * src/plugins/pgpcore/select-keys.c
8857                 Try to finish yesterday's commit
8858
8859 2008-08-04 [colin]      3.5.0cvs48
8860
8861         * src/addressadd.c
8862         * src/addressbook.c
8863         * src/addressbook_foldersel.c
8864         * src/addressitem.h
8865         * src/addrgather.c
8866         * src/browseldap.c
8867         * src/compose.c
8868         * src/compose.h
8869         * src/editaddress.c
8870         * src/editaddress_other_attributes_ldap.c
8871         * src/editgroup.c
8872         * src/editldap_basedn.c
8873         * src/folderview.c
8874         * src/folderview.h
8875         * src/grouplistdialog.c
8876         * src/image_viewer.c
8877         * src/imap_gtk.c
8878         * src/importldif.c
8879         * src/main.c
8880         * src/mainwindow.c
8881         * src/message_search.c
8882         * src/mh_gtk.c
8883         * src/mimeview.c
8884         * src/mimeview.h
8885         * src/news_gtk.c
8886         * src/noticeview.h
8887         * src/prefs_account.c
8888         * src/prefs_filtering_action.c
8889         * src/prefs_matcher.c
8890         * src/prefs_msg_colors.c
8891         * src/prefs_summaries.c
8892         * src/statusbar.c
8893         * src/stock_pixmap.c
8894         * src/summary_search.c
8895         * src/summaryview.c
8896         * src/summaryview.h
8897         * src/textview.c
8898         * src/toolbar.h
8899         * src/gtk/Makefile.am
8900         * src/gtk/claws-marshal.list
8901         * src/gtk/colorsel.c
8902         * src/gtk/foldersort.c
8903         * src/gtk/gtkaspell.c
8904         * src/gtk/gtkcmclist.c
8905         * src/gtk/gtkcmclist.h
8906         * src/gtk/gtkcmctree.c
8907         * src/gtk/gtkcmctree.h
8908         * src/gtk/gtksctree.c
8909         * src/gtk/gtksctree.h
8910         * src/gtk/gtkutils.c
8911         * src/gtk/gtkutils.h
8912         * src/gtk/gtkvscrollbutton.c
8913         * src/gtk/menu.c
8914         * src/gtk/menu.h
8915         * src/gtk/quicksearch.c
8916         * src/plugins/dillo_viewer/dillo_viewer.c
8917         * src/plugins/pgpcore/select-keys.c
8918                 Include GtkCList/GtkCTree locally (renamed GTKCMCList/CTree)
8919                 Undeprecate their implementation (GtkArg, GtkType, ...)
8920                 Undeprecate a few other things here and there
8921                 Add -DGTK_DISABLE_DEPRECATED to CFLAGS in maintainer mode
8922                 Add #undef GTK_DISABLE_DEPRECATED in the files where we
8923                 still have work to do
8924
8925 2008-08-04 [colin]      3.5.0cvs47
8926
8927         * src/compose.c
8928         * src/compose.h
8929         * src/toolbar.h
8930         * src/textview.c
8931         * src/stock_pixmap.c
8932         * src/statusbar.c
8933         * src/noticeview.h
8934         * src/mimeview.h
8935         * src/mainwindow.c
8936         * src/image_viewer.c
8937         * src/gtk/gtkaspell.c
8938         * src/gtk/gtkvscrollbutton.c
8939         * src/plugins/dillo_viewer/dillo_viewer.c
8940                 Undeprecate more things
8941
8942 2008-08-02 [colin]      3.5.0cvs46
8943
8944         * src/mainwindow.c
8945                 Fix toggle menu activation state
8946                 (thanks to cvs45 ;)
8947
8948 2008-08-02 [paul]       3.5.0cvs45
8949
8950         * src/mainwindow.c
8951                 fix sensitivity of
8952                 /View/Show or hide/Message View
8953
8954 2008-08-01 [paul]       3.5.0cvs44
8955
8956         * src/common/utils.c
8957         * src/plugins/pgpcore/claws.def
8958         * src/plugins/pgpinline/claws.def
8959                 fix compilation problems on mingw32,
8960                 (bug 1688) Patch by Marcus Brinkmann
8961
8962 2008-08-01 [colin]      3.5.0cvs43
8963
8964         * src/gtk/gtkutils.c
8965         * src/gtk/gtkvscrollbutton.c
8966                 Oups, fix build
8967
8968 2008-08-01 [colin]      3.5.0cvs42
8969
8970         * src/compose.c
8971         * src/foldersel.c
8972         * src/mainwindow.c
8973         * src/prefs_account.c
8974         * src/prefs_folder_item.c
8975         * src/prefs_quote.c
8976         * src/summaryview.c
8977         * src/gtk/gtkaspell.c
8978         * src/gtk/gtkutils.c
8979         * src/gtk/gtkvscrollbutton.c
8980                 Replace a few deprecated function calls
8981
8982 2008-08-01 [paul]       3.5.0cvs41
8983
8984         * src/action.c
8985                 fix crash that occurs because of recent GtkUIManager
8986                 changes. Thanks to Colin
8987
8988 2008-07-31 [colin]      3.5.0cvs40
8989
8990         * src/addressbook.c
8991         * src/compose.c
8992         * src/mainwindow.c
8993         * src/messageview.c
8994                 Some Maemo fixes
8995         * src/gtk/menu.c
8996         * src/gtk/menu.h
8997                 Remove deprecated helper funcs
8998
8999 2008-07-30 [colin]      3.5.0cvs39
9000
9001         * src/folderview.c
9002         * src/folderview.h
9003         * src/imap_gtk.c
9004         * src/mh_gtk.c
9005         * src/news_gtk.c
9006                 Move the folderview popup menu to GtkUIManager
9007
9008 2008-07-29 [colin]      3.5.0cvs38
9009
9010         * src/account.c
9011         * src/account.h
9012         * src/action.c
9013         * src/action.h
9014         * src/addressitem.h
9015         * src/compose.c
9016         * src/edittags.c
9017         * src/mainwindow.c
9018         * src/mainwindow.h
9019         * src/mimeview.c
9020         * src/summaryview.c
9021         * src/gtk/menu.c
9022         * src/gtk/menu.h
9023                 Switch the main menu to GtkUIManager
9024                 Warning fixes
9025
9026 2008-07-29 [colin]      3.5.0cvs37
9027
9028         * src/news.c
9029                 Fix bug 1684, 'view news messages with large 
9030                 attachements segfaults'
9031
9032 2008-07-29 [colin]      3.5.0cvs36
9033
9034         * src/action.c
9035         * src/action.h
9036         * src/addressbook.c
9037         * src/addressitem.h
9038         * src/compose.c
9039         * src/compose.h
9040         * src/messageview.c
9041         * src/messageview.h
9042         * src/summaryview.c
9043         * src/gtk/menu.c
9044         * src/gtk/menu.h
9045                 More switches to GtkUIManager
9046
9047 2008-07-26 [colin]      3.5.0cvs35
9048
9049         * src/gtk/menu.c
9050         * src/gtk/menu.h
9051                 Fix prototype
9052
9053 2008-07-25 [colin]      3.5.0cvs34
9054
9055         * src/addrcustomattr.c
9056         * src/addressbook.c
9057         * src/compose.c
9058         * src/editaddress.c
9059         * src/editaddress_other_attributes_ldap.h
9060         * src/edittags.c
9061         * src/mainwindow.c
9062         * src/mimeview.c
9063         * src/prefs_actions.c
9064         * src/prefs_filtering.c
9065         * src/prefs_template.c
9066         * src/summaryview.c
9067         * src/textview.c
9068         * src/textview.h
9069         * src/toolbar.c
9070         * src/gtk/about.c
9071         * src/gtk/menu.c
9072         * src/gtk/menu.h
9073         * src/plugins/trayicon/trayicon.c
9074                 More changes from GtkItemFactory to GtkUIManager
9075
9076 2008-07-25 [colin]      3.5.0cvs33
9077
9078         * src/gtk/menu.h
9079                 Add a macro to remove menu items
9080                 Make the gui_manager variable useless
9081
9082 2008-07-24 [colin]      3.5.0cvs32
9083
9084         * src/mimeview.c
9085                 Fix a gtk warning on clear
9086         * src/mainwindow.c
9087         * src/summaryview.c
9088         * src/summaryview.h
9089                 Switch the message list popup menu to
9090                 GtkUIManager
9091
9092 2008-07-23 [colin]      3.5.0cvs31
9093
9094         * src/plugins/pgpcore/pgp_viewer.c
9095         * src/plugins/pgpcore/sgpgme.c
9096                 Fix bug 1681, 'GnuPG Plugin does not compile on solaris'
9097                 Patch by Thomas Wiegner <wiegner@gmx.de>
9098
9099 2008-07-20 [paul]       3.5.0cvs30
9100
9101         * src/plugins/trayicon/libeggtrayicon/eggtrayicon.c
9102                 remove redundant GTK version check
9103
9104 2008-07-20 [ticho]      3.5.0cvs29
9105
9106         * src/folderview.c
9107         * src/imap_gtk.c
9108         * src/news_gtk.c
9109                 Moved sensitivity setting for "Download messages" for IMAP and
9110                 news folders from folderview.c to imap_gtk.c and news_gtk.c
9111                 respectively for better code readability.
9112                 Fixed indentation in news' set_sensitivity().
9113
9114 2008-07-20 [paul]       3.5.0cvs28
9115
9116         * src/addrgather.c
9117                 remove more redundant code following cvs27
9118
9119 2008-07-20 [paul]       3.5.0cvs27
9120
9121         * src/addrgather.c
9122                 remove now redundant code
9123         * src/mainwindow.c
9124         * src/mainwindow.h
9125                 fix bug 1673, 'Tools/Harvest adresses is
9126                 grayed out if folder is empty'
9127
9128 2008-07-19 [ticho]      3.5.0cvs26
9129
9130         * src/edittags.c
9131         * src/main.c
9132         * src/mimeview.c
9133         * src/mimeview.h
9134         * src/gtk/gtkutils.c
9135         * src/gtk/gtkutils.h
9136         * src/gtk/menu.c
9137         * src/gtk/menu.h
9138                 Use GtkUIManager for mimeview and tag edit dialog popup menus,
9139                 instead of deprecated GtkItemFactory.
9140
9141 2008-07-19 [colin]      3.5.0cvs25
9142
9143         * src/account.c
9144         * src/addrgather.c
9145         * src/compose.c
9146         * src/editldap.c
9147         * src/expldifdlg.c
9148         * src/importldif.c
9149         * src/main.c
9150         * src/mainwindow.c
9151         * src/mimeview.c
9152         * src/noticeview.c
9153         * src/prefs_account.c
9154         * src/prefs_actions.c
9155         * src/prefs_ext_prog.c
9156         * src/prefs_filtering.c
9157         * src/prefs_folder_item.c
9158         * src/prefs_image_viewer.c
9159         * src/prefs_logging.c
9160         * src/prefs_msg_colors.c
9161         * src/prefs_other.c
9162         * src/prefs_send.c
9163         * src/prefs_spelling.c
9164         * src/prefs_summaries.c
9165         * src/prefs_template.c
9166         * src/printing.c
9167         * src/quote_fmt.c
9168         * src/summary_search.c
9169         * src/summaryview.c
9170         * src/toolbar.c
9171         * src/wizard.c
9172         * src/common/Makefile.am
9173         * src/gtk/gtksctree.c
9174         * src/gtk/gtkutils.h
9175         * src/gtk/pluginwindow.c
9176         * src/gtk/quicksearch.c
9177         * src/plugins/bogofilter/bogofilter_gtk.c
9178         * src/plugins/dillo_viewer/dillo_prefs.c
9179         * src/plugins/pgpcore/prefs_gpg.c
9180         * src/plugins/spamassassin/spamassassin_gtk.c
9181         * src/plugins/trayicon/trayicon.c
9182         * src/plugins/trayicon/trayicon_prefs.c
9183                 Use the shiny new GTK tooltips API when possible (GTK+ 2.12 
9184                 or greater). Use the old deprecated one on GTK+ < 2.12.
9185                 Easy! Straightforward! I'm not annoyed at all! It's not a loss
9186                 of time!
9187
9188 2008-07-16 [colin]      3.5.0cvs24
9189
9190         * src/mainwindow.c
9191                 Fix folderview's scrolbar when starting minimised
9192                 to tray, and popping up the mainwindow by calling
9193                 claws-mail from the command line
9194
9195 2008-07-08 [colin]      3.5.0cvs23
9196
9197         * src/compose.c
9198                 Possibly fix po-headers appearing on empty
9199                 templates
9200
9201 2008-07-08 [colin]      3.5.0cvs22
9202
9203         * src/folderview.c
9204         * src/summaryview.c
9205                 Finish the always_open tristate patch, by Jonathan
9206                 Corbet.
9207
9208 2008-07-07 [paul]       3.5.0cvs21
9209
9210         * src/mainwindow.c
9211                 fix typo (missing ")
9212
9213 2008-07-07 [paul]       3.5.0cvs20
9214
9215         * src/mainwindow.c
9216                 fit the menu style a bit better
9217
9218 2008-07-07 [colin]      3.5.0cvs19
9219
9220         * src/prefs_themes.c
9221                 Make upgrading themes easier
9222
9223 2008-07-07 [colin]      3.5.0cvs18
9224
9225         * src/mainwindow.c
9226         * src/prefs_toolbar.c
9227         * src/stock_pixmap.c
9228                 Finish fixing bug 1609, 'Icon issues'
9229
9230 2008-07-07 [colin]      3.5.0cvs17
9231
9232         * src/prefs_common.c
9233                 Fix the default value
9234
9235 2008-07-07 [colin]      3.5.0cvs16
9236
9237         * src/prefs_summaries.c
9238                 Revert my fix to the string, the correct term
9239                 is indeed Message View
9240
9241 2008-07-07 [colin]      3.5.0cvs15
9242
9243         * AUTHORS
9244         * src/gtk/authors.h
9245         * src/prefs_common.c
9246         * src/prefs_common.h
9247         * src/prefs_summaries.c
9248         * src/summaryview.c
9249         * src/gtk/authors.h
9250                 Change "Always open message when selected" to
9251                 a tristate (Never/Always/When preview is visible)
9252                 Patch by Jonathan Corbet <corbet@lwn.net>.
9253
9254 2008-07-06 [paul]       3.5.0cvs14
9255
9256         * src/addrgather.c
9257                 improve the layout of the dialogue
9258                 improve the English
9259                 add tooltips
9260                 fix some of the nasty coding style
9261         * src/mainwindow.c
9262                 improve the English
9263                 add some missing mnemonics
9264
9265 2008-07-05 [paul]       3.5.0cvs13
9266
9267         * src/mainwindow.c
9268         * src/mainwindow.h
9269                 fix bug 1398, '"Change current account" is
9270                 available even when there's only one account'
9271         * src/plugins/pgpcore/prefs_gpg.c
9272                 put back a needed include, removed in error
9273
9274 2008-07-05 [colin]      3.5.0cvs12
9275
9276         * src/mainwindow.c
9277                 MAEMO: Fix bug 1620, 'Can't use hardware zoom buttons'
9278
9279 2008-07-05 [colin]      3.5.0cvs11
9280
9281         * src/news.c
9282         * src/news_gtk.c
9283                 Provide ability to rename newsgroups. Closes
9284                 bug 1444, 'Add GUI option for renaming 
9285                 newsgroups'. Patch by Pawel Pekala
9286
9287 2008-07-05 [colin]      3.5.0cvs10
9288
9289         * src/plugins/pgpcore/passphrase.c
9290         * src/plugins/pgpcore/prefs_gpg.c
9291         * src/plugins/pgpcore/select-keys.c
9292                 Simplify GTK includes (with the advantage
9293                 of compiling against GTK+2.13); patch by
9294                 Charles A Edwards
9295
9296 2008-07-05 [colin]      3.5.0cvs9
9297
9298         * src/wizard.c
9299                 Add SSL client certificates
9300
9301 2008-07-05 [colin]      3.5.0cvs8
9302
9303         * src/prefs_account.c
9304         * src/common/session.h
9305                 Fix warnings
9306         * src/common/ssl.c
9307                 Add one path for certs
9308
9309 2008-07-05 [colin]      3.5.0cvs7
9310
9311         * src/prefs_account.c
9312                 Fix no-ssl build
9313
9314 2008-07-04 [colin]      3.5.0cvs6
9315
9316         * src/common/ssl.c
9317         * src/common/ssl.h
9318         * src/common/ssl_certificate.c
9319                 Workaround distro bugs and fix certificate checking
9320                 with OpenSSL
9321
9322 2008-07-04 [colin]      3.5.0cvs5
9323
9324         * src/filtering.c
9325         * src/common/ssl_certificate.c
9326         * src/common/ssl_certificate.h
9327         * src/etpan/imap-thread.c
9328         * src/etpan/nntp-thread.c
9329                 Fix some leaks, thanks to Martin Zwickel
9330                 Rename gnutls functions that do the same
9331                 as OpenSSL ones, to avoid symbol clashing
9332                 when Claws is built against GnuTLS and
9333                 libetpan against OpenSSL
9334
9335 2008-07-04 [paul]       3.5.0cvs4
9336
9337         * src/prefs_account.c
9338                 remove 1 forgotten '.'
9339
9340 2008-07-04 [paul]       3.5.0cvs3
9341
9342         * src/prefs_account.c
9343                 layout/engrish fixes to the 'Client
9344                 certificates' frame
9345
9346 2008-07-03 [colin]      3.5.0cvs2
9347
9348         * src/imap.c
9349         * src/news.c
9350         * src/pop.c
9351         * src/prefs_account.c
9352         * src/prefs_account.h
9353         * src/prefs_common.c
9354         * src/send_message.c
9355         * src/common/session.c
9356         * src/common/session.h
9357         * src/common/smtp.c
9358         * src/common/smtp.h
9359         * src/common/socket.h
9360         * src/common/ssl.c
9361         * src/common/ssl.h
9362         * src/common/ssl_certificate.c
9363         * src/common/ssl_certificate.h
9364         * src/etpan/imap-thread.c
9365         * src/etpan/nntp-thread.c
9366         * src/gtk/inputdialog.c
9367                 Add support for SSL client certificates (either PEM files
9368                 with certificate and private key, either PKCS12 files)
9369
9370 2008-06-28 [colin]      3.5.0cvs1
9371
9372         * src/foldersel.c
9373                 Fix compilation with older GTKs
9374
9375 2008-06-27 [paul]       3.5.0
9376
9377         * NEWS
9378         * README
9379         * RELEASE_NOTES 
9380                 3.5.0 released
9381
9382 2008-06-27 [paul]       3.4.0cvs116
9383
9384         * src/gtk/authors.h
9385                 complete cvs115
9386
9387 2008-06-27 [paul]       3.4.0cvs115
9388
9389         * configure.ac
9390         * src/gtk/authors.h
9391                 no longer build unmaintained translations
9392
9393 2008-06-27 [paul]       3.4.0cvs114
9394
9395         * po/de.po
9396         * po/fi.po
9397         * po/pt_BR.po
9398                 updated by Stephan Sachse, Flammie Pirinen, and
9399                 Frederico Goncalves Guimaraes
9400
9401 2008-06-26 [wwp]        3.4.0cvs113
9402
9403         * manual/fr/advanced.xml
9404                 Update French version of the manual (AutoFaces documentation).
9405
9406 2008-06-26 [wwp]        3.4.0cvs112
9407
9408         * manual/fr/advanced.xml
9409         * manual/fr/plugins.xml
9410                 Updated French version of the manual (completed
9411                 hidden options list, added note about Clawsker
9412                 and new mail archiver plugin).
9413
9414 2008-06-25 [colin]      3.4.0cvs111
9415
9416         * src/gtk/gtkaspell.c
9417                 Fix non-UTF8 in the replace with dialog
9418         * src/prefs_actions.c
9419                 Fix possible crasher
9420                 Patches by Pawel
9421
9422 2008-06-24 [mones]      3.4.0cvs110
9423
9424         * src/autofaces.c
9425                 Fix non-warning message, downgraded to debug info
9426
9427 2008-06-24 [colin]      3.4.0cvs109
9428
9429         * src/summaryview.c
9430                 Fix bug 1650, Message line too small after 
9431                 changing columns in "three columns" layout
9432
9433 2008-06-24 [colin]      3.4.0cvs108
9434
9435         * src/messageview.c
9436                 Fix Spam button sensitivity in newsgroups
9437
9438 2008-06-23 [wwp]        3.4.0cvs107
9439
9440         * po/fr.po
9441                 Updated French translation.
9442
9443 2008-06-23 [mones]      3.4.0cvs106
9444
9445         * po/es.po
9446                 Updated translation for release
9447
9448 2008-06-22 [mones]      3.4.0cvs105
9449
9450         * manual/es/plugins.xml
9451                 Synced new entry for Mail Archiver plugin
9452
9453 2008-06-22 [colin]      3.4.0cvs104
9454
9455         * src/compose.c
9456                 Fix initial cursor position
9457
9458 2008-06-21 [paul]       3.4.0cvs103
9459
9460         * manual/plugins.xml
9461                 add an entry for the new Mail Archiver plugin
9462
9463 2008-06-21 [paul]       3.4.0cvs102
9464
9465         * src/gtk/about.c
9466                 we're in 'string freeze', put back the
9467                 < > symbols for now
9468
9469 2008-06-21 [paul]       3.4.0cvs101
9470
9471         * manual/advanced.xml
9472         * manual/es/advanced.xml
9473                 fix build warning: <emphasis> cannot be contained
9474                 within <filename>
9475         * src/gtk/about.c
9476                 fix non-clickable link on License page and drop
9477                 the containing < > symbols to match other links
9478
9479 2008-06-20 [mones]      3.4.0cvs100
9480
9481         * manual/advanced.xml
9482                 Added autofaces documentation, note about clawsker in hidden
9483                 preferences, minor markup fix. Thanks Paul for proofreading
9484         * manual/es/advanced.xml
9485                 Synchronised Spanish manual
9486
9487 2008-06-16 [colin]      3.4.0cvs99
9488
9489         * src/compose.c
9490                 Fix cursor placing on signature change
9491
9492 2008-06-16 [paul]       3.4.0cvs98
9493
9494         * src/imap_gtk.c
9495         * src/mh_gtk.c
9496         * src/gtk/inputdialog.c
9497                 really fussy coding style fixes
9498
9499 2008-06-16 [paul]       3.4.0cvs97
9500
9501         * src/Makefile.am
9502                 keep the alphabetical order
9503
9504 2008-06-13 [mones]      3.4.0cvs96
9505
9506         * src/autofaces.c
9507                 Fix crasher ;-)
9508         * src/prefs_filtering_action.c
9509                 Fixed cosmetic bug, processing also displays "Filtering"
9510
9511 2008-06-13 [mones]      3.4.0cvs95
9512
9513         * src/Makefile.am
9514         * src/autofaces.c       ** NEW FILE **  
9515         * src/autofaces.h       ** NEW FILE **
9516         * src/compose.c
9517                 Allow setting Faces and X-Faces globally and per-account
9518                 from configuration files under ~/.claws-mail/autofaces
9519
9520 2008-06-13 [holger]     3.4.0cvs94
9521
9522         * .cvsignore
9523                 More files to ignore
9524         * src/gtk/inputdialog.c
9525         * src/gtk/inputdialog.h
9526                 Make input dialog more generic so that a checkbox
9527                 with custom text can be used in addition to the
9528                 "remember this" checkbox
9529         * src/imap_gtk.c
9530         * src/mh_gtk.c
9531         * src/prefs_common.c
9532         * src/prefs_common.h
9533                 Allow new folders to inherit the properties of the
9534                 parent folder during folder creation
9535
9536 2008-06-13 [wwp]        3.4.0cvs93
9537
9538         * src/addressbook.c
9539                 a better fix for this string, won't break up translations,
9540                 and is conform to other similar ones.
9541
9542 2008-06-13 [wwp]        3.4.0cvs92
9543
9544         * src/addrduplicates.c
9545         * src/addressadd.c
9546         * src/addressbook.c
9547         * src/addressbook_foldersel.c
9548         * src/editgroup.c
9549                 use tree decorations everywhere AB folders are used (AB tree pane,
9550                     add address to AB, select AB folder, edit group, custom attr, find dup
9551                     results), in order to match global style
9552                 make double-clicks in AB's tree pane behave like in MW's folder tree pane:
9553                     double clicking on groups in tree pane does open the group edit dialog
9554                     double clicking on other items in tree pane does expand/collapse
9555                 fix a missing space in AB's delete-folder dialog
9556                 fix again edit button sensitivity (thanks to iwkse, this reworks cvs79)
9557
9558         * src/foldersel.c
9559                 make foldersel dialog show dotted lines according to global (hidden) prefs
9560
9561 2008-06-12 [colin]      3.4.0cvs91
9562
9563         * src/compose.c
9564         * src/compose.h
9565                 Fix bug 1635, 'Last character of message is truncated 
9566                 when changing accounts w/ sigs'
9567         * src/folderview.c
9568                 Fix bug 1636, 'Can't select "properties" on "folders 
9569                 only" folders'
9570
9571 2008-06-11 [colin]      3.4.0cvs90
9572
9573         * src/folder.c
9574                 Maybe fix bug 1623, 'exits with segfault when 
9575                 logging in to certain imap-servers'
9576
9577 2008-06-10 [mones]      3.4.0cvs89
9578
9579         * AUTHORS
9580         * tools/Makefile.am
9581         * tools/README
9582         * tools/convert_mbox.sh
9583                 Undo cvs86 and cvs87, it really should be a patch to 
9584                 convert_mbox.pl
9585
9586 2008-06-10 [wwp]        3.4.0cvs88
9587
9588         * po/fr.po
9589                 Updated French translation.
9590
9591 2008-06-10 [mones]      3.4.0cvs87
9592
9593         * tools/Makefile.am
9594                 Oops, forgot to add previous script for distribution
9595
9596 2008-06-10 [mones]      3.4.0cvs86
9597
9598         * AUTHORS
9599         * tools/README
9600         * tools/convert_mbox.sh
9601                 Added script to convert Evolution mail folders contributed
9602                 by Daniel Dickinson <cshore@fionavar.ca>
9603                 Fixes debian bug 461435
9604
9605 2008-06-09 [colin]      3.4.0cvs85
9606
9607         * src/main.c
9608                 Integrate AWN information bubble if dbus is
9609                 available
9610         * src/folder.c
9611                 Fix crash when calling scan_required() on 
9612                 folder classes that don't implement them
9613         * src/common/session.c
9614                 Fix a little typo
9615
9616 2008-06-09 [colin]      3.4.0cvs84
9617
9618         * src/main.c
9619                 Fix bug 1447, 'If user tries to close while starting 
9620                 up, it will not close ever.'
9621
9622 2008-06-09 [colin]      3.4.0cvs83
9623
9624         * src/filtering.c
9625                 Fix bug 1628, 'Claws Mail crashes when 
9626                 filtering selected messages'
9627
9628 2008-06-04 [colin]      3.4.0cvs82
9629
9630         * src/messageview.c
9631                 Complete handling of html parts in multipart/alternative
9632                 mails
9633
9634 2008-06-03 [paul]       3.4.0cvs81
9635
9636         * src/prefs_message.c
9637                 make always the english good
9638
9639 2008-06-03 [colin]      3.4.0cvs80
9640
9641         * src/mainwindow.c
9642         * src/mainwindow.h
9643                 Fix bug 1624, '[PATCH] Quick search should be 
9644                 disabled for folder view'; based on a patch by
9645                 Michael Terry
9646
9647 2008-06-03 [iwkse]      3.4.0cvs79
9648
9649         * src/addressbook.c
9650                 Fix little gui bug on button sensitivity
9651         * src/messageview.c
9652         * src/prefs_common.c
9653         * src/prefs_common.h
9654         * src/prefs_message.c
9655                 Allow by default to show html in multipart/alternative
9656
9657 2008-06-02 [colin]      3.4.0cvs78
9658
9659         * src/prefs_actions.c
9660                 GUI rework, patch by Pawel 
9661
9662 2008-06-02 [colin]      3.4.0cvs77
9663
9664         * src/quote_fmt.c
9665                 Fix sensitivity/alignment, patch from
9666                 Pawel
9667
9668 2008-05-31 [colin]      3.4.0cvs76
9669
9670         * src/imap.c
9671                 Fix login issue introduced in cvs75.
9672
9673 2008-05-31 [colin]      3.4.0cvs75
9674
9675         * src/imap.c
9676                 Fix more possible double-frees. Also, fix the root cause
9677                 of these double-frees by just noting the Session is to
9678                 be destroyed instead of destroying it in flight
9679
9680 2008-05-29 [paul]       3.4.0cvs74
9681
9682         * manual/keyboard.xml
9683                 'Makes' these entries like the others
9684
9685 2008-05-29 [colin]      3.4.0cvs73
9686
9687         * src/procmsg.h
9688                 Include utils.h in case we
9689                 need to pull goffset definition
9690
9691 2008-05-29 [colin]      3.4.0cvs72
9692
9693         * src/common/utils.h
9694                 Workaround a stupid Glib issue, where
9695                 goffset happens to be undefined. 
9696
9697 2008-05-28 [colin]      3.4.0cvs71
9698
9699         * src/compose.c
9700         * src/compose.h
9701         * src/grouplistdialog.c
9702         * src/image_viewer.c
9703         * src/imap.c
9704         * src/inc.c
9705         * src/main.c
9706         * src/matcher.c
9707         * src/messageview.c
9708         * src/mimeview.c
9709         * src/prefs_themes.c
9710         * src/procmsg.h
9711         * src/summaryview.c
9712         * src/summaryview.h
9713         * src/textview.c
9714         * src/common/smtp.c
9715         * src/common/utils.c
9716         * src/common/utils.h
9717                 Use goffset instead of off_t for MsgInfo's size
9718                 Allows using MsgInfo structure from plugins
9719                 compiled with largefile support
9720
9721 2008-05-26 [colin]      3.4.0cvs70
9722
9723         * src/mainwindow.c
9724         * src/mainwindow.h
9725                 Define THEME_CHANGED_HOOKLIST and invoke
9726                 it on theme change
9727         * src/plugins/trayicon/trayicon.c
9728                 Listen to THEME_CHANGED_HOOKLIST and
9729                 update accordingly
9730
9731 2008-05-26 [paul]       3.4.0cvs69
9732
9733         * src/mimeview.c
9734                 plug a leak in mimeview_save_all()
9735
9736 2008-05-24 [colin]      3.4.0cvs68
9737
9738         * src/common/utils.h
9739                 Fix wrong define on old glibs
9740
9741 2008-05-24 [paul]       3.4.0cvs67
9742
9743         * src/Makefile.am
9744         * src/stock_pixmap.c
9745         * src/stock_pixmap.h
9746         * src/toolbar.c
9747         * src/pixmaps/cancel.xpm
9748         * src/pixmaps/close.xpm
9749                 add a specific icon for A_CANCEL_INC (addresses
9750                 point 1 of bug 1609 'Icon issues')
9751                 replace close.xpm with an icon of the standard
9752                 24x24 size
9753
9754 2008-05-24 [paul]       3.4.0cvs66
9755
9756         * src/pixmaps/insert_file.xpm
9757                 replaced
9758
9759 2008-05-23 [paul]       3.4.0cvs65
9760
9761         * src/common/md5.c
9762         * src/common/md5.h
9763                 add the possibility to check md5 on binary files,
9764                 thanks to Colin
9765
9766 2008-05-23 [colin]      3.4.0cvs64
9767
9768         * src/mainwindow.c
9769         * src/summaryview.c
9770                 Fix bug 1610, 'claws crash after opening/closing 
9771                 preferences and window update'
9772
9773 2008-05-22 [colin]      3.4.0cvs63
9774
9775         * src/prefs_filtering_action.c
9776         * src/gtk/combobox.c
9777         * src/gtk/combobox.h
9778                 Fix reselecting of Tags actions in
9779                 filtering actions dialog
9780
9781 2008-05-22 [colin]      3.4.0cvs62
9782
9783         * src/Makefile.am
9784         * src/prefs_toolbar.c
9785         * src/stock_pixmap.c
9786         * src/stock_pixmap.h
9787         * src/toolbar.c
9788         * src/pixmaps/delete_btn.xpm
9789         * src/pixmaps/insert_file.xpm
9790         * src/pixmaps/mail_reply_to_list.xpm
9791                 Fix more of bug 1609:
9792                 - Add a Delete button icon
9793                 - Add a Reply to list button icon
9794                 - Fix Insert file button icon
9795                 Artwork by Ciprian Popovici.
9796
9797 2008-05-21 [colin]      3.4.0cvs61
9798
9799         * src/common/utils.c
9800                 Fix a little leak
9801
9802 2008-05-21 [wwp]        3.4.0cvs60
9803
9804         * src/prefs_filtering.c
9805                 Don't show SMTP-only accounts in accounts list, as they are
9806                 irrelevant for filtering incoming messages.
9807
9808 2008-05-21 [colin]      3.4.0cvs59
9809
9810         * src/mainwindow.c
9811                 Don't put SMTP-only accounts in receive menus
9812
9813 2008-05-21 [colin]      3.4.0cvs58
9814
9815         * src/imap.c
9816                 Fix cvs56 (brain fart)
9817
9818 2008-05-21 [colin]      3.4.0cvs57
9819
9820         * src/common/utils.c
9821                 Fix bug 1615, 'hang on FIFO when the other end's not 
9822                 opened'
9823
9824 2008-05-21 [colin]      3.4.0cvs56
9825
9826         * src/imap.c
9827                 Fix a warning
9828
9829 2008-05-19 [colin]      3.4.0cvs55
9830
9831         * src/plugins/pgpcore/sgpgme.c
9832                 Maybe fix debian bug 481856, 'Segmentation fault 
9833                 when verifying a GPG signature'. Although it 
9834                 looks like a race condition...
9835
9836 2008-05-19 [colin]      3.4.0cvs54
9837
9838         * src/prefs_filtering_action.c
9839         * src/prefs_matcher.c
9840         * src/common/tags.c
9841         * src/common/tags.h
9842         * src/gtk/combobox.c
9843         * src/gtk/combobox.h
9844                 Patch by Pawel: disabled Tags menus in filtering dialogs
9845
9846 2008-05-19 [colin]      3.4.0cvs53
9847
9848         * src/prefs_account.c
9849                 GUI patch by Pawel: align ports entries
9850
9851 2008-05-19 [colin]      3.4.0cvs52
9852
9853         * src/mainwindow.c
9854                 Fix bug 1616, 'strange question while emptying trash'
9855
9856 2008-05-18 [colin]      3.4.0cvs51
9857
9858         * src/common/plugin.c
9859         * src/etpan/imap-thread.c
9860         * src/etpan/nntp-thread.c
9861         * src/gtk/gtksctree.c
9862                 Fix bug 1613, 'Various memory leaks'; 
9863                 based on a patch by Didier Barvaux.
9864
9865 2008-05-18 [colin]      3.4.0cvs50
9866
9867         * src/mimeview.c
9868         * src/privacy.h
9869         * src/toolbar.c
9870         * src/toolbar.h
9871         * src/plugins/pgpcore/sgpgme.c
9872                 Fix more parts of bug 1609:
9873                 - Make use of specific Expired privacy icon
9874                 - Use CLOSE instead of NOTICE_ERROR for cancel
9875                   receiving
9876                 - Allow a Preferences button in the main toolbar
9877
9878 2008-05-18 [colin]      3.4.0cvs49
9879
9880         * src/stock_pixmap.c
9881                 Fix bug with non-updating icons after theme change:
9882                 If fetching pixbuf for a given icon after a theme
9883                 change, the next pixmap fetch would return the old
9884                 cached one, as the theme change was forgotten at 
9885                 this time. (and vice-versa). This was mostly 
9886                 visible on open folder icons
9887
9888 2008-05-17 [colin]      3.4.0cvs48
9889
9890         * src/prefs_summaries.c
9891         * src/summaryview.c
9892                 Fix bug 1608, 'Inconsistent behaviour of mark as read 
9893                 options'. Patch by Pawel
9894
9895 2008-05-16 [colin]      3.4.0cvs47
9896
9897         * src/imap.c
9898                 Fix another possible crash (on fatal errors
9899                 at login, like stream error).
9900
9901 2008-05-16 [paul]       3.4.0cvs46
9902
9903         * tools/thunderbird-filters-convertor.pl
9904                 fix a typo
9905                 fix reading a tb rule that contains something
9906                 like that: \"Sender\"
9907
9908 2008-05-16 [paul]       3.4.0cvs45
9909
9910         * tools/README
9911         * tools/csv2addressbook.pl
9912                 add support for gmail exported csv address book
9913
9914 2008-05-16 [colin]      3.4.0cvs44
9915
9916         * configure.ac
9917         * src/ldapupdate.c
9918                 Fix ldap deprecated calls. Patch by
9919                 Michael Rasmussen
9920
9921 2008-05-16 [paul]       3.4.0cvs43
9922
9923         * manual/de/account.xml
9924         * manual/it/account.xml
9925         * manual/it/ack.xml
9926         * manual/it/addrbook.xml
9927         * manual/it/claws-mail-manual.xml
9928         * manual/it/gpl.xml
9929         * manual/it/intro.xml
9930         * manual/it/starting.xml
9931                 add pages towards German and Italian manuals.
9932                 (just for storage, they are not built yet, due
9933                 to being incomplete.) submitted by Speckmade
9934                 <Speckmade@gmx.net> and Salvatore De Paolis
9935                 <iwkse@claws-mail.org>
9936
9937 2008-05-16 [colin]      3.4.0cvs42
9938
9939         * src/gtk/sslcertwindow.c
9940                 Fix SHA1 fingerprint with GnuTLS
9941
9942 2008-05-15 [colin]      3.4.0cvs41
9943
9944         * src/gtk/sslcertwindow.c
9945                 Print SHA1 fingerprint too
9946
9947 2008-05-15 [colin]      3.4.0cvs40
9948
9949         * src/imap.c
9950                 Fix certificate port on TLS. It was 
9951                 previously always 0.
9952                 **IMPORTANT INFORMATION**: this will trigger 
9953                 one wrong "New certificate" warning at the 
9954                 first connection with this fix, if using STARTTLS
9955                 on IMAP.
9956         * src/gtk/sslcertwindow.c
9957                 Make labels selectable
9958
9959 2008-05-15 [colin]      3.4.0cvs39
9960
9961         * src/imap.c
9962                 Fix double free when STARTTLS fails (for
9963                 example due to refusing the certificate)
9964
9965 2008-05-15 [paul]       3.4.0cvs38
9966
9967         * manual/advanced.xml
9968                 fix typo
9969
9970 2008-05-15 [paul]       3.4.0cvs37
9971
9972         * manual/advanced.xml
9973         * src/prefs_send.c
9974                 make outgoing_fallback_to_ascii a hidden pref
9975
9976 2008-05-14 [colin]      3.4.0cvs36
9977
9978         * src/main.c
9979         * src/mainwindow.c
9980         * src/mainwindow.h
9981                 Make it possible to cancel quit when Claws
9982                 ask whether to empty trash.
9983
9984 2008-05-14 [colin]      3.4.0cvs35
9985
9986         * src/compose.c
9987         * src/prefs_common.c
9988         * src/prefs_common.h
9989         * src/prefs_send.c
9990                 Add a preference to be able to specify an
9991                 outgoing charset/encoding but still fallback
9992                 to 7bit US-ASCII when possible (default TRUE,
9993                 same behavior as pre-cvs34)
9994
9995 2008-05-14 [colin]      3.4.0cvs34
9996
9997         * src/compose.c
9998                 Always use the specified encoding and charset if it is
9999                 specified, even if the mail is ASCII.
10000
10001 2008-05-13 [paul]       3.4.0cvs33
10002
10003         * src/ldapupdate.c
10004                 fix the build warnings the easy way for now
10005
10006 2008-05-13 [colin]      3.4.0cvs32
10007
10008         * src/prefs_themes.c
10009                 Count .png files as icons too (fixes part
10010                 of bug 1609, 'Icon issues')
10011
10012 2008-05-13 [wwp]        3.4.0cvs31
10013
10014         * src/addressbook_foldersel.c
10015                 Fix wrong check (completes 3.4.0.cvs30).
10016
10017 2008-05-12 [wwp]        3.4.0cvs30
10018
10019         * src/addressbook.c
10020         * src/addressbook_foldersel.c
10021         * src/filtering.c
10022         * src/matcher.c
10023         * src/prefs_matcher.c
10024         * src/plugins/bogofilter/bogofilter.c
10025         * src/plugins/bogofilter/bogofilter_gtk.c
10026         * src/plugins/dillo_viewer/dillo_prefs.c
10027         * src/plugins/spamassassin/spamassassin.c
10028         * src/plugins/spamassassin/spamassassin_gtk.c
10029                 Fix for bug 1604 "found_in_addressbook in Any in non English local",
10030                 based on a patch submitted by Paul CtrlAltBs. Also fix storing of
10031                 translated string "Any" in plugins (whitelisting) and
10032                 UTF8 comparisons.
10033
10034 2008-05-07 [colin]      3.4.0cvs29
10035
10036         * configure.ac
10037                 Fix --enable-maemo (assume --enable-generic-umpc)
10038
10039 2008-05-07 [colin]      3.4.0cvs28
10040
10041         * configure.ac
10042         * src/account.c
10043         * src/addr_compl.c
10044         * src/compose.c
10045         * src/editaddress.c
10046         * src/folderview.c
10047         * src/mainwindow.c
10048         * src/messageview.c
10049         * src/mimeview.c
10050         * src/prefs_account.c
10051         * src/prefs_common.c
10052         * src/prefs_display_header.c
10053         * src/prefs_filtering.c
10054         * src/prefs_summaries.c
10055         * src/prefs_template.c
10056         * src/prefs_toolbar.c
10057         * src/stock_pixmap.c
10058         * src/summaryview.c
10059         * src/summaryview.h
10060         * src/textview.c
10061         * src/toolbar.c
10062         * src/gtk/about.c
10063         * src/gtk/gtksctree.c
10064         * src/gtk/menu.c
10065         * src/gtk/prefswindow.c
10066         * src/gtk/sslcertwindow.c
10067                 Separate generic UMPC code (layouts, ...) from 
10068                 MAEMO code (Hildon, ...)
10069
10070 2008-05-06 [paul]       3.4.0cvs27
10071
10072         * tools/claws.i18n.status.pl
10073                 add he.po
10074
10075 2008-05-06 [colin]      3.4.0cvs26
10076
10077         * src/common/utils.c
10078                 Maybe fix crash on FreeBSD
10079
10080 2008-05-05 [colin]      3.4.0cvs25
10081
10082         * src/messageview.c
10083                 Fix bug 1602, 'Crash when sending return receipt for
10084                 messages with no subject'
10085
10086 2008-05-05 [colin]      3.4.0cvs24
10087
10088         * src/mimeview.c
10089                 Don't overwrite temporary files with same
10090                 name when drag and dropping. Fixes bug 1599,
10091                 'attach multiple files with the same name from 
10092                 one mail to another'
10093
10094 2008-05-04 [paul]       3.4.0cvs23
10095
10096         * src/compose.c
10097         * src/prefs_common.c
10098                 fix bug 1587 'can not replay with quote'
10099
10100 2008-05-03 [colin]      3.4.0cvs22
10101
10102         * po/de.po
10103                 Fix bug 1598, 'Leading slash while translating "Unsubscribe"'
10104
10105 2008-05-03 [colin]      3.4.0cvs21
10106
10107         * src/toolbar.c
10108                 Fix bug 1597, 'In news folders, "Move Message to Wastebin" 
10109                 icon isn't grayed although ineffective'
10110
10111 2008-05-02 [wwp]        3.4.0cvs20
10112
10113         * po/fr.po
10114                 Fix translation.
10115
10116         * src/prefs_folder_item.c
10117                 Add missing notice in folder properties (templates) when
10118                 folder is a root node.
10119
10120 2008-04-30 [colin]      3.4.0cvs19
10121
10122         * src/prefs_toolbar.c
10123                 Add Trash and Delete icons to the icon chooser
10124
10125 2008-04-30 [colin]      3.4.0cvs18
10126
10127         * src/compose.c
10128                 Remove "Delete entire line" which was a noop
10129                 and should be the same as "Delete line" :)
10130
10131 2008-04-30 [colin]      3.4.0cvs17
10132
10133         * src/compose.c
10134                 Fix 'Delete line' and 'Delete to end of line'
10135                 on the last line. Patch by <seelenhirt@gmx.net>
10136
10137 2008-04-28 [colin]      3.4.0cvs16
10138
10139         * src/folder.c
10140                 Fix bug 1589, 'tagsdb file not removed when
10141                 folder deleted'.
10142         * src/common/utils.c
10143                 Make sure claws_unlink accepts NULL arg.
10144
10145 2008-04-25 [colin]      3.4.0cvs15
10146
10147         * src/common/ssl.c
10148                 Fix/simplify previous commit
10149
10150 2008-04-25 [colin]      3.4.0cvs14
10151
10152         * src/addrindex.h
10153         * src/common/ssl_certificate.c
10154                 Patch by Marcus: Fix Win32 build
10155         * src/common/ssl.c
10156                 Fix build with GnuTLS/no pthread, thanks
10157                 to Marcus
10158
10159 2008-04-25 [colin]      3.4.0cvs13
10160
10161         * src/summaryview.c
10162                 Fix bug 1586, '3-pane vertical layout now and then 
10163                 still shows sender column'
10164
10165 2008-04-25 [colin]      3.4.0cvs12
10166
10167         * src/Makefile.am
10168         * src/w32-logo.ico
10169         * src/w32-resource.rc
10170                 Patch from Marcus Brinkmann to set an icon on w32.
10171
10172 2008-04-24 [colin]      3.4.0cvs11
10173
10174         * src/inc.c
10175         * src/inc.h
10176                 Trace inc locks
10177         * src/ldif.c
10178         * src/ldif.h
10179                 Fix bug 1581, 'Bad File Format during Import LDIF':
10180                 Use dynamically allocated buffers; also, allow 
10181                 importing contacts with no email address
10182
10183 2008-04-24 [colin]      3.4.0cvs10
10184
10185         * src/prefs_common.c
10186                 Increment the timeout a bit on OpenBSD, 75 isn't enough
10187
10188 2008-04-23 [colin]      3.4.0cvs9
10189
10190         * src/compose.c
10191         * src/prefs_folder_item.c
10192         * src/prefs_template.c
10193         * src/quote_fmt.c
10194                 Fix bug 1576: Fix unescaping of templates when testing them
10195                 I think it breaks nothing. (wwp, you're welcome to double-check)
10196
10197 2008-04-23 [paul]       3.4.0cvs8
10198
10199         * manual/advanced.xml
10200                 add info about the "two_line_vertical" hidden
10201                 pref
10202
10203 2008-04-22 [paul]       3.4.0cvs7
10204
10205         * src/prefs_common.c
10206         * src/prefs_common.h
10207         * src/summaryview.c
10208                 make the 2-line view in summaryview when in three
10209                 columns mode configurable. hidden pref: "two_line_vertical"
10210
10211 2008-04-22 [colin]      3.4.0cvs6
10212
10213         * src/inc.c
10214                 Fix missing inc_unlock()
10215         * src/prefs_matcher.c
10216         * src/send_message.c
10217                 Fix my last commit
10218
10219 2008-04-22 [colin]      3.4.0cvs5
10220
10221         * src/etpan/imap-thread.c
10222                 Use g_(un)setenv instead of (un)setenv which
10223                 doesn't exist on IRIX 6.5
10224
10225 2008-04-22 [colin]      3.4.0cvs4
10226
10227         * src/inc.c
10228         * src/prefs_common.c
10229         * src/send_message.c
10230                 Fix bug 1566, 'too short I/O timeout on OpenBSD'
10231                 Set the default timeout to 75 seconds
10232
10233 2008-04-20 [colin]      3.4.0cvs3
10234
10235         * src/pixmaps/tray_newmail.offline.xpm
10236         * src/pixmaps/tray_newmail.xpm
10237         * src/pixmaps/tray_newmarkedmail.offline.xpm
10238         * src/pixmaps/tray_newmarkedmail.xpm
10239         * src/pixmaps/tray_nomail.offline.xpm
10240         * src/pixmaps/tray_nomail.xpm
10241         * src/pixmaps/tray_unreadmail.offline.xpm
10242         * src/pixmaps/tray_unreadmail.xpm
10243         * src/pixmaps/tray_unreadmarkedmail.offline.xpm
10244         * src/pixmaps/tray_unreadmarkedmail.xpm
10245                 Make the tray icons a bit nicer. Would be
10246                 nice to get really nice icons from someone
10247                 who's good at Gimp :)
10248
10249 2008-04-18 [colin]      3.4.0cvs2
10250
10251         * src/common/log.c
10252                 Forgot one g_unlink
10253
10254 lease complete the changelog entry below
10255 2008-04-18 [colin]      3.4.0cvs1
10256
10257         * src/addrduplicates.c
10258         * src/addressbook.c
10259         * src/compose.c
10260         * src/crash.c
10261         * src/editaddress.c
10262         * src/folder.c
10263         * src/image_viewer.c
10264         * src/imap.c
10265         * src/inc.c
10266         * src/main.c
10267         * src/mbox.c
10268         * src/messageview.c
10269         * src/mh.c
10270         * src/msgcache.c
10271         * src/news.c
10272         * src/partial_download.c
10273         * src/pop.c
10274         * src/prefs_common.c
10275         * src/prefs_common.h
10276         * src/prefs_other.c
10277         * src/prefs_themes.c
10278         * src/procheader.c
10279         * src/procmime.c
10280         * src/procmsg.c
10281         * src/textview.c
10282         * src/wizard.c
10283         * src/common/prefs.c
10284         * src/common/ssl_certificate.c
10285         * src/common/template.c
10286         * src/common/utils.c
10287         * src/common/utils.h
10288         * src/etpan/imap-thread.c
10289         * src/plugins/dillo_viewer/dillo_viewer.c
10290         * src/plugins/pgpcore/sgpgme.c
10291         * src/plugins/pgpinline/pgpinline.c
10292                 Add an option to shred temporary files and messages
10293                 instead of just removing them. Slows deletions down!
10294
10295 2008-04-18 [paul]       3.4.0
10296
10297         * NEWS
10298         * README
10299         * RELEASE_NOTES 
10300                 3.4.0 released
10301
10302
10303 2008-04-18 [paul]       3.3.1cvs61
10304
10305         * po/de.po
10306         * po/fi.po
10307         * po/it.po
10308         * po/pt_BR.po
10309                 updated by Stephan Sachse, Flammie Pirinen, Andrea Spadaccini,
10310                 and Frederico Goncalves Guimaraes
10311         * po/es.po
10312                 updated on the last minute by a lazy Ricardo Mones
10313
10314 2008-04-18 [colin]      3.3.1cvs60
10315
10316         * po/fr.po
10317                 Update translation (Fabien Vantard)
10318
10319 2008-04-17 [colin]      3.3.1cvs59
10320
10321         * src/imap.c
10322                 Fix debian bug 474712, 'claws seg faults when IMAP 
10323                 connection breaks after an IMAP protocol error 
10324                 (BAD UID SEARCH Invalid parameter: $Forwarded)]'
10325         * src/summaryview.c
10326                 Fix a little leak
10327
10328 2008-04-17 [colin]      3.3.1cvs58
10329
10330         * src/common/log.c
10331                 Fix log size getting out of control (claws-mail
10332                 getting SIGXFSZ): rotate if every 10MB
10333
10334 2008-04-10 [paul]       3.3.1cvs57
10335
10336         * src/prefs_other.c
10337                 improvements to english usage
10338
10339 2008-04-10 [paul]       3.3.1cvs56
10340
10341         * src/prefs_receive.c
10342                 add an accurate description
10343
10344 2008-04-08 [colin]      3.3.1cvs55
10345
10346         * src/undo.c
10347                 Probably fix corruption, introduced in cvs53
10348
10349 2008-04-04 [iwkse]      3.3.1cvs54
10350
10351         * src/undo.c
10352                 undo should works properly again
10353
10354 2008-04-04 [iwkse]      3.3.1cvs53
10355
10356         * src/undo.c
10357                 Fix a segfault but breaks undo
10358                 on a specific case (eg. double paste with
10359                 middle-mouse button)
10360
10361 2008-04-04 [iwkse]      3.3.1cvs52
10362
10363         * src/prefs_filtering.c
10364                 Fix previous Tab mess
10365
10366 2008-04-03 [iwkse]      3.3.1cvs51
10367
10368         * src/prefs_filtering.c
10369                 Add search in filtering rules list
10370
10371 2008-04-02 [colin]      3.3.1cvs50
10372
10373         * src/main.c
10374                 Revert part of the previous patch: we do
10375                 want to parse ~/.claws-mail/gtkrc-2.0 if it
10376                 exists
10377
10378 2008-04-02 [colin]      3.3.1cvs49
10379
10380         * src/main.c
10381                 Fix bug 1562, 'Claws-Mail does not completely 
10382                 respect settings in GTK2_RC_FILES environment'
10383                 Remove manual parsing of .gtkrc-2.0 and 
10384                 .gtk/gtkrc-2.0. GTK does it itself these days.
10385
10386 2008-04-01 [colin]      3.3.1cvs48
10387
10388         * src/imap_gtk.c
10389                 Fix bug 1561, 'Crashes leaving unsubscribed folder after 
10390                 ticking "Show only subscribed"'
10391
10392 2008-03-31 [colin]      3.3.1cvs47
10393
10394         * src/folder.c
10395                 Fix bug 1553, 'File lock not respected'
10396                 Regression due to the implementation of
10397                 deletion batching
10398
10399 2008-03-31 [colin]      3.3.1cvs46
10400
10401         * src/mainwindow.c
10402                 Fix tags menu update, thanks to Paul
10403
10404 2008-03-29 [wwp]        3.3.1cvs45
10405
10406         * src/prefs_account.c
10407         * src/prefs_common.c
10408         * src/prefs_folder_item.c
10409         * src/prefs_quote.c
10410         * src/quote_fmt.c
10411         * src/quote_fmt.h
10412                 Fix compose template formats (in global preferences)
10413                 being translated under specific conditions.
10414                 Add a button to restore factory defaults for current
10415                 language.
10416
10417 2008-03-27 [colin]      3.3.1cvs44
10418
10419         * src/common/prefs.c
10420         * src/common/xmlprops.c
10421                 Fix RedHat bug 431735, 'segfault if /home is full' 
10422                 (when starting): Fix double fclose() in prefs.c
10423                 and potentially xmlprops.c
10424
10425 2008-03-27 [colin]      3.3.1cvs43
10426
10427         * src/addressbook.c
10428                 Fix bug 1559, 'Claws Mail crashed deleting all 
10429                 common contacts'
10430
10431 2008-03-27 [wwp]        3.3.1cvs42
10432
10433         * src/addressbook.c
10434                 Fix 3.3.0cvs41.
10435
10436 2008-03-27 [wwp]        3.3.1cvs41
10437
10438         * src/addressbook.c
10439                 Prevent list flickering when deleting addresses.
10440
10441 2008-03-26 [colin]      3.3.1cvs40
10442
10443         * src/imap.c
10444                 Clean up session disconnection. Possibly
10445                 fix Ubuntu bug #204290
10446
10447 2008-03-26 [colin]      3.3.1cvs39
10448
10449         * src/textview.c
10450                 Fix bug 1555: current folder wasn't used when
10451                 right-clicking on an email address
10452
10453 2008-03-25 [colin]      3.3.1cvs38
10454
10455         * src/plugins/bogofilter/bogofilter.c
10456         * src/plugins/bogofilter/bogofilter.h
10457         * src/plugins/bogofilter/bogofilter_gtk.c
10458                 Add a "learn from whitelist" preference
10459                 Whitelist Unsure mails too.
10460
10461 2008-03-24 [paul]       3.3.1cvs37
10462
10463         * src/prefs_account.c
10464                 If no MH mailbox and no account exists, when
10465                 creating a POP/Local account, just create and
10466                 use the default one instead of bailing with a
10467                 "Mailbox doesn't exist" error
10468
10469 2008-03-21 [colin]      3.3.1cvs36
10470
10471         * src/procmime.c
10472                 strstrip mime subtype
10473
10474 2008-03-21 [paul]       3.3.1cvs35
10475
10476         * manual/advanced.xml
10477                 correct and update the info about Actions
10478
10479 2008-03-20 [colin]      3.3.1cvs34
10480
10481         * src/messageview.c
10482         * src/messageview.h
10483         * src/textview.c
10484                 Show at max 1MB of text, add a noticeview to
10485                 show everything optionally.
10486
10487 2008-03-20 [colin]      3.3.1cvs33
10488
10489         * src/stock_pixmap.c
10490                 Add support for png themes
10491
10492 2008-03-19 [wwp]        3.3.1cvs32
10493
10494         * src/procheader.c
10495                 Sanity check.
10496
10497 2008-03-18 [colin]      3.3.1cvs31
10498
10499         * src/common/utils.c
10500         * src/common/utils.h
10501                 Handle size_t instead of off_t in to_human_readable
10502
10503 2008-03-18 [colin]      3.3.1cvs30
10504
10505         * src/imap.c
10506                 Remove raw printf
10507
10508 2008-03-16 [colin]      3.3.1cvs29
10509
10510         * src/summaryview.c
10511                 Fix build on GTK < 2.12
10512
10513 2008-03-16 [colin]      3.3.1cvs28
10514
10515         * src/mainwindow.c
10516                 Refresh non-list widget when switching
10517                 messageview
10518
10519 2008-03-16 [colin]      3.3.1cvs27
10520
10521         * manual/faq.xml
10522                 Revert cvs25: This wasn't a typo :) :
10523                 jade:.../faq.xml:49:16:E: there is no attribute "linkend"
10524
10525
10526 2008-03-16 [colin]      3.3.1cvs26
10527
10528         * src/summaryview.c
10529         * src/gtk/gtksctree.c
10530         * src/gtk/gtksctree.h
10531                 Implement 2-lines items in Summaryview when in 
10532                 three columns mode
10533
10534 2008-03-16 [paul]       3.3.1cvs25
10535
10536         * manual/faq.xml
10537                 fix typo
10538
10539 2008-03-14 [colin]      3.3.1cvs24
10540
10541         * src/prefs_filtering_action.c
10542                 Fix buglet on setting recipient when
10543                 reediting forward rules.
10544
10545 2008-03-12 [colin]      3.3.1cvs23
10546
10547         * src/summaryview.c
10548                 Fix a new unused variable warning
10549         * src/plugins/trayicon/trayicon.c
10550                 Fix folderview's scrollbar at startup
10551                 if starting hidden
10552
10553 2008-03-12 [colin]      3.3.1cvs22
10554
10555         * src/folderview.c
10556         * src/summaryview.c
10557                 Use item_opened at the beginning of showing
10558                 a folder instead of the end. Fixes flicker.
10559
10560 2008-03-12 [paul]       3.3.1cvs21
10561
10562         * src/folder.c
10563         * src/folder.h
10564         * src/mainwindow.c
10565         * src/procmsg.c
10566         * src/summaryview.c
10567         * src/plugins/trayicon/trayicon.c
10568                 add tooltip with extended folder stats
10569
10570 2008-03-10 [colin]      3.3.1cvs20
10571
10572         * src/common/xml.c
10573                 Handle comments
10574
10575 2008-03-07 [colin]      3.3.1cvs19
10576
10577         * src/mainwindow.c
10578                 Fix blinking of the taskbar entry
10579
10580 2008-03-07 [colin]      3.3.1cvs18
10581
10582         * src/mainwindow.c
10583                 MAEMO: Fix bug 1494, 'Trayicon 
10584                 plugin breaks UI...'
10585
10586 2008-03-07 [paul]       3.3.1cvs17
10587
10588         * src/gtk/authors.h
10589                 reflect reality a bit more closely
10590
10591 2008-03-06 [colin]      3.3.1cvs16
10592
10593         * src/mainwindow.c
10594         * src/mainwindow.h
10595         * src/summaryview.c
10596         * src/summaryview.h
10597         * src/toolbar.c
10598                 Integrate things better wrt the new
10599                 summaryview extensibility.
10600
10601 2008-03-06 [wwp]        3.3.1cvs15
10602
10603         * src/quote_fmt.c
10604                 Fix some gcc warnings.
10605
10606 2008-03-06 [wwp]        3.3.1cvs14
10607
10608         * src/prefs_account.c
10609         * src/prefs_folder_item.c
10610         * src/prefs_gtk.c
10611         * src/prefs_template.c
10612         * src/gtk/prefswindow.c
10613         * src/gtk/prefswindow.h
10614                 prefs_templates: fix missing unregistering of addr_completion widgets
10615                 and and ending of addr_completion service.
10616                 prefs_folder_item: fix missing registering/unregistering of widgets,
10617                 and rework the way add_completion service is started and stopped.
10618                 Plus few prefswindow API changes (opening).
10619
10620 2008-03-06 [wwp]        3.3.1cvs13
10621
10622         * src/folder_item_prefs.c
10623         * src/prefs_template.c
10624         * src/prefs_template.h
10625         * src/quote_fmt.c
10626         * src/common/template.c
10627                 Complete 3.3.1cvs12, thanks to Colin.
10628
10629 2008-03-06 [wwp]        3.3.1cvs12
10630
10631         * src/compose.c
10632         * src/folder_item_prefs.c
10633         * src/folder_item_prefs.h
10634         * src/prefs_account.c
10635         * src/prefs_folder_item.c
10636         * src/prefs_quote.c
10637         * src/prefs_template.c
10638         * src/quote_fmt.c
10639         * src/quote_fmt.h
10640         * src/common/template.c
10641         * src/common/template.h
10642                 Global and per-folder templates can now override the from name (this
10643                 doesn't change the account being used).
10644                 Examples:
10645                  "My other name" <%account_email> (just changes the name)
10646                  my.faked.email@address.org (overrides the address too)
10647
10648 2008-03-05 [colin]      3.3.1cvs11
10649
10650         * src/summaryview.c
10651         * src/summaryview.h
10652                 Replace that hbox with a notebook
10653
10654 2008-03-05 [colin]      3.3.1cvs10
10655
10656         * src/folder.h
10657         * src/folderview.c
10658                 Add klass functions for notification of folder
10659                 opening/closing via the GUI
10660         * src/summaryview.c
10661         * src/summaryview.h
10662                 Add a specific container for the scrolledwin
10663
10664 2008-03-05 [colin]      3.3.1cvs9
10665
10666         * src/folder.h
10667         * src/folderview.c
10668                 Add klass functions for notification of folder 
10669                 opening/closing via the GUI
10670         * src/summaryview.c
10671         * src/summaryview.h
10672                 Add a specific container for the scrolledwin
10673
10674 2008-03-02 [colin]      3.3.1cvs8
10675
10676         * src/messageview.c
10677                 MAEMO: Fix bug 1541, 'Deleting message from within 
10678                 read window displays next message then closes.'
10679
10680 2008-03-02 [colin]      3.3.1cvs7
10681
10682         * src/main.c
10683                 Probably fix bug 1539, 'Program crashes':
10684                 Setup Gcrypt's thread functions when built
10685                 with GnuTLS
10686
10687 2008-03-01 [colin]      3.3.1cvs6
10688
10689         * src/folder.c
10690         * src/imap_gtk.c
10691                 Get rid of stale folders with no account
10692
10693 2008-02-28 [colin]      3.3.1cvs5
10694
10695         * src/compose.c
10696                 Fix bug 1534, 'Segmentation fault when doing 
10697                 some draft saving and then throwing away'
10698         * src/imap.c
10699                 Fix bug 1533, 'Claws is unable to mark messages 
10700                 as "read" in IMAP shared folders'
10701         * src/etpan/imap-thread.c
10702                 Fix bug 1515, 'large messages crash claws when 
10703                 syncing for offline mode'. This is rather a
10704                 workaround, and mails > 64MB will still be
10705                 problematic if there's less than 64MB available
10706                 on the dataroot volume.
10707         * src/messageview.c
10708                 MAEMO: Add information when fetching big messages
10709
10710 2008-02-26 [colin]      3.3.1cvs4
10711
10712         * src/imap.c
10713                 fix bug 1532, '"login refused" message insufficiently 
10714                 detailed'
10715
10716 2008-02-26 [paul]       3.3.1cvs3
10717
10718         * INSTALL
10719         * README
10720                 remove mentions of ClamAV and a few other
10721                 old bits of information
10722
10723 2008-02-23 [colin]      3.3.1cvs2
10724
10725         * src/main.c
10726                 Fix log output (missing \n)
10727
10728 2008-02-23 [colin]      3.3.1cvs1
10729
10730         * configure.ac
10731                 Bump version number for stable release
10732
10733 2008-02-23 [paul]       3.3.0cvs21
10734
10735         * po/he.po
10736                 updated by Ofer
10737
10738 2008-02-21 [colin]      3.3.0cvs20
10739
10740         * src/matcher.c
10741                 Fix bug 1527, 'filtering is case sensitive when it 
10742                 shouldn't be'
10743
10744 2008-02-20 [colin]      3.3.0cvs19
10745
10746         * src/main.c
10747                 Fix file attachments from older Thunar
10748
10749 2008-02-19 [colin]      3.3.0cvs18
10750
10751         * manual/plugins.xml
10752         * manual/es/plugins.xml
10753         * manual/fr/plugins.xml
10754         * manual/pl/plugins.xml
10755                 Remove Clamav
10756
10757 2008-02-19 [paul]       3.3.0cvs17
10758
10759         * tools/README
10760         * tools/csv2addressbook.pl
10761                 add support for Kmail/Kaddressbook
10762
10763 2008-02-18 [colin]      3.3.0cvs16
10764
10765         * src/imap.c
10766                 Unset folder's session before creating a
10767                 new one
10768         * src/main.c
10769         * src/prefs_common.c
10770         * src/prefs_common.h
10771         * manual/advanced.xml
10772                 Add an hidden use_networkmanager pref, to
10773                 disable NetworkManager handling. Also,
10774                 consider UNKNOWN state to be CONNECTED.
10775
10776 2008-02-18 [wwp]        3.3.0cvs15
10777
10778         * src/matcher.c
10779                 Fix Engrish and make 'not' more visible in filtering debug logs.
10780
10781 2008-02-15 [colin]      3.3.0cvs14
10782
10783         * src/matcher.c
10784                 Revert cvs10 for now, it breaks the feature
10785
10786 2008-02-15 [colin]      3.3.0cvs13
10787
10788         * src/main.c
10789                 Always focus folder tree at startup
10790         * src/compose.c
10791                 Fix bug 1521, 'Cannot close compose window after 
10792                 replying to a non-existent news message'
10793
10794 2008-02-13 [colin]      3.3.0cvs12
10795
10796         * src/folderview.c
10797                 Fix important warnings
10798
10799 2008-02-12 [colin]      3.3.0cvs11
10800
10801         * src/imap.c
10802         * src/etpan/imap-thread.c
10803         * src/etpan/imap-thread.h
10804                 Fix handling of $Forwarded flag on Exchange:
10805                 check for the existence or creatability of a
10806                 flag before using it.
10807
10808 2008-02-12 [colin]      3.3.0cvs10
10809
10810         * src/matcher.c
10811                 Optimise matching on Found in addressbook if
10812                 the matched header is in cache (From, etc)
10813
10814 2008-02-12 [colin]      3.3.0cvs9
10815
10816         * src/folderview.c
10817                 Fix crashy stuff when changing displayed
10818                 columns
10819
10820 2008-02-12 [wwp]        3.3.0cvs8
10821
10822         * src/folder.h
10823                 Remove duplicate func declaration and restore the one
10824                 a missing one.
10825
10826 2008-02-12 [wwp]        3.3.0cvs7
10827
10828         * src/compose.c
10829         * src/export.c
10830         * src/folder.c
10831         * src/folder.h
10832         * src/foldersel.c
10833         * src/foldersel.h
10834         * src/imap_gtk.c
10835         * src/import.c
10836         * src/mainwindow.c
10837         * src/messageview.c
10838         * src/mh_gtk.c
10839         * src/prefs_account.c
10840         * src/prefs_filtering_action.c
10841         * src/summaryview.c
10842         * src/plugins/bogofilter/bogofilter_gtk.c
10843         * src/plugins/spamassassin/spamassassin_gtk.c
10844                 Allow moving/copying folders to root folders when using
10845                 the folder selection dialog (it was not possible to
10846                 maemo users to reparent a subfolder to a root folder
10847                 at all).
10848
10849 2008-02-12 [fabien]     3.3.0cvs6
10850
10851         * po/fr.po
10852                 a few days late for i18n fr update. Sorry.
10853
10854 2008-02-11 [colin]      3.3.0cvs5
10855
10856         * src/main.c
10857                 Implement support for future /dev/mem_notify.
10858                 This Linux kernel feature will allow applications
10859                 to be notified that memory has to be freed
10860                 before getting OOM-killed. For more information:
10861                 http://lwn.net/Articles/267013/
10862
10863 2008-02-10 [paul]       3.3.0cvs4
10864
10865         * src/Makefile.am
10866         * src/mimeview.c
10867         * src/prefs_toolbar.c
10868         * src/stock_pixmap.c
10869         * src/stock_pixmap.h
10870         * src/pixmaps/mime_text_patch.xpm
10871                 add an icon for attached patches
10872
10873 2008-02-09 [paul]       3.3.0cvs3
10874
10875         * src/gtk/about.c
10876                 bump the (c) year
10877
10878 2008-02-09 [wwp]        3.3.0cvs2
10879
10880         * src/main.c
10881                 Fix compiling issue w/ non-gcc/C99 compilers (suncc).
10882
10883 2008-02-08 [colin]      3.3.0cvs1
10884
10885         * src/common/utils.c
10886                 Forbid attaching anything containing "../" or ".ssh/"
10887                 from mailto: URI
10888
10889 2008-02-08 [paul]       3.3.0
10890
10891         * NEWS
10892         * README
10893         * RELEASE_NOTES 
10894                 3.3.0 released
10895
10896 2008-02-08 [paul]       3.2.0cvs77
10897
10898         * AUTHORS
10899                 updated with new translators
10900         * configure.ac
10901                 added he to ALL_LINGUAS
10902         * po/cs.po
10903         * po/de.po
10904         * po/es.po
10905         * po/fi.po
10906         * po/hu.po
10907         * po/it.po
10908         * po/pt_BR.po
10909         * po/zh_CN.po
10910                 updated by Tim Brain and Petr Vanek, Stephan Sachse,
10911                 Ricardo Mones Lastra, Flammie Pirinen, Pader Rezso,
10912                 Andrea Spadaccini, Frederico Goncalves Guimaraes,
10913                 and Ralph Young
10914         * po/he.po
10915                 new Hebrew translation by Ofer <oc666@netvision.net.il>
10916         * src/gtk/about.c
10917                 updated with new translators and bumped (c) year
10918         * src/gtk/authors.h
10919                 updated with new translators
10920
10921 2008-02-05 [colin]      3.2.0cvs76
10922
10923         * src/messageview.c
10924         * src/mimeview.c
10925         * src/mimeview.h
10926                 Special case text/calendar parts: if there's one in
10927                 the mail, and a plugin handling text/calendar is
10928                 loaded, show that part. That'll avoid rendering 
10929                 meetings as plain text, which just looks broken to
10930                 many users.
10931
10932 2008-02-04 [colin]      3.2.0cvs75
10933
10934         * src/mainwindow.c
10935                 Maemo: Fix LED handling on OS 2008
10936
10937 2008-02-01 [colin]      3.2.0cvs74
10938
10939         * src/compose.c
10940                 Possibly fix the annoying and hard-to reproduce bug
10941                 where lines 
10942                 are
10943                 rewrapped
10944                 like
10945                 that.
10946
10947 2008-02-01 [paul]       3.2.0cvs73
10948
10949         * src/common/utils.c
10950                 fix bug 1502, 'Plus signs are stripped from
10951                 email addresses when calling from command line'
10952                 Thanks to Colin
10953
10954 2008-01-31 [colin]      3.2.0cvs72
10955
10956         * src/exphtmldlg.c
10957         * src/mimeview.c
10958         * src/summaryview.c
10959                 Fix building of URIs from filenames
10960
10961 2008-01-31 [wwp]        3.2.0cvs71
10962
10963         * src/main.c
10964                 Fixes debug output of compiled-in features list
10965                 (completes 3.2.0cvs60).
10966
10967 2008-01-31 [colin]      3.2.0cvs70
10968
10969         * configure.ac
10970         * po/POTFILES.in
10971         * src/compose.c
10972         * src/plugins/Makefile.am
10973         * src/plugins/clamav/.cvsignore
10974         * src/plugins/clamav/Makefile.am
10975         * src/plugins/clamav/README
10976         * src/plugins/clamav/clamav_plugin.c
10977         * src/plugins/clamav/clamav_plugin.h
10978         * src/plugins/clamav/clamav_plugin_gtk.c
10979         * src/plugins/clamav/clamav_plugin_gtk.deps
10980                 Remove the Clamav plugin from the core
10981
10982 2008-01-28 [wwp]        3.2.0cvs69
10983
10984         * src/compose.c
10985         * src/prefs_template.c
10986         * src/prefs_template.h
10987         * src/quote_fmt.c
10988         * src/quote_fmt.h
10989         * src/quote_fmt_lex.l
10990         * src/quote_fmt_parse.y
10991                 Fix for bug #1493: count lines (\n chars) according to the way
10992                 format body is passed (i.e. \-escaped or not).
10993
10994 2008-01-27 [paul]       3.2.0cvs68
10995
10996         * po/en_GB.po
10997                 updated
10998         * src/prefs_actions.c
10999         * src/prefs_filtering.c
11000         * src/prefs_folder_item.c
11001         * src/prefs_template.c
11002         * src/gtk/about.c
11003                 some minor changes to the English
11004
11005 2008-01-24 [colin]      3.2.0cvs67
11006
11007         * src/etpan/imap-thread.c
11008         * src/etpan/nntp-thread.c
11009                 Fix bug 1348, 'Hang ups at exit time with 
11010                 pgp plugin since 3.0.2'
11011
11012 2008-01-23 [colin]      3.2.0cvs66
11013
11014         * src/toolbar.c
11015                 Fix translation of something that shouldn't be
11016
11017 2008-01-23 [colin]      3.2.0cvs65
11018
11019         * src/procmime.c
11020                 Fix bug 1486, 'Re: Incorrect content when replying'
11021                 Revert to full scan if short scan found only 0-length
11022                 text parts
11023
11024 2008-01-23 [paul]       3.2.0cvs64
11025
11026         * src/prefs_folder_item.c
11027                 fix bug 1485, 'selecting a folder's default
11028                 account if name contains '&''
11029
11030 2008-01-23 [colin]      3.2.0cvs63
11031
11032         * src/folder.c
11033         * src/folder.h
11034         * src/main.c
11035         * src/mainwindow.c
11036                 Fix bug 1480, 'should be able to display mail file
11037                 from command line'. Let 'claws-mail --select' accept
11038                 absolute paths in addition to folder identifiers.
11039
11040 2008-01-22 [wwp]        3.2.0cvs62
11041
11042         * src/account.c
11043         * src/account.h
11044         * src/compose.c
11045         * src/messageview.c
11046         * src/summaryview.c
11047         * src/common/utils.c
11048         * src/common/utils.h
11049                 Allow from=address in mailto sequence:
11050                   --compose 'recipient@foo.bar?from=i-sent-spam@foo.bar&subject=enlarge-your-ahum&body=body-body'
11051                   The 'from' will try to select the first account matching in accounts list,
11052                   otherwise will use the usual account selection mechanism but override with
11053                   this 'from' address.
11054                 Allow mailto with NNTP accounts
11055                   mailto is now possible w/ NNTP account - if mailto is used when a NNTP account
11056                   is the default one or if a NNTP account address is used with 'from'.
11057                   This is more or less a bugfix as it was possible to use mailto with a NNTP
11058                   default account but the complete mailto sequence was put in To.
11059
11060 2008-01-22 [wwp]        3.2.0cvs61
11061
11062         * doc/man/claws-mail.1
11063                 Updated the man page: status of few features, command-line
11064                 usage (--version-full) and completed list of config files
11065                 and dirs.
11066
11067 2008-01-22 [wwp]        3.2.0cvs60
11068
11069         * src/main.c
11070                 Added --version-full to display version and compiled-in
11071                 features list (for later use by Clawsker for instance).
11072
11073 2008-01-22 [holger]     3.2.0cvs59
11074
11075         * src/addrduplicates.c
11076                 Fix scrolling in addressbook duplicate
11077                 finder result dialog
11078
11079 2008-01-21 [colin]      3.2.0cvs58
11080
11081         * src/summaryview.c
11082                 Fix bug 1457, 'sorting messages on, say, from, 
11083                 should subsort on previous sort choice'. Subsort
11084                 by date when sort is Subject, From, To, Tags.
11085
11086 2008-01-21 [colin]      3.2.0cvs57
11087
11088         * AUTHORS
11089         * src/matcher.c
11090         * src/mimeview.c
11091         * src/common/ssl.c
11092         * src/gtk/authors.h
11093                 Fix bug 1478, 'Wrong pthread_create calls all 
11094                 over the place'. Patch by Christian Cornelssen
11095
11096 2008-01-20 [colin]      3.2.0cvs56
11097
11098         * src/imap.c
11099         * src/etpan/imap-thread.c
11100         * src/etpan/imap-thread.h
11101                 Fix bug 1468, 'Use IMAP keyword to 
11102                 store "forwarded" flag'
11103
11104 2008-01-20 [colin]      3.2.0cvs55
11105
11106         * src/folderutils.c
11107                 Make list operations faster
11108
11109 2008-01-20 [colin]      3.2.0cvs54
11110
11111         * src/mainwindow.c
11112                 Fix bug 1353, 'on startup with small screen 
11113                 layout, keyboard input gets lost'
11114
11115 2008-01-20 [colin]      3.2.0cvs53
11116
11117         * src/textview.c
11118                 Complete 3.2.0cvs49, and fixes bug 1477, 
11119                 'Claws Mail crashes when view PGP-encrypted 
11120                 message'
11121
11122 2008-01-20 [colin]      3.2.0cvs52
11123
11124         * src/compose.c
11125                 Fix privacy menu update when replying to
11126                 encrypted mail and no default privacy 
11127                 system is set
11128
11129 2008-01-19 [colin]      3.2.0cvs51
11130
11131         * src/filtering.c
11132         * src/procmsg.h
11133         * src/plugins/bogofilter/bogofilter.c
11134         * src/plugins/clamav/clamav_plugin.c
11135         * src/plugins/spamassassin/spamassassin.c
11136                 Batch filtering deletions too (and save 4 bytes
11137                 per MsgInfo in the process :)
11138
11139 2008-01-19 [colin]      3.2.0cvs50
11140
11141         * src/folder.c
11142                 Make cache update after copies much faster
11143                 on IMAP
11144
11145 2008-01-19 [colin]      3.2.0cvs49
11146
11147         * src/textview.c
11148                 Check g_fopen() success
11149
11150 2008-01-17 [wwp]        3.2.0cvs48
11151
11152         * manual/faq.xml
11153         * manual/es/faq.xml
11154         * manual/fr/faq.xml
11155         * manual/pl/faq.xml
11156                 Sylpheed? No idea what this means.
11157
11158 2008-01-17 [colin]      3.2.0cvs47
11159
11160         * src/gtk/gtksctree.c
11161                 Make dnd threshold higher on Maemo
11162
11163 2008-01-16 [colin]      3.2.0cvs46
11164
11165         * src/common/passcrypt.c
11166                 Fix build on FreeBSD, thanks to Pawel
11167
11168 2008-01-15 [colin]      3.2.0cvs45
11169
11170         * src/compose.c
11171                 Fix bug 1472, 'Keyboard "Menu" key doesn't call 
11172                 spell check of actuall word'
11173         * src/summaryview.c
11174                 Temporarily disable immediate execution when learning
11175                 spam *only* if the summaryview isn't locked
11176
11177 2008-01-15 [wwp]        3.2.0cvs44
11178
11179         * src/prefs_filtering.c
11180                 Fix filtering prefs layout (Maemo port), moving page up/down
11181                 from buttons to context menu.
11182
11183 2008-01-15 [colin]      3.2.0cvs43
11184
11185         * src/compose.c
11186                 Fix bug 1465, 'First line in new message does not mark URLs'
11187
11188 2008-01-15 [colin]      3.2.0cvs42
11189
11190         * src/common/passcrypt.c
11191                 Fix bug 1461, 'several components #define 
11192                 _XOPEN_SOURCE improperly'
11193
11194 2008-01-15 [colin]      3.2.0cvs41
11195
11196         * src/summaryview.c
11197                 Fix bug 1469, 'Column width adjustments on message 
11198                 lists do not save'
11199
11200 2008-01-14 [holger]     3.2.0cvs40
11201
11202         * configure.ac
11203                 Add tests for dbus, dbus glib bindings,
11204                 and NetworkManager. All is optional. Add new
11205                 --(en|dis)able-networkmanager-support switch.
11206         * src/Makefile.am
11207         * src/imap.c
11208         * src/inc.c
11209         * src/main.c
11210         * src/main.h
11211         * src/mainwindow.c
11212         * src/gtk/about.c
11213                 Add optional NetworkManager support, so Claws Mail
11214                 can try to do the right thing when the network connection
11215                 status changes. NetworkManager support is active by
11216                 default if above requirements were met.
11217
11218 2008-01-12 [colin]      3.2.0cvs39
11219
11220         * src/summaryview.c
11221                 Advertise the click-on-reply feature in the tooltip
11222
11223 2008-01-12 [colin]      3.2.0cvs38
11224
11225         * src/Makefile.am
11226         * src/stock_pixmap.c
11227         * src/stock_pixmap.h
11228         * src/pixmaps/tray_newmail.offline.xpm
11229         * src/pixmaps/tray_newmail.xpm
11230         * src/pixmaps/tray_newmarkedmail.offline.xpm
11231         * src/pixmaps/tray_newmarkedmail.xpm
11232         * src/pixmaps/tray_nomail.offline.xpm
11233         * src/pixmaps/tray_nomail.xpm
11234         * src/pixmaps/tray_unreadmail.offline.xpm
11235         * src/pixmaps/tray_unreadmail.xpm
11236         * src/pixmaps/tray_unreadmarkedmail.offline.xpm
11237         * src/pixmaps/tray_unreadmarkedmail.xpm
11238         * src/plugins/trayicon/Makefile.am
11239         * src/plugins/trayicon/newmail.offline.xpm
11240         * src/plugins/trayicon/newmail.xpm
11241         * src/plugins/trayicon/newmarkedmail.offline.xpm
11242         * src/plugins/trayicon/newmarkedmail.xpm
11243         * src/plugins/trayicon/nomail.offline.xpm
11244         * src/plugins/trayicon/nomail.xpm
11245         * src/plugins/trayicon/trayicon.c
11246         * src/plugins/trayicon/unreadmail.offline.xpm
11247         * src/plugins/trayicon/unreadmail.xpm
11248         * src/plugins/trayicon/unreadmarkedmail.offline.xpm
11249         * src/plugins/trayicon/unreadmarkedmail.xpm
11250                 Make the Trayicon plugin icons themable
11251
11252 2008-01-12 [wwp]        3.2.0cvs37
11253
11254         * src/prefs_display_header.c
11255                 Fix extra leading hyphen visible in the display
11256                 header configuration combo list (maemo).
11257
11258 2008-01-11 [colin]      3.2.0cvs36
11259
11260         * src/imap.c
11261                 Set timeout to 1 before disconnecting all -
11262                 for when one switches to offline and has 
11263                 no network anymore
11264         * src/messageview.c
11265                 Fix bug 1454, 'error message shows parts and 
11266                 signature of previous messages'
11267         * src/prefs_common.c
11268                 Maemo: Hide Send dialog by default
11269
11270 2008-01-10 [colin]      3.2.0cvs35
11271
11272         * src/action.c
11273         * src/editldap.c
11274         * src/prefs_account.c
11275         * src/wizard.c
11276         * src/gtk/inputdialog.c
11277         * src/plugins/pgpcore/passphrase.c
11278                 Maemo: Fix bug 1455, 'Password enters leading letter 
11279                 incorrectly as uppercase'
11280
11281 2008-01-09 [colin]      3.2.0cvs34
11282
11283         * po/pl.po
11284                 Fix bug 1446, 'SC crashes frequently when staying 
11285                 in background'. Format string error in Polish 
11286                 translation
11287         * src/gtk/description_window.c
11288         * src/prefs_template.c
11289                 Complete 3.2.0cvs9 (fix bug with gtk_main loop);
11290                 patch by Pawel
11291         * src/wizard.c
11292                 Maemo: Fix build
11293
11294 2008-01-08 [colin]      3.2.0cvs33
11295
11296         * src/main.c
11297                 Maemo: connect HW status change signal for shutdown
11298         * src/mainwindow.c
11299                 Maemo: Fix hardware space key
11300         * src/wizard.c
11301                 Maemo: name mmc1 and 2 a better name
11302
11303 2008-01-08 [wwp]        3.2.0cvs32
11304
11305         * src/folder.c
11306         * src/folder_item_prefs.c
11307         * src/folder_item_prefs.h
11308         * src/prefs_folder_item.c
11309                 It's now possible to disable processing rules when
11310                 entering a folder (this adds a new option to the
11311                 folder properties dialog).
11312
11313 2008-01-08 [wwp]        3.2.0cvs31
11314
11315         * src/common/utils.c
11316                 Mailto: now supports 'insert' (stands for 'insert file'), this
11317                 adds the ability to create a new message from the command-line,
11318                 with body set from an existing file contents.
11319
11320 2008-01-08 [colin]      3.2.0cvs30
11321
11322         * src/summaryview.c
11323                 Maybe fix bug 1452, 'crash while drag'n'droping 
11324                 emails to an IMAP folder'
11325
11326 2008-01-07 [wwp]        3.2.0cvs29
11327
11328         * src/prefs_filtering.c
11329                 Static-alize a function, thanks to Colin.
11330
11331 2008-01-07 [colin]      3.2.0cvs28
11332
11333         * src/folderview.c
11334                 Fix scrolling to bottom when drag and dropping
11335         * src/summaryview.c
11336                 Fix bug 1445, 'Display sender using addressbook: fails 
11337                 when From: isn't an email address'
11338
11339 2008-01-07 [wwp]        3.2.0cvs27
11340
11341         * src/prefs_actions.c
11342         * src/prefs_filtering.c
11343         * src/prefs_template.c
11344                 Add tooltips to most buttons in the templates, actions and
11345                 filtering/processing dialogs.
11346
11347 2008-01-07 [wwp]        3.2.0cvs26
11348
11349         * src/prefs_filtering.c
11350                  - add a clear button to clear dialog input fields
11351                  - add page up and page down buttons to move selected rule up and down
11352                  - in rules list popup-menu: added Delete, Delete all and Duplicate
11353                  - popup-menu items are greyed out either if the list is empty (not counting the
11354                    (New) row or if there is no selected item
11355                  - clear store when closing dialog
11356
11357         * src/prefs_actions.c
11358                  - reflect some changes to filtering prefs (+ rewritten a bit some funcs):
11359                    clear button, popup-menu
11360                  - clear store when closing dialog
11361
11362         * src/prefs_template.c
11363                  - reflect some changes to filtering prefs (+ rewritten a bit some funcs):
11364                    clear button, popup-menu 
11365
11366         * src/addrcustomattr.c
11367                  - renamed popup-menu item Clear list to Delete all
11368                  - grey out popup-menu items is there is no selected item or if list is empty
11369                  - clear store when closing dialog
11370
11371         * src/edittags.c
11372                  - added popup-menu item Delete all
11373                  - grey out popup-menu items is there is no selected item or if list is empty
11374                  - clear store when closing dialog
11375
11376 2008-01-06 [wwp]        3.2.0cvs25
11377
11378         * src/addressadd.c
11379                 One more layout fix by Pawel (completes 3.2.0cvs24).
11380
11381 2008-01-05 [colin]      3.2.0cvs24
11382
11383         * src/addressadd.c
11384                 Little GUI fixes, patch by Pawel
11385
11386 2007-12-29 [wwp]        3.2.0cvs23
11387
11388         * src/compose.c
11389                 Fix for bug #1443, and strip possible whitespaces around
11390                 custom header names.
11391
11392 2007-12-29 [mones]      3.2.0cvs22
11393
11394         * po/es.po
11395                 Updated translation, corrected a term based 
11396                 on suggestion from Israel Saeta P�rez,
11397                 reverted awful X-Mailer translation
11398         * src/procmime.c
11399                 Complete cvs20 for FreeBSD, patch by Pawel
11400
11401 2007-12-29 [colin]      3.2.0cvs21
11402
11403         * src/textview.c
11404                 Fix bug 1442, 'Tags are repeated in 
11405                 encapsulated messages'
11406
11407 2007-12-28 [colin]      3.2.0cvs20
11408
11409         * src/procmime.c
11410                 Fix path to mime/globs. Patch by Marten King.
11411
11412 2007-12-27 [colin]      3.2.0cvs19
11413
11414         * src/plugins/pgpcore/Makefile.am
11415         * src/plugins/pgpinline/Makefile.am
11416         * src/plugins/pgpmime/Makefile.am
11417                 Add missing flags to build pgp plugins on maemo
11418
11419 2007-12-27 [colin]      3.2.0cvs18
11420
11421         * src/mainwindow.c
11422                 Maximise before showing to avoid probable flickering
11423                 on slow computers.
11424
11425 2007-12-27 [colin]      3.2.0cvs17
11426
11427         * src/main.c
11428         * src/mainwindow.c
11429         * src/prefs_common.c
11430         * src/prefs_common.h
11431                 Fix bug 1439, 'Claws Mail does not remember window size 
11432                 state when restarted'. Save maximised state and force
11433                 maximisation at startup if applicable.
11434
11435 2007-12-23 [paul]       3.2.0cvs16
11436
11437         * src/prefs_matcher.c
11438                 fix bug 1436, 'Filter condition dialog doesn't
11439                 load header name from current rules'
11440
11441 2007-12-22 [paul]       3.2.0cvs15
11442
11443         * src/compose.c
11444                 fix bug 1435, 'Reply doesn't take into account
11445                 reply-to field'
11446
11447 2007-12-21 [paul]       3.2.0cvs14
11448
11449         * src/common/ssl_certificate.c
11450                 fix FreeBSD build with IPV6 support 
11451
11452 2007-12-20 [colin]      3.2.0cvs13
11453
11454         * src/imap.c
11455                 Fix error handling
11456
11457 2007-12-20 [colin]      3.2.0cvs12
11458
11459         * src/imap.c
11460         * src/imap.h
11461         * src/prefs_account.c
11462                 Add DIGEST-MD5 support for IMAP authentication
11463
11464 2007-12-19 [mones]      3.2.0cvs11
11465
11466         * doc/man/claws-mail.1
11467                 Better ordering of sections, updated options
11468         * po/es.po
11469                 Updated strings
11470
11471 2007-12-19 [paul]       3.2.0cvs10
11472
11473         * src/prefs_account.c
11474                 use a spinbutton instead of an entry for
11475                 "POP authentication timeout" also
11476
11477 2007-12-19 [colin]      3.2.0cvs9
11478
11479         * src/prefs_filtering_action.c
11480         * src/prefs_matcher.c
11481         * src/gtk/description_window.c
11482                 Destroy info windows with their parents
11483                 Patch by Pawel
11484
11485 2007-12-19 [colin]      3.2.0cvs8
11486
11487         * src/prefs_account.c
11488                 Use spinbuttons instead of entries where needed
11489                 Patch by Pawel
11490
11491 2007-12-18 [paul]       3.2.0cvs7
11492
11493         * src/prefs_matcher.c
11494                 add missing i18n for a few strings
11495                 Patch by Stephan Sachse
11496
11497 2007-12-18 [paul]       3.2.0cvs6
11498
11499         * src/prefs_logging.c
11500                 use 'disk' instead of 'disc'
11501
11502 2007-12-18 [paul]       3.2.0cvs5
11503
11504         * po/en_GB.po
11505                 updated
11506         * src/addrcustomattr.c
11507         * src/editaddress.c
11508                 fixes to the ingleesh
11509         * src/prefs_filtering_action.c
11510                 fix copyright header
11511                 fix untranslated strings
11512         * src/prefs_filtering_action.h
11513                 fix copyright header
11514
11515 2007-12-18 [wwp]        3.2.0cvs4
11516
11517         * src/folderview.c
11518         * src/headerview.c
11519         * src/prefs_common.c
11520         * src/prefs_common.h
11521         * src/prefs_fonts.c
11522         * src/summaryview.c
11523         * src/textview.c
11524         * src/wizard.c
11525         * src/common/defs.h
11526         * src/gtk/gtkutils.c
11527                 Added prefs to set custom small and bold fonts
11528                 (might matter on some desktops, according to
11529                 DPI and font settings).
11530
11531 2007-12-18 [colin]      3.2.0cvs3
11532
11533         * src/prefs_logging.c
11534                 Rework GUI, patch by Pawel
11535
11536 2007-12-18 [colin]      3.2.0cvs2
11537
11538         * src/prefs_filtering_action.c
11539                 Rework GUI, patch by Pawel
11540
11541 2007-12-18 [colin]      3.2.0cvs1
11542
11543         * src/editaddress.c
11544                 Fix build on old GCC
11545                 Fix inverted buttons
11546
11547 2007-12-17 [paul]       3.2.0
11548
11549         * NEWS
11550         * README
11551         * RELEASE_NOTES 
11552                 3.2.0 released
11553
11554 2007-12-17 [paul]       3.1.0cvs79
11555
11556         * po/de.po
11557         * po/fr.po
11558         * po/hu.po
11559         * po/it.po
11560         * po/pt_BR.po
11561                 updated by Stephan Sachse, Fabien Vantard, Pader Rezso,
11562                 Andrea Spadaccini, and Frederico Goncalves Guimaraes
11563
11564 2007-12-17 [mones]      3.1.0cvs78
11565
11566         * po/es.po
11567                 Updated Spanish translation for 3.2.0 release
11568
11569 2007-12-16 [colin]      3.1.0cvs77
11570
11571         * src/addrcustomattr.c
11572                 Fix translations, patch by Fabien
11573
11574 2007-12-15 [paul]       3.1.0cvs76
11575
11576         * src/folderview.c
11577                 fix compiler warning
11578
11579 2007-12-14 [colin]      3.1.0cvs75
11580
11581         * src/folderview.c
11582                 Simplify logic
11583
11584 2007-12-12 [wwp]        3.1.0cvs74
11585
11586         * AUTHORS
11587         * src/gtk/authors.h
11588                 Added Marius Glauser to the hall of fame.
11589
11590 2007-12-12 [wwp]        3.1.0cvs73
11591
11592         * src/gtk/gtkutils.c
11593                 Improve the way we show results of searches
11594                 in message bodies: selected text now get centered
11595                 vertically in the message window.
11596                 Patch by Marius Glauser <seelenhirt@gmx.net>.
11597
11598 2007-12-10 [colin]      3.1.0cvs72
11599
11600         * src/folder.c
11601                 Don't crash when setting batch mode on no folder
11602
11603 2007-12-10 [colin]      3.1.0cvs71
11604
11605         * src/common/utils.c
11606                 Fix potential buffer overrun (thanks to
11607                 Hiroyuki)
11608
11609 2007-12-08 [paul]       3.1.0cvs70
11610
11611         * src/prefs_receive.c
11612                 small change to the English
11613
11614 2007-12-08 [colin]      3.1.0cvs69
11615
11616         * src/vcard.c
11617                 Fix warnings
11618
11619 2007-12-07 [colin]      3.1.0cvs68
11620
11621         * src/mainwindow.c
11622         * src/summaryview.c
11623         * src/summaryview.h
11624                 Free simplify_subject_preg at exit
11625
11626 2007-12-07 [colin]      3.1.0cvs67
11627
11628         * src/main.c
11629         * src/summaryview.c
11630         * src/common/utils.c
11631         * src/common/utils.h
11632                 We have to free reused regexps from time to
11633                 time, or they get huge
11634
11635 2007-12-07 [colin]      3.1.0cvs66
11636
11637         * src/vcard.c
11638                 Fix QP decoding (and UTF8)
11639
11640 2007-12-07 [colin]      3.1.0cvs65
11641
11642         * src/addrcustomattr.c
11643                 Update list of default custom attributes
11644                 now (will be needed for a feature patch
11645                 post 3.2.0)
11646
11647 2007-12-07 [colin]      3.1.0cvs64
11648
11649         * src/folder.c
11650                 Batch on destination folder when copying - fixes
11651                 slowness when moving unread mails to trash on IMAP
11652
11653 2007-12-06 [colin]      3.1.0cvs63
11654
11655         * src/common/w32_time.c
11656         * src/common/w32lib.h
11657         * src/etpan/etpan-thread-manager.c
11658         * src/etpan/imap-thread.c
11659         * src/etpan/nntp-thread.c
11660         * src/gtk/Makefile.am
11661                 Fix win32 build with libetpan. Thanks to
11662                 Marcus Brinkmann.
11663
11664 2007-12-06 [colin]      3.1.0cvs62
11665
11666         * src/account.c
11667         * src/imap.c
11668         * src/prefs_account.c
11669         * src/prefs_account.h
11670         * src/etpan/imap-thread.c
11671         * src/etpan/imap-thread.h
11672                 Disable connection via command line on WIN32
11673                 Disable mmap use on WIN32 - use normal strings
11674         * src/addressbook.c
11675         * src/addressbook.h
11676         * src/addressbook_foldersel.c
11677         * src/addressbook_foldersel.h
11678         * src/prefs_filtering_action.c
11679         * src/prefs_matcher.c
11680         * src/plugins/bogofilter/bogofilter_gtk.c
11681         * src/plugins/dillo_viewer/dillo_prefs.c
11682         * src/plugins/spamassassin/spamassassin_gtk.c
11683                 Fix leak, rework function logics to be more
11684                 natural - thanks to Holger
11685         * src/common/utils.c
11686                 Fix warnings
11687
11688 2007-12-06 [colin]      3.1.0cvs61
11689
11690         * src/news.c
11691         * src/common/utils.c
11692         * src/common/utils.h
11693                 Fix posting, and fix UTF-8 being sent when encoding
11694                 is 8bit
11695
11696 2007-12-05 [colin]      3.1.0cvs60
11697
11698         * src/news.c
11699                 Fix debian bug #453157, 'Fails to post usenet
11700                 articles after NNTP connection has been 
11701                 interrupted". Fix return value to prevent deletion
11702                 on failure, and issue MODE READER in case posting
11703                 fails at first.
11704
11705 2007-12-05 [colin]      3.1.0cvs59
11706
11707         * src/messageview.c
11708         * src/uri_opener.c
11709                 Improvements to the List URIs dialog
11710                 Patch by Pawel
11711
11712 2007-12-05 [colin]      3.1.0cvs58
11713
11714         * src/prefs_other.c
11715         * src/gtk/gtksctree.h
11716                 Fix warnings
11717
11718 2007-12-04 [colin]      3.1.0cvs57
11719
11720         * src/etpan/imap-thread.c
11721                 Fix bug 1378, 'Claws exits on IMAP alert message'
11722                 Don't do GTK calls directly from Etpan thread
11723
11724 2007-12-04 [colin]      3.1.0cvs56
11725
11726         * src/folderview.c
11727         * src/gtk/gtksctree.c
11728                 MAEMO: Fix bug 1325, 'Folder Navigation Problems'
11729                 Make all the left of column zero an hotspot for
11730                 expanding.
11731
11732 2007-12-04 [colin]      3.1.0cvs55
11733
11734         * src/mainwindow.c
11735         * src/mainwindow.h
11736         * src/prefs_common.c
11737         * src/prefs_common.h
11738         * src/prefs_receive.c
11739                 MAEMO: Fix bug 1199, 'Tie into LED for new mail alert'
11740
11741 2007-12-04 [wwp]        3.1.0cvs54
11742
11743         * src/prefs_other.c
11744                 Fix for bug #1419.
11745
11746 2007-12-04 [holger]     3.1.0cvs53
11747
11748         * src/addrduplicates.c
11749         * src/addrduplicates.h
11750                 Export addressbook entry deletion
11751
11752 2007-12-04 [colin]      3.1.0cvs52
11753
11754         * tools/Makefile.am
11755         * tools/README.sylprint
11756         * tools/sylprint.pl
11757         * tools/sylprint.rc
11758                 Fix debian bug #454089 (symlink attack in TMP directory)
11759                 http://secwatch.org/advisories/1019661/ :
11760                 Remove the buggy script, which was unmaintained anyway
11761         * src/news.c
11762         * src/procmsg.c
11763                 Store things in our private tmp directory.
11764
11765 2007-12-03 [colin]      3.1.0cvs51
11766
11767         * src/folder.c
11768         * src/folder.h
11769         * src/folderview.c
11770         * src/imap.c
11771         * src/mainwindow.c
11772                 Fix update problem when getting remote tags
11773         * src/prefs_matcher.c
11774                 Rework GUI to make it better. Patch by Pawel
11775                 Pekala
11776
11777 2007-12-03 [colin]      3.1.0cvs50
11778
11779         * src/etpan/imap-thread.c
11780         * src/etpan/nntp-thread.c
11781                 Fix bug 1417, 'Network log doesn't reveal 
11782                 enough NNTP errors'
11783
11784 2007-12-02 [iwkse]      3.1.0cvs49
11785
11786         * src/plugins/dillo_viewer/dillo_prefs.c
11787                         Insert dillo under the Plugins menu
11788
11789 2007-12-01 [paul]       3.1.0cvs48
11790
11791         * src/html.c
11792                 add these variant forms
11793                 Thanks to Colin
11794
11795 2007-12-01 [paul]       3.1.0cvs47
11796
11797         * src/matcher.c
11798                 fix a typo
11799
11800 2007-12-01 [paul]       3.1.0cvs46
11801
11802         * po/POTFILES.in
11803                 add the new addrcustomattr.c file
11804
11805 2007-11-29 [colin]      3.1.0cvs45
11806
11807         * src/common/ssl_certificate.c
11808                 Use the more modern getaddrinfo instead of 
11809                 gethostbyname when possible
11810
11811 2007-11-28 [colin]      3.1.0cvs44
11812
11813         * src/summaryview.c
11814                 Maybe fix bug 1410 and other crash reports
11815                 in summaryview since cvs38.
11816
11817 2007-11-28 [wwp]        3.1.0cvs43
11818
11819         * src/prefs_summary_open.c
11820                 Guard against an empty list of actions to perform
11821                 when opening a folder (or migration defaults could
11822                 be introduced, confusing).
11823
11824 2007-11-28 [colin]      3.1.0cvs42
11825
11826         * src/folderview.c
11827                 Fix mark all read from folder's contextual menu
11828
11829 2007-11-27 [colin]      3.1.0cvs41
11830
11831         * src/imap.c
11832         * src/imap.h
11833         * src/imap_gtk.c
11834         * src/prefs_account.c
11835         * src/etpan/imap-thread.c
11836                 A few fixes to the IMAP flags handling: Optimisations,
11837                 two crashers, mention that Bandwitdh-efficient mode
11838                 prevents tag fetching.
11839                 Fix M-UTF7 in subscription dialog.
11840
11841 2007-11-27 [colin]      3.1.0cvs40
11842
11843         * src/folder.c
11844         * src/mbox.c
11845         * src/summaryview.c
11846                 Make filtering faster on flags change: Batch original 
11847                 folderitem, where we'll do flags/tags changes.
11848
11849 2007-11-27 [colin]      3.1.0cvs39
11850
11851         * src/filtering.c
11852                 Fix bug 1407, 'After a copy action, further rules apply 
11853                 to both original and copy'
11854
11855 2007-11-27 [colin]      3.1.0cvs38
11856
11857         * src/edittags.c
11858         * src/summaryview.c
11859                 Fixes races when doing a long operation and user
11860                 asks for another one (Mark all read/unread on a 
11861                 big folder on IMAP for example)
11862
11863 2007-11-27 [wwp]        3.1.0cvs37
11864
11865         * src/addressbook.c
11866         * src/prefs_common.c
11867                 Fix warning introduced by 3.1.0cvs33 (prefs_common.c)
11868                 and 3.1.0cvs35 (addressbook.c).
11869
11870 2007-11-27 [holger]     3.1.0cvs36
11871
11872         * src/printing.c
11873                 Add a line separating header and body
11874                 in the printout
11875
11876 2007-11-27 [wwp]        3.1.0cvs35
11877
11878         * src/addressbook.c
11879                 Fix a drag-and-drop issue introduced with 3.1.0cvs33
11880                 (thanks to Colin) and revert disabling of cut/copy
11881                 context menu entries upon selected groups.
11882
11883 2007-11-27 [holger]     3.1.0cvs34
11884
11885         * src/printing.c
11886                 Add weights to the list of supported text attributes
11887                 for printing
11888
11889 2007-11-27 [wwp]        3.1.0cvs33
11890
11891         * src/Makefile.am
11892         * src/addrcustomattr.c
11893         * src/addrcustomattr.h
11894         * src/addressbook.c
11895         * src/editaddress.c
11896         * src/editaddress.h
11897         * src/prefs_common.c
11898         * src/prefs_common.h
11899         * src/common/defs.h
11900                 Provide a (customizable) list of preset attribute names
11901                 for editing contacts (closes bug #1391).
11902
11903 2007-11-27 [wwp]        3.1.0cvs32
11904
11905         * src/addrclip.c
11906         * src/addressbook.c
11907         * src/addritem.c
11908                 Various fixes in the address book:
11909                         - made copy/move of a folder to itself or its subtree
11910                           impossible (-> error)
11911                         - errors messages don't show in the status bar anymore,
11912                           use alertpanels instead
11913                         - simple click on group doesn't open group edit dialog
11914                           anymore when in contact edit embedded mode (was too itchy)
11915                         - fixed disabling of edit button and and menu entry when
11916                           in contact edit embedded mode (was done in a bad and
11917                           ineffective way)
11918                         - fix menu cut/paste sensitivity in treelist context
11919                           menu (conflicting enabling was done by different functions)
11920                         - fix some menu item sensitivity in address list context menu
11921                         - don't allow cut/copy of groups, it's useless as they won't
11922                           be copied w/ their contents
11923                         - fix missing copy of the picture file when copying (bug #1402),
11924                           fix picture attribute (internal) value when moving or copying
11925
11926
11927 2007-11-27 [colin]      3.1.0cvs31
11928
11929         * src/folder.c
11930         * src/imap.c
11931                 Fix tags loss on move, fix space encoding
11932
11933 2007-11-26 [colin]      3.1.0cvs30
11934
11935         * src/edittags.c
11936         * src/folder.c
11937         * src/folder.h
11938         * src/imap.c
11939         * src/messageview.c
11940         * src/procmsg.c
11941         * src/procmsg.h
11942         * src/summaryview.c
11943         * src/common/utils.c
11944         * src/common/utils.h
11945         * src/etpan/imap-thread.c
11946         * src/etpan/imap-thread.h
11947                 Add IMAP tags support
11948
11949 2007-11-26 [colin]      3.1.0cvs29
11950
11951         * src/imap.c
11952                 Fix bug 1405, 'imap auto auth method doesn't 
11953                 work since 3.1.0'
11954
11955 2007-11-26 [colin]      3.1.0cvs28
11956
11957         * src/messageview.c
11958         * src/procmime.c
11959                 Handle broken disposition-notifications from Evolution
11960                 (http://bugzilla.gnome.org/show_bug.cgi?id=499145)
11961
11962 2007-11-25 [paul]       3.1.0cvs27
11963
11964         * src/folder_item_prefs.c
11965         * src/folder_item_prefs.h
11966                 remove dead code
11967
11968 2007-11-23 [wwp]        3.1.0cvs26
11969
11970         * src/matcher.c
11971         * src/matcher.h
11972         * src/matcher_parser_parse.y
11973         * src/prefs_matcher.c
11974                 Fix irrelevant case folding when adding matcher condition 'test',
11975                 thanks to Colin.
11976
11977 2007-11-23 [wwp]        3.1.0cvs25
11978
11979         * src/prefs_common.c
11980         * src/prefs_common.h
11981         * src/prefs_summary_open.c
11982         * src/prefs_summary_open.h
11983         * src/summaryview.c
11984                 Add "select first email in list" to the list of possible selections
11985                 when opening a folder.
11986
11987 2007-11-23 [paul]       3.1.0cvs24
11988
11989         * po/de.po
11990                 a fix by Stephan Sachse, plus remove all
11991                 old strings from the end of the file
11992
11993 2007-11-23 [wwp]        3.1.0cvs23
11994
11995         * src/prefs_msg_colors.c
11996                 Move colour prefs into tabs. Patch by Pawel Pekala <c0rn@o2.pl>,
11997                 with little changes.
11998
11999 2007-11-23 [paul]       3.1.0cvs22
12000
12001         * src/prefs_logging.c
12002                 eliminate wasted horizontal space
12003
12004 2007-11-23 [paul]       3.1.0cvs21
12005
12006         * src/prefs_summaries.c
12007                 don't wrap the label or put linebreaks
12008
12009 2007-11-22 [colin]      3.1.0cvs20
12010
12011         * src/plugins/pgpinline/pgpinline.c
12012                 Fix decryption
12013
12014 2007-11-22 [wwp]        3.1.0cvs19
12015
12016         * src/prefs_themes.c
12017                 Yet another misuse of get_rc_dir(), still related
12018                 to user themes. Completes 3.1.0cvs18.
12019
12020 2007-11-22 [wwp]        3.1.0cvs18
12021
12022         * src/stock_pixmap.c
12023                 Fix a misuse of get_rc_dir(), user themes dir was
12024                 not set properly and some themes might have disappeared
12025                 from themes list in prefs.
12026
12027 2007-11-22 [wwp]        3.1.0cvs17
12028
12029         * src/edittags.c
12030         * src/edittags.h
12031         * src/common/tags.c
12032         * src/common/tags.h
12033                 Correct copyright for these claws-mail-only brand new
12034                 files.
12035
12036 2007-11-22 [paul]       3.1.0cvs16
12037
12038         * src/compose.c
12039                 fix bug 1400, 'Drag and drop of URLs does not work'
12040                 Thanks to Colin
12041
12042 2007-11-22 [paul]       3.1.0cvs15
12043
12044         * src/prefs_common.c
12045                 make "cmds_use_system_default" default to FALSE
12046                 so as not to disrupt current settings
12047         * src/summaryview.c
12048                 increase the size of the GdkRectangle, tooltips
12049                 didn't show for me otherwise
12050
12051 2007-11-21 [colin]      3.1.0cvs14
12052
12053         * src/compose.c
12054         * src/crash.c
12055         * src/exphtmldlg.c
12056         * src/mainwindow.c
12057         * src/manual.c
12058         * src/mimeview.c
12059         * src/prefs_account.c
12060         * src/prefs_common.c
12061         * src/prefs_common.h
12062         * src/prefs_ext_prog.c
12063         * src/textview.c
12064         * src/uri_opener.c
12065         * src/gtk/about.c
12066         * src/gtk/gtkutils.c
12067                 Use xdg-open as a way to find default browser,
12068                 when available
12069
12070 2007-11-21 [colin]      3.1.0cvs13
12071
12072         * src/messageview.c
12073         * src/procmime.c
12074         * src/procmsg.h
12075                 Send better return receipts (useful ones)
12076                 Handle incoming return receipts
12077
12078 2007-11-20 [colin]      3.1.0cvs12
12079
12080         * src/printing.c
12081         * src/printing.h
12082                 Add getter/setter for settings, and getter
12083                 for page setup
12084
12085 2007-11-20 [colin]      3.1.0cvs11
12086
12087         * src/folderview.c
12088         * src/main.c
12089         * src/mainwindow.c
12090                 Fix bug 1396, 'Crash on disabling a filter 
12091                 while it is processing'
12092
12093 2007-11-20 [paul]       3.1.0cvs10
12094
12095         * src/folder.c
12096                 fix bug 1395, 'Crash on checking for new mails
12097                 while filter is running'
12098                 Thanks to Colin
12099
12100 2007-11-20 [paul]       3.1.0cvs9
12101
12102         * src/compose.c
12103                 make this string easier for translators
12104
12105 2007-11-19 [colin]      3.1.0cvs8
12106
12107         * src/prefs_summaries.c
12108         * src/summaryview.c
12109                 Don't enable more tooltips on Maemo
12110
12111 2007-11-19 [colin]      3.1.0cvs7
12112
12113         * src/prefs_common.c
12114         * src/prefs_common.h
12115         * src/prefs_summaries.c
12116         * src/summaryview.c
12117                 Fix bug 1388, 'message list tool tips'
12118                 Add (optional) tooltips in summaryview.
12119                 This only works with GTK+ >= 2.12
12120
12121 2007-11-19 [colin]      3.1.0cvs6
12122
12123         * src/compose.c
12124                 Make strings a bit better when attaching
12125                 from mailto: URIs
12126
12127 2007-11-19 [colin]      3.1.0cvs5
12128
12129         * src/common/utils.c
12130                 Fix bug 1392, 'Top level domain .EU is 
12131                 not recognised as valid'
12132
12133 2007-11-19 [wwp]        3.1.0cvs4
12134
12135         * src/compose.c
12136         * src/compose.h
12137                 Revert changes to compose.c made in 3.1.0cvs2.
12138
12139 2007-11-19 [wwp]        3.1.0cvs3
12140
12141         * src/addressbook.c
12142         * src/addressbook.h
12143         * src/editaddress.c
12144         * src/editgroup.c
12145         * src/addrduplicates.c
12146                 Minor improvements in the address book:
12147                 always accept new contacts provided that some
12148                 detail is set (instead of rejecting silently).
12149                 Better guessing of contact name from incomplete
12150                 name information. Better display of contacts with
12151                 no name, in contact lists, group contents, find
12152                 duplicate results.
12153                 
12154
12155 2007-11-19 [wwp]        3.1.0cvs2
12156
12157         * src/compose.c
12158         * src/compose.h
12159         * src/prefs_logging.c
12160         * src/prefs_summaries.c
12161                 GUI improvements, thanks to Pawel Pekala <c0rn@o2.pl>:
12162                 wrap some long label in prefs/summaries, layout checkboxes
12163                 in a more compact form in prefs/loggin, make account and
12164                 header's combos have the same size/spacing in compose
12165                 window.
12166
12167 2007-11-19 [wwp]        3.1.0cvs1
12168
12169         * src/edittags.c
12170                 Fix a tiny leak and duplicate variable.
12171
12172 2007-11-19 [paul]       3.1.0
12173
12174         * NEWS
12175         * README
12176         * RELEASE_NOTES 
12177                 3.1.0 released
12178
12179 2007-11-19 [paul]       3.0.2cvs145
12180
12181         * po/de.po
12182         * po/fi.po
12183         * po/fr.po
12184         * po/hu.po
12185         * po/it.po
12186         * po/pl.po
12187         * po/pt_BR.po
12188         * po/sk.po
12189         * po/zh_CN.po
12190                 updated by Stephan Sachse, Flammie Pirinen,
12191                 Fabien Vantard, Pader Rezso, Andrea Spadaccini,
12192                 Emil Nowak, Frederico Goncalves Guimaraes,
12193                 Andrej Kacian, and Ralph Young
12194
12195 2007-11-18 [mones]      3.0.2cvs144
12196
12197         * po/es.po
12198                 Updated Spanish translation
12199
12200 2007-11-18 [colin]      3.0.2cvs143
12201
12202         * src/edittags.c
12203                 Prevent empty tag after edit, thanks to wwp
12204
12205 2007-11-18 [colin]      3.0.2cvs142
12206
12207         * src/editaddress.c
12208                 Fix possible "(null)" %s - thanks to wwp
12209
12210 2007-11-16 [wwp]        3.0.2cvs141
12211
12212         * src/common/utils.c
12213                 Fix for 3.0.2cvs140, prevents from crashing when opening
12214                 a compose window.
12215
12216 2007-11-16 [colin]      3.0.2cvs140
12217
12218         * src/main.c
12219         * src/common/claws.c
12220                 Output a bit more useful info at startup
12221                 in --debug mode
12222
12223 2007-11-16 [colin]      3.0.2cvs139
12224
12225         * src/compose.c
12226         * src/common/utils.c
12227         * src/common/utils.h
12228                 Fix bug 1387, 'Request for --compose to 
12229                 support multiple attachments'
12230
12231 2007-11-16 [colin]      3.0.2cvs138
12232
12233         * src/news.c
12234                 Fix bug 1390, 'NNTP fails after server 
12235                 closed connection'
12236
12237 2007-11-16 [colin]      3.0.2cvs137
12238
12239         * src/prefs_display_header.c
12240                 Fix bug 1389, 'Changing 'Display headers 
12241                 in message view' breaks dispheaderrc'
12242
12243 2007-11-14 [colin]      3.0.2cvs136
12244
12245         * src/summaryview.c
12246         * src/gtk/quicksearch.c
12247         * src/gtk/quicksearch.h
12248                 Fix resetting the quicksearch when in non-sticky
12249                 mode, but Recursive is set: reset only when going
12250                 out of the root search folder.
12251
12252 2007-11-14 [colin]      3.0.2cvs135
12253
12254         * src/filtering.c
12255                 Don't set new flag back when doing "Mark as unread"
12256                 from filtering
12257
12258 2007-11-12 [paul]       3.0.2cvs134
12259
12260         * src/plugins/dillo_viewer/dillo_viewer.c
12261                 don't offer the mime type for translation
12262
12263 2007-11-12 [paul]
12264
12265         3.1.0-rc2 released
12266
12267 2007-11-11 [colin]      3.0.2cvs133
12268
12269         * src/imap_gtk.c
12270         * src/mh_gtk.c
12271                 Use markup-escaped strings in dialogs
12272
12273 2007-11-11 [colin]      3.0.2cvs132
12274
12275         * src/imap.c
12276                 Better IMAP-UTF7/UTF8 conversion
12277
12278 2007-11-10 [colin]      3.0.2cvs131
12279
12280         * src/news.c
12281                 Fix debian bug 450698, 'nntp auth behavior changed 
12282                 without notice'
12283
12284 2007-11-10 [colin]      3.0.2cvs130
12285
12286         * configure.ac
12287         * src/inc.c
12288         * src/main.c
12289         * src/main.h
12290         * src/mimeview.c
12291         * src/statusbar.c
12292         * src/common/utils.c
12293         * src/etpan/Makefile.am
12294         * src/gtk/filesel.c
12295         * src/gtk/gtkutils.h
12296         * src/gtk/menu.c
12297         * src/plugins/bogofilter/Makefile.am
12298         * src/plugins/clamav/Makefile.am
12299         * src/plugins/dillo_viewer/Makefile.am
12300         * src/plugins/pgpcore/Makefile.am
12301         * src/plugins/spamassassin/Makefile.am
12302         * src/plugins/trayicon/Makefile.am
12303                 Fixes (mainly preprocessor foo) for Maemo 4.0 (Chinook)
12304
12305 2007-11-09 [colin]      3.0.2cvs129
12306
12307         * src/addressbook.c
12308         * src/ldapupdate.c
12309                 fix bug 1375, 'Impossible to modify e-mail
12310                 in LDAP addressbook twice'; Try two. update
12311                 externalID, don't make display lag, and
12312                 fix the cases where dn is not mail.
12313
12314 2007-11-08 [paul]       3.0.2cvs128
12315
12316         * src/account.c
12317         * src/compose.c
12318         * src/messageview.c
12319         * src/prefs_account.c
12320         * src/prefs_account.h
12321                 reinstate 'Generate Message-ID' option as an
12322                 account preference. (hidden on IMAP)
12323                 Thanks to Colin
12324
12325 2007-11-08 [paul]       3.0.2cvs127
12326
12327         * src/textview.c
12328                 MAEMO: fix failure of loading images inline
12329                 MAEMO: fix bug 1349, 'Emails still skip to end
12330                 when opened (in certain circumstances)...'
12331
12332 2007-11-07 [colin]      3.0.2cvs126
12333
12334         * src/toolbar.c
12335                 Migrate from A_SYL_ACTIONS to A_CLAWS_ACTIONS
12336
12337 2007-11-07 [colin]      3.0.2cvs125
12338
12339         * src/toolbar.c
12340                 Re-change the string occurence of A_CLAWS_ACTIONS
12341                 to A_SYL_ACTIONS, to prevent parse errors of the
12342                 toolbar_*.xml files
12343
12344 2007-11-07 [colin]      3.0.2cvs124
12345
12346         * src/mimeview.c
12347         * src/prefs_common.c
12348         * src/prefs_common.h
12349         * manual/advanced.xml
12350                 Add an hidden pref, 'save_parts_readwrite';
12351                 completes 3.0.2cvs35
12352
12353 2007-11-07 [paul]       3.0.2cvs123
12354
12355         * src/prefs_toolbar.c
12356         * src/toolbar.c
12357         * src/toolbar.h
12358                 rename ToolbarSylpheedActions to ToolbarClawsActions
12359                 rename A_SYL_ACTIONS to A_CLAWS_ACTIONS
12360
12361 2007-11-07 [paul]       3.0.2cvs122
12362
12363         * src/toolbar.c
12364                 MAEMO: remove tooltips
12365
12366 2007-11-07 [colin]      3.0.2cvs121
12367
12368         * src/plugins/pgpinline/pgpinline.c
12369                 Fix bug 1377, 'unspecific errors on 
12370                 signature checking'. Fix trimming of
12371                 UTF8 data.
12372
12373 2007-11-06 [iwkse]      3.0.2cvs120
12374
12375         * src/prefs_summary_open.c
12376                 yet a string change
12377
12378 2007-11-06 [paul]       3.0.2cvs119
12379
12380         * tools/Makefile.am
12381         * tools/README
12382         * tools/csv2addressbook.pl
12383                 add a new script that imports a CSV formatted
12384                 address book. Becky and Thunderbird address
12385                 book are currently supported.
12386
12387 2007-11-05 [colin]      3.0.2cvs118
12388
12389         * src/imap.c
12390                 Fix deletion 
12391
12392 2007-11-05 [iwkse]      3.0.2cvs117
12393
12394         * src/prefs_summary_open.c
12395                 String changes
12396
12397 2007-11-04 [paul]       3.0.2cvs116
12398
12399         * src/addressbook_foldersel.c
12400                 fix gtk critical warning
12401                 Patch by Pawel Pekala
12402
12403 2007-11-04 [paul]       3.0.2cvs115
12404
12405         * tools/README
12406         * tools/claws-mail-compose-insert-files.pl
12407                 add --bcc and uri_escape() everything
12408
12409 2007-11-04 [paul]       3.0.2cvs114
12410
12411         * src/gtk/gtkutils.c
12412                 gtkut_stock_with_text_button_set_create(): set
12413                 GTK_CAN_DEFAULT on buttons 2 and 3
12414
12415 2007-11-03 [paul]       3.0.2cvs113
12416
12417         * src/common/utils.c
12418                 fix debian bug #448814, 'mailto: URI decoding
12419                 desn't decode the destination address field'
12420                 Patch by Federico Heinz <fheinz@vialibre.org.ar>
12421
12422 2007-11-03 [paul]       3.0.2cvs112
12423
12424         * AUTHORS
12425         * src/compose.c
12426         * src/gtk/authors.h
12427                 allow Bcc in commandline URIs
12428                 (based on) Patch by Federico Heinz <fheinz@vialibre.org.ar>
12429
12430 2007-11-02 [colin]      3.0.2cvs111
12431
12432         * src/addressbook.c
12433                 Maybe fix bug 1376, 'crash on 
12434                 addressbook manipulation'
12435
12436 2007-10-31 [paul]       3.0.2cvs110
12437
12438         * src/ldapupdate.c
12439                 fix bug 1375, 'Impossible to modify e-mail
12440                 in LDAP addressbook twice'
12441                 Patch by Michael Rasmussen
12442
12443 2007-10-30 [paul]       3.0.2cvs109
12444
12445         * configure.ac
12446                 enable GnuTLS support with --enable-gnutls which
12447                 will disable openssl support. if the user has
12448                 gtk >= 2.10.x don't allow gnomeprint even if the
12449                 user asks for it
12450
12451 2007-10-30 [paul]
12452
12453         3.1.0-rc1 released
12454
12455 2007-10-30 [paul]       3.0.2cvs108
12456
12457         * Makefile.am
12458                 add ChangeLog.2.0.0-3.0.0 to EXTRA_DIST
12459
12460 2007-10-30 [paul]       3.0.2cvs107
12461
12462         * src/expldifdlg.c
12463         * src/prefs_account.c
12464         * src/prefs_folder_item.c
12465         * src/prefs_spelling.c
12466         * src/prefs_themes.c
12467         * src/wizard.c
12468         * src/gtk/gtkaspell.c
12469         * src/gtk/gtkaspell.h
12470         * src/plugins/spamassassin/spamassassin_gtk.c
12471                 replace deprecated gtk_option_menu...
12472                 patch by Pawel Pekala
12473
12474 2007-10-29 [colin]      3.0.2cvs106
12475
12476         * src/plugins/dillo_viewer/dillo_prefs.c
12477                 Fix forgotten signal connect
12478
12479 2007-10-28 [colin]      3.0.2cvs105
12480
12481         * src/plugins/dillo_viewer/dillo_prefs.c
12482         * src/plugins/dillo_viewer/dillo_prefs.h
12483         * src/plugins/dillo_viewer/dillo_viewer.c
12484                 Implement addressbook-based whitelisting for loading
12485                 remote images. Fixed missing destroy of the embedded
12486                 browser that made a Dillo window pop up on exit, if
12487                 an HTML part was displayed.
12488
12489 2007-10-26 [colin]      3.0.2cvs104
12490
12491         * src/edittags.c
12492                 Add missing static
12493
12494 2007-10-25 [colin]      3.0.2cvs103
12495
12496         * src/editaddress.c
12497                 Add tap-and-hold on the picture, for Maemo
12498         * src/edittags.c
12499         * src/edittags.h
12500         * src/mainwindow.c
12501         * src/procmsg.c
12502         * src/summaryview.c
12503         * src/textview.c
12504                 Unify tag interfaces.
12505
12506 2007-10-25 [colin]      3.0.2cvs102
12507
12508         * src/imap.c
12509         * src/etpan/imap-thread.h
12510                 Much better error handling. We'll need to be really
12511                 clear to users about where errors come from, with 
12512                 the apparition of Gmail's IMAP server.
12513
12514 2007-10-24 [colin]      3.0.2cvs101
12515
12516         * src/edittags.c
12517         * src/mainwindow.c
12518         * src/summaryview.c
12519         * src/textview.c
12520                 Add tags sorting (alphabetical); allow deletion of
12521                 tags from the Apply Tags window
12522
12523 2007-10-24 [colin]      3.0.2cvs100
12524
12525         * src/editaddress.c
12526         * src/editaddress_other_attributes_ldap.c
12527         * src/editaddress_other_attributes_ldap.h
12528         * src/ldapctrl.c
12529         * src/ldapquery.c
12530         * src/ldapupdate.c
12531                 Fix LDAP writing (got broken in cvs39)
12532                 Add read-only support for jpegPhoto LDAP field
12533
12534 2007-10-23 [colin]      3.0.2cvs99
12535
12536         * src/news.c
12537                 Fix crash in some cases
12538
12539 2007-10-22 [colin]      3.0.2cvs98
12540
12541         * src/common/socket.h
12542         * src/common/ssl.c
12543                 Fix big leak in GnuTLS code
12544
12545 2007-10-22 [colin]      3.0.2cvs97
12546
12547         * src/news.c
12548                 Fix bug 1368, 'SIGSEGV in NNTP code'
12549
12550 2007-10-22 [colin]      3.0.2cvs96
12551
12552         * src/prefs_customheader.c
12553                 Catch compface warnings when generating X-Faces
12554
12555 2007-10-22 [wwp]        3.0.2cvs95
12556
12557         * src/quote_fmt_parse.y
12558                 Remove accidentally committed debug traces.
12559                 Fix a warning.
12560
12561 2007-10-22 [colin]      3.0.2cvs94
12562
12563         * src/etpan/nntp-thread.c
12564                 Fix authentication
12565
12566 2007-10-19 [wwp]        3.0.2cvs93
12567
12568         * src/common/ssl_certificate.c
12569                 Add missing include (Windows).
12570
12571 2007-10-19 [colin]      3.0.2cvs92
12572
12573         * src/imap_gtk.c
12574         * src/mimeview.c
12575         * src/textview.c
12576         * src/gtk/inputdialog.c
12577         * src/gtk/inputdialog.h
12578                 Remove the last old combo; patch by
12579                 Pawel
12580
12581 2007-10-19 [colin]      3.0.2cvs91
12582
12583         * src/common/ssl.c
12584                 Fix interop problem with GnuTLS and some crappy
12585                 servers that have very little keys.
12586
12587 2007-10-19 [colin]      3.0.2cvs90
12588
12589         * src/common/ssl.c
12590                 Fix return value check on GnuTLS, and
12591                 display the error
12592
12593 2007-10-18 [colin]      3.0.2cvs89
12594
12595         * src/common/ssl_certificate.c
12596                 Fix missing initialisations
12597
12598 2007-10-18 [wwp]        3.0.2cvs88
12599
12600         * src/Makefile.am
12601                 Fix linking against GNUTLS (matters if --enable-gnutls only).
12602
12603 2007-10-18 [colin]      3.0.2cvs87
12604
12605         * po/POTFILES.in
12606                 Fix build
12607
12608 2007-10-18 [mones]      3.0.2cvs86
12609
12610         * src/editbook.c
12611         * src/import.c
12612         * src/prefs_account.c
12613         * src/prefs_receive.c
12614         * src/gtk/about.c
12615         * src/plugins/bogofilter/bogofilter_gtk.c
12616         * src/plugins/spamassassin/spamassassin_gtk.c
12617                 More capitalisation micro-fixes
12618
12619 2007-10-18 [paul]       3.0.2cvs85
12620
12621         * configure.ac
12622                 add info about NNTP support via libetpan
12623                 change the configure output ending msg a little
12624         * src/gtk/about.c
12625                 similar changes to above
12626
12627 2007-10-18 [colin]      3.0.2cvs84
12628
12629         * src/procmime.c
12630         * src/procmime.h
12631                 Fix missing symbol for S/MIME
12632
12633 2007-10-18 [colin]      3.0.2cvs83
12634
12635         * src/prefs_filtering_action.c
12636                 Fix crash in tags (introduced in cvs78)
12637
12638 2007-10-18 [colin]      3.0.2cvs82
12639
12640         * src/common/Makefile.am
12641         * src/common/nntp.c
12642         * src/common/nntp.h
12643         * src/etpan/Makefile.am
12644         * src/etpan/etpan-thread-manager-types.h
12645         * src/etpan/etpan-thread-manager.c
12646         * src/etpan/imap-thread.c
12647         * src/etpan/nntp-thread.c
12648         * src/etpan/nntp-thread.h
12649         * src/news.c
12650         * src/news.h
12651                 Rewrite the nntp implementation
12652                 to use libetpan. Non-blocking NNTP!
12653         * src/account.c
12654         * src/crash.c
12655         * src/imap.c
12656         * src/inc.c
12657         * src/main.c
12658         * src/mainwindow.c
12659         * src/pop.c
12660         * src/pop.h
12661         * src/prefs_account.c
12662         * src/recv.c
12663         * src/recv.h
12664         * src/send_message.c
12665         * src/send_message.h
12666         * src/ssl_manager.c
12667         * src/ssl_manager.h
12668         * src/wizard.c
12669         * src/common/claws.c
12670         * src/common/session.c
12671         * src/common/session.h
12672         * src/common/smtp.c
12673         * src/common/smtp.h
12674         * src/common/socket.c
12675         * src/common/socket.h
12676         * src/common/ssl.c
12677         * src/common/ssl.h
12678         * src/common/ssl_certificate.c
12679         * src/common/ssl_certificate.h
12680         * src/gtk/about.c
12681         * src/gtk/sslcertwindow.c
12682         * src/gtk/sslcertwindow.h
12683                 Implement GnuTLS support. GnuTLS support
12684                 will be used if OpenSSL isn't available, or
12685                 specified explicitely. (the reason is that
12686                 GnuTLS cerficate checking is a bit less 
12687                 practical than OpenSSL's)
12688
12689 2007-10-18 [paul]       3.0.2cvs81
12690
12691         * src/gtk/inputdialog.c
12692         * src/gtk/inputdialog.h
12693                 fix copyright header
12694
12695 2007-10-17 [colin]      3.0.2cvs80
12696
12697         * src/plugins/pgpcore/select-keys.c
12698                 Fix bug which prevented encryption key
12699                 auto-selection when two or more matched the
12700                 email address, but only one isn't revoked
12701                 or expired.
12702
12703 2007-10-17 [wwp]        3.0.2cvs79
12704
12705         * src/compose.c
12706         * src/quote_fmt.c
12707         * src/quote_fmt.h
12708         * src/quote_fmt_lex.l
12709         * src/quote_fmt_parse.y
12710                 Templates can now attach files using |attach{filename}.
12711
12712 2007-10-17 [wwp]        3.0.2cvs78
12713
12714         * src/prefs_customheader.c
12715         * src/prefs_ext_prog.c
12716         * src/prefs_filtering_action.c
12717         * src/prefs_matcher.c
12718         * src/prefs_other.c
12719         * src/prefs_toolbar.c
12720         * src/gtk/combobox.c
12721         * src/gtk/combobox.h
12722         * src/gtk/gtkutils.c
12723         * src/gtk/gtkutils.h
12724         * src/plugins/bogofilter/bogofilter_gtk.c
12725         * src/plugins/spamassassin/spamassassin_gtk.c
12726                 Removed almost all remaining instances of GtkCombo
12727                 old API, patch by Pawel Pekala <c0rn@o2.pl>, with
12728                 few visual and code cleanup from Colin.
12729
12730 2007-10-16 [wwp]        3.0.2cvs77
12731         * src/gtk/pluginwindow.c
12732                 Reworked the plugin window layouts, patch by Pawel Pekala <c0rn@o2.pl>.
12733
12734 2007-10-15 [colin]      3.0.2cvs76
12735
12736         * src/edittags.c
12737         * src/edittags.h
12738         * src/filtering.c
12739         * src/filtering.h
12740         * src/importmutt.c
12741         * src/importpine.c
12742         * src/main.c
12743         * src/messageview.c
12744         * src/messageview.h
12745         * src/mimeview.c
12746         * src/mimeview.h
12747         * src/pop.c
12748         * src/pop.h
12749         * src/prefs_common.c
12750         * src/prefs_common.h
12751         * src/prefs_customheader.c
12752         * src/prefs_customheader.h
12753         * src/prefs_display_header.c
12754         * src/prefs_display_header.h
12755         * src/prefs_filtering_action.c
12756         * src/prefs_filtering_action.h
12757         * src/prefs_folder_column.c
12758         * src/prefs_folder_column.h
12759         * src/prefs_folder_item.c
12760         * src/prefs_folder_item.h
12761         * src/prefs_gtk.c
12762         * src/prefs_gtk.h
12763         * src/prefs_logging.h
12764         * src/prefs_matcher.c
12765         * src/prefs_matcher.h
12766         * src/prefs_summary_column.c
12767         * src/prefs_summary_column.h
12768         * src/prefs_summary_open.c
12769         * src/procheader.c
12770         * src/procheader.h
12771         * src/procmime.c
12772         * src/procmime.h
12773         * src/recv.c
12774         * src/recv.h
12775         * src/sourcewindow.c
12776         * src/sourcewindow.h
12777         * src/summaryview.c
12778         * src/summaryview.h
12779         * src/textview.c
12780         * src/textview.h
12781         * src/toolbar.c
12782         * src/toolbar.h
12783         * src/common/mgutils.c
12784         * src/common/mgutils.h
12785         * src/common/nntp.c
12786         * src/common/nntp.h
12787         * src/common/prefs.c
12788         * src/common/prefs.h
12789         * src/common/socket.c
12790         * src/common/socket.h
12791         * src/common/stringtable.c
12792         * src/common/stringtable.h
12793         * src/common/template.c
12794         * src/common/template.h
12795         * src/common/uuencode.c
12796         * src/common/uuencode.h
12797         * src/gtk/gtkshruler.c
12798         * src/gtk/gtkshruler.h
12799         * src/gtk/menu.c
12800         * src/gtk/menu.h
12801         * src/gtk/progressdialog.c
12802         * src/gtk/progressdialog.h
12803                 Remove/staticalize, the return of the revenge
12804
12805 2007-10-15 [colin]      3.0.2cvs75
12806
12807         * src/matcher.c
12808                 Fix redirections in filtering's tests
12809
12810 2007-10-15 [colin]      3.0.2cvs74
12811
12812         * src/imap.c
12813                 Don't build imap_synchronise at all when 
12814                 building without libetpan
12815
12816 2007-10-14 [colin]      3.0.2cvs73
12817
12818         * src/imap.c
12819         * src/common/md5.c
12820         * src/common/md5.h
12821         * src/gtk/manage_window.c
12822         * src/gtk/manage_window.h
12823                 Remove more unused code
12824
12825 2007-10-14 [colin]      3.0.2cvs72
12826
12827         * src/addrquery.c
12828         * src/addrquery.h
12829         * src/recv.c
12830         * src/recv.h
12831         * src/vcard.c
12832         * src/vcard.h
12833         * src/common/xml.c
12834         * src/common/xml.h
12835         * src/common/xmlprops.c
12836         * src/common/xmlprops.h
12837                 Remove more unused code
12838
12839 2007-10-14 [colin]      3.0.2cvs71
12840
12841         * src/common/utils.c
12842                 Remove unused function
12843
12844 2007-10-13 [colin]      3.0.2cvs70
12845
12846         * src/imap.c
12847         * src/imap.h
12848         * src/mainwindow.c
12849         * src/mainwindow.h
12850         * src/gtk/gtkutils.c
12851         * src/gtk/gtkutils.h
12852                 Staticalise/Remove more code
12853
12854 2007-10-13 [colin]      3.0.2cvs69
12855
12856         * src/common/utils.c
12857         * src/common/utils.h
12858                 Remove dead code, unused for ages
12859
12860 2007-10-13 [colin]      3.0.2cvs68
12861
12862         * src/main.c
12863         * src/main.h
12864                 Maemo: define hildon_program in main.c,
12865                 make it accessible in the .h with extern
12866
12867 2007-10-13 [paul]       3.0.2cvs67
12868
12869         * src/gtk/menu.c
12870                 fix a bunch of runtime warnings on maemo
12871
12872 2007-10-13 [paul]       3.0.2cvs66
12873
12874         * src/main.c
12875         * src/main.h
12876         * src/gtk/gtkutils.c
12877         * src/gtk/gtkutils.h
12878                 fix a bunch of compiler warnings on maemo
12879
12880 2007-10-12 [colin]      3.0.2cvs65
12881
12882         * src/account.c
12883         * src/addritem.c
12884         * src/addritem.h
12885         * src/filtering.c
12886         * src/filtering.h
12887         * src/folder.c
12888         * src/folder.h
12889         * src/common/utils.c
12890         * src/common/utils.h
12891                 Remove unused code, staticalise some functions
12892
12893 2007-10-12 [paul]       3.0.2cvs64
12894
12895         * src/account.c
12896         * src/folderview.c
12897         * src/main.c
12898         * src/mainwindow.c
12899         * src/messageview.c
12900         * src/summary_search.c
12901         * src/summaryview.c
12902         * src/toolbar.c
12903         * src/wizard.c
12904         * src/common/utils.c
12905         * src/gtk/prefswindow.c
12906                 fix a bunch of compiler warnings on maemo
12907
12908 2007-10-11 [colin]      3.0.2cvs63
12909
12910         * src/editaddress.c
12911                 Make static function static
12912
12913 2007-10-11 [mones]      3.0.2cvs62
12914
12915         * src/addrduplicates.c
12916         * src/addressbook.c
12917         * src/compose.c
12918         * src/expldifdlg.c
12919         * src/mainwindow.c
12920         * src/messageview.c
12921         * src/pop.c
12922         * src/prefs_customheader.c
12923         * src/prefs_send.c
12924         * src/prefs_themes.c
12925         * src/common/plugin.c
12926         * src/gtk/pluginwindow.c
12927         * src/gtk/quicksearch.c
12928                 Fix several typos and capitalisation issues
12929
12930 2007-10-11 [wwp]        3.0.2cvs61
12931
12932         * src/editaddress.c
12933                 Fix a warning about possible use of uninitialized
12934                 filename var.
12935
12936 2007-10-11 [wwp]        3.0.2cvs60
12937
12938         * src/editaddress.c
12939                 Disable "Unset picture" menu item when there's
12940                 no picture to clear. Fix an extraneous g_unref_object,
12941                 add missing initializers.
12942
12943 2007-10-11 [wwp]        3.0.2cvs59
12944
12945         * src/pixmaps/anonymous.xpm
12946         * src/editaddress.c
12947         * src/Makefile.am
12948         * src/stock_pixmap.c
12949         * src/stock_pixmap.h
12950                 Fix a leak, gettext-ize the photo label.
12951                 Don't clear the existing picture if loading
12952                 a new one fails. Use a default 'anonymous'
12953                 picture (this new xpm has been added to the
12954                 internal stock_pixmap API). Add a
12955                 "Set picture" context menu entry.
12956
12957 2007-10-11 [colin]      3.0.2cvs58
12958
12959         * src/messageview.c
12960                 Make shift-shortcuts work
12961         * src/prefs_actions.c
12962                 Don't ask if we really want to close when
12963                 choosing OK and only the list is changed
12964         * src/prefs_template.c
12965                 Don't ask if we really want to close when
12966                 choosing OK and only the list is changed
12967         * src/common/plugin.c
12968                 Fix writing of second [Plugins_*] block
12969         * src/common/template.c
12970                 Remove unused files (fixes deletion)
12971
12972 2007-10-10 [paul]       3.0.2cvs57
12973
12974         * src/prefs_template.c
12975                 put the whole thing in a scrolled window
12976                 so that half the page is no longer inaccessible
12977                 on maemo
12978                 make the gtk_text_view smaller on maemo
12979
12980 2007-10-10 [colin]      3.0.2cvs56
12981
12982         * src/compose.c
12983                 Fix updating of Attachments number in some
12984                 cases (reedit, attach from command-line, ...)
12985
12986 2007-10-10 [colin]      3.0.2cvs55
12987
12988         * src/editaddress.c
12989                 Initialise error correctly
12990
12991 2007-10-10 [paul]       3.0.2cvs54
12992
12993         * src/prefs_filtering_action.c
12994         * src/gtk/description_window.c
12995         * src/gtk/foldersort.c
12996         * src/gtk/quicksearch.c
12997                 get rid of some pointless new lines and
12998                 make the descripton labels wrap better
12999
13000 2007-10-10 [colin]      3.0.2cvs53
13001
13002         * src/addressadd.c
13003         * src/editaddress.c
13004         * src/headerview.c
13005         * src/textview.c
13006                 More error handling on saving pictures
13007
13008 2007-10-10 [colin]      3.0.2cvs52
13009
13010         * src/printing.c
13011         * src/printing.h
13012                 Generalize a bit printing, so we can factorize
13013                 most of the code. 
13014
13015 2007-10-10 [paul]       3.0.2cvs51
13016
13017         * src/addrduplicates.c
13018                 fix engrish
13019                 use GTK_STOCK... buttons
13020
13021 2007-10-10 [paul]       3.0.2cvs50
13022
13023         * src/addressadd.c
13024         * src/addrindex.c
13025         * src/editaddress.c
13026                 Fix previous patch
13027                 Thanks to Colin
13028
13029 2007-10-10 [paul]       3.0.2cvs49
13030
13031         * src/summaryview.c
13032         * src/messageview.c
13033                 Fix crash on Add sender to addressbook when
13034                 From is null
13035         * src/addressadd.c
13036         * src/addrindex.c
13037         * src/editaddress.c
13038         * src/editaddress_other_attributes_ldap.h
13039                 Fix leaks 
13040                 Rename images to .png in addrbook/
13041         * src/headerview.c
13042         * src/textview.c
13043                 Fix Face/X-Face being used if adding another
13044                 address than sender to addressbook
13045                 Thanks to Colin
13046
13047 2007-10-10 [holger]     3.0.2cvs48
13048
13049         * src/addrduplicates.c
13050         * src/editaddress.c
13051                 Improvements to the addressbook duplicate finder
13052                 feature:
13053                  - add an edit button to the button bar
13054                  - display the whole bookname (with iface) and
13055                    use this for same-book checking
13056                  - after editing, try to keep selections if the
13057                    entries are still present
13058                  - sort the email column alphabetically
13059                  - put results in a scrolled window
13060                  - support embedded editing
13061                  - make columns in detail view resizable
13062                  - add keyboard shortcuts
13063
13064 2007-10-10 [wwp]        3.0.2cvs47
13065
13066         * src/addrindex.c
13067                 Fix a crash when there's no From: in email, thanks to Colin.
13068
13069 2007-10-09 [paul]       3.0.2cvs46
13070
13071         * src/messageview.c
13072         * src/summaryview.c
13073         * src/textview.c
13074                 fix building without compface support
13075
13076 2007-10-09 [colin]      3.0.2cvs45
13077
13078         * src/editaddress.c
13079         * src/headerview.c
13080         * src/textview.c
13081                 Add error handling
13082
13083 2007-10-09 [colin]      3.0.2cvs44
13084
13085         * src/addrduplicates.c
13086         * src/addressadd.c
13087         * src/addressadd.h
13088         * src/addressbook.c
13089         * src/addressbook.h
13090         * src/addrindex.c
13091         * src/addrindex.h
13092         * src/addritem.c
13093         * src/addritem.h
13094         * src/compose.c
13095         * src/editaddress.c
13096         * src/editaddress_other_attributes_ldap.h
13097         * src/headerview.c
13098         * src/messageview.c
13099         * src/mimeview.c
13100         * src/summaryview.c
13101         * src/textview.c
13102         * src/gtk/gtkutils.c
13103                 Automatically set contacts' pictures from Face 
13104                 or X-Face if they have no picture
13105                 Display the contact picture in textview or
13106                 headerview for mails sent by people in the 
13107                 addressbook, that have no Face or X-Face
13108                 Fix a few details in the Person edition dialog
13109                 (ability to unset picture)
13110                 Remove picture file when deleting contacts
13111
13112 2007-10-09 [iwkse]      3.0.2cvs43
13113
13114         * src/gtk/about.c
13115                 center the about window
13116
13117 2007-10-09 [paul]       3.0.2cvs42
13118
13119         * src/prefs_toolbar.c
13120                 fix icon selector window on maemo
13121
13122 2007-10-09 [paul]       3.0.2cvs41
13123
13124         * src/messageview.c
13125                 add 'go to' menu to separate msgview
13126
13127 2007-10-09 [colin]      3.0.2cvs40
13128
13129         * src/common/defs.h
13130                 Add forgotten file
13131
13132 2007-10-09 [iwkse]      3.0.2cvs39
13133
13134         * Makefile.am
13135         * src/addressbook.c
13136         * src/addritem.c
13137         * src/addritem.h
13138         * src/editaddress.c
13139         * src/editaddress_other_attributes_ldap.h
13140         * src/addrbook.c
13141         * src/Makefile.am
13142                 set a photo in the Addressbook
13143
13144 2007-10-08 [colin]      3.0.2cvs38
13145
13146         * src/prefs_toolbar.c
13147                 Make height 320 to remove the scrollbar 
13148                 (with current number of icons)
13149
13150 2007-10-08 [colin]      3.0.2cvs37
13151
13152         * src/prefs_toolbar.c
13153                 Transform the treeview to a GtkIconView.
13154                 Patch by Pawel
13155                 In addition, transform the window so that 
13156                 it looks like a popup menu. Patch by me
13157
13158 2007-10-08 [colin]      3.0.2cvs36
13159
13160         * src/compose.c
13161         * src/compose.h
13162                 Beautify the GUI a bit; in particular, show the
13163                 number of attachments in the tab's title.
13164                 Patch by Pawel
13165
13166 2007-10-08 [paul]       3.0.2cvs35
13167
13168         * src/mimeview.c
13169                 Save users from themselves: save temporary
13170                 files used for Open/Open with as read-only.
13171                 Thanks to Colin
13172
13173 2007-10-08 [paul]       3.0.2cvs34
13174
13175         * tools/Makefile.am
13176                 forgot this in cvs33
13177
13178 2007-10-08 [paul]       3.0.2cvs33
13179
13180         * tools/kdeservicemenu/README
13181         * tools/kdeservicemenu/claws-mail-attach-files.desktop.template
13182         * tools/kdeservicemenu/install.sh
13183         * tools/kdeservicemenu/template_claws-mail-attach-files.desktop
13184                 renamed template* to *template so as not to confuse
13185                 lintian
13186
13187 2007-10-08 [paul]       3.0.2cvs32
13188
13189         * src/prefs_themes.c
13190         * src/stock_pixmap.c
13191                 replace 2 direct uses of RC_DIR
13192
13193 2007-10-07 [colin]      3.0.2cvs31
13194
13195         * src/addrduplicates.c
13196         * src/addrduplicates.h
13197         * src/addressbook.c
13198         * src/addressbook.h
13199         * src/addrindex.c
13200         * src/addrindex.h
13201                 Implement deletion in duplicate finder. 
13202                 Patch by Holger 
13203
13204 2007-10-07 [colin]      3.0.2cvs30
13205
13206         * src/exporthtml.c
13207         * src/mbox.c
13208         * src/common/utils.c
13209                 Better fix for Solaris, thanks to Nicolas Doualot
13210
13211 2007-10-07 [colin]      3.0.2cvs29
13212
13213         * AUTHORS
13214         * src/gtk/authors.h
13215                 Add Frank Dietrich
13216
13217 2007-10-07 [colin]      3.0.2cvs28
13218
13219         * src/exporthtml.c
13220                 Fix HTML export to make it more compliant
13221                 Patch by Frank Dietrich <bits_n_bytes@gmx.de>
13222
13223 2007-10-07 [colin]      3.0.2cvs27
13224
13225         * src/prefs_toolbar.c
13226                 Only use icons that wouldn't look stupid in the toolbar
13227                 Patch by Pawel
13228
13229 2007-10-07 [colin]      3.0.2cvs26
13230
13231         * src/prefs_toolbar.c
13232                 Fix old icon being used when none is selected
13233
13234 2007-10-07 [colin]      3.0.2cvs25
13235
13236         * src/toolbar.c
13237                 Fix copy/paste error
13238
13239 2007-10-07 [colin]      3.0.2cvs24
13240
13241         * src/prefs_toolbar.c
13242         * src/toolbar.c
13243         * src/toolbar.h
13244                 Update icon to default one when changing event
13245                 Make the icon chooser nicer (handle Esc, Enter,
13246                 double-click)
13247
13248 2007-10-06 [colin]      3.0.2cvs23
13249
13250         * src/prefs_toolbar.c
13251                 Fix text reset; patch by Pawel
13252
13253 2007-10-06 [colin]      3.0.2cvs22
13254
13255         * src/toolbar.h
13256                 Complete previous commit
13257
13258 2007-10-06 [colin]      3.0.2cvs21
13259
13260         * src/prefs_toolbar.c
13261         * src/toolbar.c
13262                 Set toolbar text automatically to the default
13263                 when changing Event executed on click
13264
13265 2007-10-06 [colin]      3.0.2cvs20
13266
13267         * src/prefs_toolbar.c
13268                 Invert Text and Event fields
13269
13270 2007-10-06 [colin]      3.0.2cvs19
13271
13272         * src/prefs_toolbar.c
13273         * src/toolbar.c
13274                 Make toolbar prefs look much better
13275                 Patch by Pawel Pekala
13276
13277 2007-10-06 [paul]       3.0.2cvs18
13278
13279         * src/account.c
13280         * src/prefs_filtering.c
13281                 fix checkbuttons in gtktreeview on maemo by
13282                 setting maemo's "allow-checkbox-mode" to FALSE
13283
13284 2007-10-06 [colin]      3.0.2cvs17
13285
13286         * configure.ac
13287                 Export -DSOLARIS in CFLAGS for all
13288                 Solaris (not just 2.8) and OpenSolaris
13289
13290 2007-10-06 [paul]       3.0.2cvs16
13291
13292         * AUTHORS
13293         * src/exporthtml.c
13294         * src/mbox.c
13295         * src/gtk/authors.h
13296                 fix build on solaris where ctime_r takes
13297                 3 arguments rather than 2.
13298                 Patch by Nicolas Doualot <slubman.lists@slubman.info>
13299
13300 2007-10-05 [colin]      3.0.2cvs15
13301
13302         * src/etpan/imap-thread.c
13303                 Fix wrong error codepath
13304
13305 2007-10-05 [wwp]        3.0.2cvs14
13306
13307         * src/filtering.c
13308                 Fix unexpected logging of quicksearches:
13309                 debug_filtering_session flag was never reset to FALSE, causing
13310                 matcher functions to log when called from a quicksearch
13311                 (if a filtering session happened before).
13312
13313 2007-10-05 [paul]       3.0.2cvs13
13314
13315         * src/prefs_actions.c
13316         * src/prefs_filtering.c
13317         * src/prefs_template.c
13318                 fix bug 1343, 'Filtering..'s close button
13319                 silently discards new filter'
13320                 Thanks to Colin
13321
13322 2007-10-05 [paul]       3.0.2cvs12
13323
13324         * configure.ac
13325         * src/Makefile.am
13326                 fix bug 1347, '-Wno-unused-function, optional'
13327
13328 2007-10-05 [colin]      3.0.2cvs11
13329
13330         * src/procmime.c
13331         * src/common/mgutils.c
13332                 Fix warnings
13333
13334 2007-10-05 [mones]      3.0.2cvs10
13335
13336         * manual/advanced.xml
13337                 Use full menu name
13338         * manual/es/advanced.xml
13339                 Synchronise translation
13340
13341 2007-10-04 [colin]      3.0.2cvs9
13342
13343         * src/action.c
13344         * src/addrbook.c
13345         * src/addrindex.c
13346         * src/compose.c
13347         * src/exporthtml.c
13348         * src/exportldif.c
13349         * src/folder.c
13350         * src/main.c
13351         * src/matcher.c
13352         * src/mbox.c
13353         * src/messageview.c
13354         * src/mh.c
13355         * src/news.c
13356         * src/partial_download.c
13357         * src/pop.c
13358         * src/procmime.c
13359         * src/procmsg.c
13360         * src/toolbar.c
13361         * src/common/log.c
13362         * src/common/mgutils.c
13363         * src/common/plugin.c
13364         * src/common/utils.c
13365         * src/common/xml.c
13366         * src/common/xml.h
13367         * src/common/xmlprops.c
13368         * src/common/xmlprops.h
13369         * src/plugins/bogofilter/bogofilter.c
13370         * src/plugins/clamav/clamav_plugin.c
13371         * src/plugins/dillo_viewer/dillo_prefs.c
13372         * src/plugins/pgpcore/prefs_gpg.c
13373         * src/plugins/pgpinline/pgpinline.c
13374         * src/plugins/pgpmime/pgpmime.c
13375         * src/plugins/spamassassin/spamassassin.c
13376         * src/plugins/trayicon/trayicon_prefs.c
13377                 Verify success on writes. Will fix possible strange
13378                 failure on disk full.
13379
13380 2007-10-04 [paul]       3.0.2cvs8
13381
13382         * manual/advanced.xml
13383                 add further info about Actions
13384                 Patch by Emmanuel Briot <briot@adacore.com>
13385
13386 2007-10-04 [paul]       3.0.2cvs7
13387
13388         * src/account.c
13389                 remove the D column, instead indicate the
13390                 default account by use of bold text
13391
13392 2007-10-03 [colin]      3.0.2cvs6
13393
13394         * src/common/template.c
13395                 Fix templates writing (was prone to disk full problems)
13396
13397 2007-10-03 [colin]      3.0.2cvs5
13398
13399         * src/Makefile.am
13400         * src/addrduplicates.c
13401         * src/addrduplicates.h
13402         * src/addressbook.c
13403                 Add duplicate deletion. Patch by Holger
13404
13405 2007-10-03 [colin]      3.0.2cvs4
13406
13407         * src/matcher.c
13408         * src/gtk/quicksearch.c
13409                 Fix bug 1340, 'Case insensitive searches with 
13410                 non-ascii alphabets fail'.
13411
13412 2007-10-03 [colin]      3.0.2cvs3
13413
13414         * src/main.c
13415         * src/common/utils.c
13416         * src/common/utils.h
13417                 Implement run-time alternative config directories
13418
13419 2007-10-03 [colin]      3.0.2cvs2
13420
13421         * src/folderview.c
13422                 Prevent opening folder item while folder
13423                 is scanned in a better way
13424
13425 2007-10-02 [paul]       3.0.2cvs1
13426
13427         * NEWS
13428         * README
13429         * RELEASE_NOTES
13430         * configure.ac
13431                 bump up version number following stable release
13432
13433 2007-09-30 [colin]      3.0.1cvs49
13434
13435         * src/imap.c
13436                 Refresh session if needed
13437
13438 2007-09-30 [colin]      3.0.1cvs48
13439
13440         * src/imap.c
13441                 Reset folder's session to NULL
13442                 before destroying it
13443
13444 2007-09-30 [mones]      3.0.1cvs47
13445
13446         * manual/handling.xml
13447                 Use markup quotes instead hardcoded quotes
13448         * manual/es/handling.xml
13449                 Added new synced section (IMAP subscriptions)
13450
13451 2007-09-29 [colin]      3.0.1cvs46
13452
13453         * src/imap.c
13454                 Notice disconnections faster
13455
13456 2007-09-28 [colin]      3.0.1cvs45
13457
13458         * src/addressbook.c
13459         * src/addrindex.c
13460                 Fix warnings
13461
13462 2007-09-28 [paul]       3.0.1cvs44
13463
13464         * src/mimeview.c
13465                 fix maemo build
13466
13467 2007-09-28 [paul]       3.0.1cvs43
13468
13469         * src/account.c
13470                 use gtk_widget_set_size_request() on the label
13471                 so that wrapping works better. get rid of the
13472                 (partially deprecated) hbutton_box.
13473                 these changes should prevent buttons overlapping
13474                 on maemo
13475
13476 2007-09-28 [colin]      3.0.1cvs42
13477
13478         * src/pop.c
13479                 Fix typo :)
13480
13481 2007-09-28 [colin]      3.0.1cvs41
13482
13483         * src/compose.c
13484         * src/msgcache.c
13485         * src/pop.c
13486         * src/procmime.c
13487         * src/etpan/imap-thread.c
13488                 64bits-related warning fixes
13489
13490 2007-09-28 [colin]      3.0.1cvs40
13491
13492         * src/folder_item_prefs.c
13493         * src/ldaputil.c
13494         * src/mainwindow.c
13495         * src/mimeview.c
13496         * src/common/tags.c
13497                 Fix warnings
13498
13499 2007-09-28 [colin]      3.0.1cvs39
13500
13501         * src/plugins/spamassassin/spamassassin.c
13502         * src/plugins/spamassassin/spamassassin.h
13503         * src/plugins/spamassassin/spamassassin_gtk.c
13504                 Add addressbook-based whitelisting
13505
13506 2007-09-28 [colin]      3.0.1cvs38
13507
13508         * src/folder.c
13509                 Fix bug 1337, 'crash on pressing Send button'
13510
13511 2007-09-28 [paul]       3.0.1cvs37
13512
13513         * src/prefs_folder_item.c
13514                 give the orphans a parent. makes all prefs
13515                 pages visible on maemo
13516
13517 2007-09-28 [colin]      3.0.1cvs36
13518
13519         * src/prefs_folder_column.c
13520         * src/prefs_summary_column.c
13521                 Fix two leaks
13522
13523 2007-09-27 [colin]      3.0.1cvs35
13524
13525         * src/gtk/quicksearch.c
13526                 Fix bug 1336, 'Segfault if empty space before search-string'
13527
13528 2007-09-26 [mones]      3.0.1cvs34
13529
13530         * manual/account.xml
13531         * manual/plugins.xml
13532                 Fixed irc channel name, added some docbook markup.
13533                 Changed text markup to docbook markup. 
13534                 Added spamcop as supported in SpamReport description.
13535         * manual/fr/plugins.xml
13536                 Fixed irc channel name.
13537         * manual/es/account.xml
13538         * manual/es/advanced.xml
13539         * manual/es/claws-mail-manual.xml
13540         * manual/es/glossary.xml
13541         * manual/es/gpl.xml
13542         * manual/es/keyboard.xml
13543         * manual/es/plugins.xml
13544                 Synced with English version, fixed a couple of typos.
13545
13546 2007-09-26 [colin]      3.0.1cvs33
13547
13548         * configure.ac
13549                 Explain why "Libgnomeprint: no" on GTK+ 2.10
13550
13551 2007-09-26 [colin]      3.0.1cvs32
13552
13553         * src/messageview.c
13554         * src/procmsg.c
13555         * src/procmsg.h
13556                 Optimisation: avoid fetching mail 3 times locally
13557                 for displaying
13558
13559 2007-09-26 [colin]      3.0.1cvs31
13560
13561         * src/mh.c
13562                 Fix missing static
13563
13564 2007-09-26 [colin]      3.0.1cvs30
13565
13566         * src/folder.c
13567         * src/folder.h
13568         * src/mh.c
13569         * src/mh.h
13570                 Fix MH mtime hack - make it a folder class function
13571
13572 2007-09-26 [colin]      3.0.1cvs29
13573
13574         * src/inc.c
13575                 Fix bug 1334, 'user defined mail incorporation 
13576                 script not run'
13577
13578 2007-09-25 [colin]      3.0.1cvs28
13579
13580         * src/codeconv.c
13581                 Optimisation: shortcut conv_codeset_strdup
13582                 when src_code and dest_code are the same
13583         * src/common/xml.c
13584         * src/common/xml.h
13585                 Optimisation: shortcut code conversions when
13586                 files are in UTF-8; faster list walking by
13587                 using prepend/reverse.
13588
13589 2007-09-25 [holger]     3.0.1cvs27
13590
13591         * src/printing.c
13592                 Replace button bar of the preview window
13593                 with a real toolbar (patch by Colin)
13594                 Add zooming to the preview window
13595
13596 2007-09-24 [paul]       3.0.1cvs26
13597
13598         * src/compose.c
13599                 compact the character set menu, adding some
13600                 missing encodings. Patch by Pawel Pekala
13601
13602 2007-09-23 [paul]       3.0.1cvs25
13603
13604         * src/prefs_account.c
13605         * src/prefs_folder_item.c
13606         * src/prefs_quote.c
13607         * src/quote_fmt.c
13608         * src/quote_fmt.h
13609                 remove unnecessary frame from Templates options
13610                 and improve the English of the check button label
13611
13612 2007-09-22 [colin]      3.0.1cvs24
13613
13614         * src/gtk/quicksearch.c
13615                 Fix bug 1329, 'error in quicksearch.c'
13616                 Fix return with value in function returning void
13617
13618 2007-09-22 [colin]      3.0.1cvs23
13619
13620         * src/imap.c
13621         * src/procmsg.h
13622         * src/common/utils.c
13623         * src/common/utils.h
13624         * src/etpan/imap-thread.c
13625                 Optimise fetching IMAP cached emails *a lot*
13626                 (remember whether mail is fully cached and \r's
13627                  are already stripped)
13628
13629 2007-09-22 [colin]      3.0.1cvs22
13630
13631         * src/folder.c
13632         * src/folder.h
13633         * src/prefs_folder_item.c
13634                 Add a button to allow users to drop local caches.
13635
13636 2007-09-21 [colin]      3.0.1cvs21
13637
13638         * src/summaryview.c
13639                 Remove unnecessary error when cancelling export to mbox.
13640                 Patch by Pawel
13641
13642 2007-09-21 [paul]       3.0.1cvs20
13643
13644         * src/gtk/prefswindow.c
13645                 remove unnecessary frames from the prefs
13646                 pages. Patch by Pawel Pekala
13647
13648 2007-09-21 [paul]       3.0.1cvs19
13649
13650         * src/prefs_account.c
13651         * src/prefs_folder_item.c
13652         * src/prefs_quote.c
13653         * src/quote_fmt.c
13654                 put the Templates options into a tabbed
13655                 layout. Patch by Pawel Pekala
13656
13657 2007-09-21 [paul]       3.0.1cvs18
13658
13659         * src/mainwindow.c
13660                 group together the character set menu items
13661                 move the /View/Show or hide/Message view below
13662                 .../Toolbar menu item
13663                 Patch by Pawel Pekala
13664
13665 2007-09-21 [mones]      3.0.1cvs17
13666
13667         * src/compose.c
13668                 Fix for bug 1327, 'segfault when replying to a non-existent
13669                 news message', thanks to Colin.
13670
13671 2007-09-21 [colin]      3.0.1cvs16
13672
13673         * src/folderview.c
13674                 Complete 3.0.1cvs15
13675
13676 2007-09-20 [colin]      3.0.1cvs15
13677
13678         * src/folderview.c
13679         * src/folderview.h
13680                 Maybe fix bug 1324, 'Corrupted IMAP cache'
13681
13682 2007-09-20 [colin]      3.0.1cvs14
13683
13684         * src/printing.c
13685                 Fix a little leak
13686
13687 2007-09-20 [holger]     3.0.1cvs13
13688
13689         * src/printing.c
13690                 Add page layout to print preview.
13691                 Make the close-button in the toolbar
13692                 right-aligned.
13693
13694 2007-09-20 [paul]       3.0.1cvs12
13695
13696         * po/ru.po
13697                 updated by Pavlo Bohmat
13698
13699 2007-09-19 [colin]      3.0.1cvs11
13700
13701         * src/common/utils.c
13702                 Prevent unquoted mime boundaries, by always
13703                 using a /
13704
13705 2007-09-19 [colin]      3.0.1cvs10
13706
13707         * src/printing.c
13708                 Fix drawing area size, fix DPI change that
13709                 can cause total number of lines to decrease
13710
13711 2007-09-19 [colin]      3.0.1cvs9
13712
13713         * po/POTFILES.in
13714         * src/printing.c
13715                 Make print preview more efficient and nicer.
13716                 Patch mostly by Holger Berndt <hb@claws-mail.org>
13717
13718 2007-09-19 [colin]      3.0.1cvs8
13719
13720         * src/prefs_common.c
13721         * src/prefs_common.h
13722         * src/printing.c
13723                 Add scrolledwindow, default allocation and
13724                 size saving to the print preview window.
13725
13726 2007-09-18 [colin]      3.0.1cvs7
13727
13728         * src/prefs_common.c
13729         * src/prefs_common.h
13730         * src/prefs_image_viewer.c
13731         * src/printing.c
13732                 GtkPrintOperation:
13733                 - add image printing support
13734                 - add option to print images
13735                 - add preview widget
13736                 - add saving of a few Page Setup parameters
13737
13738 2007-09-18 [colin]      3.0.1cvs6
13739
13740         * AUTHORS
13741         * src/gtk/authors.h
13742                 Add Guillaume Chazarain
13743
13744 2007-09-18 [colin]      3.0.1cvs5
13745
13746         * src/common/utils.c
13747                 Fix bug 1321, 'access before allocation 
13748                 when scanning for uris'. Patch by 
13749                 Guillaume Chazarain <guichaz@yahoo.fr>
13750
13751 2007-09-18 [colin]      3.0.1cvs4
13752
13753         * src/toolbar.c
13754                 Fix bug 1320, 'Memory leak caused by 
13755                 gtk_container_get_children'. Patch by
13756                 Guillaume Chazarain <guichaz@yahoo.fr>
13757
13758 2007-09-18 [colin]      3.0.1cvs3
13759
13760         * src/printing.c
13761         * src/printing.h
13762                 Fix HAVE_GNOMEPRINT (USE_GNOMEPRINT)
13763
13764 2007-09-18 [colin]      3.0.1cvs2
13765
13766         * src/Makefile.am
13767         * src/mainwindow.c
13768         * src/messageview.c
13769         * src/messageview.h
13770         * src/prefs_ext_prog.c
13771         * src/prefs_fonts.c
13772         * src/printing.c
13773         * src/printing.h
13774         * src/summaryview.c
13775                 Use GtkPrintOperation by default on GTK+ >= 2.10
13776                 Patch by Holger Berndt <hb@claws-mail.org>
13777
13778 2007-09-18 [paul]       3.0.1cvs1
13779
13780         * NEWS
13781         * README
13782         * RELEASE_NOTES
13783         * configure.ac
13784                 bump up version number following stable release
13785
13786 2007-09-16 [colin]      3.0.0cvs18
13787
13788         * src/folder.c
13789                 Fix possible memleak
13790
13791 2007-09-16 [colin]      3.0.0cvs17
13792
13793         * src/folderview.c
13794                 Fix bug 1311, 'Wrong arrow position 
13795                 while moving message into folder when 
13796                 column headers hidden'
13797         * src/image_viewer.c
13798                 Show error in the GUI if image can't
13799                 be loaded
13800         * src/matcher.c
13801                 Fix spurious output
13802         * src/messageview.c
13803                 Allow setting domain in msgid
13804         * src/common/plugin.c
13805                 Add timing information
13806
13807 2007-09-16 [colin]      3.0.0cvs16
13808
13809         * src/account.c
13810         * src/compose.c
13811         * src/prefs_account.c
13812         * src/prefs_account.h
13813         * src/common/utils.c
13814                 Remove Generate Message-ID option. We need
13815                 this on some IMAP servers.
13816         * src/prefs_template.c
13817                 Fix double-free
13818
13819 2007-09-16 [colin]      3.0.0cvs15
13820
13821         * src/prefs_filtering.c
13822         * src/prefs_filtering.h
13823         * src/prefs_filtering_action.c
13824         * src/common/tags.c
13825                 Fix tags issues: tags with spaces, renaming
13826                 tags.
13827
13828 2007-09-16 [colin]      3.0.0cvs14
13829
13830         * src/folderview.c
13831         * src/main.c
13832         * src/mainwindow.c
13833                 Fix bug 1308, 'Claws deletes folderlist.xml after
13834                 fetching mail short after start-up'
13835
13836 2007-09-16 [colin]      3.0.0cvs13
13837
13838         * src/compose.c
13839                 Fix scrolling to cursor
13840
13841 2007-09-16 [paul]       3.0.0cvs12
13842
13843         * po/sr.po
13844                 updated by Aleksandar Urosevic
13845
13846 2007-09-16 [paul]       3.0.0cvs11
13847
13848         * src/folder.c
13849                 do not allow locked msgs to be deleted,
13850                 even by filtering/processing
13851
13852 2007-09-07 [paul]       3.0.0cvs10
13853
13854         * src/prefs_folder_column.c
13855         * src/prefs_summary_column.c
13856                 implement button sensitivity
13857                 patch by Pawel Pekala
13858
13859 2007-09-06 [wwp]        3.0.0cvs9
13860
13861         * src/prefs_gtk.c
13862                 Add a missing linefeed to a debug message.
13863
13864 2007-09-05 [colin]      3.0.0cvs8
13865
13866         * src/inc.c
13867                 Fix statusbar/window mismatch on Maemo
13868
13869 2007-09-05 [colin]      3.0.0cvs7
13870
13871         * src/ldaputil.c
13872                 Fix build without USE_LDAP_TLS
13873
13874 2007-09-05 [colin]      3.0.0cvs6
13875
13876         * src/folder.c
13877         * src/imap.c
13878         * src/inc.c
13879         * src/mbox.c
13880         * src/send_message.c
13881         * src/statusbar.c
13882         * src/statusbar.h
13883                 Maemo: distinguish various statusbar messages,
13884                 in order to display only the most important.
13885
13886 2007-09-04 [wwp]        3.0.0cvs5
13887
13888         * src/account.c
13889                 Accounts list: fix "Local" protocol not shown when USE_OPENSSL is set.
13890                 Show protocol "SMTP" and the appropriate server for send-only
13891                 accounts, show "-" instead of "" when no value is relevant.
13892
13893 2007-09-03 [ticho]      3.0.0cvs4
13894
13895         * src/summaryview.c
13896                 Handle plural form better in delete confirmation dialog.
13897
13898 2007-09-03 [wwp]        3.0.0cvs3
13899
13900         * src/compose.c
13901                 Warn differently when sending or sending later (queueing).
13902
13903 2007-09-03 [colin]      3.0.0cvs2
13904
13905         * src/procmime.c
13906         * src/procmime.h
13907         * src/common/plugin.c
13908         * src/common/plugin.h
13909                 Add a new plugin API, MimeParser. It allows
13910                 plugins to scan email MIME parts and optionally,
13911                 transform them.
13912
13913 2007-09-03 [mones]      3.0.0cvs1
13914
13915         * po/es.po
13916                 Updated translation
13917         * src/common/defs.h
13918                 While a better solution is made double history sizes
13919
13920 2007-09-03 [paul]       3.0.0
13921
13922         * NEWS
13923         * README
13924         * RELEASE_NOTES
13925                 3.0.0 released
13926
13927 [For previous entries, see ChangeLog.2.0.0-3.0.0]