-
Notifications
You must be signed in to change notification settings - Fork 8
/
NEWS
1666 lines (1390 loc) · 72.5 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 Sylpheed
* 3.7.0 (stable)
* The message catalogs were updated.
* 3.7.0beta1 (development)
* The function to export the address book to CSV files was added.
* 'Nick Name' column was added to the address book.
* Context menu was added to the search result of the query search dialog.
* When attaching UTF-16 text files, they are automatically converted
into UTF-8 now.
* Show original From on the summary view if the display-name seems to
be an e-mail address.
* The bug that wrong reply target could be selected when the summary was
sorted by the unread flag (#286).
* Win32: the bug that Japanese characters were overlapped on printings
with some font settings was fixed.
* Win32: the bug that empty lines were not properly spaced on printings
with some font settings was fixed.
* 3.6.0 (stable)
* The Japanese manual was updated.
* 3.6.0beta1 (development)
* The feature to use multiple signatures in one account was added.
* The edit group dialog of the address book was improved to allow
multilple selection and display its available list with folder tree.
* The menu 'Tools - Open configuration/attachments folder' was added.
* Printing settings and page setup are now saved.
* The Japanese manual was updated.
* IMAP: SUBSCRIBE command is explicitly issued for a newly created folder
by CREATE.
* Unix: the search location of SSL certificates for OpenBSD was added
(#222).
* Win32: a notice about not removing user data in the installer was
modified.
* 3.5.1 (stable)
* New plug-in APIs to handle compose view were added.
* Autotools scripts were updated.
* Included documents were updated.
* 3.5.0 (stable)
* A fix for ARM architecture was made.
* TLSv1.1 and TLSv1.2 will be enabled for STARTTLS when OpenSSL 1.0.1 or
above is used.
* Some bugfixes and stability improvements were made.
* Win32: more fix for the crash when linked with newer MSVCRT was made.
* Win32: irresponsibe text entries on the first display of the filter
edit dialog were fixed.
* Win32: libpng was updated to 1.4.19.
* Win32: OpenSSL was updated to v0.9.8zh.
* 3.5.0beta3 (development)
* A bug that reorder of filter runes by DnD was not saved was fixed.
* The original file names of attachments are kept when opening them,
and shorter suffixes are added in the case they conflict.
* The crash when displaying HTML messages was fixed (#215).
* The bug that column sizes of the address book were not properly set was
fixed.
* Win32: the bug that maximized state was unset on minimize was fixed.
* Win32: the crash when linked with newer MSVCRT was fixed.
* Win32: dependency on libtiff was removed (GDI+ is used).
* Win32: libjpeg was updated.
* Win32: libpng was updated to 1.4.16.
* Win32: OpenSSL was updated to v0.9.8zg.
* Win32: included SSL certificates were updated.
* 3.5.0beta2 (development)
* Windows / widgets are now adjusted to their optimal sizes by reference
to system DPI value.
* The option to specify startup online mode was added.
* The bug that wrote the first part of data if the message body in the
IMAP4 responses didn't end with CR+LF was fixed (#84).
* The bug that previously selected folder on the file selection dialog
was not remembered with GTK+ 2.24.x was fixed.
* Hebrew translation was added.
* Win32: The bug that 'Minimize to tray icon' didn't work with 3.5.0beta1
was fixed.
* Win32: 'Toggle window on trayicon click' now works.
* Win32: sylpheed.exe executable became DPI-Aware.
* Win32: OpenSSL was updated to 0.9.8zc.
* Win32: included SSL certificates were updated.
* 3.5.0beta1 (development)
* Mbox locking became NFS-safe (#202).
* Configure: silent rules are enabled by default.
* Configure.in was renamed to configure.ac.
* Fade effect was added to the notification window.
* Sylpheed.desktop file was updated.
* Win32: build fix for newer MinGW was made.
* Win32: 32-bit time_t is always used on win32 for backward compatibility.
* Win32: included third-party libraries were updated:
- GTK+ 2.24.23
- GLib 2.38.2
- GDK-Pixbuf 2.30.7
- Pango 1.36.3
- Cairo 1.10.2
- libpng 1.14.13
- GPGME 1.4.3
* Win32: the following issues were fixed because of GTK+ update:
- System Icon issue when ran on Windows 7 (#13, #85)
- Scroll jumping issue on text views when using Japanese IME
- Menus became more native-looking
- File dialogs were improved
* 3.4.2 (stable)
* Remote mailbox: additional fix for Bug #193 was made.
* Win32: OpenSSL was updated to 0.9.8za (security fix for CVE-2014-0224).
* 3.4.1 (stable)
* Fixed Bug #193: Lose mails when mailbox is inaccessible.
* 3.4.0 (stable)
* 3.4.0rc (release candidate)
* SSL wildcard certificate is also validated now (#167).
* The compile error with OpenSSL disabled was fixed.
* 3.4.0beta8 (development)
* Mac OS X support was improved.
* SSL certificate hostname is validated now (#167).
* The Japanese manual was modified so that IE correctly detect its
character encoding.
* The rightmost column of folder view and summary view became easier to
resize.
* Appropriate columns of folder view, summary view, etc. are
auto-expanded by window resize when using GTK+ 2.14 or later.
* The initial setup dialog is now resizabe.
* PGP encrypt-to-self feature was added.
* The display period of notification window became configurable.
* 3.4.0beta7 (development)
* Win32: the tray icon is recreated when explorer.exe crashes now.
* The bug that 'File - Folder - Move folder...' menu didn't work was
fixed.
* The bug that MIME nest level restriction was not working was fixed.
* Many defects discovered by Coverity Scan were fixed:
- FILE handle resource leaks
- memory leaks
- possible buffer overrun
- strict error checks
- correct null pointer checks
* 3.4.0beta6 (development)
* Icon theme feature was added.
* HTML mail is distinguished from other messages with attachments now.
* 'Last 30 days' was added to the quick search menu.
* Attached images are rotated based on Exif orientation tag.
* Config.guess and config.sub included in the tarball were updated to the
latest version.
* 3.4.0beta5 (development)
* Basque translation was added.
* Escaped special characters in HTML links are now properly unescaped
(#120).
* IMAP: parsing of folder names that contain brackets was fixed.
* Config.guess and config.sub included in the tarball were updated.
* The order of templates became stable.
* 3.4.0beta4 (development)
* The feature to save message as plain text was added.
* Printing now prints all texts in messages, not only the first one.
* The HTML parser now supports <blockquote> tag.
* An option to prefer HTML part in multipart/alternative was added
(default: off).
* Compose window is raised when the external editor exits.
* Bugfixes of HTML display were made.
* 3.4.0beta3 (development)
* Rebuilding of folder tree which was broken at 3.4.0beta1 was fixed
(#103).
* The bug that double-quote (") and backslash (\) in
folder/username/password were not escaped and could not be used on IMAP4
was fixed.
* Quotation of forwarded messages is enabled for template now.
* When marking a message as junk and moving it to a junk folder, proper
junk folder is selected instead of default one.
* When applying a template for a new message, current date is inserted
with '%d'.
* 3.4.0beta2 (development)
* New message notification window was added.
* An option to the junk filter setting was added:
'Do not classify message as junk if sender is in the address book'.
* Some non-standard Date header patterns are handled now.
* Win32: start menu shortcuts are translated.
* 3.4.0beta1 (development)
* Safe mode (which does not load plug-ins) was added (--safe-mode).
* The existence of destination folders are checked when creating a filter
rule.
* The recursion level is restricted up to 64 when scanning local mailbox
(prevents infinite loop with symlink. Note: Linux automatically limits
the symlink loop up to 40)
* The labels used in POP3 remote mailbox dialog was modified.
* POP3: do not disconnect immediately but send QUIT command on normal
POP3 errors (prevents deleted messages appear again).
* IMAP: "INBOX" folder became case insensitive as specified in RFC 3501.
* IMAP: server name for cache directory is escaped now
(fixes cache creation when using IPv6 address for server name on Windows).
* Win32: socket timeout setting now works on Windows.
* 3.3.0
* 3.3.0rc (release candidate)
* The Japanese manual was updated.
* The bug that hyperlinks did not respond when 'Show attached files
first on message view' option was set was fixed.
* Some compilation fixes were made.
* Win32: .eml file association was added to installer.
* Win32: mailto and .eml association are automatically set to default
on Windows 7 on installation.
* Win32: included libtiff library was updated to 3.9.7 (security fix).
* 3.3.0beta2 (development)
* The ability of opening external rfc822 format message files (.eml) was
added.
* Sylpheed now accepts mailto: and file: URL without command-line option.
(sylpheed file:///path/to/file.eml)
* The option to specify the position of the attach tool button was added.
* The header labels on the header view now have tooltips.
* A minor memory leak related to tooltips was fixed.
* The long-standing drag-without-button-press bug on IMAP folders (since
3.0) was fixed (#93).
* The sylpheed.desktop file was modified so that desktop shells can
recognize Sylpheed as rfc822 and mailto handler.
* The sylpheed.spec file was fixed so that it builds on x86_64 platform,
and also builds sylpheed-plugins package.
* 3.3.0beta1 (development)
* Attached files are now placed first on the message view.
* Attached files can be opened from the attachment tool menu.
* The attachment tool menu was moved to the left of the header view.
* The option 'Toggle attachment list view with tab' and 'Show attached
files first on message view' were added at 'Common preferences -
Display - Attachment'.
* 'Export only selected messages' option was added to the message export
dialog.
* The import/export of messages became cancellable.
* config.rpath and install-sh script in the tarball were updated.
* IMAP FETCH command response parser was fixed.
* 3.2.0 (stable)
* 3.2.0rc (release candidate)
* The Japanese manual was updated.
* The "show_attach_tab" option (without UI), which reverts the attachments
interface to the old one, was added.
* The clip icon was replaced with more visible one on selected row.
* The compilation failure with --disable-ipv6 was fixed.
* Some compiler warnings were removed.
* The bug that 'Stop' button did't become inactive after receiving was
fixed.
* Win32: the default junk commands were changed to sylfilter.
* Win32: included libpng library was updated to 1.2.49 (security fix).
* Win32: included libtiff library was updated to 3.9.6 with CVE-2012-1173
patch (security fix).
* Win32: OpenSSL was updated to 0.9.8x (security fix).
* 3.2.0beta9 (development)
* The Attachments tab was replaced with a toggle button to save the
vertical space, and attachment tool menu was also added.
* Other minor fixes and UI improvements were made.
* Win32: the file selector now follows Windows shortcut (.lnk).
* 3.2.0beta8 (development)
* Address autocomplete drop-down list was fixed (#52).
* Line-space for auto-wrapped lines now reflects the line-space setting
(#64).
* The encoding of Japanese manual was changed to UTF-8 to prevent display
failure on some browsers.
* DNS lookup error is now distinguished from other connection errors.
* Some minor fixes for IMAP were made.
* Other minor fixes were made.
* Win32: an option to play sound when new messages arrive was added.
* Win32: the launch of Windows installer became faster.
* 3.2.0beta7 (development)
New features
* The context menu of the folder view and the summary view can be popped
up using Menu key or Shift+F10.
* The details of new message counts are displayed on the tooltip of the
tray icon.
* Win32: SylFilter is now also included in the installer (since 3.2beta6).
Improvements
* Corrupted message caches of news and IMAP are automatically discarded
now.
* Address auto-completion now also matches to the subsequent part of the
name of contacts.
* On file selection dialog, the last selected folders are preserved
between sessions now.
Bugfixes
* The check of IMAP AUTHENTICATE response was fixed.
* The compilation failure with GLib 2.32 or later was fixed.
* The bug that a MIME part that didn't have its name could not be saved
was fixed.
* Win32: the bug that the installation process continued even if uninstall
was cancelled on update was fixed.
* 3.2.0beta6 (development)
* The blinking period of the tray icon was extended to 10 seconds.
* New plug-in signals were added.
* 'Is shorter than' became the default for 'Age' filter condition.
* News (NNTP) now supports SOCKS proxy.
* A bug that filter settings were lost if Escape key was pressed
quickly on auto filter creation was fixed.
* Other bugfixes were made.
* Win32: OpenSSL was updated to 0.9.8t (security fix).
* Win32: included libpng library was updated to 1.2.47 (security fix).
* Win32: included curl executable was updated to 7.24.0.
* 3.2.0beta5 (development)
* The POP3 remote mailbox now supports SOCKS proxy.
* The POP3 remote mailbox now retrieves headers from the newer messages
(useful for slow connection).
* The POP3 remote mailbox can now reload message headers after the loading
is stopped.
* The previous change of the message view (always show the message view
on startup) was reverted except for vertical view mode.
* The crash bug that occurred when IMAP message fetching and new message
checking happened at the same time was fixed.
* 3.2.0beta4 (development)
* Multiple keywords search of the quick search was implemented.
* Sylfilter command was added as a preset of junk filter program.
* MIME debug output was modified.
* On browsing IMAP folder, the error "imap_cmd_gen_send: cannot send
command because another command is already running." was fixed.
* The focus on quick search entry is not stolen by the refresh of summary.
* Both filtered and original numbers of messages are displayed on the
status label now.
* Always show the message view on startup (fixes wrong view size on
vertical-view mode).
* 3.2.0beta3 (development)
* The translation was updated.
* The Japanese manual was updated.
* Win32: included GTK+ MS-Windows theme engine (libwimp.dll) was updated
to fix potential DLL loading vulnerability. Other parts of
GTK+ (2.10.14) are not affected.
* Win32: included libpng library was updated to 1.2.46 (security fix).
* 3.2.0beta2 (development)
* The performance of reading cache files was improved by using memory
mapped file (requires GTK+ >= 2.8).
* 'Account Preferences - Advanced - Put deleted messages in' account
setting actually works now.
* Style colors are used for attachment label widgets now.
* The text color of quick search on dark themes was fixed.
* The HTML parser was modified.
* 3.2.0beta1 (development)
New features
* Each attachments on the message view now have graphical label and
popup menu.
* Win32: IPv6 support on Windows XP or later was enabled again.
(This time, it will also work on Windows 2000 (IPv4 only support))
Improvements
* Number of maximum characters per line of configuration files was
increased.
* Compose window will not be closed if saving of message to outbox
failed.
* Sender's e-mail address became not guessable from generated Message-Id.
* New plug-in APIs were added.
Bugfixes
* The crash bug that was caused by offline switch while IMAP session was
active was fixed.
* Queue control headers are removed when moving messages from queue
folders to trash.
* Duplicated keyboard accelerators on some dialogs were fixed.
* Fixed a memory leak.
Other changes
* Many alloca() calls were removed.
* Win32: the updater executables were not included in the zip version
anymore to prevent incorrect update.
* 3.1.1 (stable)
* The column width of the address book will be saved now.
* The keyboard shortcut of 'File/Send' menu of compose window was changed
to prevent accidental sending.
* The bug that caused occasional crash when summary was updated while
receiving messages was fixed.
* The compilation problem on some environment was fixed.
* Some locale problems on Mac OS X was fixed.
* The compilation error on newer gcc was fixed.
* Finnish translation was added.
* 3.1.0 (stable)
* Copyright year was updated.
* A compiler warning was removed.
* The return value of procmime API was fixed.
* 3.1.0rc (release candidate)
* Junk-filtered or trashed messages are not counted as new on mail
receiving.
* Show error dialog if junk mail filter command exit with fatal error.
* The long-standing bug in undo/redo was fixed.
* The bug that caused crash if the quick search was executed while folder
tree was empty was fixed.
* 3.1.0beta7 (development)
* 'Reply to this address' was added to the e-mail address context menu.
* The default boolean type of query search and filter condition became AND.
* The matching algorithm of filtering was optimized (time-consuming
conditions will be evaluated later).
* The option not to display the send progress dialog was added.
* Move/copy marks are now preserved on folder refresh when immediate
execution is off.
* Build revision number was added to the about dialog.
* The bug that wrong unread message number was displayed after mail
receiving if 'Open inbox after receiving new mail' was enabled was fixed.
* Win32: The parameter for automatic update URL is properly added now.
* Win32: The wabread.exe executable that was missing on the previous
release was included. The automatic import of Windows Address Book
(WAB) file on initial startup actually works since this release.
* The Japanese manual was updated.
* 3.1.0beta6 (development)
* A new option 'Set only mail address when entering recipient from address
book' was added.
* The menu items 'Add to recipient/Cc/Bcc' were added to the address book.
* On junk mail filtering, appropriate Junk folder for accounts will be
selected.
* When going offline, all current network sessions will be disconnected.
* Low priority will be used for long timeout interval.
* The behavior on opening folders and mark-read timing was modified again.
* The HTML parser was fixed to handle 'a' tag correctly.
* Win32: The text font setting will be checked always on startup
(Japanese locale only).
* The Japanese manual was updated.
* 3.1.0beta5 (development)
* Win32: The crash on update check was fixed.
* The bug that temporary password was not cleared when authentication
failed on SMTP AUTH.
* Plug-in update check will be also disabled if --disable-updatecheck is
specified on configure.
* 3.1.0beta4 (development)
* New features
* SOCKS4/SOCKS5 proxy support was added (per-account option).
* Win32: The automatic import of Windows Address Book (WAB) file on
initial startup was added.
* Win32: Automatic update of program and plug-ins was implemented.
* Improvements
* Messages on POP3 server will be left for 7 days by default.
* New plug-in APIs for sending messages were added.
* The option 'Always mark as read when a message is opened' was added.
This will bring back the previous behavior.
* Win32: The installer now allows users to choose plug-ins to be
installed.
* Win32: The installer now remembers the previous install settings
on update.
* Bugfixes
* The bug that temporary password was not cleared when authentication
failed with remote POP3 mailbox.
* Other changes
* The Japanese manual was updated.
* NSIS installer script files are included in the distribution.
* 3.1.0beta3 (development)
* New features
* Drag and drop of addresses on the address book is supported now.
* New plug-in 'Attachment Tool Plug-in' was added. It enables the
removal of attachments in messages.
* MS Outlook Express mail stores (dbx) can be imported now.
* Win32: MS Outlook Express mail stores can be imported automatically
on first run.
* Improvements
* 'Alias' attribute can be selected on CSV addressbook import.
* When modification of templates are cancelled, confirm dialog will
be displayed now.
* The order of templates can be changed now.
* Virtual folders can be moved now.
* 'Always show messages in summary when selected' was improved, and
it is enabled by default.
- Automatically selected messages will not be marked as read anymore.
- The message view will not be cleared on multiple selection.
* "mark_as_read_on_new_window" setting became a hidden option.
* Redundant menu items are not displayed on the context menu of the
folder view now.
* 'Junk' special folder was added. It will be automatically created
if not exist.
* 'Empty junk' context menu will be displayed on the Junk folder.
* A new account option 'Put signature before quote (not recommended)'
was added.
* A new option 'Change current account on folder open' was added, and
it is enabled by default.
* 'Cancel all' button was added to the POP3 receive dialog.
* The POP3 receive dialog will display only the number and size of
messages in current session, not including previously received ones.
* On 'File - Save as...' dialog, '.eml' extension was added for the
default file name.
* New plug-in APIs for summary view and alert panel were added.
* English Sylpheed FAQ was updated.
* Bugfixes
* The bug that accepted SSL certs were not loaded when using --configdir
option was fixed.
* The IMAP4 response parser was fixed.
* The LDIF parser was modified.
* 3.1.0beta2 (development)
* On POP3 receiving, new messages are displayed on the summary view
immediately. Folder switching is not required anymore.
* The feature to combine partial messages (RFC 2046, message/partial)
was added.
* Users can move up/collapse/expand the folder view using left/right arrow
key now.
* When inline image setting is off, images are not displayed in the
Attachment tab too.
* When a connection to IMAP/News server fails, an error dialog will be
displayed now.
* The menu items 'Mark/Mark' and 'Mark/Unmark' were changed to
'Mark/Set flag' and 'Mark/Unset flag' for understandability.
* The upper limit of auto-check interval was changed to 1000 minutes.
* The new plug-in APIs for user-agent string and the summary view were
added.
* The source files of the English FAQ and manual were added.
* The hidden <account-id> filter condition works now.
* Fixed-positioned windows (such as main window, compose window, etc.)
are always displayed on screen now. This prevents windows displayed
outside of screen between multi and single monitor switching.
* The crash when POP3 session was cancelled while processing received mail
was fixed.
* 3.1.0beta1 (development)
* Full automatic address completion was implemented. Users can also
configure to use the previous behavior (start completion on Tab key).
* The debug log output for filtering was added.
* Update check can also show alternative version as well as internal
version now.
* New plug-in APIs for update check and folder view were added.
* A new option '--instance-id <ID>' was added. This allows users to run
multiple instances of Sylpheed.
* 'Open' menu was added to the attach context menu of the message
composition window. This allows users to open attached files before
sending.
* English Sylpheed FAQ was updated.
* Plug-ins are also loaded from user plug-in directory now.
* Unix: the default web browser command was changed to xdg-open, and
obsolete commands were removed.
* Unix: the crash when using %f on IMAP messages at the action tool was
fixed.
* The crash when clicking tray icon menu 'Get from current account' when
no account exist was fixed.
* The crash on 64-bit architecture with LDAP was fixed (debian BTS #463366).
* Some GTK+ warnings were removed.
* Redundant debug or error messages were removed.
* The bug that MIME flags were not set to imported mbox file and filtered
sent messages was fixed.
* 3.0.2 (stable)
* The random scrolling problem on selecting folders with GTK+ 2.12 or
later was fixed.
* The problem that config files are not updated after creating new
accounts was fixed.
* The problem that folder config file was not updated after changing IMAP
or News account name was fixed.
* Win32: OpenSSL was updated to 0.9.8n (security fix).
* 3.0.1 (stable)
* Several typos in dialogs were fixed.
* The Japanese manual was updated.
* Win32: included libpng library was updated to 1.2.43 (security fix).
* Win32: included libtiff library was updated to 3.9.2 (security fix).
* 3.0.0 (stable)
* The message catalogs were updated.
* The bug that caused freeze when sending or receiving messages with
STARTTLS and 'SSL certificate verify failed' dialog popped up.
* 3.0.0rc (development)
* The Japanese manual was updated.
* The 'Enable address auto-completion' setting was added.
* Curl command timeout was set to 10 seconds.
* The compile error with OpenSSL disabled was fixed.
* Win32: multiple reference to a folder with different letter case is
prohibited when creating a new one.
* Some minor bugs were fixed.
* 3.0.0beta8 (development)
* The new filter match type 'is in addressbook' was added. This can be
used from filtering, query search and quick search.
* The new account setup dialog was implemented. It also supports easy
Gmail setup.
* The address completion was modified.
* The spell-checking and PGP settings are preserved for draft messages now.
* The crash problem when trying to check PGP signatures while GnuPG was
not available was fixed.
* 3.0.0beta7 (development)
* The feature to add new recipients to address book on sending was added.
* Color labels are saved on IMAP server now (partially compatible with
Thunderbird).
* The auto-wrapping setting is preserved for draft messages now.
* The problem that beep sound was out when opening folders which were
sorted in descending order was fixed.
* The new plug-in APIs for compose window were added.
* 3.0.0beta6 (development)
* The bug that IMAP caches get wrongly deleted was fixed.
* The copyright year was updated.
* 3.0.0beta5 (development)
* The feature to customize the color label text was added.
* The option to set only mail address of recipients when replying was
added.
* When messages are added to IMAP folders, received-date information
is also set using Date header (mainly for Gmail).
* The configure option '--disable-updatecheck' which disables the update
check feature was added.
* The configure option '--enable-silent-rules' is enabled if automake is
equal or greater than 1.11.
* A workaround for crash caused by enchant with zemberek was added
(requires dbus-glib-1 if enchant is equal or greater than 1.4.2).
* The bug that caused freeze when remote IPC commands were executed.
* The bug that IMAP caches with UIDs larger than INT_MAX were never
deleted was fixed.
* 3.0.0beta4 (development)
* The folder icons were renewed.
* 'Last 7 days' was added to the quick search options.
* The number of matched messages is displayed at the side of quick search
now.
* Description is displayed on the quick search entry when it does not have
focus.
* Always show warning dialog when SSL certificate is expired.
* The menu item to request disposition notification was added to the
compose window.
* The setup dialog on the first run became user-friendly.
* The update check dialog will not be displayed if modal dialog exists
or receiving of mail is active to prevent dialogs becoming
uncontrollable.
* The button order of folder selection dialog was modified.
* Win32: the button order of close confirmation dialog of compose window
was modified.
* 3.0.0beta3 (development)
* SHA1/MD5 fingerprint and validity period of certificate is now
displayed when verification of server SSL certificate failed.
* Address book is now sortable by each column.
* Address book search feature was added.
* The visibility of message number columns in the folder view is now
configurable for each column.
* The error check of socket connection became more strict.
* Win32: OpenSSL was updated to 0.9.8l.
* 3.0.0beta2 (development)
* Many important bugs related to multi-threading were fixed.
* The unintended drag start on IMAP folders was fixed.
* The libtool version was increased to prevent linking problem.
* Several new APIs were added to the plug-in library.
* Win32: 48x48(32bpp) icon was added.
* 3.0.0beta1 (development)
* Multi-threading was introduced.
(can be disabled by --disable-threads configure option)
* Win32: network connection runs on another thread to prevent blocking
of the user interface.
* Execution of external commands (such as bsfilter) on filtering will
not block the user interface anymore.
* The major part of IMAP protocol communication runs on another thread
to prevent blocking of the user interface.
* The query search is executed on another thread.
* LibSylph is (almost) thread-safe now.
* Summary caches are updated on the fly (on receive/move/copy/delete).
This improves the performance of opening folders with many new messages.
* Progress is displayed while scanning folders.
* The user interface of address book was rewritten using the new API
(GtkTreeView). This will reduce the glitches in the older versions.
* Included Sylpheed FAQ (English) was updated.
* Some bugfixes are made.
* 2.7.1 (stable)
* The feature to import and export .eml files was added.
* Progress is displayed during import and export now.
* The warning about non-exist plug-in directory was removed.
* The comments within Content-Type header are handled now.
* The order of signals emitted at moving messages was modified.
* The sylpheed.spec file was fixed.
* 2.7.0 (stable)
* The plug-in system was implemented (still experimental. See
PLUGIN.txt for detail).
* LibSylph (internal version) is built as shared library now.
* The update check feature was implemented (requires curl command).
* fsync() will be called after writing configuration files.
* 'Send queued messages' is shown instead of 'Mark all read'
in the context menu of the Queue folder.
* The default command line options of spam filters were modified.
* Win32: hard link will be used to improve file I/O performance if
available.
* A crash bug on CSV import of the address book was fixed.
* Several other bugfixes were made.
* 2.6.0 (stable)
* A workaround for raw-JIS filename used for attachments (specifically
Eudora) was made.
* Some build fixes were made.
* 2.6.0rc (development)
* The backups for configuration files are kept for four generations now.
* Only new messages are counted when incorporating from local mbox.
* In the folder selection dialog, only folders which are expanded in the
folder view are expanded now.
* The folders which should not be selected in the folder selection dialog
became unselectable now.
* The bug that the addressbook window was not refreshed when sender of
message was added to the addressbook was fixed.
* The compilation error in GTK+ 2.14.x was fixed.
* 2.6.0beta2 (development)
* The menu was added to the remote POP3 mailbox window.
* The sorting of remote POP3 mailbox was fixed.
* The remote POP3 mailbox button was added to the toolbar.
* The Japanese manual was updated.
* Warnings about --datarootdir on configure was removed.
* 2.6.0beta1 (development)
* The remote POP3 mailbox feature which can view/download/delete messages
on POP3 servers directly was added.
* Enchant (with GtkSpell 2.0.13) was supported.
* When creating filter rule automatically, the target header field is used
as a default filter name now.
* The progress column was added to the progress dialog.
* The parser of IMAP4 was fixed.
* Unix: SIGHUP/SIGINT/SIGTERM/SIGQUIT signals are handled now.
* Win32: system shutdown event is also handled on debug mode now.
* 2.5.0 (stable)
* The sylpheed.desktop file was updated.
* 2.5.0rc2 (development)
* A crash bug was fixed.
* Content-Transfer-Encoding header with comments was supported.
* UTF-8 locale strings with suffix '.utf8' were supported.
* The 8KB restriction of template body size was removed.
* 2.5.0rc (development)
* The sylpheed.desktop file was fixed.
* The compose window now remembers the maximized state.
* The focus will not move from the text view to the summary view with
'Next/Prev' keyboard operation now.
* The alert dialog is displayed now when PGP signing/encryption failed.
* 2.5.0beta3 (development)
* Quoted lines are excluded when notifying missing attachments.
* The option of excluded addresses/domains for recipients confirmation
was added.
* 2.5.0beta2 (development)
* The feature to confirm missing attachments was added.
* The feature to confirm recipients before sending was added.
* To: header is also searched in Sent/Draft/Queue folders.
* 'Edit/Quick search' menu was added.
* Spaces in address and server entries on account preferences dialog
are now automatically removed when applied.
* The address completion was fixed.
* The compilation failure with GTK+ <= 2.8 was fixed.
* Win32: --attach option was fixed.
* 2.5.0beta1 (development)
* The vertical 3-paned view mode was added.
* The feature to save SSL peer certificate was added.
* The option 'Treat HTML only message as attachment' was added.
* The bug that caused busy loop when initial connection was immediately
refused was fixed.
* The bug that the quote description dialog never appeared again after
closing it with the close button was fixed.
* The new/unread status display on quick search filtered mode was fixed.
* The windres command will not be enabled on non-win32 platforms now.
* 2.4.8 (stable)
* The encoding method of MIME headers is now determined by outgoing
encoding rather than the value of MB_CUR_MAX.
* The memory leaks and warnings in LDAP search were fixed.
* The beep on folders with one message when using GTK+ 2.12 was removed.
* Win32: The crash that occurred when trying to display some TIFF files
was fixed.
* Win32: Settings are now automatically saved on the shutdown of system.
* 2.4.7 (stable)
* The bug that 'Set display item of summary...' button in common
preferences always show send folder setting was fixed.
* The all compiler warnings were removed.
* The previous focus is kept when separation of view is changed.
* The status label is automatically resized now when there is not enough
width.
* The bug that virtual folders were not sorted properly was fixed.
* The crash when trying to use ascii-armored PGP encryption was fixed.
* 2.4.6 (stable)
* The 'To' column was added to the summary view.
* In Sent, Draft, and Queue folders, the 'To' column is displayed by
default.
* The display column setting of send folders became independent from
normal folders.
* The ascii-armored PGP encryption was fixed.
* The combined method is used now when both PGP encryption and PGP signing
are specified.
* The PGP passphrase dialog was disabled on filtering and query search.
* The new message notify will be blocked when a new message is read on
receiving.
* 'LIST "" "*"' command is used instead of 'LIST "" "%"' to obtain folder
list from IMAP4 server.
* The bug that noinferior and noselect flags were ignored until rebuilding
folder tree when a new folder was created on IMAP4 server was fixed.
* If attached files become nonexistent on sending, error dialog will be
displayed and the sending will abort.
* 2.4.5 (stable)
* The vulnerability that may be exploited by malicious POP3 server was
fixed (SA26550).
* The potential crash bug in address completion was fixed.
* The signature separator '--' is not joined on line wrapping now.
* Win32: GLib and GTK+ was updated to the latest version.
* Win32: The focus problem when closing dialogs was fixed (GTK+).
* 2.4.4 (stable)
* Reply and forward marks are appended after messages are actually sent.
* The feature to reply to attached message/rfc822 messages was added.
* When a folder is renamed, the path of junk folder is also updated.
* A workaround for the error which occurs with Gmail SMTP server was made.
* Win32: The bug that the name entry of creating or renaming an address
book didn't accept key input was fixed.
* Win32: The bug that the renaming of folders didn't modify filter
actions in some cases was fixed.
* 2.4.3 (stable)
* The quick search entry is cleared when Escape key is pressed on it.
* UTF-8 with BOM is handled correctly when inserting signature.
* A possible crash when adding address from address book was fixed.
* Win32: Sylpheed now can be specified as a default mail program in
Windows Vista.
* Win32: The stall of SMTP session when sending messages via dial-up
connection was fixed.
* Win32: The infinite loop bug which occurred when PID of external editor
was not obtained was fixed.
* Win32: The bug that dialogs which popup on auto-checking becoming
invisible if the main window was minimized was fixed.
* 2.4.2 (stable)
* The recursive download of remote folders were enabled.
* SSL ports in Advanced tab of the account prefs dialog are now
automatically set when SSL is enabled.
* The '--open' command line option which open messages in new window was
added.
* The quick search condition for each folder now persists between sessions.
* The selection now persists when the quick search condition is updated.
* Quoted-printable or base64 encoding is now forced on PGP/MIME signing
instead of stripping trailing spaces (except for the case of ISO-2022-JP
encoding).
* The quoted-pair in From header is now processed correctly when displaying
its name.
* The performance of 'Mark all read' on IMAP folders was improved.
* The bug that the character '+' in address was treated as URI-escaped
space was fixed.
* Unix: the problem that 'Get' and 'Get all' button could not be clicked
after receiving while mouse pointer was over the buttons was fixed.
* 2.4.1 (stable)
* If shift or control key is pressed on address completion, only address
string is inserted now.
* When completing addresses, display name is used rather than nickname.
* Win32: The sylpheed.ini file is read on startup if exist, and
'--ipcport' option was also added.
* Win32: The autocheck timer is disabled while suspending to prevent
network error on resuming.
* Win32: OpenSSL library was replaced with self-compiled DLLs.
* Win32: A bug that the folder path separator was not processed correctly
when creating and renaming search folders was fixed.
* 2.4.0 (stable)
* Invalid APOP timestamp is rejected now (CVE-2007-1558).
* The configuration file is written out after the toolbar is customized.
* Win32: OpenSSL was updated to 0.9.8e.
* 2.4.0rc (development)
* The file copy and move were optimized.
* The crash on the cancellation of POP3/SMTP session was fixed.
* The crash when a person was removed and its e-mail addresses were
referenced by a group in another folder was fixed.
* The Japanese manual was updated.
* Win32: If the initial loading of "MS Gothic" font failed, multi-byte
font name is used now (workaround for JIS2004 MS Gothic font).
* Win32: The crash when fetching messages more than 64KB from IMAP4 server
via FreeCap (a SOCKS wrapper) was fixed.
* 2.4.0beta8 (development)
* In the address book, the import of CSV and Tab-separated text file was
implemented.
* 'Within 1 day' and 'Recent 5 days' was added to the quick search rule.
* The toolbar style switch was added to the toolbar context menu.
* Stop button now cancels all sessions.
* The limitation of the nesting level of MIME structure was relaxed.
* A margin for text was added to the composition window.
* An error dialog is displayed if the execution of junk filter command