forked from fusiondirectory/fusiondirectory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changelog
2365 lines (2295 loc) · 158 KB
/
Changelog
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
FusionDirectory changelog
=========================
* FusionDirectory 1.0.18
[Fix] Bugs #4888: DNS record matching should be case insensitive
[Fix] Bugs #4991: we should document all the change in the webservice done recently
[Fix] Bugs #5070: FAI packageSelect class should use simpleSelectManagement
[Fix] Bugs #5098: Exception should be reorganized
[Fix] Bugs #5179: Terminal are missing fields
[Feature] Bugs #5240: possibilité de grouper ou trier les applications sur la page d'acceuil
[Feature] Bugs #5248: [DNS] "Refresh zone file" should be in DNS section too not just in DNS tab of some host where is DNS tab enabled.
[Fix] Bugs #5249: [DHCP] after migration from .16 to .17 there previous configurations are not migrated to new one automatically.
[Fix] Bugs #5252: User with 'editownpwd' or 'editowninfo' role should not be able to lock other accounts
[Fix] Bugs #5254: Server inside Systems
[Fix] Bugs #5255: Cannot add a workstation in a dhcp subnet
[Fix] Bugs #5256: We not need dhcpStatements host-name when we add a host
[Fix] Bugs #5257: Error in ldap when we will that FAI use all the remain space
[Fix] Bugs #5258: Cannot modify a package class that is insert with help of fai2ldif
[Fix] Bugs #5260: Check for json support during install.
[Fix] Bugs #5264: Incompatibility between recovery password and user-reminder
[Fix] Bugs #5265: removing RDN leftover of the removal of fax and asterisk plugin
[Fix] Bugs #5266: forgot the remove user reminder config file
[Fix] Bugs #5267: Incompatibility between recovery password and user-reminder
[Fix] Bugs #5268: Missing check for package php-filter
[Feature] Bugs #5270: List on "ACL assignments management" too short.
[Fix] Bugs #5278: Translation: Plural form of "information"
[Fix] Bugs #5279: Icons in the action column of OrderedArrayAttribute sometimes don’t have enough space
[Feature] Bugs #5280: rewrote the pasword recovery with new RDN
[Fix] Bugs #5283: Path for fusiondirectory-shell
[Fix] Bugs #5292: Malformed data posted to fdPrivateMail through webservice deletes existing data.
[Fix] Bugs #5294: Exception should be reorganized
[Fix] Bugs #5295: Filter problem if dhcp object is in a department
[Fix] Bugs #5296: Name dhcp object differently when we use migration-dhcp
[Fix] Bugs #5298: XML error during installation of FD on debian Wheezy
[Fix] Bugs #5299: When using FD in portal mode, avoid showing applications (which are not web applications)
[Feature] Wishlist #4822: webservice and password recovery
[Feature] #5271: Force encryption type
[Feature] #5272: Select a default shell
[Feature] #5293: Webservice: isUserLocked(sid)
* FusionDirectory 1.0.17
[Fix] FusionDirectory plugins - Bugs #4953: auto.master should be stored into ldap
[Fix] Bugs #5190: Too many ldap request when loading user list
[Fix] Bugs #5191: Too many ldap request when loading list (snapshots)
[Fix] FusionDirectory plugins - Bugs #5192: Fusiondirectory ldapmanager plugin fatal error when importing a ldif file
[Fix] Bugs #5194: wrong icons / issue with objectType class_groupManagement.inc
[Fix] Bugs #5195: Undefined index: dn / del_lock()
FusionDirectory plugins - Bugs #5196: webservice: object is modified instead of created
|Fix] FusionDirectory plugins - Bugs #5197: removing the ldif for default policy from the ppolicy plugin,
[Feature] FusionDirectory plugins - Bugs #5198: merge the dhcp code from 1.1 into 1.0.17
|Fix] FusionDirectory plugins - Bugs #5225: due to dhcp modification the network section on system is not inside a section
[Fix] FusionDirectory plugins - Bugs #5226: audit showing an error everytime we save an dhcp object
[Fix] FusionDirectory plugins - Bugs #5227: moving from branch inside a dhcp entry
[Fix] FusionDirectory plugins - Bugs #5228: when trying to copy a dhcp entry is get Missing argument 3 for userinfo::is_copyable(), called in /usr/share/fusiondirectory/include/class_CopyPasteHandler.inc on line 226 and defined" - File: /usr/share/fusiondirectory/include/class_userinfo.inc (Line 31
[Fix] FusionDirectory plugins - Bugs #5229: when i have a system who is in the dhcp range of my dhcp server, it find and display the right data but don't save it
[Feature] Bugs #5230: we need a fusiondirectory-setup --migrate-dhcp
|Fix] FusionDirectory plugins - Bugs #5231: we should not be able to remove the global
[Feature] FusionDirectory plugins - Bugs #5232: we miss a dropdown for failover in the Create new DHCP section
[Fix] FusionDirectory plugins - Bugs #5233: Remove ppolicydefault.ldif and dhcpd.schema from source
[Fix] Bugs #5234: Plugin's configuration are not inserted if they are already installed
[Fix] FusionDirectory plugins - Bugs #5236: Missed icon and CSS error
[Fix] Bugs #5237: ogroup icon not clickable
[Feature] FusionDirectory plugins - Wishlist #5193: Add ppolicy tab for DSA accounts
[Feature] FusionDirectory plugins - Wishlist #5239: Champs pour enregistrer la volonté d'afficher la photo de la personne sur le site web
* FusionDirectory 1.0.16
|Fix] Bugs #3587: Edit a template add bad characters
Bugs #4808: improve the script error code and return documentation in hooks
|Fix] Bugs #4925: document the autofs plugin
|Fix] FusionDirectory plugins - Bugs #4997: getfields method returns wrong info in attrs_order
|Fix] Bugs #5005: No upper case characters allowed in group-names
|Fix] FusionDirectory plugins - Bugs #5093: [DNS plugin] when click to "Refresh zone file" button in DNS tab it would not update reverse zones.
[Feature] Bugs #5095: Checkhook should have a way to know if other check errors occured
|Fix] FusionDirectory plugins - Bugs #5138: Name of the directory must authorized "/"
|Fix] Bugs #5145: Dashboard should not have references and ldap tabs
|Fix] Bugs #5149: Handling of SSL and URL when behind a proxy
|Fix] Bugs #5151: Create only digit with %r% placeholder not work
|Fix] Bugs #5152: We should not be able of adding users to groups we have no rights on
|Fix] Bugs #5153: Manager that manage a department cannot lock an user
[Feature] Bugs #5154: Possibility to know who edit the same user when we have a lock entry error
[Feature] FusionDirectory plugins - Bugs #5155: Add an ACL for LDAP tab
[Feature] FusionDirectory plugins - Bugs #5156: Add a backend configuration to desactivate the warning popup when we add a user
[Feature] Bugs #5157: Possibility to know when was a lock put when we have a conflict
|Fix] FusionDirectory plugins - Bugs #5160: opsi import is broken
|Fix] Bugs #5161: when trying to delete system i got a lock error
[Feature] FusionDirectory plugins - Bugs #5165: Possible to store sudo role in different OU in the LDAP Tree
|Fix] Bugs #5172: ldap error after upgrade from 1.0.15 release to 1.0.15 fixes (lock object)
[Feature] FusionDirectory plugins - Bugs #5173: putting acl on ldap/import export
[Feature] Wishlist #5004: Do not require nis schema
[Feature] Wishlist #5096: HTTP header authentication
[Feature] Wishlist #5162: allow DSA entries to be part of a group
* FusionDirectory 1.0.15
[Feature] Wishlist #4832: Allow removal of user picture
[Feature] Bugs #4945: Add the possibility to use %askme% for password expiration in template
FusionDirectory plugins - Bugs #4991: we should document all the change in the webservice done recently
|Fix] Bugs #5003: Error on mixed groups when nis schema not present
[Feature] Wishlist #5010: HTTP header authentication
|Fix] Bugs #5012: [PRINTERS] old printers are not migrated after upgrade to 1.0.14
|Fix] Bugs #5013: User that will expire in two weeks is not show in dashboard
|Fix] Argonaut Deployment System - Bugs #5018: Reinstall trigger on a workstation trigger an error
|Fix] FusionDirectory plugins - Bugs #5020: PHP errors in DHCP plugin with PHP7
|Fix] Bugs #5021: Checkhook should have a way to know if other check errors occured
|Fix] Bugs #5022: Random password does not work when we use a template in read only
|Fix] Bugs #5023: Icon for section account is not found
|Fix] FusionDirectory plugins - Bugs #5026: CSV import bug ?
|Fix] FusionDirectory plugins - Bugs #5031: Icon for LDAP should be moved to core
|Fix] Bugs #5040: Uppercase login triggers php notice
|Fix] FusionDirectory plugins - Bugs #5043: GPG server info cannot be edited anymore
[Feature] FusionDirectory plugins - Bugs #5044: Use simpleManagement in GPG plugin
|Fix] Bugs #5047: add git-shell in default shell list
|Fix] Bugs #5049: probleme de traduction dans le systeme de reinitialisation des mots de passe
|Fix] Bugs #5050: mauvais encodage dans le message de demande de reinitialisation du mot de passe
|Fix] FusionDirectory plugins - Bugs #5051: add a url text field for the linkedin account url
|Fix] Bugs #5052: password storage in firefox provoque an issue in the password field of the user tab in FusionDirectory
|Fix] FusionDirectory plugins - Bugs #5055: Argonaut actions launching is broken
[Feature] FusionDirectory plugins - Bugs #5056: Need to edit class_argonautActions.inc for custom modules
|Fix] Bugs #5057: check_schema should be reviewed
|Fix] Bugs #5058: notice on 1.0.14-fixes
|Fix] FusionDirectory plugins - Bugs #5068: PHP4 constructor in FAI plugin
|Fix] FusionDirectory plugins - Bugs #5069: PHP4 constructor in mail plugin
|Fix] Bugs #5071: Fatal error in FAI plugin
|Fix] Bugs #5074: Error to add ACL
|Fix] FusionDirectory plugins - Bugs #5075: Error to add ACL
|Fix] FusionDirectory plugins - Bugs #5088: Add samba shares update action to the list
|Fix] Bugs #5089: Attribute dob of fusiondirectory schema conflicts with evolution schema
|Fix] FusionDirectory plugins - Bugs #5090: Attribute dob of fusiondirectory schema conflicts with evolution schema
|Fix] Bugs #5092: FD should not interfere with form handling
* FusionDirectory 1.0.14
|Fix] FusionDirectory plugins - Bugs #4142: Local quota
|Fix] FusionDirectory plugins - Bugs #4766: testing the autofs plugin
|Fix] FusionDirectory plugins - Bugs #4772: Autofs - Taille de champ "entrée automount" trop petite
|Fix] Bugs #4831: Allow setting server name for password recovery feature
|Fix] FusionDirectory plugins - Bugs #4874: plugins where there is still some images not in theme
|Fix] Bugs #4875: Hooks can lead to arbitrary code execution
|Fix] FusionDirectory plugins - Bugs #4876: Can't edit system: "Workstation"
|Fix] FusionDirectory plugins - Bugs #4877: Can't edit Dns Zone.
|Fix] FusionDirectory plugins - Bugs #4878: Can't create "Network devices"
|Fix] FusionDirectory plugins - Bugs #4879: Can't add "printer" on Workstation
|Fix] FusionDirectory plugins - Bugs #4880: Remote Desktop stay greyed out.
|Fix] Bugs #4882: Session lifetime...
|Fix] FusionDirectory plugins - Bugs #4883: Impossible to remove a workstation
|Fix] FusionDirectory plugins - Bugs #4884: Case sensitive and DNS
|Fix] FusionDirectory plugins - Bugs #4885: Quota plugin, server are greyed out.
|Fix] FusionDirectory plugins - Bugs #4889: adding a link from printer to suser in the same fashion as user group & roles tab
|Fix] Bugs #4890: Configuration saving is failing in setup
|Fix] Bugs #4891: We would need a hook that works only if the account is created
|Fix] Bugs #4892: Wrong placeholder names for HOOKS
|Fix] FusionDirectory plugins - Bugs #4894: printGeneric code is too old and ugly and 1.1 code should be used instead
|Fix] Bugs #4896: strings in recovery.tpl are not put in .po file
|Feature] Bugs #4897: the breezy theme should be the default one in 1.0.14
|Fix] Bugs #4898: add to documentation of the hooks that they should not contains quote for space in attributes
|Fix] Bugs #4904: changement de mot de passe reste forcé après mise à jour du mot de passe
|Fix] Bugs #4907: dans le template user, il ne mémorise pas la case forcer le changement mdp à la 1ere connexion
|Fix] Bugs #4910: Greyed out icon are the same as normal one with breezy theme
|Fix] Bugs #4912: erreurs php dans /var/log/messages (class_IconTheme.inc)
|Fix] Bugs #4913: adding the eps and png of the FusionDirectory logo to the sources
|Fix] Bugs #4915: refaire la favicon de FusionDirectory
|Fix] Bugs #4916: Les liens sont en bleus à beaucoup d’endroit où cela semble inadapté
|Fix] Bugs #4918: Clean tpl files
|Fix] Bugs #4920: plugins where there is still some images not in theme
|Fix] Bugs #4921: update timeout colors
|Fix] FusionDirectory plugins - Bugs #4922: old option option still present in cyrus mail method
|Fix] Bugs #4923: uid not passed to the mail-method cyrus
|Feature] Bugs #4924: adding the language Finnish (Finland) (fi_FI)
|Fix] Bugs #4925: document the autofs plugin
|Fix] FusionDirectory plugins - Bugs #4927: fdCommunityMembershipType should no be used/displayed in community projects dep.
|Fix] Bugs #4933: the default theme should be renomed legacy or kde3
|Fix] FusionDirectory plugins - Bugs #4934: the default theme should be renomed legacy or kde3
|Feature] FusionDirectory plugins - Bugs #4937: the breezy theme should be the default one in 1.0.14
|Fix] FusionDirectory plugins - Bugs #4943: when clicking on the left menu on the gpg entry FusionDirectory crash
|Fix] FusionDirectory plugins - Bugs #4944: when clicking on the left menu on the opsi import entry FusionDirectory crash
|Fix] FusionDirectory plugins - Bugs #4946: the game plugin should be removed as its not longer usefull
|Fix] FusionDirectory plugins - Bugs #4954: Regression: "Generic IMAP Server" (fdImapServer) was removed
|Fix] FusionDirectory plugins - Bugs #4956: errror when suppressing or adding some service
|Fix] Bugs #4957: when upgrading from 1.0.13 to 1.0.13-fixes going to breezy by default break fusiondirectory
|Feature] Bugs #4970: templates have no acls
|Fix] FusionDirectory plugins - Bugs #4971: Some services icons are missing
|Fix] Bugs #4972: ACL assignment is broken
|Fix] Bugs #4974: LDIF import crash on value 0
|Fix] Bugs #4980: Icon status/dialog-warning missing in size 48 in breezy
|Fix] Bugs #4981: trying to put an ACL assignments on an non existing branch crashes
|Fix] Bugs #4982: CSV import base edition is broken
|Fix] Bugs #4989: Recovery error message
|Fix] FusionDirectory plugins - Bugs #4992: PHP error "deprecated call to old tabclass constructor"
|Fix] FusionDirectory plugins - Bugs #4994: Shell is broken
|Fix] FusionDirectory plugins - Wishlist #4773: Autofs - Vu liste n'affiche pas l'information principale pour les "Répertoires"
|Fix] FusionDirectory plugins - Wishlist #4881: Is possible to modify url link?
|Fix] FusionDirectory plugins - Wishlist #4955: add two boolean attributes to community organization
* FusionDirectory 1.0.13
|Fix] Bugs #4570: error when saving a user with php7
|Fix] Bugs #4571: when clicking on department in the left menu on php7
|Fix] Bugs #4757: padlock next to user dn in edition screen is confusing
|Fix] Bugs #4759: disabled account can still reset password ?
|Fix] FusionDirectory plugins - Bugs #4763: Translation mishaps in dovecot plugin
|Fix] Bugs #4764: Fusiondirectory exposes bindpw on error
[Feature] Bugs #4774: Add an LDAP logging system
|Fix] FusionDirectory plugins - Bugs #4776: unwanted debug in jsonrpc.php
|Fix] FusionDirectory plugins - Bugs #4782: Systems snapshots are broken
[Feature] FusionDirectory plugins - Bugs #4783: Use of templates through the webservice
[Feature] Bugs #4785: create an interface to manage the option for the script managing the expiration messages
|Fix] FusionDirectory plugins - Bugs #4787: Mail server should not be mandatory in alias plugin
|Fix] FusionDirectory plugins - Bugs #4788: 'Incorrect response id (request id: 1, response id: )'
|Fix] FusionDirectory plugins - Bugs #4789: Webservice setfields method needs documentation
|Fix] Bugs #4794: sambaNTpassword is not updated when password is changed through «My account» menu
|Fix] Bugs #4806: Importing ldif file with comments generates error
|Fix] Bugs #4821: password recovery, email field focus
|Fix] Bugs #4823: Imagick is not detected during the setup
|Fix] Bugs #4824: Error when I will create fd-admin in the setup
|Fix] Bugs #4826: File docs/INSTALL must be updated or deleted
|Fix] Bugs #4828: FusionDirectory does not work with Smarty 3.1.29
|Fix] Bugs #4833: Uncaught exception 'NonExistingObjectTypeException' with message 'Non-existing type ""
[Feature] Bugs #4853: get the value of the connect user in a variable to be passed to scripts hooks
|Fix] FusionDirectory plugins - Bugs #4855: PHP error about DNSenabled
|Fix] FusionDirectory plugins - Bugs #4856: Copy past test of server
[Feature] FusionDirectory plugins - Bugs #4857: When mail can be used to login, it should be unique
|Fix] Bugs #4863: top header of the login page keep the green even when the breezy them is activated
|Fix] FusionDirectory plugins - Wishlist #4790: make functions names consistent
|Fix] FusionDirectory plugins - Wishlist #4791: setfields() : values structure and fields names
|Fix] FusionDirectory plugins - Wishlist #4798: fields() : suggestion on returned array structure
[Feature] FusionDirectory plugins - Wishlist #4799: creating an object with several activated tabs in one go
[Feature] FusionDirectory plugins - Wishlist #4854: adding "lock/unlock entry" function to the webservice
* FusionDirectory 1.0.12
|Fix] Bugs #4645: Could not add groups to user templates
|Fix] FusionDirectory plugins - Bugs #4658: csv import with empty field
|Fix] Bugs #4678: group : member objects list
[Feature] FusionDirectory plugins - Bugs #4689: we should be able to create mail address without having a server and a service referenced
|Fix] FusionDirectory plugins - Bugs #4692: remove the antivirus service
|Fix] FusionDirectory plugins - Bugs #4699: move postfix service in his own plugin
|Fix] FusionDirectory plugins - Bugs #4706: move the spamassasin service to his own plugin
|Fix] Bugs #4713: remove the antivirus service icons
|Fix] FusionDirectory plugins - Bugs #4714: leftover in services-fd.schema of the removal of the asterisk plugin
|Fix] FusionDirectory plugins - Bugs #4721: move the spam options for the mail user tab to a spamassasin user tab
|Fix] Bugs #4735: nginx + php-fpm with fusiondirectory
|Fix] Bugs #4737: we should remove data['SERVERS']['IMAP'] from config
|Fix] FusionDirectory plugins - Bugs #4739: remove the option Use custom sieve script (disables all Mail options!)
|Fix] FusionDirectory plugins - Bugs #4740: in the cyrus service the hostname, port should be mandatory
|Fix] FusionDirectory plugins - Bugs #4741: in the dovecot service the hostname, port should be mandatory
|Fix] FusionDirectory plugins - Bugs #4742: ppolicy: description cannot be set
|Fix] Bugs #4746: Error when saving user if objectClass person is missing.
|Fix] Bugs #4754: user template : %r|% does not work in password
|Fix] Bugs #4756: Update documentation with fixes/dev repos info.
|Fix] Wishlist #4687: ACL assignments can’t give rights to groups.
|Fix] Wishlist #4722: Use Nginx instead of Apache2
[Feature] Wishlist #4738: extend the search query to email
[Feature] FusionDirectory plugins - Wishlist #4743: ppolicy: user interface improvements
[Feature] Wishlist #4755: user template: password should show only one field
* FusionDirectory 1.0.11
|Fix] FusionDirectory plugins - Bugs #4391: Choices order seems random in shell
|Fix] Bugs #4621: Use of mcrypt should be removed
|Fix] FusionDirectory plugins - Bugs #4630: DNS adding reverse zone issue (tested on FD 1.0.10) in class B and class A
|Fix] FusionDirectory plugins - Bugs #4631: DNS menu is not displayed without systems plugin
|Fix] FusionDirectory plugins - Bugs #4632: Webservice needs a better method for modification
|Fix] Bugs #4633: change requirement to php 5.4 for centos
|Fix] Bugs #4634: DNS PTR migration does not work
|Fix] FusionDirectory plugins - Bugs #4635: [DNS] Reverse zone association breaks when there are several A record for the same domain.
|Fix] FusionDirectory plugins - Bugs #4636: [SYSTEMS] When add Windows Workstation (winStation) and enable DHCP it will not be enabled when edit again
|Fix] FusionDirectory plugins - Bugs #4637: DNS tab won’t work on winstations
|Fix] Bugs #4638: UI issue, entry disappear in 'Base' dropdown
|Fix] Bugs #4639: depending on FD language setting, the calendar doesn't show up on icon click
|Fix] Bugs #4640: strange error when following org's link from user "references" tab
|Fix] Bugs #4652: The weird _copy fallback should be removed
|Fix] Bugs #4653: Having a wrong default location should trigger a fatal error
|Fix] FusionDirectory plugins - Bugs #4654: DHCP seems to use inexistant method getCn
|Fix] Bugs #4655: The edit anyway button does not work in my account menu
|Fix] FusionDirectory plugins - Bugs #4658: csv import with empty field
|Fix] Bugs #4659: when creating a user via template or csv import, mandatory , alreay defined fields have to be re-inputed even if already defined
|Fix] Bugs #4667: Samba munged dial fields are always asked when using a template
|Fix] Bugs #4673: ImageAttribute are broken
|Fix] FusionDirectory plugins - Bugs #4675: csv import, add an option for not importing anything in case of error
|Fix] FusionDirectory plugins - Bugs #4676: Edit IDs problems related to our selenium test
|Fix] FusionDirectory plugins - Wishlist #4657: community organization membership type
|Fix] FusionDirectory plugins - Wishlist #4660: csv import lacks an option or help on what to do with the first line
* FusionDirectory 1.0.10
[Feature] Bugs #1217: DNS service must be redone
|Fix] Bugs #2171: creating CNAME entries is not intuitive
|Fix] Bugs #2573: when changing the address range of a no used zone name, the reverse of the dns of this zone break
|Fix] Bugs #4251: When I have DNS zone created, DNS plugin asks for subnet and netmask for that zone.
|Fix] Bugs #4468: Error when I try to move a system with the DNS tab activate
|Fix] Bugs #4476: rewrite the part about fusiondirectory core in the documentation
|Fix] Bugs #4477: rewrite the configuration password recovery page as this as been integrated into the configuration in core
|Fix] Bugs #4480: LDAP::convert and LDAP::fix functions are causing problems
|Fix] Bugs #4482: Debug log prevent connection in some cases
[Feature] Bugs #4484: allow ldap ipv6 uris
|Fix] Bugs #4490: nagios.tpl file is not used anymore
|Fix] Bugs #4495: Use ldap_escape in compute_dn
[Feature] Bugs #4496: DNS plugin should support RFC 2317 for reverse zones
|Fix] Bugs #4498: Bad error message when we will use a GID with a non-existent group
[Feature] Bugs #4504: Support for split horizon should be added
|Fix] Bugs #4505: fusiondirectory-setup --migrate-users not work when the users don't have all the samba attributs
|Fix] Bugs #4508: second email and first email are inverted in the password recovery configuration page
|Fix] Bugs #4509: Force GID option is broken
|Fix] Bugs #4511: Add a button to launch argonaut-ldap2zone from FusionDirectory
|Fix] Bugs #4512: when using cyrus in unix hierarchy mode and creating a user and activating mail tab at the same time, the mailbox is not created
|Fix] Bugs #4514: It takes too long to load the reference tab for a DNS zone
[Feature] Bugs #4515: fusiondirectory-setup need an option to migrate the dns 1.0.9.x version to 1.0.10
|Fix] Bugs #4517: Some obsolete objectClass are still searched for in config
|Fix] Bugs #4518: Plugin deletion contains some useless ldap operation
|Fix] Bugs #4519: ldap::rmdir_recursive is not optimal
|Fix] Bugs #4520: Syslog server field should be removed
|Fix] Bugs #4521: LDAP server field should be removed (gotoLdapField)
|Fix] Bugs #4523: ntp server should be removed
[Feature] Bugs #4525: we should have attribute for start and end date into the personal-fd.schema and add it to the personal schema
[Feature] Bugs #4526: add "co" attribute into personal-fd.schema and into personal plugin
[Feature] Bugs #4527: create a community plugin to manage community aka organization and projects
[Feature] Bugs #4528: tab community on the user
[Feature] Bugs #4529: The category in department and organization should be a dropdown filled from the configuration backend
[Feature] Bugs #4530: in the department and organization we need to add the labeledUri
[Feature] Bugs #4531: The co (country friendlyName) in department and organization should be added and be dropdown filled from the configuration backend
[Feature] Bugs #4532: the personal plugin should have a field where we can put the badge number
[Feature] Bugs #4533: make a subcontracting plugin
|Fix] Bugs #4540: Problème avec les vcf (vcards)
|Fix] Bugs #4541: [intégration du schéma OPENNEBULA et création du plugin de gestion des groupes]
|Fix] Bugs #4542: fusiondirectory-setup --deprecated-ldif not found the asterisk deprecated
[Feature] Bugs #4543: Add an option to fusiondirectory-setup to see the uid that are duplicated
[Feature] Bugs #4544: Possibility to see the uid that are duplicate when we install FusionDirectory
|Fix] Bugs #4545: When we migrate an old FusionDirectory we not have argonautClientProtocol attribute
|Fix] Bugs #4555: the terminal plugin has an error with the latest ntp removal fix
|Fix] Bugs #4557: when a user is on top people branch and get an acl in subtree for a lower branch i get " The supplied base is not valid and has been reset to the previous value! "
[Feature] Bugs #4561: be able to select all user from ou=people,dc=opensides,dc=be but be confined to your branch for all the rest
[Feature] Bugs #4562: add http auth
|Fix] Bugs #4563: DNS zone serial is not updated when record are changed through the DNS tab of a system
|Fix] Bugs #4569: Groups containing unknown type objects or deleted objects does not appear
|Fix] Bugs #4575: Error with samba plugin and sambantpassword attribute
[Feature] Bugs #4576: create tab for the plugin community onto organization and department
[Feature] Bugs #4580: Newsletter plugin
|Fix] Bugs #4591: It’s impossible to delete root records in DNS zones
|Fix] Bugs #4592: its best if we use the /html/themes everywher in place of /html/images evertime is possible
|Fix] Bugs #4600: 'base' sticky or not ?
|Fix] Bugs #4602: assignements / object selection step : sometimes the current object doesn't shows up
|Fix] Bugs #4603: With debug set, toggle button is absent when selecting users to add them to a group
|Fix] Bugs #4605: inside group selections of users, the selections is not showing all users
[Feature] Bugs #4606: the login column is missing in the groupOfname user selection list
|Fix] Bugs #4608: assignements / object selection step : sometimes the current object doesn't shows up
|Fix] Bugs #4610: postalAddress (and homepostalAddress) content should stick to the RFC
|Fix] Bugs #4610: postalAddress (and homepostalAddress) content should stick to the RFC
|Fix] Bugs #4611: setRequired should be public
|Fix] Bugs #4613: Error about sambaUnixIdPool is unclear
|Fix] FusionDirectory plugins - Bugs #4620: postalAddress (and homepostalAddress) content should stick to the RFC
|Fix] FusionDirectory plugins - Bugs #4622: DNS record should be sorted
[Feature] Wishlist #2843: Assigning multiple domain names for servers.
[Feature] Wishlist #3265: rewrite DNS plugins
|Fix] Wishlist #4252: Systems plugin - when enable "Add to DNS" should be able to check about adding PTR and more A records
|Fix] Wishlist #4478: Using %askme% in User id and group id in templates does not work
|Fix] Wishlist #4486: possible documentation tweaks
|Fix] Wishlist #4492: "login" name in group add page
|Fix] Wishlist #4497: The order of user id and group id are inverted
[Feature] Wishlist #4560: community users and entities management specifications
[Feature] Wishlist #4564: Add a C modifier for counting an array
[Feature] Wishlist #4565: Fixedbutton themes should replace the default one
[Feature] Wishlist #4609: Add "project/org full name" attribute in dep community's tab
* FusionDirectory 1.0.9.3
[Fix] Bugs #4444: Debug log prevent connection in some cases
[Fix] Bugs #4452: Adding a user to a group using "Groups and roles" tab creates some PHP errors
[Fix] Bugs #4453: Adding a user to a group using "Groups and roles" with trustMode fails
[Fix] Bugs #4456: Can't find a way to specify a '/' in distribution or media name in the repository plugin
[Fix] Bugs #4457: FusionDirectory don't find the dns server if he is in a department
[Feature] Bugs #4459: Desactivate other authentification method from configuration file
[Fix] Bugs #4463: There are still traces of the rsyslog plugin in the schema and config class
[Fix] Bugs #4464: There are still traces of the rsyslog plugin in the schema and config class
[Fix] Bugs #4465: remove from the service-fd.schema objectClass no longer used
[Fix] Bugs #4466: Pull request 11 from github
[Fix] Bugs #4479: In primary group in unix tab there is a «None» option
[Fix] Bugs #4481: «Enable primary group filter» option is obsolete
[Fix] Bugs #4485: 'fusiondirectory-insert-schema -m' should check if the specificed file exists
[Fix] Wishlist #4385: Locked users can connect using SSH keys
[Fix] Wishlist #4473: Locked users can connect using SSH keys
* FusionDirectory 1.0.9.2
[Fix] Bugs #3880: mailbox deletion through sieve and cyrus does not work
[Fix] Bugs #4067: Argonaut Server documentation should mention «Get packages informations» option
[Fix] Bugs #4109: The fai tab should not contain kernel options
[Fix] Bugs #4111: Clean FAI support daemon method
[Fix] Bugs #4200: I must tick "Search in subtrees" to see the elements in repository management
[Fix] Bugs #4209: we can no longer select a windows workstation in the user samba tab systeme trust
[Fix] Bugs #4216: the setup in the ldap inspection step need a refresh button
[Feature] Bugs #4217: the reset password system should look for supannMailPerso if the supann plugin is installed
[Feature] Bugs #4219: allow FusionDirectory to be integrated into a cas infrastructure
[Fix] Bugs #4220: Add a function to list the tab that are activate on an object in fusiondirectory-shell
[Fix] Bugs #4221: developer doc on documentation.fusiondirectory.org should have an explanation of the is_this_account system
[Feature] Bugs #4225: the reset password system should look for supannMailPerso if the supann plugin is installed
[Fix] Bugs #4227: Change default block size value in 1024
[Fix] Bugs #4231: difference in provided ldap server in debian and Centos
[Feature] Bugs #4238: ReadOnlyLDAPAttribute should be moved to class_attribute.inc
[Fix] Bugs #4239: ReadOnlyLDAPAttribute should be moved to class_attribute.inc
[Fix] Bugs #4241: Problem when I try to save an already existing supann entry - dropdown dependancy not already filled
[Fix] Bugs #4253: PHP error when I go at dashboard
[Fix] Bugs #4254: we can no longer select a windows workstation in the user samba tab systeme trust
[Fix] Bugs #4261: It appears that prehooks not work with password recovery
[Feature] Bugs #4272: the recovery password page should be customizable to tell user where to go / call
[Feature] Bugs #4273: the recovery password page should be customizable
[Fix] Bugs #4281: PHP error about wrong acl when I edit the configuration
[Fix] Bugs #4288: the documentation about automation should be added
[Fix] Bugs #4292: Migrate last FAI classes to simplePlugin
[Fix] Bugs #4298: the usage of the fusiondirectory-shell doesnt explain the various options for connecting
[Fix] Bugs #4334: the url in the webservice-shell should have the jsonrpc.php added automatically
[Fix] Bugs #4344: when saving the configuration with the application plugin installed
[Fix] Bugs #4345: password recovery show an error when activating recovery password
[Fix] Bugs #4346: CSV import is broken
[Fix] Bugs #4347: Remove config search method
[Fix] Bugs #4353: Error when I try to grab centos packages with an argonaut-server on centos
[Fix] Bugs #4364: Clean up the DaemonEvent mess
[Fix] Bugs #4365: We should delete the rsyslog plugin
[Fix] Bugs #4367: We should delete the databaseManagement class
[Fix] Bugs #4378: user deleted when we change its base
[Fix] Bugs #4379: can't change informations in "Network Settings" in a network component object in systems
[Fix] Bugs #4380: when migrating users with fusiondirectory-setup –migrate-users it cannot migrate user with samba attributes
[Fix] Bugs #4382: SSH plugin: error while adding keys with space(s) in comment
[Fix] Bugs #4386: We have an error when we try to start / stop a service from FusionDirectory
[Fix] Bugs #4392: Error when I open a system from the inventory menu
[Fix] Bugs #4393: The diff between 1.0.9.2 and 1.1 should as short as possible
[Fix] Bugs #4394: Remove the mail method Cyrus Sendmail
[Fix] Bugs #4395: PHP errors when I open inventory tab from a system
[Fix] Bugs #4409: the ssh plugin doesnt support ecdsa-sha2-nistp256 ssh public key format
[Fix] Bugs #4419: remove the class_BootKernelAttribute.inc
[Fix] Bugs #4425: remove fix_munged from the samba plugin
[Fix] Wishlist #2166: Semantic of plDescription and plShortname
[Feature] Wishlist #4001: passwordProposalHook
[Fix] Wishlist #4343: Underscores in departement/domain component names not allowed
* FusionDirectory 1.0.9.1
[Feature] Bugs #4136: we should remove the samba.schema from our contrib directory in core source
[Fix] Bugs #4158: Fatal error after role creation
[Fix] Bugs #4168: Underscores in group names not allowed anymore
[Fix] Bugs #4169: Uncaught exception 'NonExistingObjectTypeException' with message 'Non-existing type "group"
[Fix] Bugs #4172: Filter for ogroups should be on groupOfNames
[Fix] Bugs #4173: When mixed group plugin is installed group and ogroup tabs should be merged
[Fix] Bugs #4179: st field seems to be reading correctling but not setting correctly in a template
[Fix] Bugs #4183: option host-name with winstations results in error
[Fix] Bugs #4184: We missed a foreignkey in system trust in unix tab for user
[Fix] Bugs #4185: The configuration is lost after upgrading to 1.0.9.1
[Fix] Bugs #4190: fusiondirectory-setup should be improved
[Fix] Bugs #4191: Error in the fusiondirectory-setup
[Fix] Bugs #4193: Remove gosaAccount with fusiondirectory-setup --migrate-users
[Fix] Bugs #4194: list of users membership in group when in mixed mode 1.0.9x is not showing the same info as in 1.0.8.9
[Fix] Bugs #4195: when going to the page groups and roles with mixedgroup plugin installed
[Fix] Bugs #4196: roles should no allow space in their name
[Fix] Bugs #4199: the logon hours page is not correctly constructed
[Fix] Wishlist #4180: on Droplist, put entries in alphetical order
[Fix] Bugs #4206: when a mixed group posixGroup and groupOfNames without the extra fd objectClass and attributes is opened then saved it tell me a group with the same name already exist
[Fix] Bugs #4208: list of group membership in user when in mixed mode 1.0.9x is not showing the same info as in 1.0.8.9
[Feature] Wishlist #4154: add support for displayName attribute
* FusionDirectory 1.0.9
[Feature] Bugs #955: write https support for PHP JSONRPC
[Fix] Bugs #1608: ACL sur AddressBook
[Fix] Bugs #1955: unique is checked only in the object base
[Fix] Bugs #2126: post* scripts failure could trigger a revert
[Feature] Bugs #2407: Migrate class_user to simple-plugin
[Feature] Bugs #2509: LDAP manager should be using simplePlugin
[Fix] Bugs #2595: The code should follow code guidelines
[Fix] Bugs #2602: Improve debug-help plugin
[Feature] Bugs #2608: group should use simplePlugin
[Fix] Bugs #2622: Select classes should be cleaned and regrouped
[Feature] Bugs #2624: ogroup should use simplePlugin
[Fix] Bugs #2642: Select classes should be cleaned and regrouped
[Feature] Bugs #2650: ogroup should use simplePlugin
[Fix] Bugs #2678: sudoOption should allow to negate
[Feature] Bugs #2696: FusionDirectory should have a CLI
[Fix] Bugs #2894: More plugins should use foreignKeys
[Feature] Bugs #2919: Setup should be rewritten
[Feature] Bugs #3063: Migrate fai to simplePlugin
[Feature] Bugs #3064: Migrate fai to simplePlugin
[Fix] Bugs #3078: Clean ArrayAttribute hierarchy
[Fix] Bugs #3162: We need to clarify role situation
[Fix] Bugs #3181: Copy user in an other base create the user in the root base
[Fix] Bugs #3182: We need to clarify role situation
[Fix] Bugs #3186: when creating the fd-admin user in the migration phase i got an error
[Fix] Bugs #3221: Clean dead code
[Fix] Bugs #3222: Clean dead code
[Fix] Bugs #3231: Remove useless snapshot fields from config ldap schema
[Feature] Bugs #3233: We should use freedesktop Icon Theme Specification
[Fix] Bugs #3237: System trust in Unix tab is broken
[Fix] Bugs #3242: samba group tab is broken
[Fix] Bugs #3247: Plugins needs to be able to know which objectType they are opened as
[Fix] Bugs #3248: Plugins needs to be able to know which objectType they are opened as
[Fix] Bugs #3250: unique is checked only in the object base
[Fix] Bugs #3255: Better error message if release is not set
[Feature] Bugs #3272: All systems object should use simpleTabs
[Fix] Bugs #3299: Use relative path for geticon
[Fix] Bugs #3342: Welcome icon is broken in 1.0.9
[Fix] Bugs #3343: put the obsolete word into the system-fd.schema each time we see deprecated
[Fix] Bugs #3345: remove the uw-imap plugin from fusiondirectory sources
[Fix] Bugs #3354: Error about missing FAI class when creating a debian repository
[Fix] Bugs #3355: weird things happens when moving error pop-ups
[Feature] Bugs #3366: Supann should use objects class
[Fix] Bugs #3384: We need to remove manual handling of foreignKeys
[Fix] Bugs #3386: We need to remove manual handling of foreignKeys
[Fix] Bugs #3418: ButtonAttribute API has changed
[Fix] Bugs #3420: when creating a generic user, only filling the generic tab fusiondirectory create a samba and userpassword
[Fix] Bugs #3424: PHP errors in setup step migrate
[Fix] Bugs #3432: fdSaslRealm and fdSaslExop are booleans in the schema
[Fix] Bugs #3440: Viewing a group removes all members that don't have a memberUid in addition to member attribute
[Fix] Bugs #3451: Some fai code should be made generic
[Fix] Bugs #3452: remove the obligation to have an gosaAccount on user entries to be displayed by FusionDirectory
[Fix] Bugs #3471: move the objectgroup plugin inside the group plugin
[Fix] Bugs #3503: Argonaut is sometimes called «infastructure service» and sometimes «service infrastructure»
[Fix] Bugs #3587: Edit a template add bad characters
[Fix] Bugs #3589: Must set blocksize > 0 to cancel
[Fix] Bugs #3588: Copy LAST's scripts create an empty class
[Fix] Bugs #3593: We should migrate DNS and DHCP services root objects
[Feature] Bugs #3594: We should be able to use roles for ACL assignements
[Fix] Bugs #3602: password recovery config should be merged with core configuration
[Fix] Bugs #3636: Main menu should handle better icon sizes
[Fix] Bugs #3675: Roles icon is always activated
[Fix] Bugs #3694: openstack-compute is obsolete and should be deleted
[Fix] Bugs #3718: groupOfNames and rfc2307bis situation must be cleaned
[Fix] Bugs #3722: We should remove the «enable copy&paste» option
[Fix] Bugs #3733: Systems classes needs compute_dn methods
[Fix] Bugs #3740: CSV import is broken
[Fix] Bugs #3741: Error when I do fusiondirectory-insert-schema
[Fix] Bugs #3743: In FAI plugin base propositions should contain distribution
[Fix] Bugs #3745: Can’t create FAI profile
[Fix] Bugs #3747: We cannot set a dhcp for a system
[Fix] Bugs #3748: Set a default secure_path when we activate it
[Fix] Bugs #3751: Systems plugin is broken
[Fix] Bugs #3752: the setup doesnt find the ldap anymore when fai plugin is installed
[Fix] Bugs #3755: fusiondirectory.conf attribute configVersion is unused and should be removed
[Fix] Bugs #3756: Error in the setup if the schemas are not inserted
[Feature] Bugs #3771: Add /sbin/nologin in shells
[Fix] Bugs #3777: remove the obligation to have an gosaAccount on user entries to be displayed by FusionDirectory
[Fix] Bugs #3779: Fatal error in recovery: Non-existing type "user"
[Feature] Bugs #3780: We should migrate DNS and DHCP services root objects
[Fix] Bugs #3787: template-fd.schema should be in the default schemas in fusiondirectory-insert-schema
[Fix] Bugs #3788: template-fd.schema is not inserted
[Fix] Bugs #3792: Copy of partition class does not copy the disks
[Fix] Bugs #3795: Copy of fai objects is not working
[Fix] Bugs #3800: Errors about base are shown when switching from FAI to an other plugin
[Fix] Bugs #3801: ogroup hold previous icons
[Fix] Bugs #3802: PHP error: undefined variable: dn
[Feature] Bugs #3807: Fd should have three mode of fonction posixGroup / rcf2307bis (groupOfNames) / quirk mode (with modified core schema)
[Fix] Bugs #3813: Ppolicy plugin should check password history
[Fix] Bugs #3820: Some PHP errors on password recovery page
[Fix] Bugs #3839: cleanup the icons situation
[Fix] Bugs #3840: cleanup the icons situation
[Fix] Bugs #3842: Trustmode in template is automaticaly desactivated
[Fix] Bugs #3843: Error when we try to lock a user
[Fix] Bugs #3844: Add title option on the tr
[Fix] Bugs #3845: Error when we add a posix group
[Fix] Bugs #3846: template are in their own branch now but code still reference gosaUserTemplate objectClass who is deprecated
[Fix] Bugs #3847: template are in their own branch now but code still reference gosaUserTemplate objectClass who is deprecated
[Feature] Bugs #3848: generic user view should be reorganized
[Fix] Bugs #3849: we should remove (v2.6.1) from the schema descriptions
[Fix] Bugs #3850: the DESC of each attribute and object should describe exactly the purpose of it
[Fix] Bugs #3851: it seems the gosaCacheEntry objectClass is no longer used
[Fix] Bugs #3852: we should remove (v2.6.1) from the schema descriptions
[Fix] Bugs #3853: Remove deprecated objectClass and attributes of 1.0.8.7
[Fix] Bugs #3855: Templates and hooks should be fixed
[Fix] Bugs #3856: Delete CUPS service
[Fix] Bugs #3857: We should be able to apply templates
[Fix] Bugs #3858: Delete CUPS service references and goService
[Fix] Bugs #3861: PHP error when we create a template
[Fix] Bugs #3862: developement documentation should be updated for icons situation
[Fix] Bugs #3896: Set deprecated the attributes gosaVacationStart and gosaVacationStop
[Fix] Bugs #3897: Setup fails if root object is missing
[Fix] Bugs #3903: values in gecos, cn, displayName (fields being derived from sn and givenName) have one trailing whitespace
[Fix] Bugs #3904: fdAccountPrimaryAttribute set to uid, accounts get changed into accounts with cn based DN
[Fix] Bugs #3905: Icons of actif tabs not appear on template
[Fix] Bugs #3906: PHP error when I try to copy a template
[Feature] Bugs #3907: Rework CN and DN related options
[Fix] Bugs #3908: Create a user with template that force primary group not work
[Fix] Bugs #3914: We should remove the class tabs
[Fix] Bugs #3915: fd-admin creation fail in RHEL6
[Fix] Bugs #3916: We should remove the class tabs
[Feature] Bugs #3921: User templates should support roles
[Feature] Bugs #3922: We need a plugin for support of ugly groups
[Feature] Bugs #3929: Group synchronization Samba / UNIX
[Feature] Bugs #3931: We need a plugin for support of ugly groups
[Fix] Bugs #3938: Password default hashes of type CRYPT/XXX other than CRYPT/MD5 are not working
[Fix] Bugs #3940: the in ldap inspection phase departements should not show fusiondirectory owned branch to migration
[Feature] Bugs #3944: Add a option to not touch at the reverse zone
[Fix] Bugs #3947: FD should stop using the word generic everywhere
[Fix] Bugs #3949: We should get rid of get_post function
[Fix] Bugs #3952: We miss dhcp service icon
[Fix] Bugs #3953: Schema attributes and OC should be renamed
[Fix] Bugs #3954: The ids in aclRole depend of the langage of FusionDirectory
[Fix] Bugs #3955: ACL roles should use geticon as well
[Fix] Bugs #3957: PHP error in simpleService
[Fix] Bugs #3958: fusiondirectory-shell don't give a prompt to create an user
[Fix] Bugs #3959: Password force default hash does not work
[Feature] Bugs #3966: Argonaut server should support HTTPS
[Fix] Bugs #3980: move phones out the asterisk plugin to the system plugins
[Fix] Bugs #3981: remove the asterisk plugin from 1.0.9
[Fix] Bugs #3990: removing the test in fusiondirectory web setup for the database library
[Fix] Bugs #3991: comment is wrong on the test for the php ldap extension
[Fix] Bugs #3992: remove the fax plugin
[Fix] Bugs #4000: some entries in the supann plugin don't have english explanation next to the attribute name
[Fix] Bugs #4002: password.tpl is not used anymore it should be deleted
[Fix] Bugs #4007: when installing all plugins i got error message about samba sid-rid
[Fix] Bugs #4008: edit locking should have a default value selected during web setup
[Fix] Bugs #4009: The configured mail attribute '' is unsupported! when all plugin at installed at once
[Feature] Bugs #4012: Argonaut server should support HTTPS
[Fix] Bugs #4014: function missing in personal/generic/class_user.inc
[Feature] Bugs #4016: Webservice must respect ACLs
[Feature] Bugs #4022: We should be able to create a user with fusiondirectory-shell
[Fix] Bugs #4034: Remove the FIXME in FAI about priority
[Fix] Bugs #4037: It seem that force ssl not work for webservice
[Fix] Bugs #4038: Mandatory for primary dns server and mailadress not work
[Fix] Bugs #4039: Error when I update dns by dns service
[Feature] Bugs #4040: add spanish colombian to FD
[Fix] Bugs #4042: We missed a method to delete objects with fusiondirectory-shell
[Fix] Bugs #4043: Display message about sasl but I not use it
[Fix] Bugs #4045: Error when I edit FAIBASE partition class
[Feature] Bugs #4047: creating an argonaut-fai-monitor service
[Fix] Bugs #4050: we need a fonction to convert string into lowercase
[Fix] Bugs #4051: Mac addresses should always be in lowercase
[Fix] Bugs #4056: We should remove the Automatic logins option
[Fix] Bugs #4058: FAIstate is not set when we click on reinstall in systems.
[Fix] Bugs #4059: Manage argonaut-fuse with FusionDirectory and remove serviceRepository from the actions
[Fix] Bugs #4060: Erreur plugin game lors de la création de serveur
[Fix] Bugs #4061: PHP error when I use a template to create a user
[Fix] Bugs #4062: Specify POSIX group in a message
[Fix] Bugs #4063: Use a modifer for password in a template not work in SSHA
[Fix] Bugs #4064: PHP error when I delete a template
[Fix] Bugs #4065: I got a PHP error when I open a package class
[Fix] Bugs #4066: Weblink refers to IPMI
[Fix] Bugs #4068: password.tpl is not used anymore it should be deleted
[Fix] Bugs #4072: CSV import is broken
[Fix] Bugs #4073: CSV import is broken
[Fix] Bugs #4076: eduPersonNickName isn't save if modified and generate an error if account with eduPersonNickName is deleted
[Fix] Bugs #4083: the phone component should not have a nis group tab
[Fix] Bugs #4092: Base field should show "/" instead of being empty for root.
[Fix] Bugs #4093: There are HTML errors in the code
[Fix] Bugs #4100: The logout screen should be redone (session expiry)
[Fix] Bugs #4102: Kolab plugin should specify «Kolab 2»
[Fix] Bugs #4107: the autodect button for the mac address should be removed
[Fix] Bugs #4112: the dns plugin allow me to edit zone name and ip address in the global zone service tab
[Fix] Bugs #4114: remove slapd.conf from contrib/openldap as no one use slapd.conf anymore and there is error in it
[Fix] Bugs #4137: Locked icon on users is broken
[Fix] Bugs #4141: check-deprecated should say which obsolete objectClass an entry is using
[Fix] Bugs #4143: the template management has completely changed in 1.0.9 so we need a new documentation about this
[Fix] Bugs #4144: Reference for ogroup not work
[Fix] Bugs #4145: Systems plugin needs to include obsolete asterisk attributes
[Fix] Bugs #4146: check the copyright date on licence in each file
[Fix] Bugs #4147: check the copyright date on licence in each file
[Fix] Bugs #4148: PHP Errors when I set some informations in a template
[Fix] Bugs #4150: PHP error on template after I remove the userPassword
[Fix] Bugs #4151: we cannot save a phone because the ipHostNumber attribute is not saved
[Fix] Bugs #4152: Add an example of -o option to man page of fusiondirectory-insert-schema
[Feature] Wishlist #1887: Template system should be redone
[Feature] Wishlist #2004: Object groups should be handled automatically
[Feature] Wishlist #2516: Having a way of generating objectTypes graphs
[Feature] Wishlist #2629: Object groups should be handled automatically
[Feature] Wishlist #2948: we should add write features to the webservice
[Feature] Wishlist #3158: FusionDirectory could have an alternate theme
[Feature] Wishlist #3258: Paste SSH public key directly in FD interface
[Feature] Wishlist #3317: LDAP reorganization
[Feature] Wishlist #3334: userManagement should be using simpleManagement
[Feature] Wishlist #3383: Password change and hooks should be cleaned
[Feature] Wishlist #3388: Samba account should handle samba password
[Feature] Wishlist #3730: Ppolicy plugin
[Feature] Wishlist #3910: Move dashboard configuration in core
[Feature] Wishlist #4075: Allow select Supann Role by choosing in several base
* FusionDirectory 1.0.8.9
[Fix] Bugs #3877: add a switch to select the good library when in wheezy or jessie for fusiondirectory-shell
[Fix] Bugs #3928: Doesn't work if ldap's cn=admin has password with "<" symbol
[Fix] Bugs #3930: updating the list of supported language in fusiondirectory
[Fix] Bugs #3932: Password default hashes of type CRYPT/XXX other than CRYPT/MD5 are not working
[Fix] Bugs #3941: fusiondirectory-setup --check-ldap should respect password encoding taken from the ldap
[Feature] Bugs #3943: Add a option to not touch at the reverse zone
[Fix] Bugs #3960: fusiondirectory-shell cannot cat a user
[Feature] Bugs #3961: the DESC of each attribute and object should describe exactly the purpose of it - ported description and formatting issues to 1.0.8.x
[Fix] Bugs #3962: fusiondirectory-shell should handle multivaluated attributes properly
* FusionDirectory 1.0.8.8
[Fix] Bugs #3864: correct all the date and version on the man pages
[Fix] Bugs #3870: fusiondirectory-setup miss the explanation of --check-deprectaed into to manpages
[Feature] Bugs #3878: we need an option in fusiondirectory-setup to tell us the fusiondirectory version
[Feature] Bugs #3879: we need an option into fusiondirectory-insert-schema to empty a schema
[Fix] Bugs #3884: Setup fails if root object is missing
[Feature] Bugs #3887: Support apache group for Archlinux
[Fix] Bugs #3890: Vacation range should be disabled on mail methods as none implements it
[Fix] Bugs #3898: check if the demo plugin is current and use the current simple plugin api
[Fix] Bugs #3913: remove screenshot and demosection.php from developers packages
[Fix] Bugs #3917: remove the fusiondirectory-setup --migrate-repositories
[Fix] Bugs #3919: fusiondirectory-setup miss the explanation of --migrate-acls into to manpage
[Fix] Bugs #3920: reorganize the command for list, write, set vars
[Fix] Wishlist #3824: Unix account - /bin/false
* FusionDirectory 1.0.8.7
[Fix] Bugs #3753: Recovery password use default hash
[Fix] Bugs #3754: Password method "clear" do SSHA
[Fix] Bugs #3762: when copying 4 servers at once from a departement to another
[Feature]Bugs #3769: Add /sbin/nologin in shells
[Fix] Bugs #3772: Password recovery cannot find a suitable password method for current hash
[Fix] Bugs #3776: Php error when editing a user
[Fix] Bugs #3783: Using Password recovery with the Personal plugin fails.
[Fix] Bugs #3785: Add TXT values in global zone record
[Fix] Bugs #3808: password strength widget is broken from email redirection
[Fix] Bugs #3816: Fix refresh DNS button in systems
[Fix] Bugs #3817: Viewing a group removes all members that don't have a memberUid in addition to member attribute
[Fix] Bugs #3837: fusiondirectory-setup doesn't handle correctly start_tls support
[Feature] Wishlist #3706: Manage userCertificate attribute under User tab
[Feature] Wishlist #3757: Let password-methods-sasl prompt for a password when a password-hook is configured
[Feature] Wishlist #3809: authorize to set the same password when using simpel password system ( not ppolicy)
[Feature] Wishlist #3815: Conversion of PEM certificate in DER (binary)
* FusionDirectory 1.0.8.6
[Fix] Bugs #3235: When a manager changes its base the managed user attributes are changed
[Fix] Bugs #3604: Role icon is display for all users
[Feature] Bugs #3643: Ppolicy plugin should check password history
[Fix] Bugs #3685: generateLdif() fails with bind-passwords containg '$'
[Fix] Bugs #3687: Address book plugin show infos only in admin
[Fix] Bugs #3690: the setup doesnt find the ldap anymore when fai plugin is installed
[Fix] Bugs #3692: class_ldap.inc has leftover debug
[Fix] Bugs #3693: the apache icon for the apache plugin doesnt appaers in dashboard
[Fix] Bugs #3705: add the to faq that if user doesnt show up check if nis.schema is installed
[Fix] Bugs #3712: contributed doc for sles 11 SP3
[Fix] Bugs #3713: the group and user is different for apache on SLES 11 SP3
[Fix] Bugs #3719: ACLs of GPG-Plugin
[Fix] Bugs #3720: Language setting
[Fix] Bugs #3723: Missing icon
[Fix] Bugs #3731: A icon is missing when we set a manager
[Fix] Bugs #3732: When debug trace level is on, we can’t log in anymore
[Fix] Bugs #3738: rfc2307bis option should be removed
[Fix] Bugs #3750: fusiondirectory.conf attribute configVersion is unused and should be removed
[Feature] Wishlist #3691: Export sub entries with ldapmanager
[Feature] Wishlist #3746: Ppolicy should be applied in password recovery
* FusionDirectory 1.0.8.5
[Fix] Bugs #3249: When a duplicate is found, its dn should be given
[Feature] Wishlist #3264: Hidden password for fusiondirectory-setup --check-ldap
[Fix] Bugs #3315: Warning message during adduser process
[Feature] Wishlist #3397: Ppolicy plugin
[Fix] Bugs #3437: Handle password policy checking inside FD
[Feature] Wishlist #3477: use fai plugin without creating a repository debian bug.
[Feature] Wishlist #3482: Plugin FAI - Centos support
[Fix] Bugs #3489: Documentation pour installer les dépots RPM
[Fix] Bugs #3492: Country error
[Fix] Bugs #3507: Error in plugin-dns documentation
[Fix] Bugs #3521: Can’t give group creation right through ACL system
[Fix] Bugs #3524: Can't create/edit users with gosaMailServer Attributes via acl system
[Fix] Bugs #3525: the sudo plugin doesnt allow to save the sudoOrder
[Fix] Bugs #3527: Add the value ALL in systems and users and groups
[Fix] Bugs #3528: misleading dialog box when trying to recover password for a non-existant user
[Fix] Bugs #3533: Date d'expiration Unix and Samba
[Feature] Wishlist #3534: gosaMailDeliveryMode in Group Mail Tab
[Fix] Bugs #3536: Plugins Quota et msg :The field 'Device' contains invalid characters!
[Fix] Bugs #3537: Error when I click on reference in EJBCA section
[Fix] Bugs #3538: getbin.php should quote the file name
[Fix] Bugs #3539: User tab roles should not appear in «My account» menu
[Fix] Bugs #3540: Password Recovery error for a non-existant user
[Fix] Bugs #3544: when adding ns record in the dns zone editor global name records it doesnt add the . at the end when saving
[Fix] Bugs #3547: Password Recovery (Invalid Token)
[Fix] Bugs #3551: Invalid uri in the password recovery mail
[Feature] Bugs #3554: New functionnality: list all members for a primary group
[Fix] Bugs #3555: editing a template inside fai provoke a crash
[Fix] Bugs #3557: Plugin FAI - partition LVM
[Fix] Bugs #3561: Remove the message "Take over DNS configuration from ..."
[Feature] simple-plugin - Bugs #3562: In most password fields, autocomplete should be deactivated
[Fix] Bugs #3564: References are only checked in the base
[Fix] Bugs #3569: after the first load of the kernel to be use in the fai tab, they should be cached for the rest of the session
[Fix] Bugs #3571: Informations for DHCP and DNS are lost after a copy paste
[Fix] Bugs #3579: We should update copyright notices to 2015
[Fix] Bugs #3580: We should update copyright notices to 2015
[Fix] Bugs #3582: translation not complete
[Fix] Wishlist #3586: Modifier for templates to convert german umlauts to 7-bit ASCII
[Fix] Bugs #3590: Error message if we have an assignement with no members
[Fix] Bugs #3592: the ppolicy exemple files should be changed to use a more generic dn
[Feature] Bugs #3595: The menu should be reorganized
[Feature] Bugs #3596: Dashboard plugin should go into core
[Feature] Bugs #3600: Dashboard should be completed
[Feature] Bugs #3601: The menu should be reorganized
[Fix] Bugs #3607: in queue management we should remove the action create and the first 3 icons on the left
[Feature] Bugs #3608: dashboard should be an exhaustive statistic plugin
[Fix] Bugs #3609: system and newtork tab from the dashboard plugin goes to systems plugins to add the tab when needed
[Feature] Bugs #3610: ppolicy should add a tab to dashboard
[Feature] Bugs #3616: Dashboard plugin should go into core
[Feature] Bugs #3620: system and newtork tab from the dashboard plugin goes to systems plugins to add the tab when needed
[Fix] Bugs #3621: ejbca my account link is broken
[Feature] Bugs #3622: ppolicy should add a tab to dashboard
[Fix] Bugs #3623: Cannot create a role with the same name of an DSA object
[Fix] simple-plugin - Bugs #3624: When a duplicate is found, its dn should be given
[Fix] Bugs #3626: Export single entry give an error
[Fix] Bugs #3627: OPSI import should not have an empty filter
[Fix] Bugs #3628: DHCP plugin edit host error
[Feature] Bugs #3630: Reset password must take the mail in personal plugin
[Fix] Bugs #3631: User templates issues.
[Fix] Bugs #3633: the small_warning.png icon is not present but used by the system dashboard tab
[Fix] Bugs #3634: the configuration of fusiondirectory entry in dashboard first tab doesnt have an icon
[Fix] Bugs #3635: the small_warning.png icon is not present but used by the system dashboard tab
[Fix] Bugs #3637: Applications plugin should not set forceSize parameter
[Fix] Bugs #3638: Error in cyrus template
[Fix] Bugs #3640: Remove a user display an error if we have ppolicy
[Fix] Bugs #3641: Token invalid when we use ppolicy
[Fix] Bugs #3642: FTPStatus attribute must default set at true
[Fix] Bugs #3644: Problem in regex to set release in FAI package list
[Fix] Bugs #3645: Parent servers are empty
[Fix] Bugs #3648: debconf variables field should take utf8
[Fix] Bugs #3653: Uninitialized string offset: 0 in ldapmanager when importing an ldif
[Fix] Bugs #3654: fai plugin empty with one repository on a server trigger an Undefined variable: prefix error
[Fix] Bugs #3659: error when copying a system from a departement to the root
[Fix] Bugs #3660: error when having two repo in one serveur and one repo in another system
[Fix] Bugs #3663: No image for up/down in FAI profil
[Fix] Bugs #3666: the dashboard doesnt show the icon associated to the fai objects and are not clickable
[Feature] Bugs #3667: the reset password should use the fdPrivateMail from the personnal plugin as alternative address
[Fix] Bugs #3669: in service we should not have the get status button if argonaut client tab is not activated
[Fix] Bugs #3670: in service we could add a second button to trigger an action on the selected services
[Fix] Bugs #3671: the reset password should use the fdPrivateMail from the personal plugin as alternative address
[Fix] Bugs #3676: remove example.ldif that is incorrect
* FusionDirectory 1.0.8.4
[Fix] Bugs #3530: the roles in the personal/roles miss an main.inc !
[Fix] Bugs #3531: the roles icon is missing in my account
* FusionDirectory 1.0.8.3
[Feature] Wishlist #258: PKI infrastructure ?
[Fix] Bugs #2613: new icon for debug-help aka diagrams has it is the same as ldapmanager
[Fix] Bugs #3330: fai ldap support should be send to the fai project
[Fix] Bugs #3368: Missing png for goServer (systems)
[Fix] Bugs #3369: «&» should be used in icon paths
[Fix] Bugs #3379: The quota tab must have a dependance on the unix tab
[Fix] Bugs #3387: When locking an account with no samba password it adds a samba attribute to it
[Fix] Bugs #3393: update-from-1.0.6-to-1.0.7 in plugin-systems
[Fix] Bugs #3396: remove old gosa spec from core-fd.schema
[Fix] Bugs #3398: the field description is not show in the user list
[Fix] Bugs #3399: sometime when refreshing the generic page on a user a get template placeholder in login
[Fix] Bugs #3400: copyright and license is missing for include/functions_debug.inc
[Fix] Bugs #3401: autofs/admin/autofs/main.inc have a gpl v3 licence and its wrong it should be gpl v2
[Fix] Bugs #3402: remove the Authors.rst from the autofs plugin
[Fix] Bugs #3403: remove the glp v3 licence from the autofs plugin
[Fix] Bugs #3404: remove the sieve dir from the mail plugin
[Fix] Bugs #3407: plugins are still using obsolete attribute cellspacing on table tags
[Fix] Bugs #3408: update-from-1.0.6-to-1.0.7 in plugin-mail
[Fix] Bugs #3415: application listing in the desktop plugin doesnt show the icons on the listing
[Feature] Bugs #3416: create a new web-application plugin
[Fix] Bugs #3417: the application tab crash in groups when i click on the menu tab
[Fix] Bugs #3421: memory exhaustion when supann plugin is installed and i try to use the import csv
[Fix] Bugs #3422: when i create a template in the user list i got a missing icon for the new user from template
[Fix] Bugs #3423: cleaning the desktop-management plugin
[Fix] Bugs #3426: cleaning the desktop-management plugin
[Fix] Bugs #3427: in some user case we have a need to be able to add roles for users and have those users get rights for applications.
[Fix] Bugs #3430: fusiondirectory-insert-schema man pages is wrong it misses an OPTIONS section
[Fix] Bugs #3431: correct all the date and version on the man pages
[Fix] Bugs #3433: when importing user and no selection of an field in the csv to be the uid it crash
[Fix] Bugs #3435: when importing user via csv and using a template i cannot put %mail% in the template because it reject it as a non valid address
[Fix] Bugs #3436: when using apply template after having sucessfully imported user, it wrongly rewrite the users entries
[Fix] Bugs #3442: dashboard network tab links to dns servers are wrong
[Fix] Bugs #3445: when saving a webapp with the applications plugin it doesnt show unless i click Search in subtrees
[Fix] Bugs #3446: when creating a desktop application it doesnt save it
[Fix] Bugs #3447: When debug trace level is on, we can’t log in anymore
[Feature] Bugs #3450: create a plugin to manage certificates from ejbca
[Fix] Bugs #3454: Error in the systems plugin documentation
[Fix] Bugs #3455: the supann plugin doesn't want to save the etablissement field
[Fix] Bugs #3457: when a create an etablissement with the supann strcuture plugin it create an object that is opened with the entity dialog
[Fix] Bugs #3458: making the saving of the samba attributes optional in 1.0.8.x
[Fix] Bugs #3459: the nis netgroup is always active
[Fix] Bugs #3460: Fusiondirectory access
[Fix] Bugs #3461: in the supann plugin the step double select and educational Element
[Fix] Bugs #3462: update the official files for the supann plugin
[Fix] Bugs #3468: Hook script with ldap array
[Fix] Bugs #3470: FusionDirectory in Amazon Linux AMI
[Feature] Bugs #3472: create a personal plugin to store all kind of personal data
[Fix] Bugs #3476: We should remove the ACL tabs from special tabs
[Fix] Bugs #3483: removing leftover of the desktop-management plugin
[Fix] Bugs #3484: The user icon does not show up
[Fix] Bugs #3485: The user icon does not show up
[Fix] Bugs #3490: GPG plugin have some errors
[Fix] Bugs #3491: User ldap error are wrongly reported
[Fix] Bugs #3493: Department list should be updated after a department creation
[Fix] Bugs #3495: foreignKey on acls is handle several times
[Fix] Bugs #3496: EJBCA tab for the systems
[Fix] Bugs #3497: EJBCA miss some icons
[Fix] Bugs #3500: Error in user management
[Fix] Bugs #3501: the uid id naming mess should be cleaned up
[Fix] Bugs #3502: Argonaut is sometimes called «infastructure service» and sometimes «service infrastructure»
[Fix] Bugs #3504: FD should stop using the word generic every where
[Fix] Bugs #3505: setup_feedback.tpl is a useless file
[Fix] Bugs #3506: we should have in core a tab in user to be able to assing him roles
[Fix] Bugs #3508: There is some french in password recovery
[Fix] Bugs #3510: Argonaut mirror settings fields have no descriptions
[Fix] Bugs #3511: The comment for the ssh public key is mandatory
[Fix] Bugs #3512: Application local seems wrong
[Fix] Bugs #3514: Various problems in strings
[Fix] Bugs #3516: Various problems in strings
[Fix] Bugs #3517: remove gouvernement mode from fusiondirectory
[Fix] Bugs #3518: remove the french inside the supann plugin
[Fix] Bugs #3519: Where we add users in sudo plugin their are invisible
[Fix] Bugs #3520: the default entry in the sudo plugin is not editable anymore
[Fix] Bugs #3522: the sudo schema from the sudo-ldap package i using old openldap syntax and must be corrected and included
[Fix] Bugs #3523: SASL exop and SASL relam can't be saved
[Feature] Wishlist #3419: FD should allow plugins to act as menu entries providers
[Feature] Wishlist #3429: fusiondirectory-insert-schema should have an option to keep ldifs files
[Feature] Wishlist #3441: Inactive tabs could have a different style
[Feature] Wishlist #3478: Message d'information concernant les propriétes que le mot de passe doit répondre
[Feature] Wishlist #3480: Question : uid : comment ca se passe ?
[Feature] Wishlist #3509: Should french translation use «courriel»?
* FusionDirectory 1.0.8.2
[Fix] Bugs #1034: remove all dsc form the sources
[Feature] Bugs #2619: fusiondirectory-insert-schema should have a -c option to continue on error
[Fix] Bugs #3289: error: PHP error: Undefined index: o (/usr/share/fusiondirectory/plugins/personal/supann/class_supannAccount.inc, line 481)
[Fix] Bugs #3297: Use relative path for geticon
[Fix] Bugs #3303: debugHelp have problems with tabclasses contaning dashes
[Feature] Bugs #3304: fusiondirectory-shell should have login and password mandatory
[Fix] Bugs #3316: possible xss in login screen
[Fix] Bugs #3321: Cannot import csv using a template
[Fix] Bugs #3327: primary server in the dns service should not be numeric
[Feature] Bugs #3335: adding lighttpd support in the doc
[Fix] Bugs #3338: informations are misses in reference tab on user interface
[Fix] Bugs #3347: update the doxygen file
[Fix] Bugs #3348: add the licence to class_IconTheme.inc
[Fix] Bugs #3350: correct the fsf address in licenses
[Fix] Bugs #3351: lots of plugins files have no licenses at all
[Fix] Bugs #3352: lots of plugins files have no licenses at all
[Fix] Bugs #3356: trust selection mode is broken in group and ogroups
[Fix] Bugs #3359: add user with templates didn't keep group affectation
[Fix] Bugs #3361: unable to create a template with posixGroup
[Fix] Bugs #3362: Bad aspect for tabs when a dialog is open
[Fix] Bugs #3363: cannont add Etablissement
[Fix] Bugs #3364: we can’t cancel manager selection
[Fix] Bugs #3365: there is an error in userManagement template base regexp
[Fix] Bugs #3372: remove the trust section from the sudo plugin
[Fix] Bugs #3373: Default action displayed an error
* FusionDirectory 1.0.8.1
[Fix] Bugs #2702: Connection problems to slapd when using TLS
[Feature] Bugs #3060: We should try to ease migrations when schema attributes are disappearing
[Feature] Bugs #3134: fusiondirectory-insert-schema should allow ldap auth
[Fix] Bugs #3189: ldap dump should escape html
[Fix] Bugs #3190: html and smarty code should be escaped in read-only mode
[Fix] Bugs #3203: remove overlib.js leftover
[Fix] Bugs #3204: add a manpage for fusiondirectory-shell
[Fix] Bugs #3212: After the upgrade the ACL system looks broken,
[Fix] Bugs #3213: First time role installation on a default installation
[Fix] Bugs #3216: fusiondirectory-setup should die on ldap search error
[Fix] Bugs #3217: Editing the config triggers php errors
[Fix] Bugs #3218: Remove the plugin restauration feature
[Fix] Bugs #3223: The snapshot base is not proposed
[Feature] Wishlist #3224: fusiondirectory-setup may contain help for migrating versions
[Fix] Bugs #3227: Hide userPassword on change_password postmodfy hook error message
[Fix] Bugs #3230: Snapshot type should be deprecated
[Fix] Bugs #3235: When a manager changes its base the managed user attributes are changed
[Fix] Bugs #3236: fusiondirectory-setup contains duplicated code for branch creation
[Fix] Bugs #3238: Department creation is broken
[Feature] Bugs #3239: Use some CSS3 features
[Fix] Bugs #3241: Supann entite regexp is wrong
[Fix] Bugs #3251: The list of objectTypes is no longer present in class_debugHelp.inc
[Fix] Bugs #3256: don't base64 encode sshPublicKey
[Feature] Wishlist #3257: Allow options in sshPublicKey
[Fix] Wishlist #3260: Apache2.4 does not allow underscores in request header variables anymore
[Fix] Wishlist #3261: Improve white-space trimming of mcrypt_decrypt() results
[Feature] Wishlist #3262: Make non-default plugin tabs browseable when the plugin is viewed in non-editable mode
[Fix] Bugs #3263: Login with expire password work if we modify the URL
[Fix] Bugs #3266: We must remove update-from-1.0.6-to-1.0.7 for 1.0.8.1
[Fix] Bugs #3268: fusiondirectory.secrets not included via fusiondirectory-apache.conf
[Fix] Bugs #3270: no more "restore snapshot" button when listing system
[Fix] Bugs #3271: Rename a server create PHP errors
[Fix] Bugs #3274: When we migrate the acls we have an error
[Fix] Bugs #3282: adding /en/ files to fusiondirectory to enable automatic update of the transifex po files
[Fix] Bugs #3283: adding /en/ files to fusiondirectory to enable automatic update of the transifex po files
[Fix] Bugs #3284: we are now allowed to use non-ascii string in gettext translation for en
[Fix] Bugs #3287: Undefined variable lang in index.php
[Fix] Bugs #3288: ACL does not seem to work 1.0.8
[Fix] Bugs #3290: Cannot run a postCreate Hook by using uid field as parameters
[Fix] Bugs #3295 Webservice is missing jsonrpc.php
[Fix] Bugs #3297: Use relative path for geticon
[Fix] Bugs #3298: Use relative path for geticon
* FusionDirectory 1.0.8
[Fix] Bugs #1922: Foreign key should be handled between plugins
[Fix] Bugs #2313: Rethink categories and object types
[Fix] Bugs #2397: The code should follow code guidelines
[Fix] Bugs #2410: The code should follow code guidelines
[Fix] Bugs #2412: Reading categories should not be done in acl constructor
[Fix] Bugs #2418: All gosaUnitTag related code should be removed
[Fix] Bugs #2420: All gosaUnitTag related code should be removed
[Fix] Bugs #2425: IPMI interfaces should have a tab for credentials
[Fix] Bugs #2432: locking conflict errors