-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathWHATSNEW
2919 lines (2352 loc) · 174 KB
/
WHATSNEW
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
1.4.083016:
========================================================================================
Proxy Changes
-------------------------------------------------
1.4.081200: Add possibility to set a pattern in the Local SQUID network section
1.4.082313: Allow to specify external LDAP server for user authentication.
1.4.082313: Adding specifics FTP informations parameters.
1.4.082600: Adding conditions in proxy.pac for an added proxy.
1.4.082617: Fix unable to activate Kaspersky For Proxy server in modules area.
1.4.082617: Adding a license checking function for Kaspersky For Proxy server.
1.4.082700: Adding new feature that enables SSL interception in order to send web SSL pages trough antivirus.
1.4.082717: Minors tweaks in ICAP configuration directives.
1.4.082717: When using transparent mode, is SSL interception is used, Artica will configure SQUID to use transparent SSL mode.
1.4.082717: Possibility to run C-ICAP and Kaspersky Antivirus at the same time.
Messaging Changes:
-------------------------------------------------
1.4.081200: Fix cannot add SMTP server in the organization when using multiple postfix instances.
1.4.081200: Fix unable to create senders BCC and recients BCC in postfix when using multiple postfix instances.
1.4.081200: Add possibility to purge a single mailbox in administrator web interface and end-user web interface.
1.4.081223: Improve PostfixInstant Iptables feature.
1.4.081415: Add possibility to schedule quarantine PDF reports for each user (the last HTML report was removed for performances issues).
1.4.082102: Add a syslog watchdog on amavis[5302]: (!)_DIE: Suicide in child_init_hook (artica action = restart amavisd)
1.4.082116: Fix unable to restart policyd-weight cause monit take the hand.
1.4.082417: Fix separator token error and adding prefix option for synchronize mailboxes features (imapSync).
1.4.082812: Fix command-lines parameters that did not reflect the mask for synchronize mailboxes features (imapSync).
File Sharing changes:
-----------------------------------------------
1.4.081200: Activate symbolic links by default in Samba.
1.4.081613: Adding possibility to play with file sharing in user's Home directory in the end-user interface.
1.4.081616: Fix unable to FTP login with Pure-ftpd
1.4.081913: Fix wrong parameter "wide symlinks" change to "wide links" in samba.
1.4.081913: Starting MLDonkey support
1.4.082102: WebDav support for users Home Directory
1.4.082401: Starting BackupPC support.
1.4.082919: Starting OCS Inventory Support.
System Changes:
-------------------------------------------------
1.4.081402: Support enable/disable clamav unofficial updates.
1.4.081613: Fix wrong DHCP server status when running on Ubuntu 8.04
1.4.082313: Unable to perform NMAP scanning to a targeted computer.
1.4.082417: Fix downloading problems on RPMForge for setup-centos.
1.4.082717: fix missing packages php-pecl-json, php-pecl-Fileinfo, php-dom in setup-centos for Roundcube on CentOS 5.3
1.4.083016: OCS Linux Agent support, administrator is able to install OCS Linux Agent from Artica web console.
Interface Changes
-------------------------------------------------
1.4.081200: Add new feature (in beta mode) enables mass mailing tasks with artica !
1.4.081402: Fix unable to change the Unique identifier trough interface.
1.4.082600: Support specials characters when changing the Manager password.
1.4.080521: release
========================================================================================
Interface Changes
-------------------------------------------------
1.4.073117: Fix minor bugs found on the beach :=)
1.4.073117: Now, display the label name in disk status table.
1.4.080200: Now, display the label name in disks main config area.
Messaging Changes:
-------------------------------------------------
1.4.073117: Increase parameters on mailboxes synchronization feature.
1.4.073117: Add possibility to modify SSL certificate informations in Postfix multi-instances.
1.4.073117: Fix wrong informations displayed in postfix queue status in multi-instances.
1.4.080200: Now Roudcube configuration in vhost mode select only the organization has the LDAP NAB and enable the sievrules plugin.
1.4.080301: Adding possibility to disable LDAP addressBook in roundcube vhosts.
1.4.080316: Add a syslog watchdog on "Decoding of p002 (Zip archive data, at least v2.0 to extract) failed, leaving it unpacked: Compress::Raw::Zlib version 2.017 required--this is only version 2.012" (artica Action = install newest Zlib version)
1.4.080316: Improve the queue monitor interface.
1.4.080316: Add a new section allowing SuperAdmin to query the mail backup area.
1.4.080501: Improve artica-filter performances.
1.4.080501: Add a syslog watchdog on cyrus/lmtp[18838]: IOERROR: not a sieve bytecode file * (artica action = compile sieve script)
1.4.080501: Add a syslog watchdog on relay=127.0.0.1[127.0.0.1]:2005, said: 430 Authentication required (artica action = reconfigure lmtp in main.cf)
1.4.080501: artica-filter support in postfix multi instances.
1.4.080517: Support sa-learn-cyrus that provides a Junk Learning process for Spamassassin from cyrus mailboxes, the interface has been rebuild for this support, end-users can enable this feature in the Artica end-user interface
System changes
-------------------------------------------------
1.4.080301: Allow LDAP server binding multiple IP addresses.
1.4.080501: Add Ubuntu 7.10 support
1.4.080517: Possibility to enable watchdog on each daemon on services status Center
1.4.080521: Add possibility "for debian systems" to manage the Kernel version. This feature has been developped especially when Installing systems trough Artica ISO.
Proxy Changes
-------------------------------------------------
1.4.080316: Fix wrong status on C-ICAP.
1.4.080318: Add possibility to modify the SQUID master cache type.
1.4.080501: Enable ipv6 acls only on squid 3.1.x
1.4.080517: Fix directory specified in srv_clamav.VirSaveDir in c-cicap is not managed by artica.
1.4.071616:
========================================================================================
Messaging Changes:
-------------------------------------------------
1.4.071502: Add a syslog watchdog on zarafa-server[5713]: INNODB engine is not support. Please enable the INNODB engine (Artica action = restart mysql service)
1.4.071516: Fix wrong insertion of personal main.cf parameters.
1.4.071616: Fix major bug that die postfix configurator and not set all postfix parameters.
Interface Changes
-------------------------------------------------
1.4.071516: Fix unable to change Artica web interface listen port
1.4.071400:
========================================================================================
Messaging Changes:
-------------------------------------------------
1.4.070712: Fix artica create Draft without "s" caracters that Roundcube and Thunderbird expect.
1.4.070712: Add "null" in $rcmail_config['imap_root'] in RoundCube configuration file.
1.4.070814: Add a new feature that allow to add some DNSBL list (especially senderbase has cisco black lists) into SpamAssassin.
1.4.070900: Force mandatory 127.0.0.0/8 network in postfix mynetwork parameter
1.4.070900: Add a syslog watchdog on fatal: valid hostname or network address required in server description (Artica action = notify)
1.4.070917: Add a syslog watchdog on zarafa-server Cannot instantiate user plugin: ldap_bind_s: Invalid credentials (Artica action = restart zarafa)
1.4.070917: Add a syslog watchdog on postfix fatal: specify a password table via the `smtp_sasl_password_maps' configuration parameter (Artica action = disable SMTP SASL)
1.4.071110: Add a syslog watchdog on amavis : TROUBLE in child_init_hook: BDB can't connect db env. at /var/amavis/db (Artica action=restart amavis)
1.4.071110: Fix unable to start milter-greylist in multiple postfix instance mode.
1.4.071110: Add possibility to set the ip address of the local smtp server in the roundcube subdomain when using the postfix multiple instance mode.
1.4.071301: Add possibility to generate a global messaging report for the organization.
1.4.071400: Add possibility to enable Virus Bounce Ruleset in Spamassassin
1.4.071400: Add new feature that display spamassassin configuration checking.
System changes
-------------------------------------------------
1.4.070814: Add a maillog watchdog on 0x0000000847ec10: SQL Failed: Table 'zarafa.*' doesn't exists (Artica action = delete database zarafa and restart service)
1.4.070900: Add more hard drives informations.
1.4.070900: Fix monit error configuration when monit is under 4.x version.
Interface Changes
-------------------------------------------------
1.4.071110: Add possibility to add a picture logo in the organization settings.
Proxy Changes
-------------------------------------------------
1.4.070900: Add a syslog watchdog httpAccept: FD 15: accept failure: (22) Invalid argument (Artica action = restart squid).
1.4.070616:
========================================================================================
System Changes
-------------------------------------------------
1.4.070217: When creating a new user user id is now forced to lowercase.
1.4.070217: Fix unable to perform backup when servername contains (")" caracters (eg:mailserver1.(none))
1.4.070517: Fix backup error using rsync with a non-unix rsync server.
1.4.070614: Now the backup tasks will backup Zarafa database
1.4.070614: Adding backup time calculation in task events.
1.4.070614: Adding a syslog watchdog on kernel segfault (Artica action = email notifications).
1.4.070614: Adding a syslog watchdog on kernel Out of memory (Artica action = reboot).
1.4.070614: Adding a syslog watchdog for Error: Can't contact LDAP server on winbindd (Artica action = restart local ldap)
Interface Changes
-------------------------------------------------
1.4.070217: Fix wrong informations sended when using the users & groups section.
1.4.070219: Fix errors displaying organisation informations.
1.4.070402: Improve the organization's domains settings area.
Messaging Changes:
-------------------------------------------------
1.4.070217: Adding sslfingerprint and sslcertck options when editing fetchmail rule. (artica is able to get the fingerprint automatically).
1.4.070219: Fix error when creating fetchmail rule for multiple user, token from first user are remplicated in all fetchmail rules.
1.4.070402: Adding feature in order to change postmaster recipient and from email address when sending Postfix SMTP notifications.
1.4.070402: Adding a new feature that allow administrator to switch cyrus imap socket from unix to inet and from inet to unix.
1.4.070517: Fix errors in aliases files.
1.4.070517: Fix socket error permissions on any milters
1.4.070517: Artica daemon will test spamassassin presence before running amavis, if not it install it automatically.
1.4.070517: Fix unable to install Spamassasin trough artica-make.
1.4.070603: Adding DKIM-AMAVIS support
1.4.070615: Fix artica unable to detect RoundCube version when upgrading to 0.4-beta
Proxy Changes:
-------------------------------------------------
1.4.070412: Add a new alert when used caches size exceed limit.
Groupwares changes
-------------------------------------------------
1.4.070616: Supporting Drupal software, include zen, admin modules and multiple domains.
1.4.063018:
========================================================================================
System Changes
-------------------------------------------------
1.4.062303: Artica is now compliance using OpenVPN server on "bridge" mode.
1.4.062901: Rebuild the backup process tasks.
1.4.062901: Adding more logs whe doing backup.
1.4.063018: Remove skip-bdb parameters on mysql server cause error to start on Ubuntu 9.x versions
1.4.063018: Adding possibility to set the temporary working path for backup tasks
1.4.063018: Adding possibility to define a local bind IP address when updating, installing applications trough artica (in artica update parameters)
Messaging Changes:
-------------------------------------------------
1.4.062303: Fetchmail is now compliance with multiple postfix instances mode.
1.4.062312: Fix mynetworks was not correctly set.
1.4.062312: Fix catch-all was not correctly set in postfix hash databases.
1.4.062901: Amavisd-new now write log into syslog
1.4.062901: Fix unable to run spamassassin sa-compile cause AWL (Auto-whitelist) plugin was not enabled by default in debian systems.
1.4.062901: amavisd-new multi postfix instances compliance.
1.4.062912: Adding SPF configuration panel for AMAVIS+Spamassassin.
File Sharing changes:
-----------------------------------------------
1.4.062316: Adding possibility to download samba log files trough artica interface.
Proxy Changes:
-------------------------------------------------
1.4.062413: Fix Monit try to monitor Dansguardian even Dansguardian is disabled.
1.4.062413: Adding a default cron schedule for databases updates in DansGuardian/SquidGuard each 5H
1.4.062413: Remove the cache for the Web filter main page.
1.4.062413: Fix sometimes Dansguardian status is displayed has wrong stopped status.
1.4.062413: Fix wrong status of proxy.pac status.
1.4.062901: Fix memory exceed limit when building Dansguardian databases status.
Groupwares changes
-------------------------------------------------
1.4.063018: Fix installation error trough Setup center on sugraCRM 5.5.4
1.4.063018: Support upgrade to RoundCube 0.4 beta.
1.4.063018: Adding roundcube multiple sub-domains synchronization.
to see:
www.web-polygraph.org
1.4.061819:
========================================================================================
System Changes
-------------------------------------------------
1.4.060313: Adding possibility to set maximum php processes that could be executed at the same time.
1.4.060823: Fix unable to set domainname
1.4.060823: Improve settings virtuals IP addresses.
1.4.061013: Fix OpenVPN section minors bugs.
1.4.061013: Fix user can have access to the main admin interface
1.4.061220: Adding possibility to disable systemv5 cache system for the web interface (under artica performances area).
1.4.061814: Fix unable to apply iptables configuration on OpenVPN client when connecting to a remote OpenVPN server
Messaging Changes:
-----------------------------------------------
1.4.060313: Fix unable to open ISP macros under messaging feature.
1.4.060401: Fix demime error before backup mails. This cause illimited stored mysql error files in /var/log/artica-postfix that cause crash server.
1.4.061220: Adding Zarafa ICal/CalDav process startup/monitor.
1.4.061320: Fix unable to start amavis when detected server name match xxx.(none)
1.4.062001: Rebuild totally the multiple postfix instances engine (now each organization can store multiple mail servers).
Proxy Changes:
-------------------------------------------------
1.4.060823: Enable C-ICAP has the main urls filtering engine.
1.4.061220: Supporting "Proxy parents" features under the proxy networking section.
1.4.061320: Statistics minors improvements.
1.4.061814: Reverse Proxy compliance.
1.4.061819: Adding new feature in order to manage "proxy.pac" autoconfiguration file.
1.4.053118:
========================================================================================
Interface Changes
-------------------------------------------------
1.4.052911: Change left menu behavior.
1.4.052911: Add a new language : brazilian.
1.4.053110: Fix unable to define a Messaging organization Administrator
1.4.053118: Tweaks on Administrators privileges.
Messaging Changes:
-----------------------------------------------
1.4.052911: Fix artica is unable to create fetchmail statistics.
1.4.052911: Adding fetchmail statistics.
Proxy Changes:
-------------------------------------------------
1.4.052911: Improve the category section in filter area.
1.4.053118: Add top 200 websites visisted.
1.4.053118: Introduce license manager to obtain more than 1.6 Million blacklisted websites for 50€/year
System Changes
-------------------------------------------------
1.4.052919: Improve feature to find the right hostname and domain name.
File Sharing changes:
-----------------------------------------------
1.4.052919: Introduce possibility to link Artica server to an Active Directory server.
1.4.052511:
========================================================================================
Interface Changes
-------------------------------------------------
1.4.052216: Adding more left menus.
1.4.052216: Fix users list allow to display only the first table row user.
1.4.052216: Improve Wifi client mode visibility.
Messaging Changes:
-----------------------------------------------
1.4.052020: Adding possibility to remove Kaspersky Anti-Spam trough Setup Center.
1.4.052113: Fix unable to save Messages Size limit configuration in production.
1.4.052417: Add a new watchdog action on "DBERROR db4: DB_AUTO_COMMIT may not be specified in non-transactional environment" in Cyrus-imap
Proxy Changes:
-------------------------------------------------
1.4.052020: Adding possibility to change cache performance for et dedicated website.
1.4.052020: Support new c-icap version.
1.4.052020: Fix wrong services status in panels.
System Changes
-------------------------------------------------
1.4.052113: Fix unable to schedule backup tasks.
1.4.052113: Introduce WIFI management.
1.4.052202: Finish WIFI in client mode.
1.4.052202: Fix unable to select language in logon form.
1.4.052216: Change the startup process, now only LDAP/Mysql/lighttpd/artica-cron services are started when performing "/etc/init.d/artica-postfix start" command.
The scheduler artica-cron process tis in charge of run all others services one minute after it started.
This to speedup the boot time when restart the computer and to not wait for a long time to display Artica Interface.
This feature prepare appliances...
1.4.052417: Fix default Mysql databases are not installed on a fresh Artica install on CentOS systems.
1.4.052417: Adding ATrpms repostpry for setup-centos http://atrpms.net/
1.4.051818:
========================================================================================
System Changes
-------------------------------------------------
1.4.051717: Fix artica did not delete old tmp files
1.4.051717: Adding a new watchdog that delete old clamAV files.
1.4.051717: Adding possibility to install phpMyAdmin trough setup center.
1.4.051818: Fix artica-update wants to update clamav all the time.
Messaging Changes:
-----------------------------------------------
1.4.051623: Fix unable to set multiple listen Interfaces in postfix.
1.4.051623: Fix wrong transport rules when transfert messages to domains.
1.4.051717: Consolidating PoMMo starting process.
Proxy Changes:
-------------------------------------------------
1.4.051623: Introduce squidGuard support.
1.4.051717: Introduce new statistics generation
1.4.051818: Change the cache storage section and fix unable to get cache usage.
1.4.051818: Adding new statistics for websites
Groupwares change
-------------------------------------------------
1.4.051719: Fix Group-office installation problems.
1.4.050923:
========================================================================================
Interface Changes
-------------------------------------------------
1.4.050916: Change the left menu style.
System Changes
-------------------------------------------------
1.4.042701: Fix unable to import Active Directory Members when using only Proxy on Artica.
1.4.042701: Fix cache binaries locations engine (sometimes the binaries location provide the wrong binary path).
1.4.043019: Adding an option to disable completly disk scan size.
1.4.043019: Supporting new distribution Ubuntu 10.04.
1.4.050203: Fix unable to activate NTP server.
1.4.050312: Adding a watchdog for Mysql configuration. Under 550M installed memory artica will switch mysql configuration to lower settings.
1.4.050316: Adding a new Max Load limit in artica performances that stop all artica processes operations if system load reach it.
1.4.050501: Adding a new function that limit the executor to only 2 processes at the same time in order to not stress the system.
1.4.050501: Adding a new tooltip in the right pan to inform if an lshw task is running (lshw consume CPU).
1.4.050818: Fix php5[xxxx]: segfault at xxxx ip xxx sp xxxx error 6 in php5[xxx+xxx]
1.4.050818: Add new shared memory process via ipcs in order to safe I/O loads to get common parameters.
1.4.050818: Add a cache system for administration web page.
1.4.050818: Adding a systemv5 and shmop function verification (some distribution did not compile PHP5 with shared memory enabled (eg Mandriva).
1.4.050902: Adding load monitor when schedule php process each 10,20,30 seconds.
1.4.050902: Set max process number to load at the same time depends on CPU number and memory installed in the scheduler. For example: 1 CPU and 512Mb memory only one process is executed at the same time
1.4.050902: Disable apache-groupware when memory installed is under 512Mb,there is no sense to provide such feature under this performance.
Messaging Changes:
-----------------------------------------------
1.4.042701: Adding possibility to change the sieve daemon listen IP
1.4.042701: Fix unable to set message_size_limit token in Messages restrictions area.
1.4.042802: Introduce Zarafa has new major collaboration Suite
Artica technology has decided to define Zarafa has the main project supported by Artica suite.
Zarafa offer scalabilities, flexibilities required by Artica.
Currently only main services are provided :
---------------------------------------------------
- WebMail,
- Shared calendars.
We plan to provide all features including Smartphones push mail,CalDav Zarafa commercial features...
Artica provide these features :
---------------------------------------------------
- Easly installation trough the Setup Center (Zarafa version 6.40.00)
- Watchdog
- IMAP Hack preventions.
- Connexions statistics.
- Web server management.
- Migration tool in order to migrate mailboxes from Cyrus to Zarafa.
Note: Be carrefull for cyrus-imap users in production mode :
Zarafa provide it's own IMAP/POP3 server, when installing Zarafa, Artica will change Cyrus ports to
1110,1143,1993 in order to prevent listen ports conflicts.
1.4.043019: Fix Global LDAP Addressbook in RoundCube see all of LDAP branchs.
1.4.043019: Fix unable to install Zarafa.
1.4.050110: Supporting "nokeep" Fetchmail token.
1.4.050312: RoundCube Max Upload size drive the global PHP upload size setting.
1.4.050312: Fix error on dedicated RoundCube web server did not start cause wrong username is passed in config.
1.4.050316: Fix Postfix did not undertsand blocked extensions feature.
1.4.050818: Fix unable to create fetchmail rule since 1.4.050110 version (missing nokeep field in mysql table);
File Sharing changes:
-----------------------------------------------
1.4.043022: Activate Passive Port Range for PureFTPD.
1.4.050318: Adding the possibility to change the netbios name in Samba.
1.4.050501: Fix unable to save computer information in dedicated computer form.
1.4.050521: Full ACL support both on the system trough explorer and for Samba parameters.
Fix unable to set ACL when group name contain spaces caracters.
Proxy Changes:
-------------------------------------------------
1.4.050110: Fix unable to edit the Dansguardian warning template.
1.4.050818: Improve the Squid blocking site engine.
1.4.050818: Improve Dansguardian log parser.
1.4.050916: Adding a new option "bin/artica-make APP_SQUID --configure" to dispaly artica squid compilation directives.
1.4.042420
========================================================================================
WARNING ! This version change the Postfix structure from LDAP to Hash,
try it before make it into production mode.(see 1.4.042316/messaging)
System Changes
-------------------------------------------------
1.4.040918: Fix unable to enable Artica has First DNS in DHCP section.
1.4.040918: Redesign the computer section.
1.4.041301: Performances improvements.
1.4.041514: Finish monit (has new system monitor) implementation.
1.4.041514: Fix Artica DNS is not set in DHCP configuration.
1.4.041815: Enable possibility of turning off the computer trough the interface.
1.4.042410: Support "Alternative PHP Cache" feature that increase Artica performances (see http://www.php.net/manual/en/book.apc.php)
You need to install apc for php to enable this feature :
apt-get install php-apc (debian/Ubuntu)
yum install php-pecl-apc (centos)
zypper install php5-APC (OpenSUSE)
Interface Changes:
-------------------------------------------------
1.4.041002: Change the navigation of the main sections.
1.4.041514: Introduce cache system.
1.4.042410: Fix "}" error character in lighttpd config file when RoundCube is not installed.
Messaging Changes:
-----------------------------------------------
1.4.041514: support new parameter : smtpd_sasl_exceptions_networks
1.4.041602: Improve the Imap importation feature, no can schedule the feature and give more informations. (see http://www.artica.fr/index.php/menudocmessaging/59-fetch-yours-mails/330-import-your-external-mailboxes-to-your-local-mailbox-server)
1.4.041815: Fix unable to upgrade SpamAssassin.
1.4.041912: Fix unable to display mail.log events.
1.4.042002: Adding hack protection for POP3 attacks.
1.4.042002: Adding possibility to backup mailboxes without need to shutdown the mailbox service.
1.4.042002: Adding possibility to restore a mailbox in the messaging user's account section.
1.4.042316: Adding possibility to change the the mailboxes storage location.
1.4.042316: Every mailbox deletion operations are logged by Artica.
1.4.042316: Adding possibility to rebuild all mailboxes in one organization.
1.4.042316: Adding possibility to include automatically mailling list group members in mailing list section.
1.4.042316: Now Postfix is detached from LDAP in order to prevent LDAP corruption and OpenLDAP queries for each received mail .
This structure return back to hash files. In this case :
- Performances are better
- A corrupted LDAP database has no impacts on the messaging.
- The main.cf is more readable.
When upgrading, you just need to do a Save & Apply in messaging section.
1.4.042420: Support new feature sender_bcc_maps for duplicate mails when sending outgoing mails
Proxy Changes:
-------------------------------------------------
1.4.040722: Introduce NTLM authentication.
1.4.041016: Fix unable to set authentication by LDAP group in Dansguardian.
1.4.041912: Fix unable to open Performances and Scanner settings in Dansguardian.
1.4.041912: Fix unable to delete a Dansguardian main rule.
1.4.042420: Adding possibility to manage request_body_max_size request_header_max_size reply_body_max_size parameters in SQUID
Artica for Kaspersky Mail Appliance 1.2
-------------------------------------------------
1.4.040918:If enabling retranslator local Kaspersky products will use the retranslator databases.
File Sharing changes:
-------------------------------------------------
1.4.041815: supporting "hide unreadable" token for shared files.
1.4.041815: Adding possibility to shares folder using Rsync in the Explorer.
1.4.042002: Adding possibility to add a local directory in the backup process.
1.4.050501: Adding support of "dns proxy" parameter in Samba
1.4.050501: Adding support of "name resolve order" in Samba
lighttpd 1.4.26 bug :
http://fredericiana.com/2010/03/29/lighttpd-1-4-26-ssl-bug/
(network.c.529) SSL: error:00000000:lib(0):func(0):reason(0)
./configure --prefix=/usr --includedir="/usr/include" --mandir="/usr/share/man" --infodir="/usr/share/info" --sysconfdir=/etc --localstatedir=/var --libexecdir="/usr/lib/lighttpd" --libdir=/usr/lib/lighttpd --with-openssl --with-kerberos5 --with-pcre --with-ldap --with-mysql --with-memcache --with-gdbm --with-attr
####################################################################################################################################################
1.4.040701:
=========================================================================================
File Sharing changes:
-------------------------------------------------
1.4.040614: Adding hpinlinux (HP printers drivers) in Setup center.
System changes :
-------------------------------------------------
1.4.040701: Fix major bug that artica did not receive orders from interface.
####################################################################################################################################################
1.4.040602:
=========================================================================================
Messaging Changes:
-----------------------------------------------
1.4.032914: Fix wrong chmod for /etc/fetchmailrc in fetchmail start procedure.
1.4.032914: Add a new feature for forged mails.
1.4.032914: Improve main.cf configuration file generator.
1.4.032917: Fix artica did not generate fetchmail configuration file with fetch-all parameter.
1.4.032917: Improve fetchmail server pooling time configuration generation.
1.4.032917: Add new possibility to reload fetchmail process trough artica Interface.
1.4.033003: Add possibility to see the Remote Artica SMTP Synchronization table in postfix routing table.
1.4.033003: Add a watchdog in Remote Artica SMTP Synchronization process that did not import routing table of an user stored on the remote server Datbase AND the local server database.
1.4.033018: Adding $rcmail_config['dont_override'] = array('index_sort','trash_mbox','sent_mbox','junk_mbox','drafts_mbox'); in roundcube configuration file
1.4.040102: Fix unable to block users to send Internet.
1.4.040118: Editing/adding user operation will start the change roundcube users parameters in mysql database
1.4.040602: Adding a new wizard in order to build an IMAP cluster mode.
Interface Changes:
-------------------------------------------------
1.4.032917: Change the System Config Tab order before personal tabs
1.4.033003: Dialog boxes are now displayed on the top page, not on the middle page for better visibility.
1.4.033003: Adding possibility to disable ClamAV notifications updates in top-right corner tooltips on the main index administrator page.
1.4.033117: Now Artica will try to define the default language in the logon page.
1.4.033102: Redesign user account section.
1.4.040118: Change the statistics section to Ajax mode.
1.4.040120: Fix unable to delete selected users in the members group list section.
1.4.040321: Minors design changes.
System changes :
-------------------------------------------------
1.4.032917: Fix Debian 4.x and Ubuntu 8.x did not find libmail-spf-perl package when installing postfix base trough setup-ubuntu and setup-debian.
1.4.033003: Fix error parsing NMAP results when upgrading NMAP to 5.x
1.4.033003: Adding a new watchdog to kill ghost cpulimit processes.
1.4.040321: Fix PowerDNS start procedure. Sometimes PowerDNS did not find local ldap server.
1.4.040321: Fix DHCP configuration, now DNS server number 1 & 2 are set has first DNS instead using Artica server dns servers first.
1.4.040321: Adding a new wizard for backup tasks. Improve backup tasks features.
Proxy Changes:
-------------------------------------------------
1.4.033018: Add possiblity to import a black list domains by copy & past in a text area.
1.4.033102: Change the ICAP structure configuration between Kaspersky For Proxy Server and squid for better performances
1.4.033102: Fix error on office_network SQUID acl when no network set.
1.4.040102: Fix unable to POST information with 1.4.033102 version.
Artica for Kaspersky Mail Appliance
-------------------------------------------------
1.4.033003: Sometimes the Kaspersky Updater take 100% CPU, a cpu limitation feature has been added to prevent this behavior.
1.4.033117: Add a new Wizard on first connection in order to build first settings.
1.4.040321: Add a new wizard and Redesign Kaspersky Retranslator section.
File Sharing changes:
-------------------------------------------------
1.4.040118: Adding possibility to import computers from a copy/past list.
####################################################################################################################################################
1.4.032901:
=========================================================================================
Proxy Changes:
-------------------------------------------------
1.4.031501: Supporting Malware Patrol - Block List - http://www.malwarepatrol.net
1.4.031511: Fix wrong acl in squid for Malware Patrol database.
1.4.031917: Change compilation directives in order to support Ubuntu 9.10 when doing Dansguardian 2.10.x upgrade.
1.4.031917: Fix permissions errors on /tmp with Clamav and Dansguardian.
1.4.031917: Adding possibility to uninstall DansGuardian trough Setup Center
1.4.031917: Adding possibility to delegate filtering rule to a specific group.
1.4.031917: Improve dansguardian rules application.
Interface Changes:
-------------------------------------------------
1.4.031511: Adding support of specials characters in user id
1.4.031917: Fix unable to delete an organization.
1.4.032015: Fix unable to upload organization to an external artica server
1.4.032015: Fix unable to access to organization quarantine report settings.
1.4.032700: Rebuild the front-end web page.
1.4.032718: Adding possiblity to disable system notifications in the front-end (see http://www.artica.fr/index.php/artica-a-system/48-administration-front-end/324-disable-system-notifications-in-the-index-page)
File Sharing changes:
-------------------------------------------------
1.4.031917: Adding possibility to uninstall Kaspersky For Samba trough Setup Center
1.4.032018: Adding possibility to remove pure-ftpd trough Setup Center.
1.4.032300: Fix groups logon script are not applied when creating an user after saving the logon script in the group section.
Messaging Changes:
-----------------------------------------------
1.4.031917: Adding possibility to delete a quarantine message
1.4.031917: Fix artica did not delete expected quarantine area.
1.4.032014: Adding a new feature allows to specify a Max days to live in the storage area.
1.4.032014: Adding New SpamAssassin version available notification
1.4.032015: fix can't exec /usr/lib/cyrus/bin/nice on schedule: No such file or directory when enabling cyrus squatter service.
1.4.032018: Rebuild Spamassassin front-end
1.4.032300: Rebuild Fetchmail settings builder. Now rules are stored into the Mysql database instead LDAP database in order to prevent bad preg_match parameters.
1.4.032318: Fix unable to detect fetchmail version number when upgrading to latest fetchmail version.
1.4.032718: Adding a wizard for creating a new mailbox.
1.4.032718: Remove possibility to create a local domain if cyrus-imapd is not installed in Organization domains section.
1.4.032722: Adding possibility to define if a relayed domain is a trusted domain or not.
1.4.032801: Fix unable to save relay host settings in postfix routing section.
1.4.032801: Fix unable to upgrade SpamAssassin to the latest version.
1.4.032813: Adding possibility to block some attached files direclty in the postfix connexion (based on extension name).
1.4.032816: Fix unable to set Sender Settings
1.4.032901: Adding a new function that try to determine if smtp_sender_dependent_authentication and smtp_sasl_auth_enable must be enabled in order to enable Postfix to create SMTP authenticated session trough ISP.
System Changes:
-------------------------------------------------
1.4.032318: Adding a new function in charge of cleaning /tmp temporary directories (especially when using DansGuardian)
1.4.032318: Adding a new feature that allow to import users periodically from Microsoft Active Directory Server (see http://www.artica.fr/index.php/artica-a-system/43-import-a-export/322-active-directory-scheduled-importation)
1.4.032400: Allow to add SMTP domains even postfix is installed in order to set domains in DHCP server settings.
1.4.032415: Fix unable to save DHCP settings if "Artica Has Gateway feature is disabled"
1.4.032712: VmWare compliance: Artica is now able to detect if it is installed inside VMWare server and allow to install VMWare tools if it is not installed.
1.4.032718: Adding possibility to install phpLDAPAdmin.
Artica for Kaspersky Mail Appliance 1.2
-------------------------------------------------
Removing Zabbix auto-installation
Fix error displaying system performance graph.
Removing logs in installation process from ISO.
reduce Kaspersky Anti-Spam 3.0 update frequency to each 10mn instead each 20mn
To see: http://www.kfki.hu/cnc/projekt/postfilter/docs/indexeng.html
collaborative filtering blacklist?
You need to open the strncat file and find line 1663 and 1896. The line looks something like this:
line 1612 char path_plus_name[255]
line 1842 char path_plus_name[255]
You need to change the values of those lines to 512...like such:
line 1612 char path_plus_name[512]
line 1842 char path_plus_name[512]
####################################################################################################################################################
1.4.031417:
=========================================================================================
Groupwares change
-------------------------------------------------
1.4.022319: Introduce GroupOffice Groupware.
1.4.030302: Include automaticaly zend extension if /usr/local/ioncube/ioncube_loader_lin_5.2.so is detected.
1.4.030612: Adding automaticaly an http vhost redirecting to an https vhost is SSL is enabled in groupware organization.
Messaging Changes:
-----------------------------------------------
1.4.022319: Fix urls errors on MailMan.
1.4.022319: Fix sometimes, the Postfix SMTP SSL is not enabled.
1.4.022621: Adding possibility to manage cyrus-imap iPurge service.
1.4.022800: Introducing postfix Multiples instances
1.4.030101: Introducing ASSP on postfix Multiples instances
1.4.030302: Fix time files could not be created in postfix-logger because /etc/artica-postfix/cron.1 directory is not created.
1.4.030302: Fix milter plugins are not fully removed in postfix main.cf.
1.4.030521: Redesign Rules for Kaspersky For Milter Edition, now rules are only available in organbizations not in groups in order to improve performances.
1.4.030612: fixed kavmilter[17271]: Invalid value specified for SendmailPath on Mandriva systems.
1.4.030618: Improve behavior defense against error: /var/lib/imap/socket/lmtp
1.4.031017: Fix unable to activate SASL in the interface.
1.4.031017: Rebuild totally Kaspersky For Mail Server and Kaspersky Anti-Spam interface.
1.4.031118: Fix unable to release quarantine mails.
1.4.031222: Adding possibility to remove milter-greylist in setup Center.
1.4.031222: Adding possibility to remove Postfix in setup Center.
1.4.031317: Fix incorrect understanding value for milter-greylist activation :Artica daemon did want to enable milter-greylist.
1.4.031317: Fix unable to start policyd-weight when administrator did not set any parameters in policyd-weight after enabled the plugin. Now artica will auto-generate a default configuration file.
1.4.031317: Adding a new Auto-block feature: when Postfix generate "SASL LOGIN authentication failed: authentication failure": If a sender generate more than 15 times this event in one hour, Artica build an IpTable rule to block the sender.
Interface Changes:
-------------------------------------------------
1.4.030101: Adding a notification to NOT USE internet explorer in Administrator front-end management.
1.4.030112: Fix unable to start service trough the "Manage services" section.
1.4.030302: Increase performances on low bandwith (if any box is displayed,no background refresh is performed)
1.4.030302: Remove sql queries in end-user interface.
1.4.030302: Remove Inbound parameters settings on user account if Postfix is not installed.
1.4.030302: Update FR, PO languages.
1.4.030317: Remove ERROR 500 if a link to the LDAP server cannot be established.
1.4.031300: Update FR,PT,ES languages.
1.4.031417: Consolidate the Export organization to a remote server feature.
System Changes:
-------------------------------------------------
1.4.022410: setup-debian and setup-ubuntu : Remove podlators-perl for debian systems
1.4.022500: Adding possibility to disable Zabbix and change the IP of Zabbix server for the Zabbix Agent.
1.4.022621: Fix loop when starting Samba for the first time.
1.4.022621: Adding possibility to manage Virtual IP addresses.
1.4.022716: Adding basicConstraints = critical,CA:false tokens in certificate.
1.4.030200: Fix scheduler did not run if PID is a null value in pid file.(see http://forum.artica.fr/viewtopic.php?f=10&t=2187)
1.4.030200: Introduce Hamachi VPN network.
1.4.030302: Adding parameters to disable or to limit CPU for folder size indexing process.
1.4.030317: Adding possibility to disable OCS web server.
1.4.030401: Fix unable to display LVM options when the disk is not entirely LVM formatted.
1.4.030521: Improve artica-make when upgrading cyrus. Sometimes cyrus-imap use the latest Berkeley DB found on the system but not the Berkeley DB version used by the system. artica-make will patch MakeFile files to prevent this behavior.
1.4.030612: Fix wrong status for ASSP when notify new available version.
1.4.031021: Adding VPS servers compatibilities.
1.4.031021: Fix Artica didn't found syslog file on CentOS.
1.4.031021: Adding behavior on low server memory (512Mb): Artica disable clamav daemon and zabbix if the server memory is lower than 750Mb memory installed in order to safe main softwares such has postfix/samba/Mysql
1.4.031021: Fix error when ionice is not allowed :Artica use ionice ( http://linux.die.net/man/1/ionice ) in order to decrease IO DISK consumption of Artica's script. Now artica check if it allow to use ionice if error : "ioprio_set: Operation not permitted" is found.
1.4.031021: Fix error when "/proc/diskstats" missing When server did not store "/proc/diskstats" ( http://www.mjmwired.net/kernel/Documentation/iostats.txt#14 ), Yorel's scripts die before creating graphs if /proc/diskstats file is missing.Script has been updated to detect this behaviour.
1.4.031021: Fix error when "/proc/partitions" file is missing the command "fdisk -l" failed.And Artica is unable to list Hard drive informations. Artica will now detect this behaviour and switch using "df" command in order to detect disks
1.4.031222: Fix error starting clamd dameon: now artica did not trust the init.d/clamd script, it launch itself the clamd dameon in order to prevent bad default values.
1.4.031417: Consolidate multiple virtual IP addresses features.
Proxy Changes:
-------------------------------------------------
1.4.030317: Adding a watchdog in sysloger: If dansguardian claim that squid is not available, artica will start it automaticaly.
1.4.030317: Unable to access to Kaspersky For Proxy License information.
1.4.030401: Fix errors on background page when C-icap detect viruses (see http://www.artica.fr/forum/viewtopic.php?f=38&t=2197).
1.4.030401: Adding Kaspersky Antivirus For Proxy server events in viruses Events.
1.4.030401: Adding a new feature that auto block web sites according Kaspersky detection.
1.4.030612: Fix errors when POST with Kaspersky For Squid.
1.4.031317: Fix unable to disable banned files extensions in Dansguardian.
1.4.031317: Improve the SQUID starting process in artica-install.
1.4.031412: Adding possibility to update the urls blacklist pattern database
1.4.031412: Adding possibility to display urls blacklist databases versions and status.
1.4.031417: Fix error on graphs generation when imageantialias() function is not compiled in GD library.
File Sharing changes:
-------------------------------------------------
1.4.030521: Fix non-existent folders are not deleted in Samba configuration file.
1.4.030612: Fix HomeDirectories are not automatically forwarded/modified accordind Organizations dedicated storage.
1.4.030612: Adding possibility to add a sub directory for homes directory in dedicated storage.
1.4.031222: Adding possibility to remove Samba in setup Center.
1.4.031222: fix error save_EnableBackupAccount /usr/share/artica-postfix/ressources Line:692 Error number 21 when editing user.
1.4.031222: Add a new notification to force Administrator to update the Domain Administrator credentials. Without this operation, linking a workstation to the domain should failed.
1.4.031300: Adding possibility to edit Logon script in each Artica group (see http://www.artica.fr/index.php/samba-file-sharing/53-domains-a-administration/320-manage-logon-scripts-for-each-group)
1.4.022301
=========================================================================================
Proxy Changes
-------------------------------------------------
1.4.012901: Add new tokens VirHTTPServer and VirSaveDir in the interface.
1.4.021817: Add an Artica Dedicated Web interface for C-ICAP viruses detections redirector
1.4.021817: re-design the SQUID interface.
1.4.022102: Fix missing /etc/dansguardian/languages/* files in Mandriva.
1.4.022102: Fix error Error Number (1071) (Specified key was too long; max key length is 1000 bytes) when creating mysql tables in DansGuardian
1.4.022102: Fix error creating dansguardian_events Table in Mysql.
1.4.022102: Fix minors errors and compatibility bug in Mandriva and DansGuardian.
Messaging Changes:
-----------------------------------------------
1.4.013001: Fix error, SASL did not working while authentication feature is enabled.
1.4.020301: Fix cyrus repair box feature is displayed automatically.
1.4.020301: New design for Mailbox section (cyrus) in messaging.
1.4.020413: Re-design RoundCube section.
1.4.020701: Adding DEFAULT_SERVER_LANGUAGE token in mailman advanced options
1.4.020701: Improve default values for mailman section.
1.4.020701: Installing all mailman languages.
1.4.020916: Fix severals errors when creating mailboxes.
1.4.020916: Remove auto-create domains "vacation.yourdomain.tld", this feature is removed and replaced by sieverules RoundCube Plugins and/or Artica-filter
1.4.020916: Fix error installing sieverules roundcube plugins.
1.4.020916: Adding a new screen notify box in user interface if autoreply vacation is enabled.
1.4.021010: Fix unable to display mailboxes when multidomains is enabled in cyrus configuration.
1.4.021010: Fix unable to add user when upgrading to 1.4.021000 version.
1.4.021012: Adding auto cyrus account creation when adding a new SMTP Domain.
1.4.021201: Fix error in fetchmail rule when password data are the same of fetchmail tokens (see http://forum.artica.fr/viewtopic.php?f=10&t=2087)
1.4.021217: Add a new feature that allow to route messages between servers with the same SMTP domain name (see http://www.artica.fr/index.php/menudocmessaging/38-smtp-routing/304-routing-mails-with-the-same-domain-between-severals-servers)
1.4.021917: Fix unable to add a new relayed domain (empty screen).
System Changes:
-------------------------------------------------
1.4.020413: Fix artica-install take too much CPU.
1.4.020701: Improve LVM features and re-design Hard disks management section.
1.4.020701: Improve LDAP settings in order to allow authenticated users connecting trough LDAP server.
1.4.020101: Remove the "automatic" watchdog features in order to increase performances, now the watchdog feature must be enabled.
1.4.020719: Fix error EAccessViolation : Access violation $080948F0 $0809333D $08049C46 on setup-suse
1.4.020719: Fix error EAccessViolation : Access violation $080948F0 $0809333D $08049C46 on setup-mandrake
1.4.020722: Adding Mandriva 2010 support.
1.4.021223: Add a new feature to play with the /etc/hosts file (see http://www.artica.fr/index.php/artica-a-system/69-network/306-how-to-modify-hosts-file-)
1.4.021312: Add new function that Disable "scan your networks" icon if nmap is not installed
1.4.021312: Re-design the NTPD section.
1.4.021501: Add a new feature "explorer" (see http://www.artica.fr/index.php/artica-a-system/71-disks-management/307-windows-explorer-trough-artica)
1.4.021522 Add a new feature "explorer" for end-users (see http://www.artica.fr/index.php/artica-a-system/48-administration-front-end/308-windows-explorer-trough-artica-end-user-mode)
1.4.021522: Add a new function that help you to repair Artica LDAP branch if it was corrupted.
1.4.021817: Add possibility to add multiple hosts extension in the SSL certificate.
1.4.021919: Adding a new watchdog that kill ghost "artica-update" process (process does not run since 45mn)
1.4.021919: Fix artica did not find apache mod libraries in Mandriva distribution.
1.4.022102: Fix missing package gcc-c++ in setup-mandrake.
1.4.022102: Re-design the DHCP server section.
1.4.022119: Adding Zabbix support.
File Sharing changes:
-------------------------------------------------
1.4.020701: Fix cannot add printers when there is spaces in the usb printer linked path
1.4.021201: Introduce new feature safe-deposit box in order to crypt users home directory.
1.4.021522: Fix error NT_STATUS_LOGON_FAILURE cause sambaLMPassword and sambaNTPassword are not saved.
1.4.021522: Fix design errors when playing with File Sharing section in user settings.
1.4.021623: Add a search Engine on the storage system like Google (see http://www.artica.fr/index.php/samba-file-sharing/61-users-a-folders/309-add-a-search-engine-like-google-)
Interface Changes:
-------------------------------------------------
1.4.020101: minor tweaks on Organization's interfaces.
1.4.020101: Improve Setup Center interface.
1.4.020301: Fix unable to set the domain in the SSL certificate infos.
1.4.020301: Remove the shutdown button when disconnect.
1.4.020101: minor tweaks the Interface design.
1.4.020916: Update fr language.
1.4.020916: Fix german words are inserted in US language.
1.4.021010: Adding a notification in the interface when artica-update is processing.
1.4.021012: Fix error animated gif is not refreshed after adding aliases or emailing aliases.
1.4.021012: Fix unable to define organization privileges in group section.
1.4.021501: Update FR language.
1.4.021522: Update FR Language.
1.4.021613: Fix user cannot change email aliases in end-user front-end
1.4.021613: Fix user identity informations are not saved when there are accents.
1.4.021623: Update FR, PO languages.
1.4.021817: Update FR, PO languages.
1.4.021919: Update FR,PO,ES languages.
1.4.022018: notifications of New products versions are displayed is same failed services method.
1.4.022102: Update FR,PO,ES languages.
Groupwares change
-------------------------------------------------
1.4.021901: Support OpenGoo/Feng Office
1.4.021922: Fix mysql queries error when creating users in OpenGoo.
1.4.021922: Support auto create IMAP Account in OpenGoo when synchronizing LDAP users.
1.4.022018: Allow to use SSL in groupwares section.
1.4.012814
=========================================================================================
Messaging Changes:
-----------------------------------------------
1.4.012211: Adding a new option in order to limit the max processes for artica-filter (default is now 20 instead illimited) (see http://forum.artica.fr/viewtopic.php?f=20&t=2033)
1.4.012211: Fix unable to disable artica-filter in the postfix configuration file.
1.4.012211: fix javascript error when try to active SASL function.
1.4.012216: Rebuild the Postfix routing table page.
1.4.012800: Fix exe.mailman.php error when creating mailing list in mailman.
1.4.021712: Adding support of RoundCube Calendar (see http://www.artica.fr/index.php/front-ends-a-groupwares/64-roundcube/313-add-a-calendar-in-the-roundcube-webmail-system)
Interface Changes:
-------------------------------------------------
1.4.012315: fix crazy ajax loading templates.
1.4.012512: Remove popup error while loading bad javascript.
1.4.012814: Update fr,de,es language
Proxy Changes
-------------------------------------------------
1.4.012800: Improve the c-icap starting script daemon.
cyrus/master[24664]: service lmtpunix pid 16153 in READY state: terminated abnormally
http://milter-manager.sourceforge.net
1.4.012001
=========================================================================================
System Changes:
-------------------------------------------------
1.4.011819: Improve mysql class that detect Table 'xxxx' is marked as crashed and should be repaired and will perform automatically repair operations.
1.4.011819: Artica is now able to detect if smart is compatible with hard drives. If not the feature is automatically disabled.
Messaging Changes:
-----------------------------------------------
1.4.012001:. Fix duplicates mails when artica-filter is enabled.
1.4.012001: Adding 'advanced options' features for mailman.
Interface Changes:
-------------------------------------------------
1.4.011819: Adding front-end notifications on disk size up to 90% used
1.4.012001: Improve LVM manager for managing disks.
1.4.011811:
=========================================================================================
File Sharing changes:
-------------------------------------------------
1.3.123102: supporting scannedonly in order to protect network shares from viruses (see http://www.artica.fr/index.php/samba-file-sharing/61-users-a-folders/281-protect-your-shares-with-clamav-antivirus-scannedonly)
1.4.011320: Adding possibility to disable Kaspersky For Samba server and ScannedOnly in File Share section.
Messaging Changes:
-----------------------------------------------
1.4.010921: Rebuild mailman procedure (see http://www.artica.fr/index.php/menudocmessaging/38-smtp-routing/285-using-distributions-lists-with-mailman-and-artica)
1.4.011113: Improve the Postfix Regex Rules application on postfix.
1.4.011320: Fix permissions error on /var/lib/postfix/master.lock
1.4.011320: Adding new interface for changing scores in ASSP.
1.4.011320: Adding possibility to create multiple disclaimers trough a new content filter "artica-filter" (see http://www.artica.fr/index.php/menudocmessaging/36-messaginggeneral/288-adding-disclaimers-in-your-mails)
1.4.011720: Adding a new Out Of Office reply using artica-filter (see http://www.artica.fr/index.php/menudocmessaging/44-mailboxes-management/294-automatically-reply-to-messages-with-the-out-of-office-artica-filter-)
System Changes:
-------------------------------------------------
1.4.010921: Adding possibility to change mbstring.func_overload,magic_quotes_gpc in php.ini (see http://forum.artica.fr/viewtopic.php?f=3&t=1995)
1.4.010921: Support VPN point-to-point mode.
1.4.010921: Update fr,de,es language.
1.4.011002: Adding possibility to add routes information in DHCP service.
1.4.011015: The OpenVPN remotes sites routes informations are automatically added in DHCP service configuration.
1.4.011100: Adding possibility to display used disk size in graphical mode. (see http://www.artica.fr/index.php/artica-a-system/46-system-monitoring/287-visualise-disk-usage-on-your-computer)
1.4.011500: Adding/improve Blind Carbon Copy using artica-filter (see http://www.artica.fr/index.php/menudocmessaging/38-smtp-routing/293-automatically-insert-blind-carbon-copy)
Interface Changes:
-------------------------------------------------
1.4.011015: Fix framework encode systems when browsing backup remote resource.
1.4.011703: Improve Internet explorer compatibility
1.3.122910:
=========================================================================================
Messaging Changes:
-----------------------------------------------
1.3.122300: Add possibility to enable/disable ASSP greylisting feature
1.3.122300: Add a GLobal Whitelist function for ASSP/Milter-greylist/Postfix Instant Iptables/Policyd Daemon.
1.3.122318: Add possibility to disable network scanner on defaults networks.
1.3.122519: Add new pattern to detect cyrus-imap database corruption in Postfix Log Watcher.
File Sharing changes:
-------------------------------------------------
1.3.122300: Add possibility to add hidden disks in the sharing explorer disk.
System Changes:
-------------------------------------------------
1.3.122323: Fix unable to save mysql parameters.
1.3.122401: Add features to add PXE settings in DHCP server parameters.
1.3.122519: Fix Artica did not clean syslog and logs on Centos Distribution.
1.3.122519: Fix Setup center display "Not Installed" on all products.
1.3.122519: Add a new detection if a backup is already running in artica-backup.
1.3.122910: Increase performance when generating icons.
1.3.122910: Introduce Clustering using GLFS (currently in experimental mode).
Groupware changes
-------------------------------------------------
1.3.122319: Fix error "Sugaradminname=null!" when trying to update SugarCRM settings trough Artica.
1.3.122519: Fix error "sugaradminpassword=null!" when trying to update SugarCRM settings trough Artica.
1.3.122212:
=========================================================================================
System changes:
-------------------------------------------------
1.3.122001: Fix cannot send DNS query trough PowerDNS.
1.3.122001: Fix missing libmodule-build-perl on debian systems.