-
Notifications
You must be signed in to change notification settings - Fork 1
/
CHANGELOG.txt
1430 lines (1224 loc) · 63.6 KB
/
CHANGELOG.txt
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
[9.8.0]
[+] Allow for updating passwords for linked email accounts
[*] Security-related improvements for password encryption
[*] Corrected an issue with removing collected contacts from a dropdown list
[*] Corrected an issue that allowed unauthorized users to create email notes
[*] Improved blocking user after multiple failed login attempts
[*] Added logging of IPAllowList access errors
[*] Improved XSS protection in mail viewer
[*] Various fixes and improvements
[9.7.8]
[+] QR code for 2FA is now generated independently from external vendors
[+] Added an option for disabling user in adminpanel
[+] Added Note field for user in adminpanel
[+] Auth tokens are now invalidated when updating account password on login
[*] Fixed issue with saving sent mail for scheduled messages
[*] Fixed issue with logging user into Rocket.Chat
[*] Fixed issue with closing a task
[*] Various fixes and improvements
[9.7.7]
[+] Public links in Files now handle folder renaming
[+] IP-allowlist added to all products
[+] Modules that change mail passwords now support ResetPassword feature
[+] Attendee friendly names are now shown in ICS preview panel
[+] Support for moving contacts to user-created address books
[*] Fixed Sent folder usage within the Scheduled Messages feature
[*] Updated German translation
[*] Updated Russian translation
[*] Fixed systemd-related issue in Debian package
[*] Improved sorting of contacts
[*] Implemented security fixes
[9.7.6]
[+] New refactored contact storage model
[+] Error logs are now available in adminpanel
[+] Time format settings are now correctly applied throughout the interface
[+] Password reset functionality support added to all existing password change modules
[*] Fixed issue with CalDAV/CardDAV links displayed in account settings
[*] Corrected an issue with disabling a Sieve filter
[*] Improved FailedLoginBlock limitations
[*] Fixed issues with messages from Unified Inbox opened in a new window
[*] Fixed issues with S3 file storage
[*] Miscellaneous bugfixes and improvements
[9.7.5]
[+] Week numbers added to Calendar
[*] Email attachments and files visual layout overhaul
[*] SQL query sanitization reworked
[*] Fixed issue with inline images
[*] Fixed issue with non-ASCII filenames within TNEF attachments
[*] Fixed issue with expanding TNEF attachments
[*] Language constants update for appointments
[*] Various fixes and improvements
[9.7.4]
[+] Grouped security-related modules in user settings
[*] Improved rendering of Outlook message
[*] Various fixes and improvements
[9.7.3]
[+] Autoresponder now supports enabling/disabling it by schedule
[+] External system password encryption in password change and signup modules
[*] Fixed various issues with recurring tasks and events
[*] Fixed issue with displaying multiline text in event ICS preview
[*] Fixed issue with importing ICS containing international characters
[*] Fixed issues with deprecated code in Nextcloud integration app
[*] Docker images updated to correct issues with DAV access
[*] Outlook Sync documentation revised (Aurora only)
[*] Various fixes and improvements
[9.7.2]
[+] Added password reset support for password change via POPPASSD
[+] Added multi-line support for Location field in Calendar
[+] Added support for path-style requests in S3 file storage modules
[*] Fixed issue with renaming folders when IgnoreImapSubscription was enabled
[*] Corrected issue with cPanel integration
[*] Various bugfixes and improvements
[9.7.1]
[+] Event appointments can now be added via CalDAV (WebMail Pro / Aurora Corporate)
[+] In Files, selection is now cleared when clicking empty area
[+] Removing logs older than N days is now configurable, RemoveOldLogsDays in config.json file
[+] Added PHP-FPM in Debian/Ubuntu packages in addition to PHP as Apache module
[+] Fastpanel integration
[*] Updated various JavaScript libraries used as dependencies, known vulnerabilities removed
[*] Code refactoring, PhpStan level 2 compliance maintained
[*] Device management in 2FA module rewritten
[*] Fixed various data encryption issues
[*] Corrected issues with accepting invitations from Google Calendar (WebMail Pro / Aurora Corporate)
[*] Fixed issues with displaying larger messages in Notes
[*] Corrected issues with calendar sharing (Aurora Corporate)
[*] Redesigned reminders functionality in shared calendars (Aurora Corporate)
[*] Corrected issue with navigating in Month view of calendar (WebMail Pro / Aurora Corporate)
[*] Fixed issues with recurring tasks length (WebMail Pro / Aurora Corporate)
[*] Fixed DAV browser plugin incompatibility with PHP 8.2
[*] Improved pasting from MS Excel, with borders retained
[*] Corrected an issue with DAV update in cPanel installer (WebMail only)
[*] Corrected various issues with exporting contacts
[*] Grouping contacts improved, contacts from custom address books can now be included
[*] Files status bar redesigned
[*] Quasar 2 and VueJS 3 are now used in admin panel
[*] German translation overhaul
[*] Various fixes and improvements
[9.7.0]
[+] Password reset feature added for cPanel
[+] User signup added for Plesk and DirectAdmin
[+] Emojis support added in Sieve filters
[+] Default reminders for calendar events
[+] Lifetime option added to public links in files storage
[+] RocketChat 5.* full support (Aurora only)
[+] Flexible RocketChat account name mapping
[*] Tenant-level adminpanel interface rewritten
[*] Fixed DAV compatibility issue with PHP 8.2
[*] Fixed expanding attachments in messages opened in separate window/tab
[*] Fixed issue with custom message sorting
[*] Fixed issue with ReCAPTCHA missing on signup page
[*] Fixed issue with DAV access in some configurations
[*] Fixed issue with password encryption for RocketChat (Aurora only)
[*] Debian packages configuration revised for compatibility
[*] Fixed issues with DAV in Debian packages
[*] IframeApp module refactored
[*] Miscellaneous bugfixes
[9.6.1]
[+] Tenant adminpanel rewritten
[+] EnableFailedLoginBlock setting now affects superadmin user as well
[*] Fixed LDAP change password issue with PHP 8.1
[*] Corrected an issue with creating Mail.config.json file
[*] Fixed issue with scrollbar in log viewer
[*] Updated the Chinese-Simplified translation
[*] Updated the Dutch translation
[*] Various bugfixes
[9.6.0]
[+] Storing PGP keys in team contacts
[+] Dark theme
[+] Unsubscribe functionality
[*] EnableFailedLoginBlock option is now turned on by default
[*] cPanel installer updated to support the latest version of cPanel
[*] Various bugfixes
[9.5.2]
[*] Fixed issues with sharing files and address books with Team
[*] Fixed issue with moving files from subfolder to root folder
[*] Fixed multiple issues with document editing by OnlyOffice (Aurora Corporate, Aurora Files)
[*] Fetchers functionality rewritten (MailSuite Pro, Aurora Corporate all-in-one)
[+] Plesk package is now available for Aurora Corporate
[*] Minor bugfixes
[9.5.1]
[*] Fixed the problem of sharing the personal address book (Aurora Corporate, Aurora Files)
[9.5.0]
[+] Sharing address books (Aurora Corporate, Aurora Files)
[+] Multiple address books supported, address book management is enabled by default (WebMail Pro, Aurora Corporate, Aurora Files)
[*] Office document editor and viewer now fully support OnlyOffice v7 with JWT protection enabled
[*] Files under "Shared with me" are now listed fully, regardless of whether they're in root folder
[*] "Use SSL" options are added under "IMAP and SMTP hosts for external mail clients" section of mail server settings
[*] IncludePasswordInProfile setting for iOS profile is now working as expected
[*] DAV compatibility issue with PHP 8 is corrected
[*] DAV stacktrace is now disabled by default for security reasons
[*] Various optimizations made for MySQL queries affecting installations with large number of users
[*] MTA versions refactored, it's now possible to upgrade MTA installation by updating just the web components
[*] Miscellaneous bugfixes
[9.4.1]
[*] Corrected an issue with downloading attachments
[9.4.0]
[+] Sharing encrypted files is now supported
[*] Database indexing refactored to boost performance on installations with large number of users
[*] Improved check for MySQL native driver
[*] Corrected multiple issues in shared calendars affecting reminders and invitations
[*] Translation updates
[*] Various bugfixes
[9.3.3]
[+] cPanel installer for v9 is made available
[*] Fixed issue with database prefix used with au_adav_sharedfiles table
[*] Corrected issue with mails not sent out by MailScheduledMessages module
[9.3.2]
[+] Implemented user groups and sharing files with groups of users
[+] Implemented Team user group, for file sharing purposes, automatically populated with Team contacts
[*] Contacts and users management refactoring
[*] IMAP and SMTP hosts for external mail clients are now used for iOS profile
[*] Mobile layout for Onlyoffice is automatically enabled when viewing attachments from a smartphone browser
[*] Database migration rewritten, UTF8 is now used as a default charset for database access
[*] Corrected multiple issues with handling reminders
[*] Corrected exception handling in MailScheduledMessages module
[*] Fixed issue with selecting folder for filters
[*] Fixed issues with creating and deleting tenants
[*] Fixed various issues with files sharing functionality
[*] Miscellaneous bugfixes
[9.3.1]
[*] Fixed various issues with files and folders sharing
[*] Corrected issues with deleting users, mailservers and email accounts
[*] Dropbox integration issue corrected
[*] GetAuthenticatedAccount method in Core module updated
[*] Fixed encoding-related issues in Create/Update Tables
[*] Corrected PHP 8.* compatibility issues
[*] Translations corrected in IframeApp module
[*] HorizontalLayoutByDefault setting in MailWebclient is now treated correctly
[9.3.0]
[+] File sharing rewritten: permissions system improved, shared files can be moved and renamed, recipient can leave share (Aurora Corporate and Aurora Files only)
[*] Fixed "Over quota" issue when setting user space limit for Files
[*] Quota-related fixes in MTA versions
[*] Miscellaneouse bugfixes
[9.2.0]
[+] Search in multiple folders
[+] Multiple themes support in Chat (Aurora Corporate / Aurora Files only)
[*] Various bugfixes in Mail and Calendar modules
[9.1.1]
[*] Mail login form bugfixes and layout improvements
[*] Fixed password issue in two factor authentication module
[*] Closed XSS vulnerability in Files
[*] Various bugfixes
[9.1.0]
[+] Rocket.Chat integration (Aurora Corporate / Aurora Files only)
[*] Corrected issues with user signup on cPanel
[*] Various bugfixes
[9.0.1]
[+] Web-based migration script from v8
[*] Fixed missing Files settings in admin panel
[*] Default file quotas migrated from v8 are handled correctly
[*] Corrected issue with opening public links
[*] Fixed incompatibility with Aurora Mail mobile app
[9.0.0]
[+] Laravel Eloquent is now used for database layer
[+] Migration script from EAV tables of v8 to v9 database structure
[+] Admin panel redesigned with Vue.js framework
[*] Stronger cryptography for storing passwords in database
[*] Modules included into the product by default reviewed for compatibility
[*] DirectAdmin and Plesk installers updated
[8.8.2]
[*] Fixed various issues in office document editor
[*] Fixed issue with deleting users in MTA edition
[*] Minor bugfixes
[8.8.1]
[+] Document converter and version history implemented for office document editor
[*] Files list view redesigned, with action buttons added
[*] Various bugfixes
[8.8.0]
[+] Office document editor
[+] IP whitelisting added for Recaptcha
[+] EnableFailedLoginBlock records are now deleted after they expire
[+] Added setting for hiding Logout link
[*] Fixed issue with displaying angle brackets in server error messages
[*] Fixed issue with adding contacts outside suggested list
[8.7.0]
[+] Added support of Gmail oAuth authentication
[8.6.2]
[*] Fixed an issue with adding message recipients
[8.6.1]
[*] Fixed an issue with Global Address Book
[*] Fixed an issue with automatic encryption of the messages
[8.6.0]
[+] Unified inbox
[*] Various bugfixes
[8.5.4]
[*] Addressing DAV-related security issue
[8.5.3]
[+] Event invitation mails are now sent by DAV server, regardless of client used
[+] ContentSecurityPolicy feature revised, modules can add their handlers for it
[+] 2FA revised, security keys and backup codes are now supported
[*] Fixed an issue with double quote character in Sieve rules
[*] Fixed an issue when pressing R added that character to the reply
[*] Fixed an issue with displaying inline images with "image/jpg" content type
[*] Fixed an issue with link URL getting replaced upon changing visual style
[*] Fixed group names autocompletion issue
[*] Fixed visual issue with Sieve redirect feature
[*] Fixed an issue with plaintext part of message cut off
[*] Minor bugfixes and improvements
[8.5.2]
[+] Added lang parameter to SSO entry point
[+] Added ability to insert template into HTML editor on compose screen
[*] Data directory protection improved
[*] "Update configuration" now handles main config.json file as well
[*] Dropbox integration updated
[*] Various bugfixes
[8.5.1]
[+] MultipleFilesUploadLimit setting is added
[+] Uploading directory with subdirectories
[+] Improvements related to storing PGP keys in Contacts
[+] Show encryption vector (IV) and AES key in UI
[+] VCF export includes contact groups now
[*] Various bugfixes
[8.5.0]
[+] Added conditional forwarding option for Sieve filters
[+] Secure shared links functionality
[+] Paranoid encryption revised, PGP is used now
[+] Added an option for disabling RTL rendering
[*] Fixed issue with public links for folders
[*] Fixed issue with getting iOS profile in mobile layout
[*] Fixed issue with IMAP and SMTP hosts for external mail clients specified when creating mail server
[*] Various bugfixes
[8.3.20]
[*] Minor bugfixes
[8.3.19]
[*] Minor bugfixes
[8.3.18]
[+] Storing last login info for user account
[+] Added DAV support for login matching username rather than email
[+] X-Originating-IP header name is now configurable
[+] Branding module now allows for enabling custom Iframe
[+] ReCaptcha functionality configuration extended
[+] Users counter added in admin interface
[*] Mail login form issues fixed
[*] PHP 7.3 compatibility issues corrected
[*] User activity logs were not updated on login
[*] External links corrected in mobile version
[8.3.16]
[+] S3 storage is supported for personal and corporate files
[*] Recaptcha enabled in mobile version now
[*] Fixed issue with Recaptcha used in mail login form
[*] Fixed issue with sending mail in mobile version using linked account
[*] Fixed issue with clicking external link in mobile version
[*] Public links to files are now correctly retained upon moving the file
[*] For shared files, owner is now displayed correctly
[*] Various bugfixes
[8.3.15]
[*] French and Spanish translations updated
[*] Mail login form corrected for mobile version
[*] Corrected handling of IMAP quota values exceeding Int32 limit
[*] Fixed issue with collected addresses not suggested in autocompletion
[*] Fixed issue with contacts duplication in global address book
[*] Fixed issue with sharing contacts
[*] Fixed issue with LogStackTrace setting being ignored
[*] Minor bugfixes
[8.3.14]
[*] BUG - Remote Stored XSS in attachment’s name
[*] BUG - Sometimes Reply All adds sender in CC field
[*] BUG - Attachments are not attached on compose
[8.3.10]
[*] Various bugfixes
[+] User activity logs: password change
[*] Closed CVE-2019-16238 vulnerability
[8.3.9]
[+] Password changes are recorded in user activity log
[*] Autocreating accounts fixed for mail login form
[*] LDAP password change plugin updated
[*] Various bugfixes
[8.3.8]
[+] Implemented HTTP Digest Authentication on DAV-server
[*] Various bugfixes
[8.3.7]
[+] Methods of handling contacts and groups rewritten and improved
[+] OnlyUserEmailsInIdentities setting that allows only user emails in identities
[+] AlwaysTryUseImageWhilePasting setting is added
[*] Web API of Core module for admin panel entities management improved
[*] Various bugfixes
[8.3.6]
[*] Message parsing performance is improved (PHP)
[*] Prefetch for messages is improved
[*] Reducing the amount of memory leaks in JS
[+] Security header for all cookies
[+] Delete all users that belong to the mail server to be deleted.
[+] SieveCheckScript setting is added
[*] Minor bugfixes
[8.3.5]
[+] Authorization header adjustments in .htaccess file
[*] Minor bugfixes
[8.3.4]
[+] Procedure of adding an account revised, with minimum of questions asked
[*] Various bugfixes
[*] Minor keyboard shortcuts improvements
[*] IE bugfixes
[8.3.3]
[+] Ability to store AuthToken in database
[+] Mail module authentication form added
[+] Adding custom JS and HTML supported
[*] Update configuration bugfix
[*] Creating new note fixed
[*] Accessing folder via public link fixed
[*] DAV access issue corrected
[8.3.2]
[*] Minor bugfixes
[8.3.1]
[*] Various bugfixes
[8.3.0]
[+] Custom mail sorting option
[+] cPanel filters, autoresponder, forwarding, aliases
[+] cPanel integration - creating and deleting accounts with admin panel
[+] Sand theme inspired by default one of v7
[+] Master password plugin
[*] New Outlook Sync plugin for Aurora Corporate
[*] Contacts autocompletion includes groups
[8.2.19]
[*] Issue with focus on mail search bar corrected
[*] Minor bugfixes
[8.2.18]
[*] Various bugfixes
[8.2.17]
[*] Change password functionality rewritten
[*] Miscellaneous bugfixes and improvements
[8.2.16]
[*] DAV libraries and migration scripts updated
[8.2.15]
[+] OverrideUserSettings module
[+] Sharing Files in Aurora
[+] Horizontal layout in WebMail interface
[+] OpenPGP implemented in mobile version
[*] Various bugfixes
[8.2.11]
[+] ReCaptcha support added
[+] Self-signup added for WebMail/Aurora running on cPanel
[+] Mail import/export plugin is available
[*] Tasks are now sorted by date correctly
[*] Various bugfixes
[8.2.9]
[*] Minor bugfixes
[8.2.8]
[*] Fix for issue with handling Notes folder
[8.2.7]
[*] Two factor authentication and DAV conflict fixed
[8.2.6]
[*] Bug fixes
[8.2.5]
[*] Various bugfixes
[8.2.4]
[+] STARTTLS support added for ManageSieve integration
[+] Templates added for mail
[+] Two factor authentication module is available for installing
[*] "Allow handling email links" option is now available by default
[*] Inclusion of MailSo library rewritten to correct IDN-related issue
[*] Used different obfuscation algorithm to work around detecting sensitive files as malware
[*] Fixed issues with setting cookie when installation accessed via index.php file
[*] Fixed issue with inability to update mail server settings
[*] Major refactoring resulting in performance boost
[*] Miscellaneous bugfixes
[8.2.3]
[*] Fixed authentication issue when accessing calendar or address book via direct DAV URL
[*] View button was missing for MS Office files attached to email messages
[*] Folders in Files module were not sorted alphabetically
[*] In cPanel, user could not log into email account after administrator logged into it
[+] Create/Update tables tool is available in Database Settings screen of admin area
[8.1.4]
[+] Current Beta release.
[8.1.0]
[+] Bugfixes.
[8.0.0]
[+] Beta release on Aurora platform.
[7.7.5]
[+] Added SQLite support (experimental)
[+] New templating feature, assigning folders for storing templates (webmail.allow-template-folders)
[*] Patch for datetime calculations issues in PHP version prior to 5.3.9
[*] Bugfixes.
[7.7.4]
[+] Tenants REST API was updated.
[+] Language autodetection is now available as a configuration option.
[*] Fixed bug with availability of Helpdesk client screen.
[*] Correct processing of multiple IMAP-quota values (webmail.default-imap-quota-name).
[*] Fixed bug with writing "last login" information on first login.
[*] French translation updated.
[*] Bugfixes.
[7.7.3]
[*] Fixed External Services configuration saving bug.
[*] Fixed missing server name in autodiscover.
[7.7.2]
[+] Ability to hide "Logout" link (webmail.hide-logout)
[+] Added login method for cPanel, works for webmail screen and client screen of the Email account list for CPanel
[*] An explanation for Android Client in Settings was added.
[*] Bugfixes.
[7.7.1]
[*] Fix for a bug which prevented webmail from functioning when NOTICES are enabled in PHP.
[7.7.0]
[*] Language is no longer reset after logging into account.
[+] Use of email in shared calendars names is now optional (calendar.add-email-to-shared-calendar-name setting).
[+] Secure attribute is set for p7auth and p7token cookies now.
[+] Session cookies in AdminPanel have HttpOnly attribute now.
[*] Use Specified Login and Use SSL options in Default settings are used now.
[*] Admin password encryption is stronger now. Password reset is required when upgrading.
[*] XML Parser extension missing is now detected by installer correctly.
[*] Ability to delete or upload any file via Files Web API or WebMail installer was removed.
[+] Advanced login option (login.advanced setting).
[+] Ability to send notifications if events were changed (calendar.notification-enabled setting).
[+] Ability to attach files to events in calendar (calendar.attach-file-to-event-enabled setting).
[+] Forwarding messages as attachments.
[*] "View all mails with this contact" in Starred folder searched for all the messages of the selected contact, not just Starred.
[*] Fixed sorting errors in autocompletion.
[*] Standard layout improved on mobile devices.
[+] REST API now allows for managing channels and tenants.
[*] Fixed bug with white screen while opening a message in a new window.
[+] Calendar reminders improved.
[+] Slovak language added.
[*] French translation updated.
[*] Considering IMAP-quotas when creating account.
[*] Image can be a link in Chrome, Firefox and IE 11 now.
[*] Any port can be used as SSL now.
[*] Bugfixes.
[7.6.10]
[+] Links to applications: File Storage applications in Settings/Files and Contacts & Calendars Sync for Android application in Settings/Mobile Sync.
[*] Better sorting in Files.
[*] SabreDAV upgrade - PHP7 compatibility.
[*] Events now display correctly if they have UTF-8 characters in .ICS file.
[*] Focus is now set correctly on Compose screen opening.
[7.6.9]
[*] Optimization and bugfixes
[7.6.8]
[+] Logs older than 1 day are deleted
[+] AJAX API new methods - FileInfo, GetDavServerUrl
[*] Bugfixes
[7.6.7]
[*] Compose screen new look
[*] Bugfixes
[7.6.6]
[+] Global Address Book now available in WebMail Pro
[*] Bugfixes
[7.6.5]
[*] Bugfixes
[7.6.4]
[*] Bugfixes
[*] Mail compose editor peformance boost
[7.6.3]
[+] (API) The ability to integrate other apps in IFRAME within WebMail Pro/Aurora
[+] (API) Upload attachments and files with HTTP PUT method
[+] (API) Master password plugin for making API calls in user accounts without knowing their passwords
[*] Windows Phone support in mobile version
[*] Bugfixes
[7.6.2]
[*] Bugfixes
[7.6.1]
[*] Bugfixes
[*] Folder list optimizations
[7.6.0]
[+] 2-Step Verification (Two Factor Authentication)
[+] Authentication via social networks (Google, Facebook, Twitter)
[+] User invitations via social networks (Aurora only)
[+] Users without e-mail module (Aurora only)
[+] Built-in audio/video player for YouTube, Vimeo, SoundCloud
[*] Google Drive and Dropbox cloud storage redesigned
[*] "Share calendar" screen redesigned (Aurora only)
[+] CC/BCC in HelpDesk replies (Aurora only)
[*] Improved performance in IMAP accounts with lots of folders
[*] API refactored (unified naming convention, etc)
[+] More callbacks for custom plugins
[*] Bugfixes
[7.5.0]
[+] New compose screen, now in popup which can be minimized
[+] New design of tooltips
[+] Default identity setting
[+] POST login API enhanced
[+] REST API for managing domains and users
[+] Option to automatically redirect to HTTPS
[+] Browser caching for improving performance (makes opening in a new window faster)
[+] “Manage folders” screen performance optimization for large number of folders
[+] settings.xml autocreation
[+] “Account password change via LDAP” plugin
[+] In a thread’s top message, all members of all messages in the thread are now listed, not only those specified in the top message itself
[+] VCF/CSV import of contacts with drag-n-drop from your desktop
[+] New calendar sharing interface (Aurora only)
[+] Adding .ics invitations to calendar (Pro only)
[+] Bugfixes
[7.4.2]
[+] AdminPanel: Option to create users without checking on IMAP
[+] AdminPanel: Option to set port for external IMAP/SMTP server names (for iOS profiles) (Pro)
[+] settings.xml: RedirectToHttps option
[+] config.php: X-Frame-Options to prevent clickjacking attacks
[+] Import .eml files in a mail folder with drag-n-drop
[+] Import .ics files in calendar with drag-n-drop or calendar menu (Pro)
[+] Export and import contacts as .vcf file (vCard)
[+] Improved sorting of mail threads
[+] New keyboard shortcuts on compose screen
[+] Folding multiple "Re:" into one in Subject field
[+] Show the reason of failed attachment upload if the reason is "the file is too large"
[+] Mail prefetch consumes less traffic and prefetches more types of emails
[+] Performance improvements for large list of folders
[+] "Attach" icon is now paperclip
[+] Insert picture in Signature
[+] Folder sorting when adding a new folder
[+] Autodetection of user language (from browser settings)
[+] Autodetection of user timezone when displaying public calendar (from browser settings) (Pro)
[+] More accurate resizing
[+] Localizable text of the iOS profile (Pro)
[+] Italian translation update
[+] 100+ bugfixes
[7.4.1]
[+] "New contact" button redesigned
[+] License info added to all source code files
[+] Favicon now shows unread e-mail count
[+] "All" folder added to contacts (Aurora only)
[+] MS Office documents viewer
[+] mailto association tool in Settings
[+] Admin panel allows for disabling webmail tab and selecting default tab
[+] Bugfixes
[7.4.0]
[+] Export contacts to VCF
[+] OpenPGP support (Pro)
[+] Files storage (Pro)
[+] Google Drive and Dropbox integration
[+] New skins
[+] Branding (custom logo) (Pro)
[+] ownCloud Single-Sign-On
[+] Desktop notifications on new message arrival
[+] Show full headers
[+] Copy messages via drag-n-drop (with Ctrl)
[+] Bugfixes
[7.3.0]
[+] Mobile version (Pro)
[*] Advanced search
[+] "Open winmail.dat" plugin
[+] "Open zip attachments" plugin
[+] Show Importance status in message list
[+] PostgreSQL support (experimental)
[7.2.1]
[*] Miscellaneous fixes and improvements
[7.2.0]
[*] New layout of compose.
[*] New layout of message preview pane.
[+] White skin (and skin selector).
[*] Conversion of email addresses in To/CC/BCC to blue tags.
[*] Attachment thumbnails in preview pane (available when PHP has GD extension enabled)
[+] Highlighting links in HTML messages.
[*] Add account on the same server made easier (Pro).
[+] Fold/unfold folders.
[+] Show how many items are selected for move to trash, spam.
[+] Zip all attachments (available when PHP has zip extension enabled).
[+] Replacement of your own email address with "me".
[+] Folded thread highlighting if unread messages exist in thread.
[+] Register webmail as mailto: handler.
[+] Save replied messages to current folder setting.
[+] "Email to this group" feature in Contacts.
[+] Groups in autocomplete.
[*] cPanel installer supports new cPanel.
[+] Search allows for email:addr_1,addr2,addr_n syntax to search for multiple email addresses in headers at once.
[7.1.1.1]
[*] Bug fixes
[7.1.1]
[*] Bug fixes and misc. improvements
[7.1.0]
[*] Aurora release
[*] All-new calendar module
[*] Mail threading
[*] "Starred" folder in Mail
[*] Bug fixes and misc. improvements
[7.0.2]
[*] Right-to-left layout (for Arabic and Hebrew)
[*] New fields for contacts (such as Skype ID)
[*] Bug fixes and misc. improvements
[7.0.1]
[*] POPPASSD support
[*] VCARD support
[*] ICAL support
[*] Integration documentation
[*] API feature to show unread count of INBOX on any page of external app.
[*] Multiple minor issues fixed.
[7.0.0]
[*] Frontend and backend for contacts and mail are rewritten from scratch, calendar currently stays in legacy mode
[*] Support for POP3 accounts is discontinued
[*] New interface skin and template-based layout
[*] Substantial IMAP optimization
[*] Memory consumption significantly reduced, memory limits of PHP should no longer cause issues
[6.6.0]
[*] Multiple minor issues fixed.
[6.5.1]
[*] WebMail is now compatible with PHP 5.2 (calendar and mobile sync will not be available).
[*] Better error handling when server or connection error occurs.
[*] Bug with displaying formatted dates fixed.
[*] System folders now correctly detected in Gmail accounts.
[*] Folder list of deleted account no longer displayed.
[*] Fixed the approach for timezone-related calculations when displaying date and time information.
[*] Multiple minor issues fixed.
[6.5.0]
[+] CardDAV for Address Book (enables syncing contacts on iPhone, etc)
[*] New screen of Mobile Settings
[+] Icons for .ics, .vcard attachments
[+] Export to iCal
[+] Per-user logging in a file (for debugging purposes, see labs.log.specified-by-user parameter in http://www.afterlogic.com/wiki/Advanced_configuration_via_config.php_file_(WebMail_Pro_6_PHP) )
[*] Auto-checkmail no longer interferes with other operations
[*] Faster prefetch of e-mails
[+] Search in e-mails includes СС
[+] Cancel search
[*] IMAP quota indicator is more accurate
[+] Periodic calendar refresh
[*] More accurate counting of unread e-mails
[*] Multiple minor issues fixed.
[6.4.3]
[*] Multiple minor issues fixed.
[6.4.2]
[*] Calendar backend has been modified, now WebMail uses API of DAV server which allows for improving calendar performance.
[*] Multiple minor issues fixed in calendar client of WebMail.
[6.4.1]
[*] PHP: Saving calendar settings is fixed.
[*] JS: Saving data in account settings tabs is fixed.
[6.4.0]
[+] PHP: CalDAV storage is used for calendar, database storage is no longer supported.
[+] PHP: Syncing calendars with mobile devices via CalDAV protocol. Funambol sync is discontinued.
[+] PHP: Profiling of mail and calendar accounts for iOS devices
[*] PHP: Outdated code purged.
[-] PHP, JS: Spellcheck and PDA interface version removed.
[6.3.10]
[*] Time fixed in Last login information.
[*] Feature of adding subadmins without domain (IsOwner = true). When removing such subadmin, all domains and users are removed as well (POA).
[+] JS, PHP: Global address book tab in contacts list.
[*] JS: Request for frequently used contacts was causing endless loop in Google Chrome.
[+] PHP: Storage quota for MailSuite.
[*] PHP: Disabling address book screen was ignored from calendar screen.
[*] JS: Forward button is added for message from Sent Items folder opened in new window.
[+] DB: Two database indexes are added (use_frequency, view_email) to speed up handling contacts.
[*] CSS: fixed a crash which occured when opening WebMail right after MSN website.
[6.3.9]
[+] CSS, JS: Icon for PPT and PPTX files added for displaying in attachments list.
[*] JS: Check mail button freezing is fixed.
[*] JS: Mails were not removed from Drafts folder upon sending, fixed.
[+] JS, PHP: Option for exporting contacts is added.
[+] JS, PHP: Information on last login date/time displayed at login page.
[+] JS: Outdated browser alert issued prior to redirecting to PDA version (in case if xmlHttpRequest object cannot be created).
[+] JS: Autocompletion on login page.
[+] JS: Fixes for Persian and Romanian translations.
[6.3.8]
[*] PHP: Fixed detecting inline attachments via IMAP body structure.
[*] PHP: Fixed key validity check.
[*] PHP: Additional processing of server response is performed when searching for Message-ID and locating matching UID.
[-] PHP: "Use specified login" option for SMTP authentication has been removed from default domain settings as its actually never used there.
[*] PHP, JS: System setting added for disabling autosave to Drafts.
[*] JS: If first autosave attempt is unsuccessful, autosave is cancelled.
[*] JS: In case if autosave is in progress when send is performed, sending is delayed till autosave is over.
[6.3.7]
[*] PHP: Non-system folders are considered when syncing folders, provided they're made default ones via plugin.
[+] PHP: Configuration option added for creating required folders on each login.
[*] PHP: Method added for moving messages in IMAP using Append, callback allows for modifying a message.
[6.3.6]
[+] PHP, JS: Special folder access mode is added for IMAP, when that mode is enabled folder subscription is ignored and all the folders are always treated as subscribed. The Subscribed column in Manage Folders screen is blocked.
[*] PHP: Fixed issue with sorting system folders which caused their duplication in some cases.
[6.3.5]
[*] JS: Fixed reply button in horizontal layout view.
[6.3.4]
[*] PHP: Updates in POP3 module in order to comply with nodb mode.
[*] JS: Login JavaScript error fixed.
[6.3.3]
[*] JS: Print function didn't work in view message in 'new window' mode
[*] JS: Autosave in compose screen in pop3 accounts closed compose window.
[6.3.2]
[*] JS: Fixed switching between html and plain modes in compose screen when signature is on.
[6.3.1]
[*] PHP: Links like www.domain.com were opened incorrectly in web browser.
[*] JS: Fixed filtering loop of AJAX requests for non-default accounts.
[*] JS: Resizer position between folders pane and message list was not saved, resizing caused content selection, both the issues are fixed.
[6.3.0]
[+] PHP, JS: Support and managing of forwards, filters and vacation messages via Sieve.
[*] PHP: Improved plugin system, allows for easy adding of plugins for changing passwords, forwards, autoresponders.
[*] PHP, JS: Opening published calendar is fixed.
[*] PHP, JS: Sorting by date is always applied even if the server doesn't support sorting mails.
[+] PHP, JS: When composing messages, they are autosaved to Drafts periodically.
[*] PHP: Additional setting which allows for better date sorting.
[*] PHP: Fixed issue in Compose screen which resulted in error on email autcompletion with address book disabled.
[*] PHP: Fixed issue with adding attachments caused by json_encode function not available in PHP.
[*] PHP: Improved hyperlinks highlight in message.
[+] JS: Right-mouse button menu in message list added.
[*] JS: Fixed error on using color palette in IE9.
[*] JS: In Manage Folders screen, real folder names are displayed. If a particular folder is used as a system one, that is indicated next to folder name (e.g.: used as Sent Items).
[*] JS: Email autocompletion in Compose screen does not cover emails which are present in To/Cc/Bcc fields.
[*] JS: When replying to message which has email address in Reply-To equal to one in From, the latter is used since it might have display name we need to use.
[*] JS: When closing WebMail window, all the windows invoked by it are closed as well.
[*] JS: For Drafts folder, total number of messages is displayed, while for other folders number of unread mails is displayed.
[*] JS: Message list was selected on drag'n'drop, fixed.
[*] JS: When message is sent from a separate window, that window is closed.
[*] JS: When forwarding message in new windows, attachments are no longer lost.
[*] JS: Error which occured when using integration to enter any other screen than message list, is now fixed.
[*] PHP, JS: Many minor improvements and fixes.
[6.2.0]
[*] PHP: AdminPanel was not displaying list of domains when it exceeded certain number of records.
[+] PHP: Error message added for login screen, it's shown when mail server is not accessible.
[+] PHP: Sieve plugin added.
[*] PHP: Fixed error of saving calendar settings when certain time format used.
[*] JS: Color palette couldn't be opened in Signature editor.
[*] JS: New Message screen was not using Use Signature setting.
[*] JS: When replying to message, signature was added after quoting, now it's before quoting.
[*] JS: On adding filter, "no filters specified yet" text was still displayed.
[-] JS: Outdated code for implementing demo account is removed.
[6.1.8]
[+] PHP, .NET, JS: Identities support
[*] JS: Significantly simplified check mail, now it goes much faster
[*] PHP: Plugin system functionality extension
[*] PHP: Lots of small internal changes.
[6.1.7]
[*] PHP: "New user" button added in AdminPanel.
[*] PHP: added hook and usage example for Global Signature plugin.
[6.1.6]
[*] PHP: Occasionally, inline images were not added for filename-specific reasons.
[*] PHP: Verbose error messages for POPPASSD plugin.
[*] .NET: Layout issues fixed for new window opened with double click.
[6.1.5]
[*] JS: It's possible to show new password field when users aren't allowed to change settings.
[*] JS: Changing password issue corrected.
[+] .NET, PHP: Additional setting which can forbid adding new accounts on login.
[*] PHP: Date formatting fixed for exporting to iCal.
[*] .NET: Sorting in IMAP corrected.
[6.1.3]
[+] PHP: New plugin available for changing user password via poppassd.
[*] PHP: When opening a message in separate window and doing Forward, message body was empty.
[*] JS: Current folder is excluded from folders list in "Move to folder" dropdown.
[*] JS: If deleting messages or doing checkmail right before viewing message, that message could become unread again, and deleted messages could become visible again for a while.
[*] JS: Sorting by attachments and flags is removed for IMAP since this is not supported by servers.
[*] JS: window.opener related checks were removed, they were causing glitches in Compose and Quick Reply modes.
[*] JS: Quick Reply wasn't working in new window due to animation.
[*] JS: Issues with displaying attachments in IE6,7.
[*] JS: The "Autocheck mail every" setting was not applied unless the window is refreshed
[*] JS: After Check mail, mail deleted by other client was still there
[*] JS: In Compose mode, when choosing contacts by clicking To, CC, BCC, area for adding attachments was visible underneath the contacts list.
[*] JS: HTML editor was rendered incorrectly in IE6,7.
[6.1.2]
[+] PHP: Finnish translation added.
[*] PHP: Bugfix related to POP3 accounts (errors when creating folders).
[+] PHP, JS: Corrections for "Forwarded" flag detection.
[*] JS: Decection for number of previous messages when replying/forwarding (Re[x], Fwd[x]).
[6.1.1]
[+] PHP: amr2wav_convert.sh script for convert .amr files to .wav added to /data/convert/ directory
[*] JS: Fixed issue of message list sorting in IMAP mode
[6.1.0]
[+] PHP: Voice Message support (.AMR playback)
[*] PHP: Functions names have been refactored.
[*] JS: New look for attachments pane.
[*] JS: Was not possible to use Quick Reply for sending mail to yourself. Fixed.
[*] PHP: Incorrect check for external images added.
[+] JS: Quick Reply pane is animated when sending message.
[*] PHP: Accounts are now email-based. For accounts added in Advanced Login mode, subsequent logins don't require this mode.
[6.0.3]
[*] PHP: Plesk integration is operational now.
[*] PHP: Mailadm and subadmins passwords are hashed.
[*] PHP: Bugfix: incoming mail port was used for SMTP in Advanced Login mode.
[6.0.2]
[*] JS: Corrections for blinking favicon used as notification for new messages.
[*] JS: Corrections related to precaching functionality.
[+] PHP, .NET, JS: Forwarded flag is back.
[*] PHP: Corrections for dates in calendar.
[*] PHP: Fixed issue of creating and displaying folders with international names.
[*] JS: Cursor autofocus is corrected on login form.
[*] PHP: Default domain was not saving Global Address book setting, fixed.
[*]: .NET: File uploader fixed.
[*] JS: When Sent Items folder is selected, Forward button became available.
[*] PHP: Correct processing of OverrideSettings in domain options.
[*] PHP: Fixed issue of sorting folders in Manage Folders screen (IdParent was not set correctly for folders when adding to database)
[*] PHP: Fixed issue of search in all mail folders in POP3
[+] PHP, .NET, JS: Added XLIST support (gmail.com)
[+] PHP, .NET: Fixed issue of assigning system folders (previously, it wasn't possible to set system assignment for a subfolder).
[+] PHP, .NET, JS: It is now possible to configure AdvancedLogin via settings.xml file.
[*] .NET: Several fixes for hMailServer integration.
[*] .NET: Fixed error of searching for users in AdminPanel.
[6.0.1]
[*] JS, PHP, .NET: fix for adding attachments (file size limit was ignored).
[*] JS: Fix for changing skin in user account settings (the proper skin didn't always apply).
[*] JS: The problem of missing message list pages switcher is fixed.
[*] PHP, .NET: Autocompletion of email addresses is corrected. Email addresses added to autocompletion list when sending mail are no longer displayed in Contacts screen.
[*] PHP: XML data packets encoding is fixed, headers and attachment names are displayed correctly.
[*] .NET: Fix for fetching mails in All/Nee Messages and All/New Headers sync modes for IMAP accounts.
[*] JS: Bugfix for search in messages and contacts refusing to work after searching for empty value.
[*] JS: Fix for switching language in user settings (not all language constants' values were updated immediately).
[+] PHP: Examples of using new API are added to examples directory.
[+] JS: In Import Contacts mode, link to relevant documentation page is available.
[6.0.0]
[*] PHP, .NET: AdminPanel is rewritten from scratch;
[*] PHP, .NET: totally new screen of user account settings;
[+] PHP, .NET: modern AJAX-based file uploader instead of Flash-based one;
[+] PHP: separate MySQL master/slave (read/write) MySQL;
[+] PHP, .NET: reading/composing mail in new tab/window by pressing Shift;
[+] PHP, .NET: Print and Save tools in preview pane;
[+] PHP, .NET: window/tab "New Messages" icon with number of new messages displayed;
[+] PHP, .NET: instead of full reload, message list is dynamically updated after deleting/moving mails;
[+] PHP, .NET: quota indicator is back in 3-pane view.
[-] PHP, .NET: Advanced Login mode deprecated, "out of domain" user cannot be created;
[-] PHP, .NET: compliated synchronization modes options removed (IMAP: Direct Mode only; POP3: Entire Messages only);
[-] PHP, .NET: Selecting default charset no longer available, only UTF-8 is used;
[-] .NET: MS Access support for ASP.NET edition discontinued;
[-] PHP: MS SQL support for PHP edition discontinued.
[5.1.11]
[*] PHP: The issue with empty messages list in POP3 Inbox (Direct Mode) has been fixed
[*] JS: Spam button is now available in IMAP account if Spam system folder exists
[*] JS: Search bar was disappearing when navigating back to messages list
[5.1.10]
[*] PHP: Under certain circumstances, full list of contacts was not available.
[+] PHP: Save in Sent setting is stored per-account in cookies.
[5.1.9]
[*] PHP: 5.1.8 minor bug fixes.
[5.1.8]
[*] PHP: Double database connection is performed (read/write)
[*] PHP: Alphabetical index in contacts (disabled by default)
[*] PHP: Minor fixes, code refactoring
[*] PHP: Required indexes are added to the database