-
Notifications
You must be signed in to change notification settings - Fork 1
/
NEWS
3204 lines (2324 loc) · 107 KB
/
NEWS
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
Changes of the Claws Mail GTK2 branch
* 3.12.0
--------
* New plugin: ManageSieve. Manage sieve filters on a server using
the ManageSieve protocol.
* Filtering/Processing: increase range for age matcher condition.
* Filtering/Processing: 'mark_as_spam' now only marks as spam, it
does not do an additional move.
* Compose window: From line gets its own label with mnemonic.
* Compose window: more intuitive right-click behaviour in attachments
list.
* QuickSearch: 'Cc' added to the mixed search: From/To/Cc/Subject/Tag.
* Folder list: Added 'Mark all read recursively' to context menu.
* Support for Mac-cyrillic encoding.
* IMAP: Support for SCRAM-SHA-1 authentication mechanism.
* PGP plugins: Display validity of signatures
* Bogofilter plugin: 3rd spam handling option, 'Only mark as spam'.
* RSSyl plugin: Per-feed support for HTTP basic auth.
* GData plugin: minimum requirement: libgdata 0.17.1
* Several layout improvements to preferences pages.
* Updated user manual.
* Updated man page.
* Updated translations: Brazilian Portuguese, Catalan, Czech, Dutch,
French, German, Hebrew, Hungarian, Norwegian Bokmål, Slovak,
Spanish, Swedish.
...and so much more!
* Bug fixes:
o bug 1769, 'vCalendar timezone glitches'
o bug 1901, 'More descriptive error msgs when attempting to
delete a folder'
o bug 2435, 'Infinite loop+crash when refreshing folders from
dovecot mbox based mailbox'
o bug 2577, 'improve focus rectangle removal in summaryview'
o bug 2601, '"if item changes... never mark as unread" marks
new items as read'
o bug 2965, 'Encrypted mails are stored unencrypted in
'Queue' while sending via IMAP'
o bug 2981, 'claws-mail-3.9.3 compilation warnings'
o bug 3211, 'Fails to build in Debian hurd-i386'
o bug 3321, 'revert "Remove unreachable code"'
o bug 3345, 'Ability to choose other From values via keyboard
has been lost'
o bug 3349, 'Unable to insert a file into a message during
compose.'
o bug 3351, 'Two problems when re-sending a file with an
attachment'
o bug 3354, 'Event cancellation uses incorrect method
parameter for Content-Type header'
o bug 3364, 'segfault in src/prefs_account.c'
o bug 3365, 'segfault in src/wizard.c'
o bug 3380, 'Initialize widget before callback handler for
'clicked''
o bug 3389, 'document 'F12' shortcut'
o bug 3407, 'Pressing the "Date" column header to "sort by
date" causes all columns to have a sort arrow.'
o bug 3419, 'Saving/appending messages to an mbox file
violates RFC#4155'
o bug 3421, 'Recipients list doesn't scroll when moving with
arrow keys.'
o bug 3432, 'Google ClientLogin has been deprecated, should
be migrated to OAuth 2.0'
o bug 3438, 'Filter to add address to Addressbook duplicates
address in Name field'
o bug 3466, 'address auto-complete does not work on plasma5'
o Debian bug 771360, CVE 2010-5109
o Debian bug 771737, 'Segfaults when trying to open folder'
o Debian bug 779824, 'claws-mail depends on plugins
libraries'
o Fix LDAP access using TLS protocol
o claws-mail.desktop installation
o Compose window Subject mnemonic
o Archiver plguin: compatibility with libarchive 2.8.x
o Remove draft when cancelling a message written with an
external editor
o Remove superfluous dynamic link against libarchive
o Fix labels referring to 'SSL' instead of 'TLS'
o Allow single-click to select mailboxes in the mailbox order
dialog.
o tbird2claws.py: set encoding to UTF-8.
* 3.11.1
--------
* Use 'gnutls_priority' hidden account preference for POP3 and
STARTTLS connections, in addition to SMTP.
* RSSyl plugin: Enable use of .netrc to store network credentials.
* Remove dependency on intltool.
* Remove appdata.
* Updated translations: Norwegian Bokmål.
* Bug fixes:
o bug 3306, 'HTML tag </b> is not always rendered in error
dialog'
o bug 3308, 'build ignores --localedir'
* 3.11.0
--------
* SSLv3 server connections are now disabled by default, in response
to the POODLE vulnerability, see
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-3566.
* Several PGP/Core plugin improvements
Indicate when a key has been revoked or has expired when displaying
signature status. For example,
"Good signature from %s, but the key has expired."
"Good signature from %s, but the key has been revoked."
When displaying the full information, show the Validity, and the
Owner Trust level. Also indicate expired and revoked keys, and
revoked UIDs.
The "Content-Disposition: attachment" flag in PGP/MIME signed
messages has been removed. It was confusing for cetain MUAs.
* A new version of the RSSyl plugin, completely redesigned and
rewritten. Migration from the previous version is automatic,
it has a new storage format in ~/.claws-mail/RSSyl/ (hierarchical
directories instead of flat file format). It uses the expat
library instead of libxml2 for parsing feed data.
* The results of TAB address completion in the Compose window have
improved ordering.
Order of results:
1. Match beginning of name
2. Match beginning of additional names
3. Match complete email address before @
4. Match beginning of email address
5. Compare relative position of match
6. Compare name alphabetically
7. Compare address alphabetically.
* Due to popular demand, use of the Up key in the message body in the
Compose window stops at the top of the message body and does not
continue up to the header fields. This reverts the behaviour
introduced in version 3.10.0.
* In the Compose window, when navigating with the arrow keys,
selecting, and thus modifying, the Account selector is now
prevented.
* In the Compose window, a mnemonic (s) has been added to the Subject
line.
* The Queue folder is highlighted if there are messages in its sub-
folders and the tree is collapsed.
* When sorting messages by 'thread date', clicking the 'Date' column
header will now toggle between ascending/descending and will not
switch to 'date' sorting.
* A new QuickSearch filter has been added that searches a header's
content only.
H S : messages which contain S in the value of any header.
* A Reply-To field has been added to the main Template configuration.
* The menubar can now be hidden, default hotkey: F12.
* Fancy plugin: A user-controlled stylesheet can now be used.
* Python plugin: Add flag attributes to MessageInfo object.
* Python plugin: Make 'account' property of ComposeWindow read/write.
* Libravatar plugin: a network timeout option has been added.
* appdata has been added for package managers, it must be
specifically enabled, using ./configure --enable-appdata
See http://people.freedesktop.org/~hughsient/appdata/ for further
information.
* The tbird2claws.py script, for converting a Thunderbird mailbox to
a Claws Mail mailbox, now handles sub-directory recursion.
* Updated translations: Brazilian Portuguese, Bulgarian, Dutch,
Esperanto, Finnish, German, Hebrew, Lithuanian, Slovak, Spanish,
and Swedish
* Bug fixes:
o bug 3173, 'quick search ignores trailing blank'
o bug 3211, 'Fails to build in Debian hurd-i386 architecture'
o bug 3212, 'When msgnum matches a sub-folder name, fetch
fails'
o bug 3221, 'IMAP: Claws Mail has issues with Yahoo IMAP
server/folders'
o bug 3235, 'Extraneous double quotes inside base64-encoded
From header confuse 'Reply' action'
o bug 3236, 'sc_html_parse_tag() does not recognize '<br/>'
as line break'
o bug 3246, 'attachment open: "remember this" ignored if
~/.mailcap does not exist'
o bug 3265, 'procmime.c: unbalanced flockfile() /
funlockfile()'
o bug 3300, 'Cannot send/receive mail when SSL 3.0 is not
supported on the server'
o Debian bug 755022, '[claws-mail-spam-report] likely useless
to report to Debian because of the use of http
instead of https'
o Disable SSL3.0 entirely as a Poodle fix.
o fix msg display when utf8_instead_of_locale_for_broken_mail
is turned off and you use a UTF-8 locale
o fix building without gnuTLS support
o Don't differentiate the protocols used when using direct
SSL/TLS versus STARTTLS
o disallow editing any account (even current account) when at
least one compose window is open
o Actually display "(No From)" in messageview's From column
when appropriate.
o When changing focus in folderview, make sure the newly
focused folder is visible first.
o various fixes to flaws reported by Coverity scan
o PGP/Core plugin: Don't automatically re-check signatures
o PGP/Core plugin: fix erroneous 'untrusted' msg based on
validity not trust
o Make INBOX case-insensitive (as RFC states)
o Python plugin: Fix ComposeWindow.get_account_selection
* 3.10.1
--------
* Add an account preference to allow automatically accepting
unknown and changed SSL certificates, if they're valid (that is,
if the root CA is trusted by the distro).
* RFE 3196, 'When changing quicksearch Search Type, set focus to
search input box'
* PGP/Core plugin: Generate 2048 bit RSA keys.
* Major code cleanup.
* Extended claws-mail.desktop with Compose and Receive actions.
* Updated Bulgarian, Brazilian Portuguese, Czech, Dutch, Esperanto,
Finnish, French, German,Hebrew, Hungarian, Indonesian, Lithuanian,
Slovak, Spanish, and Swedish translations.
* Bug fixes:
o bug 2728, 'erroneous switching from one to three column
view'
o bug 2981, 'claws-mail-3.9.3 compilation warnings'
o bug 3170, 'QuickSearch fights with View/Hide read threads
menu option'
o bug 3179, 'Win32: Please add 'gtk-auto-mnemonics = 1' to
GTK+ setting'
o bug 3201, 'Fix memory corruption in sc_html_read_line()'
o Debian bug 730050, 'vcalendar plugin crash'
o Fix GCond use with newer Glib
o Fix the race fix, now preventing the compose window to be
closed.
o Fix "File (null) doesn't exist" error dialog, when
attaching a non-existing file via --attach
o Fix spacing in Folderview if the font is far from the
system font
o RSSyl: When parsing RSS 2.0, ignore <link> tags with a
namespace prefix.
o RSSyl: Check for existence of xmlNode namespace, to prevent
NULL pointer crashes.
* 3.10.0
--------
* Complete SSL certificate chains are now saved, and if built with
Libetpan 1.4.1, the IMAP SSL connection's certificate chain is made
available. Both of these allow correct certificate verification
instead of a bogus 'No certificate issuer found' status.
* Auto-configuration of account email servers, based on SRV records,
is now possible. (GLib >= 2.22 is required.)
* Added a preference to avoid automatically drafting emails that are
to be sent encrypted, (Configuration/Preferences/Compose/Writing).
* Messages saved as Drafts are now saved as New, highlighting the
Drafts folder, in order to draw the attention to unfinished mails
there.
* It is now possible to add a 'Replace signature' button to the
Compose window toolbar.
* Quotation wrapping and undo/redo in the Compose window has been
improved.
* 'Reply to all' now excludes your own address.
* The 'Generate X-Mailer header' option has been renamed 'Add user
agent header' and applies to both X-Mailer and X-Newsreader
headers.
* Added hidden preferences, 'address_search_wildcard' and
'folder_search_wildcard', to choose between matching from start of
the folder name/address or any part of the name. (Activating these
options restores the previous behaviour.)
* Added hidden preference 'enable_avatars' to control the internal
capture/render process, and which allows disabling it by external
plugins for example.
* 'Check for new folders' now only updates the folder list, not
updating the contents of folders. If needed, it can be followed by
'Check for new messages'
* When using Redirect, the redirecting account's address is used in
the SMTP MAIL FROM instead of the original sender's address.
* NEW: Libravatar plugin, which displays avatars from
https://www.libravatar.org/
* Added support for an arbitrary number and sources of 'avatars' and
images for email senders, and migrated Face and X-Face headers.
* Avatars are now included when printing mails.
* The GPG keyring can now be used as the source for address auto-
completion.
* The vCalendar and RSSyl plugins now have an option to disable SSL
certificate verification (and check them by default).
* The ClamAV plugin now pops up an error message only once instead of
repeatedly
* Updated the man page and the manual.
* Updated Brazilian Portuguese, British English, Czech, Dutch,
Finnish, French, Hebrew, Hungarian, Indonesian, Lithuanian, Slovak,
Spanish, and Swedish translations.
* Added Esperanto translation.
* Bug fixes:
o bug 1644, 'race condition between message move and mark as
read after timeout'
o bug 2119, 'Check for new folders on remote mailboxes is
very slow'
o bug 2145, 'Claws becomes unresponsive and gets Killed while
moving messages between imap folders'
o bug 2179, 'Improve quotation wrapping support'
0 bug 2238, 'Incorrect undo/redo operations after paste with
replace from context menu'
o bug 2389, 'GnuPG: invalid/revoked user IDs accepted'
o bug 2398, 'Race when closing compose during drafting'
o bug 2447, 'Compose window crashes if moving a folder that
is being replied to'
o bug 2643, 'claws crash when accessing imap folder'
o bug 2875, 'SMTP session disconnects before recieving'
o bug 2991, 'POP3 sessions duplicated" on race conditions'
o bug 3020, 'Use theme doesn't change some icons until
restart'
o bug 3055, 'Claws segfaults when cancelling a sticky search
after changing folder'
o bug 3038, 'Select a folder incorrectly matches on number in
parentheses'
o bug 3039, 'displaying one specific html email lead in 100%
CPU usage'
o bug 3040, 'Handle revoked GPG private keys'
o bug 3050, 'Claws segfaults when attempting to delete a tag'
o bug 3094, 'OK or Yes to create new directory ?'
o bug 3100, 'Automatic account selection on reply fails if
name is quoted and contains a comma'
o bug 3105, 'vCal plugin via https does not check SSL peer
certificates or host'
o bug 3106, 'rssyl plugin does not verify SSL peer at all'
o bug 3107, 'Height of row in message list does not reflect
font size - three columns, small screen layout'
o bug 3116, 'invalid DTSTART in ics subscription makes claws
crash'
o bug 3117, 'full-day event shown from 01:00 to 01:00 next
day'
o bug 3120, '"Error - File is empty" when redirecting mail
with empty parts'
o bug 3131, 'Crash on reccurent events with no DTSTART'
o bug 3138, 'PGP/Inline crashes on signature check if gpgme
failed to init'
o bug 3139, 'Mainwindow unresponsive due to a busy loop'
o bug 3145, 'Memory corruption in imap_disconnect_all'
o bug 3146, 'Memory corruption when deleting a message from
folder'
o bug 3147, 'verify_folderlist_xml() leaks memory'
o bug 3148, 'Logic error in claws_get_socket_name()'
o bug 3150, 'etpan_certificate_check() leaks memory'
o bug 3155, 'Memory leaks found by Valgrind in
a9065aec26499a0e1294c73b6d9e6f039976521e'
o bug 3169, 'threaded message list performance issue'
o bug 3964, 'headers in wrong order -- file src/common/ssl.c'
o Fix lots of memory leaks
o Fix interference from liboverlay-scrollbar
o Fix some typos
o Fix some layout issues when user has large GTK font
o Fix message search starting from end
o Fix disappearing MIME icon highlight in mails with PGP
signatures
o When autoselecting account for a new message, quoted
recipient names are handled better.
o Python plugin: Also check for _PyGtk_API being a PyCapsule
o MailMBOX plugin: Fix parsing UTC dates
o vCalendar plugin: recognition of quoted parameter values,
which are legal.
o ClamAV plugin: Fix a format string error.
* 3.9.3
-------
* The TAB address completion in the Compose window now matches any
part of the address and not just the beginning.
* When copying or moving a message, the type-ahead search now matches
any part of a folder name and not just the beginning.
* It is now possible to replace the current signature in the Compose
window by using the '/Message/Replace signature' menu item.
* It is now possible to disable the 'Subject is empty' warning
dialogue. See the option 'Warn when Subject is empty' option on the
'/Configuration/Preferences/Mail handling/Sending' page.
* When sending messages, if the hostname cannot be determined,
fallback to 'localhost' rather than 'unknown', as the latter is
rejected by some servers.
* Added better handling of messages from broken mailers, such as
yahoo groups.
* PDF plugin: the minimum required version of poppler is 0.12.0.
* PGP/* plugin: long key IDs are now displayed in the dialogues
instead of short IDs.
* PGP/* plugin: The automatic signature check is now non-blocking.
* Python plugin: can now access accounts, mailboxes, folder
properties
* vCalendar plugin: webcals:// URLs are now treated as https://
* Translation updates: Brazilian Portuguese, Czech, Dutch, French,
German, Hebrew, Slovak, Spanish, and Swedish.
* Support for Maemo has been removed.
* Bug fixes:
o bug 2132, 'Keyboard accelerators for "Clear" and "Edit"
quick search conflict with top menus'
o bug 2210, 'Display name with invalid addresses not quoted
when inserted from address book'
o bug 2794, 'account privacy signing method ignored on reply'
o bug 2923, 'build failure with perl 5.18'
o bug 2940, 'Extended search dialog too small for content in
polish l10n'
o bug 2954, 'Crash in "Save Image As" for HTML message'
o bug 2957, 'Double-free in account preferences'
o bug 2960, 'rfc3156 deviation regarding hash symbols'
o bug 2961, 'Partial retrieval not available with PGP/Inline
encrypted messages'
o bug 2964, 'Lack of escaping of nested double-quotes in To:
header'
o bug 2979, 'claws fails to load (empty) folderlist.xml and
shows account wizard'
o bug 2982, 'variable declaration behind FLOCK conditional'
o bug 2986, 'Down and Delete buttons have same hotkey in
filtering config'
o bug 2989, 'Segfault at startup because of corrupted
folderlist.xml'
o bug 2994, 'translating folder name'
o bug 2995, 'closing extended quick search information panel
triggers window focus bug'
o bug 3002, 'undefined reference to check_file_integrity'
o bug 3004, 'claws picks wrong mime type for attachments'
o bug 3009, '"Rebuild folder tree" causes SIGSEGV if a
directory name isn't valid utf-8'
o bug 3011, 'crash when using %f Action on two or more
uncached (IMAP) messages.'
o bug 3021, 'Icon key_pgp_signed always shows as the default,
never the themed version'
o debian bug 711864, 'claws-mail-vcalendar-plugin: when
creating meeting GTK_IS_COMBO_BOX_TEXT
failed'
o Quote all specials in name as defined on RFC,
see http://tools.ietf.org/html/rfc5322#section-3.2.3
o fix sensitivity and state of 'hide read threads'
o Fancy plugin: disable DNS Prefetching when 'Enable loading
of remote content' is switched off
o Bogofilter plugin: insert X-Bogosity header like the option
says, not X-Claws-Bogosity header
* 3.9.2
-------
* New big icon for compose windows.
* Bug fixes:
o bug 2923 'build failure with perl 5.18'
o Never decode multipart/* or message/* parts, as RFC states
o add missing check for libperl
o fix check for libsoup - it is not obligatory
o Do not try to destroy a NULL session after an unsuccesful
NNTP connect attempt.
o The extraheaderrc format doesn't allow data after the
header colon. Other OSes may insert extra characters
other than \n, so, remove them all.
o fix undoing file insertion.
o fix check for python.
o fix detection of account in --compose and
--compose-from-file where the From value contains a name +
email.
* 3.9.1
-------
All plugins previously packaged as 'Extra Plugins' are now contained
within the Claws Mail package. In addition to that, the following
plugins have been dropped: TrayIcon, Dillo Viewer, and Gtkhtml2
Viewer.
This release contains the following plugins: ACPI Notifier, Address
Keeper, Attachment Remover, Attachment Warner, Bogofilter, BS Filter,
Clam AntiVirus, Fancy HTML Viewer, FetchInfo, gData, GeoLocation,
Mail Archiver, MailMBOX, New Mail, Notification, PDF Viewer, Perl,
PGP/Core, PGP/Inline, PGP/MIME, Python, RSSyl, SMime, Spam Report,
SpamAssassin, TNEF Parse, and vCalendar.
* 3 command-line switches have been added:
--cancel-receiving which cancels the currently running message
retrieval operation
--cancel-sending which cancels the currently running message
sending operation
--debug which toggles debug output.
* '/Message/Cancel sending' has been added to the main menu.
* In the filtering and processing condition configuration for Age,
it is now possible to match based on number of hours.
* The GnuPG signature timestamp is now displayed in the full
signature information
* Support for GnuTLS priority string has been added. This is achieved
via 2 hidden account preferences, gnutls_set_priority and
gnutls_priority. The former turning the option on or off, the
latter containing the required priority string.
* Keep-alive pings are now performed on IMAP and NNTP connections.
* In the Compose window, the focus is now moved to the message body
when focus is in the Subject entry and the Enter key is pressed.
* The Delete key can now be used to remove Colour Label hotkeys.
* PDF Viewer: The printed PDF quality has been improved.
* Fancy HTML viewer: The options dialogue has been completely
reworked, and disabling remote content is now totally strict.
* Python plugin: Added Cc field to messageinfo objects.
* Python plugin: Added examples.
* Python plugin: Added a function to get an arbitrary header from a
MessageInfo object
* Perl plugin: The documentation for insert_perl.pl has been
improved.
* Basic handling of vcard 3.0 has been added to vcard2xml.py.
* A Swedish translation has been added to claws-mail.desktop.
* The man page has been updated.
* Updated translations: Brazilian Portuguese, Czech, Finnish, French,
German, Hebrew, Hungarian, Lithuanian, Slovak, Spanish, Swedish
* Bug fixes:
o bug 1137, 'loading plugins with same profile on different
archs'
o bug 1684, 'view news messages with large attachements
segfaults'
o bug 1963, 'Preferences Templates Information Window Focus
loss'
o bug 2340, 'Create block list'
o bug 2617, 'code cleanup'
o bug 2624, 'dialog "Action Configuration" cannot be closed'
o bug 2702, 'Support splitting subject line for small screen
layout'
o bug 2774, 'Select folder/New Folder dialog - modal problem'
o bug 2785, 'Marking mails for deletion reopens internal
message view'
o bug 2801, 'Filtering Header:Name list is blank/corrupt'
o bug 2826, 'replace deprecated gnutls function'
o bug 2828, 'Use MD5 digest for socket name'
o bug 2832, 'mail to from adress-book splitt names'
o bug 2835, 'add_address() in addr_compl.c should allow a
NULL name'
o bug 2859, 'Newmail plugin doesn't work if Mail folder not
present when it is loaded.'
o bug 2862, 'Segmentation fault when replying to a message
where the "code conversion" fails'
o bug 2863, 'Applying has_attachment quicksearch on IMAP
segfaults'
o bug 2878 'bsfilter / folder.c:1435 Condition identifier
!= NULL failed'
o bug 2879, 'Plain text mails treated as encrypted'
o bug 2882, 'Reverse preference for external content'
o bug 2885, 'SIGSEGV in hooks_marshal at hooks.c:108'
o bug 2890, 'html2ps required...'
o bug 2893, 'ical_yy_scan_bytes has wrong type'
o bug 2903, 'key 'C' mention harcoded in string'
o bug 2909, 'Changing folder quickly can cause wrong email to
be deleted'
o IMAP: Don't set charset on simple searches. Fixes Exchange
2007.
o Disconnect NNTP accounts too when switching offline.
o Fix sensitivity of next-unread toolbar button.
o tools/gif2xface.pl, tools/outlook2claws-mail.pl: Fix
address.
o Add missing \n at end of the return receipt last part's
headers.
o Make LDAP over SSL work on Win32.
o Fix crash on action error.
o Fix trimming of leading spaces in actions.
o tools/vcard2xml.py: Fix missing file encoding info.
o fix sensitivity of 'Use both dictionaries' in compose
window.
o Fix actions with spaces (and quotes).
o tools/vcard2xml.py: Lines split over more than one line
breaks parser; Get email addres correct. Not only
email;internet.
o Escape filename/description text of MIME parts, prevents
error if, e.g., the filename contains an ampersand.
o Fix 'edit accounts' windows going behind when leaving an
'account preferences' window, by re-focusing this window.
o Fix crash closing PDF information alert panel.
o Fix default fonts on Windows.
o Fix ugly icon in XFCE's alt-tab window.
o Fix untranslated description in archiver plugin
o fix crasher when using /Edit/Search folder on start-up with
nothing selected.
* 3.9.0
-------
* Added IMAP server side search
* Added the file .claws-mail/extraheaderrc which holds editable extra
headers to be added to compose window combobox
* Added 'Select html part of multipart messages' to the Folder
Properties
* GnuPG: Consider marginal signature validity as untrusted
* The mimeview shortcuts are now user configurable
* Spell checker: Always show 'change dictionary' menu
* Filtering dialogue: TreeView type-ahead is now case insensitive
* Separated 'Mark all read' from 'Mark as read' and 'Ignore thread'
* Made 'Mark all read' confirmation button more clear
* Made the clickable area of the expander arrows in the folder list
larger
* Made SSL client certificate error messages more meaningful
* The type of units required in the Extended Search information
dialogue are now indicated
* Several speed-ups and optimisations
* Updated manual
* Updated translations: Brazilian Portuguese, Finnish, French, German,
Hungarian, Spanish, Swedish, traditional Chinese, Ukrainian
* Bug fixes:
o bug 1137, 'loading plugins with same profile on different
archs'
o bug 1961, 'patches for a couple of clang warnings'
o bug 1975, 'preference mutt key bindings do not take effect'
o bug 2096, 'MEMORY-ERROR w/ Claws-Mail/IMAP and Lotus
Domino'
o bug 2203, 'Problems in forwarding multipart/alternative
messages with HTML part'
o bug 2390, 'Non-fully-trusted-key-warning appears based on
primary UID rather than recipient e-mail'
o bug 2579, 'Installed headers redefine autotools-specific
constants'
o bug 2596, 'Spell checker does not work properly'
o bug 2638, 'Respect $LEX environment variable in autogen.sh'
o bug 2639, 'The MSGBUFSIZE definition collides with a
definition of OpenBSD'
o bug 2650, 'segfault in pgp when gpgme_strerror() returns
a non utf-8 string'
o bug 2689, 'segfault when trying to view info about
pgp/smime sign'
o bug 2697, 'segfault in parse_parameters()'
o bug 2718, 'Failure to check peer hostname when checking
certificate'
o bug 2723, 'Missing encoding in generated html manual'
o bug 2743, 'null pointer crash in procmime strchr'
o bug 2744, 'Quick search throws bad command argument error
since recent change'
o bug 2751, 'g_mutex_new/g_mutex_free removed from GLib 2.32'
o bug 2760, 'display correct libc version in crash dialog
when uclibc is used'
o bug 2761, 'Desktop file does not pass validation'
o bug 2776, 'Make all menu shortcuts work properly in the
message window'
o bug 2777, 'Installing latest cvs116 package 14 Windows
version results in wrong paths in clawsrc'
o Fix some modal windows
o Only show HTML parts by default (if the pref is set so) if
the part disposition-type is inline or unknown, but not
attachment.
o IMAP: Always clear the tags list when fetching a folder, or
Claws will never untag an untagged email.
o Fix double mainwindow presentation that confuses GNOME3
when some plugins fail to load (subsequent Claws windows
got no focus in that case)
o Fix build on Fink/OS X
o Fix build with gnutls 3.1.3
o Fix Windows build
o Fix Windows runtime crash
o Fix socket communication
* 3.8.1
-------
* Replied and Forwarded message status flags are now non-exclusive.
Introduced a new message state (and relevant icon in message list)
where both the Replied and Forwarded flags are set
* 'Send to...' has been added to the context menu of a message's
parts. This causes a new Compose window to open with the selected
mime part attached.
* 'Hide' and 'View Log' buttons have been added to the Send and
Receive dialogues. The former will hide the dialogue, the latter
will open the Network Log dialogue.
* A short symbol has been added the QuickSearch Extended mode: 'ha',
an abbreviated form of 'has_attachment'.
* Basic session statistics are now available, from the Statistics
tab in About dialog and the command-line.
* The display of attached patches, (text/x-patch or text/x-diff), is
now colourised. The colours are controlled by 3 new hidden
preferences: diff_added_color, diff_deleted_color, and
diff_hunk_color.
* Updated translations: Brazilian Portuguese, Czech, German, French, Hungarian,
Indonesian, Lithuanian, Simplified Chinese, Slovak, Spanish, Swedish,
Traditional Chinese.
* Bug fixes:
o bug 1090, 'Standard-folders appear again after rescanning tree'
o bug 1924, 'Messages marked move to Trash appear identical to
messages marked move to $FOLDER'
o bug 2598, 'Actions can move locked messages'
o bug 2501, 'opened message blanks when moved to other folder'
o bug 2574, 'Statement might be overflowing a buffer in strncat'
o bug 2577, 'Focus rectangle on folder list and message
list headings doesn't get properly cleared when switching
heading and horizontally scrolling list (underlines and
vertical lines remain on screen)'
o bug 2582, 'Expanded mimeview drag n drop no longer works'
o bug 2595, 'Change expand behavior for message list / message view'
o bug 2620, 'shift+tab from subject field not working'
o bug 2624, 'dialog "Action Configuration" cannot be closed'
o bug 2646, 'Compile fails with gnutls-3.0.18'
o bug 2659, 'E-mail attachments are handled inconsistently'
o bug 2662, '"ag" quicksearch adds "1" to value'
o Fix bug in search criteria when doing a complete directory
search using '*'
o Fix GTK+2.16 build (w32)
o Fix sensitivity of toolbar's get_btn (retrieve mail from current
account) and of mainwindows's relevant entry when current account
is not able to retrieve (SMTP-only).
o don't do TLS if not requested by user. fixes connecting to servers
which, for example, want SSL 3 only
* 3.8.0
-------
* GnuTLS 2.2 is now a minimum requirement if encrypted connections to
servers are required.
* The list displays have been updated to use newer GTK+ functions,
this means that the expanders look different and the optional dotted
lines have been dropped.
* A hidden option, 'summary_from_show', which controls the display in
the From column of the Message List: 0 (default): show name,
1: show address, 2: show name + address
* The image viewer now uses the EXIF Orientation.
* 'Generate X-Mailer header' has been added as an Account option.
* /View/Message scroll has been added, allowing keyboard shortcuts to
be added and used for message scrolling.
* Home and End keys now function in the Message View.
* /Message/Print has been added to the Compose window.
* Updated manuals
* Update man page
* Updated translations: Brazilian Portuguese, Czech, French,
Hungarian, Indonesian, Russian, Slovak, Spanish, Ukrainian.
* Bug fixes:
o bug 1489, 'Filter action mark_as_read inoperative
following move action
o bug 1563, 'Folder view: show complete threads if they
contain unread messages'
o bug 1870, 'arrow scrolling in filters'
o bug 2116, 'Rip spaces off server names in account
configuration'
o bug 2127, 'SSL cert check uses canonical name instead of
specified name'
o bug 2177, 'addrbook/addrbook-00000?.xml is not deleted
after removing the address book in the GUI'
o bug 2303, 'Next unread message enables message view'
o bug 2310, 'Crash when hitting Ctrl+R to reply to a
particular mail'
o bug 2377, 'Show All Headers - make change persistent
between sessions'
o bug 2402, 'GnuTLS change breaks socket communication'
o bug 2404, 'matcherrc updates upon account renaming'
o bug 2406, 'some part of accountrc not updated upon account
rename'
o bug 2408, 'Some UI elements are not persistent between
sessions'
o bug 2422, 'Toggle Message View w/ V crashes Claws'
o bug 2479, 'LDIF address book import matches tags case
sensitive'
o bug 2481, 'do not scroll "from" dropdown list and sender
address'
o bug 2493, 'Subscription pull down should be alphabetized'
o bug 2502, 'gnutls_transport_set_lowat removed in gnutls
3.0.3'
o bug 2505, 'tagsdb becomes polluted with old folder entries'
o bug 2509, 'manually added headers are lost unless mail is
sent inmediately'
o bug 2520, 'Please remove verbose "No further processing
after rule %s" message.'
o bug 2525, 'Address completion window does not get keyboard
focus'
o bug 2526, 'When reading message in separate window, n and p
keys do not work'
o bug 2529, 'crash in mimeview_start_drag after deleting
message'
o bug 2543, 'filter actions in actionsrc not updated upon
account renaming'
o bug 2560, 'crash when unsubscribing newsgroup and having
active search field'
o Fix focus problem on Gnome shell
o Fix flicker on recursive quicksearch
o Fix huge slowness induced by spellcheck "while typing"
during initial quote rewraps.
o Fix build with GLib 2.31.
o Fix crasher when spellchecking is not enabled
o Fix compose window size saving/restoring
* 3.7.10
--------
* The name of the account is now included within the Network Log
output. (See enhancement request 2184)
* Right-clicking a message in the Message List no longer opens the
message. (See enhancement request 2353)
* Updated manuals.
* Updated translations: Brazilian Portuguese, Czech, French, Hungarian,
Lithuanian, and Slovak.
* Bug fixes:
o bug 1963, 'Preferences Templates Information Window Focus
loss'
o bug 2397, 'Gtkhtml2 viewer ignores message encoding'
o bug 2402, 'can't download message from pop3 server'
o bug 2409, 'Failed to compile under GCC 3.x : option
-Wno-pointer-sign badly set in configure.ac'
o bug 2412, 'Send account mail address in Message-ID wrongly
implemented'
o bug 2414, 'Claws segfaults on startup with notification
plugin enabled'
o bug 2418, 'NNTP authentication is broken'
o bug 2420, 'Invalid markup in icon tooltip text after
signature check'
o bug 2439, 'use bitwise operator for bitmask instead of
logical operator'
o bug 2461, 'popup menu in message list displays 'move to
trash' and 'delete''
o bug 2462, 'Building without GnuTLS support leads to a
failure in wizard.c'
o fix trayicon build with gtk < 2.18.x
o don't minimise/hide warning dialogue on plugin load error
o when using a Compose template, only place the cursor in the
body when the cursor symbol, %cursor (%X), is used
o fix build on Debian Sid.
o fix cursor placement in Forward template
o fix duplicate key accels
o fix NNTP server sending authentication warning as part of
the connection session
* 3.7.9
-------
* Added a hidden option, 'show_inline_attachments'. When this is
de-activated inline attachments referenced by other message parts,
(e.g. attached images referenced in an HTML message part), are
hidden. This is on by default, maintaining previous behaviour.
* Added a hidden option, 'msgview_date_format'. When this option is
activated the Date format in the Message View will have the same
format as in the Message List. The format of the date is also
controlled in the same way, by the option on the Display/Summaries
page of the Preferences. This is off by default, maintaining
previous behaviour.
* Several GUI improvements:
o Reworked Simplify Subject RegExp in the Folder Properties
o The IMAP option 'Move deleted mails to trash and expunge
immediately' has been moved to the Advanced page of the
Account Preferences.
o The option 'Send account mail address in Message-ID' has
been moved to theSend page of the Account Preferences.
o Improvements to the Preferences for the Toolbars.
o Improvements to the initial Set-up Wizard dialogues.
o Improvements to the Templates preferences pages.
o Implemented a nicer scroll when drag and dropping.
o Added a button to get dictionaries on WIndows.
* New translation: Lithuanian.
* Updated translations: Brazilian Portuguese, Czech, Finnish, French,
Slovak, Spanish, Ukranian.
* Bug fixes:
o bug 2039, 'SMTP AUTHENTICATION'
o bug 2050, 'Clawsmail sends return receipt every seconds'
o bug 2148, 'Attachment content-transfer-encoding incorrectly
set when signing emails'
o bug 2165, 'The date not localized in the message view'
o bug 2203, 'Problems in forwarding multipart/alternative
messages with HTML part'
o bug 2237, 'User action makes Claws unresponsive'
o bug 2279, 'crash when clicking 'define' in filter
configuring'
o bug 2299, 'Incorrect handling of quoted printable coma
in headers'
o bug 2315, 'claws-mail 3.7.7 crashes when trying to compose
mail on FreeBSD 9.0 amd64 (GTK+ 2.22.1/GLib
2.26.1)'
o bug 2322, 'GPG Full info: showing subkey ID instead of
primary key fingerprint'
o bug 2325, 'messages remains in folder cache after moving
from MH to IMAP boxes'
o bug 2331, 'Base64 is broken in 3.7.7 and 3.7.8'