-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog.2.0.0-3.0.0
15444 lines (11987 loc) · 343 KB
/
ChangeLog.2.0.0-3.0.0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2007-09-03 [paul] 3.0.0
* NEWS
* README
* RELEASE_NOTES
3.0.0 released
2007-09-03 [paul] 2.10.0cvs191
* po/bg.po
* po/ca.po
* po/de.po
* po/fi.po
* po/fr.po
* po/hu.po
* po/it.po
* po/pl.po
* po/pt_BR.po
* po/ru.po
* po/sk.po
* po/zh_CN.po
updated by Yasen Pramatarov, Miquel Oliete, Stephan
Sachse, Flammie Pirinen, Fabien Vantard, Pader Rezso,
Andrea Spadaccini, Emil Nowak, Frederico Goncalves
Guimaraes, Pavlo Bohmat, Andrej Kacian, and Ralph Young
2007-09-02 [colin] 2.10.0cvs190
* src/edittags.c
* src/common/tags.c
Prevent empty or white-space tags
2007-09-01 [colin] 2.10.0cvs189
* src/main.c
Fix double-reading of accounts list when
the wizard has been run due to no accounts
* src/mainwindow.c
Fix sensitivity of a menu item in case
there's no account
2007-09-01 [wwp] 2.10.0cvs188
* src/wizard.c
Fix wizard crash when Mailbox dir already exists
(thanks to Colin).
2007-08-31 [colin] 2.10.0cvs187
* src/etpan/imap-thread.c
Fix unwanted creation of
libetpan's stream dump file
* src/compose.c
Fix coloring of pastes as quotation
* src/summaryview.c
Maemo: Fix opening of mails from keypad
in Sent folders
* src/addressbook.c
* src/folderview.c
* src/image_viewer.c
* src/mimeview.c
* src/gtk/prefswindow.c
Maemo: Fix adjustments changes
2007-08-30 [colin] 2.10.0cvs186
* src/folderview.c
Don't opened selected folder when clicking
on white space
* src/mainwindow.c
Maemo: Make Esc close messageviews
* src/messageview.c
Maemo: Fix message scrolling to the end on
opening
Maemo: Fix reopening same message
* src/gtk/prefswindow.c
Maemo: try to fix scrollbar. Doesn't work,
it seems as if gtk_adjustment_set_value was
a noop.
2007-08-30 [colin] 2.10.0cvs185
* src/compose.c
* src/folderview.c
* src/main.c
* src/prefs_matcher.c
* src/prefs_template.c
* src/quote_fmt.c
* src/send_message.c
* src/toolbar.c
* src/gtk/gtkaspell.c
* src/plugins/bogofilter/bogofilter.c
* src/plugins/bogofilter/bogofilter_gtk.c
* src/plugins/clamav/clamav_plugin_gtk.c
* src/plugins/pgpcore/sgpgme.c
* src/plugins/spamassassin/spamassassin.c
* src/plugins/spamassassin/spamassassin_gtk.c
Fix all potential misuses of format-string functions
2007-08-30 [wwp] 2.10.0cvs184
* src/prefs_template.c
Fix a leak.
2007-08-29 [colin] 2.10.0cvs183
* src/plugins/trayicon/trayicon.c
Fix leak of hooks in case of error,
thanks to Holger Berndt
2007-08-28 [colin] 2.10.0cvs182
* src/mainwindow.c
Don't use current folder settings when
composing from the compose button's
account selector
2007-08-28 [colin] 2.10.0cvs181
* src/quote_fmt_parse.y
Fix cursor offset when quote contains UTF-8
chars
2007-08-28 [colin] 2.10.0cvs180
* src/compose.c
* src/compose.h
Fix signature replacement when it's been wrapped
2007-08-27 [colin] 2.10.0cvs179
* src/summaryview.c
Fix indentation
2007-08-27 [colin] 2.10.0cvs178
* src/summaryview.c
Fix Quicksearch's Sticky mode
2007-08-27 [colin] 2.10.0cvs177
* src/folder_item_prefs.c
* src/folder_item_prefs.h
* src/imap_gtk.c
* src/mh_gtk.c
Fix loss of subfolders properties when
renaming a folder
2007-08-26 [wwp] 2.10.0cvs176
* src/alertpanel.c
* src/messageview.c
* src/prefs_actions.c
Revert parts of 2.10.0cvs174: g_markup_printf_escaped()
will have to be used when necessary *before* calling
alertpanel functions.
2007-08-25 [paul] 2.10.0cvs175
* src/prefs_actions.c
workaround gettext problem marking
string as c-format when it's not
2007-08-25 [wwp] 2.10.0cvs174
* src/alertpanel.c
* src/messageview.c
* src/prefs_actions.c
Call the pango markup escape function right ince in alertpanel_create
instead of everywhere (reverts some parts of 2.10.0cvs123 and
2.10.0cvs158).
* src/common/log.c
Fix a crash due to a misuse of g_print(), encountered when the string
passed to g_print was containing printf substitution symbols.
2007-08-25 [paul] 2.10.0cvs173
* src/common/log.c
fix a segfault when refreshing RSSyl feeds
2007-08-25 [paul] 2.10.0cvs172
* src/gtk/icon_legend.c
add watchthread.xpm
2007-08-25 [paul] 2.10.0cvs171
* src/Makefile.am
* src/stock_pixmap.c
* src/pixmaps/insert_file.xpm
add a new pixmap instead of re-using
paste.xpm. (easier for icon theme authors)
2007-08-24 [holger] 2.10.0cvs170
* src/plugins/trayicon/trayicon.c
The same fix for another hook id.
2007-08-24 [holger] 2.10.0cvs169
* src/plugins/trayicon/trayicon.c
Micro-fix: Do the error checking for
the right hook id.
2007-08-24 [paul] 2.10.0cvs168
* src/folder.h
fix typo causing compiler warning
2007-08-24 [paul] 2.10.0cvs167
* README
put back the correct version of this file also
2007-08-24 [colin] 2.10.0cvs166
* src/send_message.c
Use progress bar when sending messages
2007-08-24 [paul] 2.10.0cvs165
* Makefile.am
oops! if i'm quick no-one will notice
(put back the proper file)
2007-08-24 [paul] 2.10.0cvs164
* AUTHORS
* Makefile.am
* README
* src/gtk/authors.h
* tools/Makefile.am
* tools/README
* tools/mew2claws-mail.pl
add new script that imports a Mew address book
submitted by Jerome Lelong
2007-08-24 [paul] 2.10.0cvs163
* manual/plugins.xml
remove the obsolete plugins, add the
missing plugins, including the forthcoming
SpamReport plugin
2007-08-24 [paul] 2.10.0cvs162
* manual/advanced.xml
add info about the hidden emphasis_color option
* manual/keyboard.xml
correct the info about hotkeys
wrap the long lines
2007-08-24 [paul] 2.10.0cvs161
* src/folderview.c
add mnemonic to 'Run procesing rules'
2007-08-24 [paul] 2.10.0cvs160
* src/account.c
* src/folder.c
* src/folder.h
use suitable defaults for outbox,
queue, drafts and trash folders
2007-08-24 [wwp] 2.10.0cvs159
* src/folderview.c
Update menu item sensitivity if necessary (or we get a
gtk critical message).
2007-08-23 [wwp] 2.10.0cvs158
* src/action.c
* src/prefs_actions.c
Allow literal % chars in action commands (use %%).
Add a missing p++ to the action parser in action_get_type(),
which was missing it, even if it was neutral.
Fix a pango markup warning at runtime.
2007-08-23 [wwp] 2.10.0cvs157
* src/addressbook.c
Contacts are now locale-aware sorted in the address book
(LC_COLLATE matters here).
Fix missing table initializers.
2007-08-23 [colin] 2.10.0cvs156
* src/imap.c
Check scan_required on dest folder when copying
2007-08-23 [colin] 2.10.0cvs155
* src/imap.c
Fix scanning when folder was empty
2007-08-22 [colin] 2.10.0cvs154
* src/msgcache.c
Don't g_warning when g_try_malloc fails(), or it makes
things worse as g_log() allocates. Fixes bug 1290,
'Claws Mail crashes if too little memory when
rebuilding folder tree'
2007-08-22 [colin] 2.10.0cvs153
* src/inc.c
Fix format string vulnerability, thanks to
Ulf Harnhammar, Secunia Research
2007-08-22 [colin] 2.10.0cvs152
* src/ldapserver.c
Set tv_usec too
2007-08-22 [wwp] 2.10.0cvs151
* src/ldapquery.c
Few better null-ptr checks.
2007-08-22 [colin] 2.10.0cvs150
* src/editldap.c
* src/editldap_basedn.c
* src/ldapquery.c
* src/ldapserver.c
* src/ldapserver.h
* src/ldapupdate.c
* src/ldaputil.c
* src/ldaputil.h
Fix ldap timeouts
2007-08-22 [colin] 2.10.0cvs149
* src/ldapquery.c
Finish previous fix
2007-08-22 [colin] 2.10.0cvs148
* src/ldapquery.c
Fix wrong assertions
2007-08-22 [colin] 2.10.0cvs147
* src/ldaputil.c
Fix test (set ldap v3 if bindDN is set or TLS is set)
2007-08-22 [colin] 2.10.0cvs146
* src/editldap.c
* src/ldaputil.c
Fix wrong "Connected successfully to server". Connection only succeeds if
we can get the base DN.
2007-08-21 [wwp] 2.10.0cvs145
* src/browseldap.c
* src/editldap.c
* src/ldapctrl.c
* src/ldapquery.c
* src/ldapserver.c
* src/ldapupdate.c
* src/ldaputil.c
More sanity checks in ldap functions.
2007-08-21 [wwp] 2.10.0cvs144
* src/prefs_account.c
Don't return a value in a void function().
2007-08-21 [paul] 2.10.0cvs143
* src/messageview.c
add check for ftp: to messageview_list_urls()
2007-08-21 [colin] 2.10.0cvs142
* src/editldap.c
* src/ldapctrl.c
* src/ldapctrl.h
* src/ldapquery.c
* src/ldapupdate.c
Fix bug 1293, 'LDAP address book not working'
Search only on specified fields, but fetch
every field possible. People will have to
reset the searched Attributes in their LDAP
servers properties.
2007-08-21 [wwp] 2.10.0cvs141
* src/addr_compl.c
* src/addrbook.c
* src/addrcache.c
* src/addrcindex.c
* src/addressbook.c
* src/addrindex.c
* src/browseldap.c
* src/crash.c
* src/editaddress_other_attributes_ldap.c
* src/exporthtml.c
* src/folder.c
* src/folderview.c
* src/imap.c
* src/jpilot.c
* src/ldapserver.c
* src/ldapupdate.c
* src/ldif.c
* src/main.c
* src/mainwindow.c
* src/matcher.c
* src/mh.c
* src/msgcache.c
* src/mutt.c
* src/pine.c
* src/pop.c
* src/prefs_customheader.c
* src/prefs_msg_colors.c
* src/procmime.c
* src/textview.c
* src/vcard.c
* src/wizard.c
* src/common/log.c
* src/common/socket.c
* src/common/ssl_certificate.c
* src/common/utils.c
* src/common/utils.h
* src/gtk/description_window.c
* src/plugins/demo/demo.c
* src/plugins/pgpcore/prefs_gpg.c
* src/plugins/spamassassin/libspamc.c
Make sure we use glib functions to send text messages (information,
debug, warning, errors) to stdout/stderr - no more direct puts
fputs printf fprintf to stdout/stderr when it can be done using
g_log*() and g_print/g_printerr. Doing this, we make sure every
stdout/stderr message is saved to log in Windows.
2007-08-21 [wwp] 2.10.0cvs140
* src/main.c
* src/common/utils.h
Route glib's stdout/stderr messages to a log file (Windows only),
instead of loosing them.
2007-08-21 [paul] 2.10.0cvs139
* src/mainwindow.c
replace deprecated g_strncasecmp()
* src/messageview.c
fix 'List URLS'
2007-08-20 [ticho] 2.10.0cvs138
* src/account.c
* src/prefs_account.h
Copy all account preferences in account_clone() - some
were missing.
* src/prefs_account.c
Handle empty privacy system combobox gracefully (warning
instead of a crash).
2007-08-20 [colin] 2.10.0cvs137
* src/ldapctrl.c
Fix a leak
2007-08-20 [paul] 2.10.0cvs136
* src/browseldap.c
* src/editldap.c
* src/ldapctrl.c
* src/ldapquery.c
* src/ldapquery.h
* src/ldapserver.c
* src/ldaputil.c
add debug_prints
patch by Michael Rasmussen
2007-08-19 [colin] 2.10.0cvs135
* src/imap.c
Fix previous commit. Sensitivity update is needed
for "Cancel receiving". However when batching we
don't need to do it for every message flag change,
just once at the start and once at the end.
2007-08-19 [colin] 2.10.0cvs134
* src/imap.c
Remove useless menu updates on session lock/unlock
2007-08-19 [colin] 2.10.0cvs133
* src/etpan/imap-thread.c
Make all fetch logs less verbose
2007-08-19 [paul] 2.10.0cvs132
* src/foldersel.c
* src/folderview.c
* src/summaryview.c
fix bug 1286, 'Can't move a folder into a "Folders
Only" folder'
2007-08-18 [ticho] 2.10.0cvs131
* src/editaddress_other_attributes_ldap.c
Converted option menu for other ldap attributes to GtkComboBox.
2007-08-18 [colin] 2.10.0cvs130
* src/compose.c
* src/prefs_common.c
* src/prefs_common.h
* src/prefs_send.c
* src/send_message.c
Revert 'send_dialog_mode' meaning to
'send_dialog_invisible', so that the
new checkbox doesn't change the
existing behaviour.
2007-08-18 [paul] 2.10.0cvs129
* src/summaryview.c
add missing menu update
2007-08-17 [colin] 2.10.0cvs128
* src/folder.c
Set batching after getting flags - maybe fixes
bug 1292, 'CM crashes on writing mail'
2007-08-16 [ticho] 2.10.0cvs127
* src/prefs_send.c
Convert two GtkOptionMenu widgets to new GtkComboBox.
* src/gtk/combobox.h
* src/gtk/gtkutils.c
Allow NULL for GtkComboBox menuitem label, rendering such
items as row separators.
2007-08-16 [paul] 2.10.0cvs126
* src/plugins/trayicon/trayicon.c
remove wrongly used gettextisation
2007-08-15 [ticho] 2.10.0cvs125
* src/importldif.c
Fixed a runtime warning where an attempt to pack an
already packed GtkLabel was made.
2007-08-15 [ticho] 2.10.0cvs124
* src/prefs_compose_writing.c
Convert the insert-or-attach-dragged-files GtkOptionMenu
into GtkComboBox.
2007-08-14 [ticho] 2.10.0cvs123
* src/messageview.c
* src/gtk/gtkutils.c
Changed return receipt account selector to GtkComboBox.
Fixed a runtime warning where GTK tried to parse
"name <email@address" as a Pango markup in an alertpanel label.
2007-08-14 [ticho] 2.10.0cvs122
* src/prefs_logging.c
Changed GtkOptionMenu in logging preferences to GtkComboBox.
2007-08-14 [wwp] 2.10.0cvs121
* tools/Makefile.am
* tools/README
* tools/popfile-link.sh
Added a new tool: POPFile helper, to open
selected messages in POPFile control center,
in order to change the messages' status.
2007-08-14 [ticho] 2.10.0cvs120
* src/compose.c
* src/prefs_common.c
* src/prefs_common.h
* src/prefs_send.c
* src/send_message.c
Change "Show send dialog" optionmenu to a checkbutton.
* src/prefs_receive.c
Migrate "Show receive dialog" GtkOptionMenu to GtkComboBox.
2007-08-13 [wwp] 2.10.0cvs119
* src/addr_compl.c
* src/addressbook.c
* src/addrindex.c
* src/compose.c
* src/filtering.c
* src/folderview.c
* src/inc.c
* src/matcher.c
* src/mh.c
* src/partial_download.c
* src/prefs_gtk.c
* src/procmsg.c
* src/stock_pixmap.c
* src/summaryview.c
* src/common/utils.c
* src/gtk/gtkaspell.c
* src/gtk/menu.c
Make sure we never pass NULL pointers for %s substitutions
(prevent from crashing in Windows).
2007-08-13 [wwp] 2.10.0cvs118
* src/msgcache.c
Re-enable mmap_reads in Windows with some missing
CloseHandle of mapping objects, thanks to
Marcus Brinkmann.
2007-08-13 [paul] 2.10.0cvs117
* src/common/utils.c
fix bug 1287, 'Compile time problem on Solaris
(nexenta gnu/Solaris) utils.c'
Thanks to Piotr Chrzczonowicz
2007-08-12 [wwp] 2.10.0cvs116
* src/plugins/pgpcore/prefs_gpg.c
Don't try to unset a GPG_AGENT_INFO that was not
set (and don't use a NULL string in Windows, it was
crashing with --debug if GPG_AGENT_INFO was not set).
2007-08-12 [wwp] 2.10.0cvs115
* src/privacy.h
Make gcc type-check arguments passed to privacy_set_error().
2007-08-12 [ticho] 2.10.0cvs114
* src/prefs_folder_item.c
Make sure that folder default account combobox always has some
account preselected.
* src/gtk/combobox.c
Handle empty combobox gracefully (warning instead of crash).
2007-08-12 [ticho] 2.10.0cvs114
* src/prefs_folder_item.c
Make sure that folder default account combobox is not empty.
* src/gtk/combobox.c
Handle empty combobox gracefully (warning instead of crash).
2007-08-11 [paul] 2.10.0cvs113
* src/addrgather.c
* src/folderview.c
use 'subfolder' instead of 'sub-folder', matching
everywhere else the term is used
* src/imap_gtk.c
fix engrish
2007-08-10 [wwp] 2.10.0cvs112
* src/msgcache.c
Disable mmap reads in Windows only (at least temporarily), they
prevent from renaming/removing target cache files.
2007-08-10 [paul]
3.0.0-rc2 released
2007-08-10 [wwp] 2.10.0cvs111
* src/msgcache.c
fix unpredictable crashes in Windows due to broken
cache/mark/tags files writting (file were opened for
writing in text mode).
* src/recv.c
use gettimeofday() from w32lib.h on Windows.
2007-08-10 [colin] 2.10.0cvs110
* src/imap.c
* src/etpan/imap-thread.c
* src/etpan/imap-thread.h
Better IMAP scanning (NOOP instead of CLOSE/SELECT)
2007-08-09 [colin] 2.10.0cvs109
* src/editldap.c
Fix port being reset to 636 on SSL
* src/folder.c
Fix folder_item_get_msg_num_by_file
on drafts/queue folders
2007-08-09 [wwp] 2.10.0cvs108
* src/folder.c
Fix tags DB path in Windows (thanks to Colin): '/' is a valid
path divider in Windows, but Glib uses '\' as G_DIR_SEPARATOR.
2007-08-09 [colin] 2.10.0cvs107
* src/folderview.c
* src/summaryview.c
* src/gtk/prefswindow.c
A few Maemo layout fixes
2007-08-09 [paul] 2.10.0cvs106
* src/prefs_account.c
remove the hyphen from plug-ins to
match everywhere else
2007-08-08 [wwp] 2.10.0cvs105
* src/prefs_folder_item.c
Fix an extraneous stealth ^L char.
2007-08-08 [wwp] 2.10.0cvs104
* src/prefs_folder_item.c
Better fix, group variables declarations (USE_ASPELL).
2007-08-08 [wwp] 2.10.0cvs103
* src/prefs_folder_item.c
Fix compilation w/ USE_ASPELL set (broken
by 2.10.0cvs102).
2007-08-08 [ticho] 2.10.0cvs102
* src/prefs_folder_item.c
Migrate two deprecated GtkOptionMenu widgets to GtkComboBox.
2007-08-08 [colin] 2.10.0cvs101
* src/imap.c
* src/etpan/imap-thread.c
* src/etpan/imap-thread.h
Close selected mailbox before doing
status on it.
2007-08-08 [colin] 2.10.0cvs100
* src/html.c
Complete symbol table, thanks to wwp.
Fixes bug 1284, 'The html -> text
converter ignores entities'
* src/msgcache.c
Fix possible fd leak
2007-08-08 [colin] 2.10.0cvs99
* src/imap.c
Better way to fetch UIDs on non-UIDPLUS servers
2007-08-07 [colin] 2.10.0cvs98
* src/imap.c
fix bug 1275, 'auto-saved draft messages not
always being removed'; Also, make multiple
copy (in the same account) faster by matching
source/destination message UIDs.
* src/messageview.c
Don't try to reshow deleted mail
* src/msgcache.c
Fix leak on error path
2007-08-07 [wwp] 2.10.0cvs97
* manual/account.xml
* manual/advanced.xml
* manual/fr/account.xml
* manual/fr/advanced.xml
Updated the reference manual and the French translation to
reflect 2.10.0cvs84: enable running folder Processing
rules on demand.
2007-08-06 [wwp] 2.10.0cvs96
* src/prefs_common.c
* src/prefs_common.h
* src/textview.c
Allow changing the emphasis color used to highlight
the newsreader/x-mailer header value when it matches
our preferred mail agent (hidden pref 'emphasis_col' added
to clawsrc).
2007-08-06 [colin] 2.10.0cvs95
* src/compose.c
* src/compose.h
Re-commit 2.10.0cvs86, with a protection
against Pango bug. Also, try to fix
bug 1275, 'auto-saved draft messages not
always being removed'
2007-08-06 [wwp] 2.10.0cvs94
* src/gtk/quicksearch.c
Replace deprecated GtkCombo with its modern equivalen GtkComboBox.
2007-08-06 [ticho] 2.10.0cvs93
* src/prefs_account.c
* src/gtk/combobox.c
Use GtkComboBox instead of GtkOptionMenu for privacy system
selection in account preferences.
2007-08-06 [wwp] 2.10.0cvs92
* src/plugins/pgpcore/plugin.def
Apply one more chunk from gpg4win's 03-w32-port patch.
2007-08-05 [colin] 2.10.0cvs91
* src/compose.c
* src/compose.h
reverting buggy patch for now
2007-08-05 [colin] 2.10.0cvs90
* src/folder.c
Fix slowdown
2007-08-04 [colin] 2.10.0cvs89
* src/prefs_summaries.c
* src/summary_search.c
Replace deprecated widgets. Patch by
Andrej.
2007-08-04 [colin] 2.10.0cvs88
* src/mh.c
Refresh GUI only every 2000 mails on mh_get_last_num
This is fast (readdir) and done only once per
session/folder
2007-08-03 [colin] 2.10.0cvs87
* src/prefs_account.c
* src/gtk/combobox.h
* src/gtk/gtkutils.c
Fix a deprecated widget. Patch by
Andrej
2007-08-03 [colin] 2.10.0cvs86
* src/compose.c
* src/compose.h
Make colorisation and wrapping algorithms
faster. Fixes bug 1246, 'compose becomes
increasingly slow replying to complex emails'
2007-08-03 [paul] 2.10.0cvs85
* src/mh.c
keep the window painted
2007-08-02 [paul] 2.10.0cvs84
* src/folderview.c
* src/mainwindow.c
* src/mainwindow.h
enable running folder Processing
rules on demand
2007-08-02 [paul] 2.10.0cvs83
* src/textview.c
speed up/clean up rendering of larger
msgs
Thanks to Colin
2007-08-01 [paul] 2.10.0cvs82
* src/mainwindow.h
clean up cruft
* src/toolbar.c
change default toolbar layout on maemo
* src/pixmaps/close.xpm
make the red cross a grey cross
* src/pixmaps/jpilot.xpm
make icon smaller so it fits better
2007-07-31 [paul] 2.10.0cvs81
* src/setup.c
* src/gtk/gtkutils.c
fix crash on maemo on first launch
2007-07-30 [paul] 2.10.0cvs80
* src/prefs_matcher.c
specify the units of age and size
2007-07-30 [paul] 2.10.0cvs79
* src/main.c
Fix IMAP timeout setting
2007-07-30 [colin] 2.10.0cvs78
* src/prefs_account.c
Fix a deprecated widget. Patch by
Andrej
2007-07-27 [paul] 2.10.0cvs77
* src/matcher_parser_parse.y
* src/prefs_filtering_action.c
* src/prefs_matcher.c
these changes forgotten in cvs74's
'watch thread' feature
2007-07-27 [paul] 2.10.0cvs76
* src/compose.c
fix potential crasher
thanks to Colin
2007-07-27 [paul] 2.10.0cvs75
* src/mainwindow.c
* src/manual.c
* src/manual.h
* src/gtk/gtkutils.c
make mainwindow's /Help/Manual point to the
remote copy if the local copy doesn't exist
2007-07-27 [paul] 2.10.0cvs74
* src/Makefile.am
* src/filtering.c
* src/folder.c
* src/mainwindow.c
* src/matcher.c
* src/matcher.h
* src/matcher_parser_parse.y
* src/procmsg.c
* src/procmsg.h
* src/stock_pixmap.c
* src/stock_pixmap.h
* src/summaryview.c
* src/summaryview.h
* src/toolbar.c
* src/toolbar.h
* src/pixmaps/watchthread.xpm
add 'watch thread' feature
2007-07-27 [paul] 2.10.0cvs73
* src/prefs_folder_item.c
adjust labels, add tooltips
2007-07-27 [colin] 2.10.0cvs72
* src/summaryview.c
Maemo: Remove less used menu items
2007-07-26 [colin] 2.10.0cvs71
* src/messageview.c
Maemo: destroy messageview after trashing mail.
Maybe should be done on X11 too
2007-07-26 [colin] 2.10.0cvs70
* src/folderview.c
* src/mainwindow.c
* src/prefs_common.c
* src/prefs_common.h
* src/summaryview.c
Add View/Show or Hide/Column headers
2007-07-26 [colin] 2.10.0cvs69
* src/procmime.c
Fix unwanted output
2007-07-26 [colin] 2.10.0cvs68
* src/ldapserver.c
Fix possible crash on cache invalidation
* src/compose.c
* src/procmime.c
* src/procmime.h
* src/quote_fmt_parse.y
Make replying to mails with big attachments
much faster. Fixes bug 1224, 'The process of
Replying to emails with large attachments
seems unreasonably long...'