-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
4575 lines (4004 loc) · 201 KB
/
CHANGES
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
----------
v7.0.0-git
----------
[jan] Sort public keys in preferences by name.
[jan] Allow to specify a secondary S/MIME certificate for signatures only.
[jan] Find logged replies in other than default sent-mail folders too.
[mjr] Fix SyntaxHighlighter MIME viewer not rendering part after the initial
view of a part (Bug 14337).
[mjr] Display comment attribute in iTip viewer (Request #14407).
[mjr] Update the user/attendee participation status when accepting/importing
an iTip.
[jan] Allow to import multiple PGP keys in a single PGP packet (Request
#13190).
[jan] Add Alt+Home and Alt+End hotkeys to navigate in preview pane
(michael.menge@zdv.uni-tuebingen.de, Request #13983).
[mjr] Add support for sending MDN via the API.
[mjr] Add imap_preauthenticate hook.
[mms] Report multiple spam/innocent messages in a single digest.
[mms] Remove mailbox from polled list when unsubscribing from it.
[mms] Allow remote account passwords to be saved encrypted in user's
preferences (Request #13168).
[mms] Send IMP MUA information to IMAP servers that support the ID extension.
[mms] Send S/MIME encrypted data to multiple recipients in a single outgoing
message.
[mms] Sent-mail maillog entries are now linked to a viewable representation of
the sent message, if it still exists on the server.
[mms] Store message ID of the sent message when saving maillog history.
[mms] Add backend configuration option to use body structure data to more
accurately determine whether a message contains attachments.
[jan] Show warning on S/MIME page if personal certificate has expired.
[mjr] Improve support for vTodo iTip handling.
[mms] Add resent information to message header display.
[mms] Added an option to the mailboxList API call to force inclusion of
unsubscribed mailboxes.
[mms] Asynchronously load the mailbox list on the advanced search page.
[mms] Automatically try to rotate embedded inline images when displaying a
message.
[mms] Add ability to add email groups to the address book.
[mms] Improved contacts loading - all contacts are never shown by default, but
provide simple method for user to load all contacts.
[mms] Add dynamically updating relative time display for messages in dynamic
view.
[mms] Add Purge Deleted button in smartmobile view (Request #13155).
[mms] Improved display of attachments and message log information in dynamic
view.
[mms] IMP no longer uses MDN status stored in the maillog backend by default.
[mms] Add ability to download individual files from within a .tgz attachment.
[mms] Improved display of contents of ZIP attachments.
[mms] Contacts popup now does address search dynamically, without the need to
reload the page.
[mms] Remove 'mailboxarray' hook.
[mms] Remove 'display_folder' hook.
[mms] Auto-detect EAI support on mail backends and provide validation feedback
without the need to submit to the backend.
[mms] Removed basic view.
[mms] Do autocomplete search on browser, if sufficient data exists, to save
calls to contacts backend.
[mms] Removed minimal view.
[mms] Allow auto-completed e-mail groups to be expanded on the dynamic compose
page.
[mms] Add class of message part rendering display errors that aren't shown to
the user by default.
[mms] Throttle message list keypresses in dynamic view to prevent avalanche of
preview requests sent to server (Request #13574).
[mms] Filter out relative image URLs in HTML message data.
[mms] Implement lazy loading for images in HTML messages.
[mms] Add 'dynamic_prefs' hook to allow for changing of default values for
browser-based preferences in dynamic view.
[mms] Removed compose 'use_vfs' configuration option.
[mjr] Add IMP_Api::addFlags().
[mms] Allow multiple independent attachment actions on the dynamic compose
screen.
[mms] Add upload progress bar in dynamic compose screen when adding
attachments.
[mms] Uniquely identify sent-mail mailboxes by identity in main folder tree
(Request #12721).
[mms] Don't send empty text part if a message contains attachments.
[mms] Add button to allow folder tree to be rebuilt in smartmobile view.
[mms] Add option to poll mailbox for new mailbox when creating a mailbox
(Request #13227).
-------
v6.2.22
-------
[jan] Fix retrieving one of multiple public PGP keys (mh <mh@immerda.ch>).
[jan] Fix generating PDF thumbnails with imagick extension 3.3.0+
(arjen+horde@de-korte.org, Bug #14697).
-------
v6.2.21
-------
[jan] Officially support PHP 7.
-------
v6.2.20
-------
[jan] Fix finding reply or forward text from signed or encrypted messages with
HTML content again (Bug #14656).
[mjr] Fix issue with reattaching a file after removing it on Chrome browsers
(Bug #14657),
[jan] Allow Command-C to copy text from HTML message previews (Bug #14653).
-------
v6.2.19
-------
[jan] Fix filename charset of certain attachments (Bug #14618).
[jan] Fix cursor jumping in some browser when editing address fields (Bug
#14606).
[mjr] Fix auto creation of SPECIAL_USER mailboxes (Bug #14620).
[mjr] Fix sending email after the attach_body_check hook fails in Smartmobile
view (Bug #14610).
-------
v6.2.18
-------
[jan] Catch errors when converting email address to IDNA.
[jan] Correctly use preference to save attachments with sent messages in mobile
modes (Bug #14571).
-------
v6.2.17
-------
[jan] Update German translation.
[jan] Update Greek translation.
[mjr] Fix issue when forwarding an email to multiple recipients in Mobile view
(Bug #14060).
[jan] Fix iTip MIME viewer actions if attachment type hasn't been specified.
[mjr] Add option to reload folder tree when fetching via the API.
[jan] Update preview cache after permanently unblocking images from a sender
(Bug #14446).
-------
v6.2.16
-------
[jan] Optimize deleting or moving a large number of messages.
[jan] Fix the 'special_mboxes' backend configuration (Bug #14423).
[mjr] Fix display of application/pkcs-7-mime parts (Bug #14363).
-------
v6.2.15
-------
[jan] Update Portuguese translation.
[jan] Update Basque translation.
[jan] Remove <link rel=""> tags with "Previous" and "Next" from basic message
view (Bug #14400).
[jan] Display translated mailbox names in drop down lists too.
[jan] Consistently display the raw mailbox name in mailbox element titles.
[jan] Unset window opener when opening new windows from HTML messages (João
Machado <geral@jpaulo.eu>).
[mjr] Fix re-adding an attachment after it has been removed from the compose
window (Bug #14329).
-------
v6.2.14
-------
[mjr] Fix renaming subfolders in basic view (Bug #14254).
[mjr] Fix display of mailbox sizes in basic view (Bug #14308).
[mjr] Fix fatal error when deleting messages in basic view when IMAP server
does not support QRESYNC or CONDSTORE (Bug #14257).
-------
v6.2.13
-------
[mjr] Fix opening compose window on IE when uploads are disabled (Bug #14267).
[jan] Update Greek translation (Limperis Antonis <limperis@cti.gr>).
[jan] Fix creating new trash folder from preference screen.
[jan] Fix finding reply or forward text from signed or encrypted messages with
HTML content.
-------
v6.2.12
-------
[jan] Don't strip PGP mime parts when saving sent messages (Bug #14233).
[jan] Fix retrieving public PGP keys with certain HTTP client backends.
[jan] Send MDNs from the correct identity (Bug #14034).
[jan] Fix autocompleter filtering if items exceed the maximum size
(jsveiga@it.eng.br, Bug #13984).
[jan] Use access rules compatible with both Apache 2.2 and 2.4.
[jan] Allow to disable remote accounts by locking the preference.
[jan] Fix setting title with newmail count in IE11 and Edge (Bug #14189).
[jan] Fix wrapping of plain text converted from HTML MIME parts.
-------
v6.2.11
-------
[mjr] Request that the contacts API only consider email fields when detecting
duplicates during automatic saving of attendees to the address book (Bug
#14119).
[jan] Don't show "Create Keys" button if creating PGP keys is disabled
(steffen.hau@rz.uni-mannheim.de, Request #14096).
[mjr] Fix displaying iTips with certain locale/date_format preference
combinations (Bug #14076).
-------
v6.2.10
-------
[mms] Ensure mailbox name is a valid string (Bug #14049).
------
v6.2.9
------
[jan] Don't focus body field when composing message with HTML editor.
[jan] Protect against infinite request loop if expanding all mailboxes.
[jan] Don't show ACL context menu if ACL preferences are locked.
[jan] Fix redirecting in smartmobile mode (Bug #14002).
[jan] Fix address autocompletion in redirection window of smartmobile mode
(Bug #14002).
[jan] Fix setting single recipients in redirection window in basic mode (Bug
#14002).
[jan] Don't switch to regular compose view after an error in the redirection
view in basic mode.
[jan] Fix cancelling redirection window in basic mode (Bug #14002).
------
v6.2.8
------
[mms] SECURITY: Fix XSS vulnerability when manually switching between plaintext
-> HTML compose mode.
[jan] Update Bcc address when switching identities (João Machado
<geral@jpaulo.eu>, Bug #13922).
[jan] Fix protocol name in POP3 example backend configuration.
[mms] Don't honor linked attachment limit configuration options if linked
attachments are disabled (Bug #13665).
------
v6.2.7
------
[jan] Fix regression with not being able to list users (Bug #13808).
[mms] Fix rebuilding the folder tree translations when the language is changed
in a session (Bug #13821).
------
v6.2.6
------
[jan] Fix adding addresses from address book popup (Bug #13806).
[mjr] Fix fatal error when viewing a vTodo with attendees.
[jan] Make dependency on File_ASN1 optional.
[mms] Fix double listing of mailboxes in certain instances when subscriptions
are active and unsubscribed mailboxes are shown.
------
v6.2.5
------
[mms] Fix advanced search (Bug #13773).
[mjr] Fix handling of iTips indicating a change to a series exception (Bug
#13777).
[mms] Fix parsing broken S/MIME messages that don't include the smime-type
content-type parameter (Request #13661).
[mms] Fix regression when working with multiple selected messages with a POP3
server (Bug #13759).
[mms] Only count successful compose mails when determining recipient limits
(Bug #13751).
------
v6.2.4
------
[mms] Don't persist dynamic filter views across page reloads.
[mms] Fix message saving when using a POP3 server.
[jan] Fix JS error when using regexp characters in search string.
[mjr] Ensure we have a valid MIME part to display in thread view (Bug #13653).
------
v6.2.3
------
[mms] Fix handling authentication errors when they take place during an attempt
to determine a mailbox's namespace.
[mms] Fix some folder display issues when not using IMAP subscriptions in
dynamic view (Bug #13553).
[mms] Fix accessing dynamic compose page when file uploads are not available
(Bug #13580).
[mms] Fix saving unique browser preferences for a specific backend in dynamic
view.
[mms] Fix toggling select all checkbox in both dynamic mailbox layouts.
------
v6.2.2
------
[mms] Ensure that search/POP3 mailbox listings are saved even if there is an
issue with the underlying cache backend.
[mms] Fix replying to non-UTF-8 messages when the 'reply_charset' preference
is true.
[jan] Fix vCard MIME viewer.
[jan] Fix MIME viewer form actions in basic view (Bug #12677).
[mms] Don't store/retrieve message history data if the Message-ID is
missing/invalid.
[mms] Fix resuming draft from mailbox page in basic view.
[mms] Fix displaying Virtual Trash mailbox (Bug #13418).
[mms] Fix menu actions on the minimal message page (Bug #13440).
[jan] Fix switching to HTML editor in basic mode if signature display is not
active.
[mms] Fix expiring session cached mailbox data when mailbox information
changes.
[mms] Fix updating viewport immediately after deleting messages on POP3
servers.
------
v6.2.1
------
[mjr] Fix iTip handling when recurrence exceptions are present (Bug #13399).
[mms] Fix displaying Sent mailbox label when multiple sent-mail mailboxes are
defined.
[mms] Fix advanced search in all mailboxes if virtual folders or remote
accounts exist (Bug #13384).
[mms] Fix regression in automatically expanding deeply nested mailboxes in the
dynamic folder list.
[mms] Fix regression where containers could not be moved via drag/drop in
dynamic view.
[mms] Don't perform purge sentmail login task unless at least one sentmail
mailbox exists.
[mms] Don't perform purge Spam login task unless Spam mailbox exists.
[mms] Fix dragging a mailbox to the base level in dynamic view.
[mms] Add ability to drag/drop text to dynamic HTML compose window on Chrome
and IE.
[mms] Re-enable drag/drop of text to dynamic plaintext compose window (Bug
#13281).
------
v6.2.0
------
[mms] Fix some regressions in linked attachments behavior (Bug #13232).
[mjr] Fix fatal error when printing empty HTML attachments (Bug #13322).
---------
v6.2.0RC1
---------
[mms] Fix handling image attachments when added via the HTML editor Image
dialog.
-----------
v6.2.0beta3
-----------
[mms] Fix saving attachments to sent-mail message in smartmobile view (Bug
#13257).
[mms] Remove the 'default_msg_charset' preference.
[mms] Rewritten folder list code for dynamic view.
[mms] Fix saving expanded state when expanding all mailboxes when all mailboxes
are already cached in the browser.
-----------
v6.2.0beta2
-----------
[mms] Allow drag/drop to HTML compose body work with text data (Firefox only).
[mms] Cache mailbox exists results in the current access.
-----------
v6.2.0beta1
-----------
[jan] Add Japanese help file (Hiromi Kimura <hiromi@tac.tsukuba.ac.jp>).
[mms] Add automatic configuration of remote account connection details.
[mms] Support LMTP servers when sending mail.
[mms] Fix regression where creating a mailbox that is currently a container
would not subscribe to that mailbox.
[mms] Add checks to ensure that saved session expiration message was created by
the user rather than an outside source.
[mms] Improved handling for multiple expand/collapse actions in the dynamic
folder list (Bug #13170).
[mms] Provide visual UI info to user that file is uploading when drag/drop
attachments in dynamic view.
------------
v6.2.0alpha1
------------
[mms] Don't set References header in reply message if equal to In-Reply-To
header (RFC 5322 [3.6.4]).
[mms] Add configurable IMAP quota checking interval (Request #12907).
[mms] Honor 'from_link' preference in dynamic view.
[mms] Add support for storing image data within HTML signatures.
[mms] Ensure that viewing large mailboxes does not overload the session
storage size.
[mms] Implement web notifications for new mail alerts.
[mms] Add bare address information to title attribute in viewport on dynamic
mailbox page
[mms] Display flags on the smartmobile mailbox page (Request #12687).
[mms] Support non-ASCII characters in user-defined flag names (Request #12335).
[mms] Potentially save a call to the contacts backend when viewing HTML
messages if no image data is present in the message.
[mms] Improved styling of dynamic mailbox page, to fix issues when resizing the
browser font size (Bug #13071).
[mms] Don't send as multipart/alternative if plaintext part is empty.
[mms] Add smiley data to message when added via the HTML editor (Request
#13051).
[mms] Add mailbox size information retrieval to dynamic view (Request #12965).
[mms] Display unread message count in title via favicon bubbles, if browser
supports.
[mms] Abstracted maillog code.
[mms] Enable configuration of IMAP cache lifetime for Horde_Cache and
Hashtable backends.
[mms] Only refresh quota information when switching to a mailbox the first
time.
[mms] More efficiently store mailbox cache information in the session.
[mms] Load copy/move mailbox selection list on-demand in smartmobile view.
[mms] Cache results of inline image view status.
[mjr] Add IMP_Api::logRecipient.
[mms] Remove the mail_domain preference.
[mjr] Add display of reccurence data to iTip viewer (Request #12919).
[mms] Allow HTML data to be pasted within HTML compose editor paste dialog.
[mms] Filter outgoing HTML compose messages for XSS vulnerabilities.
[mms] Add permission to limit the maximum body size of a composed message.
[mms] Show placeholder image when dropping onto HTML editor while the image is
uploaded to the server.
[mms] Add rate limiting to new mail notification alerts to prevent flooding of
the remote mail server (Request #12705).
[mms] Browser stored preferences are now prefixed by user information.
[mms] Strip PGP armor text when replying to a message.
[mms] Move determination whether to scan plaintext messages for PGP data from
preferences to MIME viewer configuration.
[mms] Add copy email option to the address context menu in dynamic view.
[mms] Better reporting of e-mail address errors when composing.
[mms] Add list information display to dynamic view.
[jan] Add signatures to compose view.
[mms] Add keyboard shortcuts to allow a more granular scroll of the dynamic
preview pane (Request #12750).
[mms] Add country flag graphic to contact image information in dynamic view.
[mms] Address autocompleter on dynamic and basic page now uses a fancy UI.
[mms] Add ability to specify maximum total attachment size in composed message
before all attachments are converted to links.
[mms] Cache generation of print-specific CSS.
[mms] Add support for showing a contact image in the contacts popup box in
dynamic view.
[mms] Add ability to create a new filter rule from context menus in the
dynamic view.
[mms] More intelligent sizing of raw message parts opened in a popup window.
[mms] Load sent-mail mailbox list on demand in dynamic view.
[mms] Allow configurable access to remote accounts from within a session
(Request #8077).
[jan] Display "Other Options" icon instead of "New Window" icon in collapsed
preview headers.
[mms] More advanced auto-completion for smartmobile view.
------
v6.1.8
------
[mms] SECURITY: Fix XSS in displaying user-defined flags in basic mailbox and
message view.
[mms] SECURITY: Fix XSS in displaying user-defined flags in dynamic mailbox
view (João Machado <geral@jpaulo.eu>).
[mms] SECURITY: Fix XSS in displaying mailbox name in dynamic mailbox view
(João Machado <geral@jpaulo.eu>).
[mms] Fix scrolling through large search mailboxes in dynamic view (Bug
#13138).
[mms] Better handling of malformed message dates in mailbox listing (Bug
#13114).
[jan] Update Korean translation (Deokgon Kim <dgkim@dgkim.net>).
------
v6.1.7
------
[mms] Add Save All link to the popup message page in dynamic view.
[jan] Update Danish translation (Erling Preben Hansen <erling@eph.dk>).
[mms] Cleaner handling of broken S/MIME signed messages.
[mms] Fix displaying user-defined message headers when multiple-headers exist
in a single message.
[mjr] Honor recurrence-id range values when deleting recurring events (Bug
#12746).
[mms] Don't provide links to view attachments in compose screen unless the
attachment can be displayed (Bug #12841).
------
v6.1.6
------
[mms] Fix regression where auto-saved drafts were not being deleted when
cancelling compose message in dynamic view.
[mms] Fix regression in parsing permission values (Bug #12812).
[mms] Fix regression in showing non-available actions in dynamic mailbox view
when ACL rules prevent them (Bug #12808).
------
v6.1.5
------
[mms] SECURITY: Fix XSS in message and search screens resulting from a
user-defined flag label (João Machado <geral@jpaulo.eu>).
[mms] Support uploading multiple attachments at once in dynamic view.
[mms] Send linked attachment download notification message in language of the
sending user (Bug #12783).
[mms] Fix populating search fields when editing an advanced search query.
[mms] Trigger auto save draft in dynamic view if attachments have changed.
[mms] Improved UI for dropping attachments on dynamic compose screen.
[mms] Fix manually loading all addresses in a header.
[mms] Fix regression where reloading dynamic view would not load the previously
selected message.
[mms] Fixed regression in enforcing max_recipients and max_timelimit
permissions (Bug #12674).
[mms] Correctly enforce file size attachment limits on the first attachment
(Bug #12663).
[mms] Don't attempt to get quota information from non-IMAP mailboxes (Bug
#12608).
[jan] Don't attach address book behavior if contacts API is unavailable.
[mms] Fix regression where MIME headers were being displayed for PGP decrypted
messages (Bug #12648).
[mms] Improved error handling when creating a new flag in dynamic view.
[mms] Make addresses in smartmobile full message header display clickable to
open a compose window.
[mms] Don't display empty containers in dynamic folder list (Request #11425).
------
v6.1.4
------
[mms] Fix auto-complete of addresses on the dynamic redirect page.
[mms] Fix updating flags in dynamic search view (Bug #12594).
[mms] Use Horde_Smtp to send messages via SMTP.
[mms] Fix applying the 'allow_folders' permission.
[mms] Fix canceling/discarding compose message in basic view (Bug #12555).
[mms] Fix updating message index when deleting a message in basic message view
(Bug #12539).
[mms] 'trailer' hook now has the user's identity and the list of recipients
passed as parameters.
[mms] Add ability to access all reply methods in smartmobile view.
[mms] Smarter sizing of popup windows in dynamic view.
[mms] Correctly save multipart/related data when saving compose message as a
draft.
[mms] When checking for newmail in a mailbox, use the total number of recent
messages seen at any time during the page access (Request #12447).
[mms] Workaround IE8's broken XMLHttpRequest when sending data in dynamic
compose view (Bug #12474).
------
v6.1.3
------
[mms] Workaround Chrome bug preventing drag/drop of attachments in dynamic
compose (Bug #12418).
[mms] Better handle transient mail server connection issues in basic and
minimal views.
[mms] Fix regression of redirect message not working in dynamic view (Bug
#12417).
[jan] Fix link to setup browser for mailto: protocol.
[mms] Fix uploading attachments on Firefox 22+ in dynamic view.
[mms] Fix image upload dialog in the HTML compose editor.
[mms] Fix purging search previews from browser cache when switching mailboxes
(Bug #12384).
[mms] Fix parsing signed & encrypted S/MIME messages sent from Outlook
2007/2010 (Bug #12374).
[mms] Fix updating mailbox list when changing sort direction in search
mailboxes (Bug #12369).
------
v6.1.2
------
[mms] Fix saving S/MIME certificate to addressbook when message is both signed
& encrypted (Bug #12354).
[jan] Fix displaying photos in rendered vCard files.
[jan] Fix detecting capability to list users if called via RPC (Bug #12305).
[mms] Clear cached previews in dynamic view when changing or refreshing a
search mailbox (Bug #12349).
[mms] Fix adding an HTML trailer to a compose message.
[mms] Fix regression preventing ACLs from being added (Bug #12346).
[mms] More fixes for regressions in linked attachment behavior.
------
v6.1.1
------
[mms] Fixes for regressions in linked attachment behavior.
[mms] Catch invalid characters in user-defined flag names (Bug #12335).
[mms] Workaround IE javascript limitations preventing attachments from being
uploaded in dynamic view.
[mms] Remember mailbox list position when viewing messages in smartmobile view.
[mms] Fix handling unsuccessful mailbox import in dynamic view.
[mms] Mailbox imports are now limited to 2500 messages by default.
[mms] Fix adding addresses from the contacts popup in certain situations (Bug
#12312).
[jan] Fix fatal error when importing a PGP key (Bug #12318).
[mms] Fix regressions in navigation arrow links on basic message page.
[mms] Fix regression preventing Virtual Inbox from refreshing once opened in
dynamic view (Bug #12304).
[mms] Don't show option to add senders to safe images list if the current
address cannot be added to the safe list.
[mms] Don't log authentication exception messages from the IMAP library;
authentication failures are already logged by the authentication code.
------
v6.1.0
------
[mms] Fix fatal error when importing a S/MIME key (Bug #12290).
[mms] Fixed segfaults caused by SMTP debugging.
---------
v6.1.0RC1
---------
[mms] Add ability to (un)subscribe to all subfolders in dynamic view.
[mms] When checking for personal addresses when deciding whether to display
images, only check against e-mail field.
[mms] Correctly notify dynamic mailbox view if sent-mail mailboxes are created
in compose page.
[mms] Fix sending group addresses from smartmobile view.
[mms] Add 'horde_auth' option to SMTP configuration in backends.php.
[mms] Add null spam reporting driver.
[mms] Display information to user if incorrect character set data is preventing
a text part from being displayed.
[mms] Fix regression in renaming mailboxes (Bug #12260).
-----------
v6.1.0beta2
-----------
[mms] Directly output image thumbnails via data URIs when possible.
[jan] Fix incorrect dependencies.
-----------
v6.1.0beta1
-----------
[mms] Add ability to create new flag directly from dynamic mailbox screen.
[mms] Implement 'refresh_time' preference in smartmobile view.
[mms] Add taphold message action menu to smartmobile mailbox page.
[mms] Add MongoDB driver for sentmail log storage.
[mms] Add IMAP cache specific purge action to the imap cache query script.
[mms] Add support for using SQL and NoSQL backends for IMAP/POP caching.
[mms] Add thumbnail generation for video attachments.
[mms] Convert Data URLs in a reply message into attachments so that compose
attachment limits can be enforced (Bug #12167).
[mms] Allow attachments to be dragged/dropped from local filesystem on the
dynamic compose page.
[mms] Hide browser generated file input widget for attachment upload in dynamic
compose page.
[mms] Add attachment upload capability to smartmobile compose page.
[mms] Add HTML image/style blocking to smartmobile view.
[mms] Improved autocompleter in smartmobile compose view.
[mms] Add saving compose drafts in smartmobile view.
[mms] Rename 'compose_attach' hook as 'compose_attachment'.
[mms] Honor forward_default preference in smartmobile view.
[mms] Add PGP keylength configuration option (Request #12099).
[mjr] Expose the Maillog via the public API.
[mms] Better handling of flag change attempts when browser cached state
(dynamic/smartmobile view) is different than the server state.
[mms] Move backend configuration parsing/retrieval to IMP_Imap_Config.
[mms] Spam reporting configuration has been moved to the backends file.
[mms] Support showing blocked Data URIs in HTML message data.
[mms] Add the 'mbox_acl' hook.
[mms] Move folder disabling configuration into the permissions system.
[mms] Upgraded IMP permissions to allow permissions to be set per active
backend.
[mms] Allow the active search query to be edited in the smartmobile view.
[mms] Add link to exit out of search view in smartmobile view into the
original mailbox.
[mms] Allow default special mailbox names to be overriden by a backend.
[mms] Move special mailboxes autocreation configuration into backends.php.
[mms] Add SMTP debugging.
[mms] Disable mailbox sorting by default if the remote server does not natively
support it (Bug #12001).
[mms] Add the 'msg_filter' hook.
[mms] Added the 'attach_body_check' hook.
[mms] Add linked attachment information directly to main body text.
[mms] Added argument to the 'trailer' hook to allow HTML trailers to be
generated.
[mms] Attachments can now be configured to be linked only if over a
configurable size threshold.
[mms] Linked attachments are no longer a user-configurable action.
[mms] Spam/innocent reporting on the smartmobile message page now uses a popup
instead of a modal dialog.
[mms] Re-add alerts log to dynamic mailbox view.
[mms] Rewritten/improved linked attachment code.
[mms] Add discard draft option to compose page allowing the user to cancel
composition and permanently delete the original draft (Request #12017).
[mms] Minimal view menu entries are now accessible via numbered accesskeys
(Request #5847).
[mms] Add image upload feature to the HTML editor image plugin.
[mms] Allow drag & drop/pasting of images into the HTML editor.
[mms] All basic view pages are now routed through the basic.php endpoint.
[mms] Save AJAX showMessage call when reloading the dynamic mailbox page with a
message preview active.
[mms] Dynamically display MIME type icon for attachments uploaded on the
dynamic compose page.
[mms] Remove 'compose_cc' and 'compose_bcc' preferences.
[mms] Support attaching vCard in dynamic compose.
[mms] Support attaching PGP public keys in dynamic compose.
[mms] Smartmobile view now uses additive loading instead of pagination on the
mailbox page.
[mms] Remove the 'link_all_attachments' configuration option.
[mms] Support link attachment feature in dynamic view.
[mms] Display Virtual Folders in smartmobile view.
[mms] Abstract all UIDs used for mailbox/message navigation on the browser to
BUIDs (browser UIDs) (Bug #10719).
[mms] Use more efficient murmurhash3 to determine changes in compose message
that will trigger auto saved drafts.
[mms] Initialize viewport and mailbox list in single AJAX call when initially
loading the dynamic mailbox view.
[mms] Add message thread view to dynamic mailbox preview.
[mms] Better UI for changing quicksearch criteria in dynamic mailbox screen.
[mms] Collapse multiple mailbox export options in dynamic mailbox view to
single action.
[mms] Importing a PGP personal key now only requires the private key.
------
v6.0.6
------
[mms] Fix displaying some HTML messages that contain blocked CSS rules (Bug
#12294).
[mms] Catch and ignore errors from contacts backend when determining whether to
show images in a message (Bug #12294).
------
v6.0.5
------
[mms] SECURITY: Fix XSS vulnerability on smartmobile message page (João
Machado <geral@jpaulo.eu>).
[mms] Fix navigating to search page in dynamic view from top menu (Bug #12273).
[mms] Correctly update viewport selected status if mailbox is switched during a
delete action (Bug #12230).
[jan] Fix empty label for spellcheck button.
[mms] Fix signature verification for PGP combined signed & encrypted messages
(Bug #12142).
[mms] Don't display empty mailbox action for mailboxes when Virtual Trash is
active (Bug #12162).
[mms] Fix renaming mailboxes in dynamic view.
[mms] Switching from HTML to text in dynamic compose view must be a synchronous
operation, or else HTML tags may appear in compose window.
[mms] Fix ability to switch to non-default date sorting algorithm in dynamic
view (Bug #12139).
[mms] Fix printing quoted text when viewing a list message.
[mms] Use Horde_Css_Parser package, which is compatible with CSS3 declarations,
instead of the unmaintained Horde_Text_Filter_Csstidy code.
[mms] Fix verifying signed & encrypted PGP messages (Bug #12100).
[mms] Update virtual folder name in folder tree when editing the label (Bug
#12079).
[mms] Fix links to virtual folders on search preferences page.
[mms] Fix edit links for virtual folders in dynamic view (Bug #12072).
[mms] Fix regression in displaying user-defined virtual folders in folder
listings.
[mms] Correctly generate self URLs if a URL parameter is altered by the current
message action (Bug #12058).
[mms] Fix possible issue creating folder tree if multiple special mailboxes
appeared in the same branch (Bug #12050).
------
v6.0.4
------
[mms] Improved detection of charset in text/html message parts.
[mms] Fix displaying dynamic compose screen when sent-mail preferences are
locked (Bug #12009).
[mms] Fix usage of textContent property on IE8 (Bug #12012).
[jan] Update Slovak translation (Jozef Sudolský <jozef.sudolsky@elbia.sk>).
[jan] Fix display of end dates/times of iTip attachments (Bug #11976).
[mms] Fix Reply all/list buttons on basic compose page (Bug #11990).
[mms] Fix deleting virtual folders/filters from preferences page (Bug #11982).
[mms] Fix saving mailbox expansion state in basic folders view (Bug #11979).
[mms] Hide attachment upload UI in dynamic view if file uploads are disabled.
[jan] Fix JavaScript errors with Internet Explorer 8.
[mms] Fix display of mail log icons on the basic message page (Bug #11964).
[jan] Fix stripping attachments in dynamic view (aarno.sandvik@helsinki.fi,
Bug #11959).
[mms] Workaround broken Message-IDs generated by Outlook when replying to a
message (Bug #11953).
[mms] Fix display of attachment name in basic compose screen (Bug #11947).
------
v6.0.3
------
[mms] Re-add apply mail filters action in dynamic view.
[mms] Improved parsing of References header when replying to a message.
[mms] Fix verifying an enveloped signed & encrypted S/MIME message (Bug
#11874).
[mms] Fix converting charset of signature/trailer in compose message if not
sending in UTF-8 (Bug #11898).
[mms] Fix redirection to mailbox page after sending message in minimal view
(Thomas Jarosch <thomas.jarosch@intra2net.com>, Bug #11897).
[mms] Fix duplicate signature being added to compose messages in minimal view
(Thomas Jarosch <thomas.jarosch@intra2net.com>, Bug #11896).
[jan] Update Basque translation (Ibon Igartua <ibon.igartua@ehu.es>).
[mms] Fix loss of HTML body if related conversion is turned off (Thomas Jarosch
<thomas.jarosch@intra2net.com>, Bug #11883).
[mms] Ensure that polled mailboxes in dynamic view continue to show unseen
message count if its child status changes (Bug #11864).
[jan] Include address groups in auto-completion list if address book is below
AJAX lookup threshold.
[jan] Update French translation (Laurent Foucher
<laurent.foucher@iut-tlse3.fr>).
[mms] Correctly remember form state when refreshing basic view compose page
(Bug #11794).
[mms] Fix NOT criteria for custom header searches (Bug #11802).
[mms] Fix saving compose message to draft mailbox when session expires (Bug
#11795).
[mms] Honor 'hide_when_unlimited' option for the quota driver (Thomas Jarosch
<thomas.jarosch@intra2net.com>, Bug #11782).
[mms] Fix toggling other options in dynamic compose screen.
------
v6.0.2
------
[mms] Always add MDNSent flag when saving a draft/sent message.
[mms] Fix preview message text in basic view (Bug #11724).
[mms] Don't delete saved draft on session close.
[mms] Improved generation and parsing of mbox files.
[mms] Fix adding mailboxes with mull delimiters to the IMAP folder tree (Bug
#11672).
[mms] Fix editing/sending templates in dynamic view.
[mms] Allow iCalendar events to be added to the calendar even if they are
missing the required UID parameter (Bug #11669).
[mms] Fix displaying flag changes for messages in search mailboxes in dynamic
view (Bug #11622).
[mms] Save sent-mail when composing in the smartmobile view (Bug #11670).
[mms] Don't try to save sent-mail to a non-existent sent-mail mailbox.
[mms] Fix displaying encrypted message in dynamic preview when correct
passphrase is entered (Bug #11661).
[mms] Purge IMAP cache data when upgrading from IMP 5.
------
v6.0.1
------
[mms] Fix shift-clicking in dynamic mailbox view when navigating to other
mailboxes (Bug #11520).
[mms] Disallow pasting non-text elements into the HTML editor (Bug #11650).
[jan] Update Slovak translation (Jozef Sudolský <jozef.sudolsky@elbia.sk>).
[mms] If persistent IMAP caching is disabled, use an in-memory cache for the
current page load.
[mms] Fix importing personal S/MIME certificate.
[mms] Correctly show ACL entry for current user even if ACL response for
mailbox is empty.
[mms] Correctly remove unseen information from folder tree in dynamic mailbox
view when mailbox is marked as not polled for new mail.
[mms] Fix expanding folder list in dynamic view when opening a mailbox and
folder expansion is not saved in the prefs (Bug #11609).
[mms] Fix displaying HTML signature preference on identities preference page.
[mms] Fix dynamic view loading in IE8 (Bug #11614).
[mms] Optimize permission checking when creating a mailbox if no limit exists
for a user.
[mms] Fix displaying column headers in dynamic mailbox view when accessing a
POP3 server.
[mms] Fix display of innocent button in dynamic mailbox view (Bug #11604).
[mms] Fix displaying move to spam mailbox option in the preferences (Bug
#11603).
[mms] Fixes to PGP Private key generation (Bug #11597).
[mms] Don't block remote message styling if sender is in whitelist.
[mms] Fix spellcheck display in dynamic view if HTML composition mode is the
default (Bug #11592).
------
v6.0.0
------
[mms] Fix regression in adding an attachment in minimal view.
---------
v6.0.0RC2
---------
[jan] Update Polish translation (Krzysztof Kozera <krzysztof113@o2.pl>).
[jan] Update Dutch translation (Arjen de Korte <arjen+horde@de-korte.org>).
[mms] Fix regression causing large amounts of whitespace padding to be added to
compose text in basic view.
[mms] Fix regression in sending messages in basic/minimal mode if no attachment
is added (Bug #11582).
[jan] Fix key navigation in message view of basic mode.
---------
v6.0.0RC1
---------
[mms] Attach as many files as possible instead of aborting on first failed
attachment add.
[mms] Fix determining first/last unseen message in a mailbox (use message date
instead of arrival date).
[jan] Don't show application menus in iTip MIME viewer popups.
[mms] Hide subfolder creation option in dynamic view if IMAP server indicates
that child mailboxes cannot be created.
[mms] Correctly send deleted flag information to browser cache when using
dynamic/smartmobile view (Bug #11362).
[mms] Auto-update folders list in smartmobile view if special mailbox is
auto-created (Request #11482).
[mms] Load folders list on-demand in smartmobile view.
[mms] Fix thread view when mailbox is not thread sorted (Bug #11320).
[mms] Display message range when dragging slider on dynamic mailbox page.
-----------
v6.0.0beta4
-----------
[mms] Add predefined templates to ACL management screen (Request #10648).
[mms] Capture key shortcuts on dynamic mailbox page even if focus is on IFRAME
HTML message data (Bug #11428).
[mms] All IMP templates now use Horde_View.
[mms] Add swipe action buttons to the smartmobile mailbox page.
[mms] Optimize loading of message bodies when using dynamic view.
[mms] Load new mailbox when renaming current mailbox in dynamic view (Request
#11394).
[mms] Add simple address autocompleter to smartmobile compose page.
[mms] Add refresh button to smartmobile folder page.
[jan] Fix popdown positioning in mailbox table header (Bug #11384).
-----------
v6.0.0beta3
-----------
[mms] Allow certain iCalendar events to be configured to automatically update
the local user's calendar (Request #11376).
[mms] Remember message selections when changing mailboxes in dynamic view.
[mms] Add ability to edit list of safe addresses used with the
image_replacement preference.
[mms] Add attachment download links to smartmobile view (Request #11379).
[mms] Indicate deleted messages with strikethrough in smartmobile mailbox
listing (Request #11362).
[mms] Show polled children in smartmobile folder list when parent mailbox is
not polled (Bug #11238).
[mms] More complete handling of linked data in subject header across views
(Bug #11372).
[mms] Add Top link to smartmobile mailbox page.
[mms] Fixes to the iTip Request handler (Bug #11264).
[mms] Fix searching in smartmobile view (Bug #11365).
[mms] Tweak smartmobile mailbox page to use mobile-style list clicking
(Request #11364).
[mms] Fix regression in updating dynamic folder list when deleting parent
mailboxes that contain children (Bug #11296).
[mms] Fix regression preventing compose messages from being sent in the
smartmobile view (Bug #11342).
[jan] Allow to reset flag colors and to specify as HTML colors.
[mjr] The mailboxList API call now returns delimiter and attribute information.