File: copyright

package info (click to toggle)
gosa 2.7.4%2Breloaded3-16
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 38,716 kB
  • sloc: php: 87,789; perl: 14,364; xml: 4,987; javascript: 4,127; sh: 887; pascal: 306; sql: 263; python: 162; makefile: 76
file content (1365 lines) | stat: -rw-r--r-- 61,517 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: GOsa²
Upstream-Contact: Cajus Pollmeier <pollmeier@gonicus.de>
Source: https://github.com/gosa-project/

Files: apache2/admin/systems/services/apache2/class_apacheUtils.inc
 apache2/admin/systems/services/apache2/servApacheVhostEdit.tpl
 apache2/admin/systems/services/apache2/servApacheVhost.tpl
 apache2/contrib/mod_vhost_ldap.ldif
 apache2/contrib/mod_vhost_ldap.schema
 apache2/plugin.dsc
 connectivity/html/images/*
 connectivity/personal/connectivity/class_connectivity.inc
 connectivity/personal/connectivity/class_intranetAccount.inc
 connectivity/personal/connectivity/intranet.tpl
 connectivity/plugin.dsc
 dhcp/admin/systems/services/dhcp/class_dhcpNewSectionDialog.inc
 dhcp/admin/systems/services/dhcp/class_dhcpOption.inc
 dhcp/admin/systems/services/dhcp/class_servDHCP.inc
 dhcp/admin/systems/services/dhcp/dhcp_advanced.tpl
 dhcp/admin/systems/services/dhcp/dhcp_dnszone.tpl
 dhcp/admin/systems/services/dhcp/dhcp_group.tpl
 dhcp/admin/systems/services/dhcp/dhcp_host.tpl
 dhcp/admin/systems/services/dhcp/dhcp_network.tpl
 dhcp/admin/systems/services/dhcp/dhcpNewSection.tpl
 dhcp/admin/systems/services/dhcp/dhcp_pool.tpl
 dhcp/admin/systems/services/dhcp/dhcp_service.tpl
 dhcp/admin/systems/services/dhcp/dhcp_sharedNetwork.tpl
 dhcp/admin/systems/services/dhcp/dhcp_subnet.tpl
 dhcp/admin/systems/services/dhcp/dhcp_tsigkey.tpl
 dhcp/admin/systems/services/dhcp/remove_dhcp.tpl
 dhcp/admin/systems/services/dhcp/servdhcp.tpl
 dhcp/contrib/dhcp.ldif
 dhcp/contrib/dhcp.schema
 dhcp/plugin.dsc
 dns/admin/systems/services/dns/class_DNS.inc
 dns/admin/systems/services/dns/class_servDNSeditZoneEntries.inc
 dns/admin/systems/services/dns/class_servDNSeditZone.inc
 dns/admin/systems/services/dns/class_servDNS.inc
 dns/admin/systems/services/dns/servDNSeditZoneEntries.tpl
 dns/admin/systems/services/dns/servdnseditzone.tpl
 dns/admin/systems/services/dns/servdns.tpl
 dns/contrib/dnszone.ldif
 dns/contrib/dnszone.schema
 dns/plugin.dsc
 gofax/admin/systems/services/gofax/class_goFaxServer.inc
 gofax/admin/systems/services/gofax/goFaxServer.tpl
 gofax/contrib/gofax.sql
 gofax/gofax/blocklists/blocklist-filter.xml
 gofax/gofax/blocklists/blocklist-list.tpl
 gofax/gofax/blocklists/blocklist-list.xml
 gofax/gofax/blocklists/class_blocklistGeneric.inc
 gofax/gofax/blocklists/generic.tpl
 gofax/gofax/blocklists/paste_generic.tpl
 gofax/gofax/blocklists/tabs_blocklist.inc
 gofax/gofax/faxaccount/class_gofaxAccount.inc
 gofax/gofax/faxaccount/faxNumberSelect/faxNumberSelect-filter.xml
 gofax/gofax/faxaccount/faxNumberSelect/faxNumberSelect-list.tpl
 gofax/gofax/faxaccount/faxNumberSelect/faxNumberSelect-list.xml
 gofax/gofax/faxaccount/generic.tpl
 gofax/gofax/faxaccount/lists.tpl
 gofax/gofax/faxaccount/paste_generic.tpl
 gofax/gofax/faxreports/class_faxreport.inc
 gofax/gofax/faxreports/contents.tpl
 gofax/gofax/faxreports/detail.tpl
 gofax/gofax/faxreports/main.inc
 gofax/gofax/migration/class_migrate_faxBlocklistRDN.inc
 gofax/html/images/*
 gofax/plugin.dsc
 gofon/admin/ogroups/gofon/class_phonequeue.inc
 gofon/admin/ogroups/gofon/phonequeue.tpl
 gofon/admin/systems/gofon/class_phoneGeneric.inc
 gofon/admin/systems/gofon/paste_generic.tpl
 gofon/admin/systems/gofon/phonesettings.tpl
 gofon/admin/systems/gofon/phone.tpl
 gofon/admin/systems/gofon/tabs_phone.inc
 gofon/admin/systems/services/gofon/class_goFonServer.inc
 gofon/admin/systems/services/gofon/goFonServer.tpl
 gofon/contrib/gophone.sql
 gofon/etc/asterisk/sip_context.conf
 gofon/etc/asterisk/voicemail_context.conf
 gofon/gofon/conference/conf-filter.xml
 gofon/gofon/conference/conf-list.tpl
 gofon/gofon/conference/conf-list.xml
 gofon/gofon/conference/generic.tpl
 gofon/gofon/conference/paste_generic.tpl
 gofon/gofon/conference/tabs_conference.inc
 gofon/gofon/fonreports/class_fonreport.inc
 gofon/gofon/fonreports/contents.tpl
 gofon/gofon/fonreports/main.inc
 gofon/gofon/macro/class_gofonMacro.inc
 gofon/gofon/macro/class_gofonMacroParameters.inc
 gofon/gofon/macro/generic.tpl
 gofon/gofon/macro/macro-filter.xml
 gofon/gofon/macro/macro-list.tpl
 gofon/gofon/macro/macro-list.xml
 gofon/gofon/macro/parameter.tpl
 gofon/gofon/macro/paste_generic.tpl
 gofon/gofon/macro/remove.tpl
 gofon/gofon/macro/tabs_macros.inc
 gofon/gofon/migration/class_migrate_phoneConferenceRDN.inc
 gofon/gofon/migration/class_migrate_phoneMacroRDN.inc
 gofon/gofon/migration/class_migrate_phoneRDN.inc
 gofon/gofon/phoneaccount/class_phoneAccount.inc
 gofon/gofon/phoneaccount/generic.tpl
 gofon/gofon/phoneaccount/paste_generic.tpl
 gofon/html/images/*
 gofon/plugin.dsc
 gosa-core/AUTHORS
 gosa-core/bin/gosa-mcrypt-to-openssl-passwords
 gosa-core/bin/mkntpasswd
 gosa-core/Changelog
 gosa-core/CODING
 gosa-core/contrib/artwork/GOsa-logo.eps
 gosa-core/contrib/build-gosa
 gosa-core/contrib/desktoprc
 gosa-core/contrib/encodings
 gosa-core/contrib/extract-locale
 gosa-core/contrib/gosa
 gosa-core/contrib/gosa.1
 gosa-core/contrib/gosa.conf
 gosa-core/contrib/gosa.conf.5
 gosa-core/contrib/openldap/gofax.ldif
 gosa-core/contrib/openldap/gofax.schema
 gosa-core/contrib/openldap/gofon.ldif
 gosa-core/contrib/openldap/gofon.schema
 gosa-core/contrib/openldap/gosa-samba3.ldif
 gosa-core/contrib/openldap/gosa-samba3.schema
 gosa-core/contrib/openldap/goserver.ldif
 gosa-core/contrib/openldap/goserver.schema
 gosa-core/contrib/openldap/gosystem.ldif
 gosa-core/contrib/openldap/gosystem.schema
 gosa-core/contrib/openldap/goto.ldif
 gosa-core/contrib/openldap/goto-mime.ldif
 gosa-core/contrib/openldap/goto-mime.schema
 gosa-core/contrib/openldap/goto.schema
 gosa-core/contrib/openldap/rfc2307bis.ldif
 gosa-core/contrib/openldap/rfc2307bis.schema
 gosa-core/contrib/openldap/samba3.ldif
 gosa-core/contrib/openldap/samba3.schema
 gosa-core/contrib/openldap/slapd.conf
 gosa-core/contrib/openldap/trust.ldif
 gosa-core/contrib/openldap/trust.schema
 gosa-core/contrib/plugins/dyngroup/README
 gosa-core/contrib/shells
 gosa-core/COPYING
 gosa-core/doc/*
 gosa-core/doc/admin/en/manual_gosa_en_apache.tex
 gosa-core/doc/admin/en/manual_gosa_en_ldap.tex
 gosa-core/doc/admin/es/manual_gosa_es_certificates.tex
 gosa-core/doc/admin/es/manual_gosa_es_dns.tex
 gosa-core/doc/admin/es/manual_gosa_es_fileserver.tex
 gosa-core/doc/admin/es/manual_gosa_es_ftp.tex
 gosa-core/doc/admin/es/manual_gosa_es_gw.tex
 gosa-core/doc/admin/es/manual_gosa_es_im.tex
 gosa-core/doc/admin/es/manual_gosa_es_kerberos.tex
 gosa-core/doc/admin/es/manual_gosa_es_ldap.tex
 gosa-core/doc/admin/es/manual_gosa_es_mail.tex
 gosa-core/doc/admin/es/manual_gosa_es_otros.tex
 gosa-core/doc/admin/es/manual_gosa_es_printing.tex
 gosa-core/doc/admin/es/manual_gosa_es_proxy.tex
 gosa-core/doc/admin/es/manual_gosa_es_ssh.tex
 gosa-core/doc/admin/es/manual_gosa_es.tex
 gosa-core/doc/admin/es/manual_gosa_es_vpn.tex
 gosa-core/doc/core/de/html/applications/labels.pl
 gosa-core/doc/core/de/html/blocklists/labels.pl
 gosa-core/doc/core/de/html/conference/labels.pl
 gosa-core/doc/core/de/html/departments/labels.pl
 gosa-core/doc/core/de/html/faxreports/labels.pl
 gosa-core/doc/core/de/html/fonreports/labels.pl
 gosa-core/doc/core/de/html/groups/labels.pl
 gosa-core/doc/core/de/html/logview/labels.pl
 gosa-core/doc/core/de/html/macro/labels.pl
 gosa-core/doc/core/de/html/mailqueue/labels.pl
 gosa-core/doc/core/de/html/ogroups/labels.pl
 gosa-core/doc/core/de/html/users/labels.pl
 gosa-core/doc/core/en/html/applications/labels.pl
 gosa-core/doc/core/en/html/blocklists/labels.pl
 gosa-core/doc/core/en/html/conference/labels.pl
 gosa-core/doc/core/en/html/departments/labels.pl
 gosa-core/doc/core/en/html/faxreports/labels.pl
 gosa-core/doc/core/en/html/fonreports/labels.pl
 gosa-core/doc/core/en/html/groups/labels.pl
 gosa-core/doc/core/en/html/ldapmanager/labels.pl
 gosa-core/doc/core/en/html/logview/labels.pl
 gosa-core/doc/core/en/html/macro/labels.pl
 gosa-core/doc/core/en/html/ogroups/labels.pl
 gosa-core/doc/core/en/html/users/labels.pl
 gosa-core/doc/core/fr/html/applications/labels.pl
 gosa-core/doc/core/fr/html/blocklists/labels.pl
 gosa-core/doc/core/fr/html/conference/labels.pl
 gosa-core/doc/core/fr/html/departments/labels.pl
 gosa-core/doc/core/fr/html/faxreports/labels.pl
 gosa-core/doc/core/fr/html/fonreports/labels.pl
 gosa-core/doc/core/fr/html/groups/labels.pl
 gosa-core/doc/core/fr/html/ldapmanager/labels.pl
 gosa-core/doc/core/fr/html/logview/labels.pl
 gosa-core/doc/core/fr/html/macro/labels.pl
 gosa-core/doc/core/fr/html/ogroups/labels.pl
 gosa-core/doc/core/fr/html/users/labels.pl
 gosa-core/doc/core/nl/html/departments/labels.pl
 gosa-core/doc/core/nl/html/groups/labels.pl
 gosa-core/doc/core/nl/html/users/labels.pl
 gosa-core/FAQ
 gosa-core/html/favicon.ico
 gosa-core/html/images/*
 gosa-core/html/plugins/acl/images/*
 gosa-core/html/plugins/bugsubmitter/images/*
 gosa-core/html/plugins/dashBoard/images/*
 gosa-core/html/plugins/departments/images/*
 gosa-core/html/plugins/generic/images/*
 gosa-core/html/plugins/groups/images/*
 gosa-core/html/plugins/ogroups/images/*
 gosa-core/html/plugins/password/images/*
 gosa-core/html/plugins/posix/images/*
 gosa-core/html/plugins/propertyEditor/images/*
 gosa-core/html/plugins/statistics/getGraph.php
 gosa-core/html/plugins/statistics/images/*
 gosa-core/html/plugins/users/images/*
 gosa-core/html/plugins/welcome/images/*
 gosa-core/html/robots.txt
 gosa-core/html/themes/default/images/*
 gosa-core/html/themes/default/printer.css
 gosa-core/html/themes/default/style.css
 gosa-core/ihtml/themes/default/acl.tpl
 gosa-core/ihtml/themes/default/blacklist
 gosa-core/ihtml/themes/default/copyPasteDialog.tpl
 gosa-core/ihtml/themes/default/framework.tpl
 gosa-core/ihtml/themes/default/headers.tpl
 gosa-core/ihtml/themes/default/help.tpl
 gosa-core/ihtml/themes/default/infoPage.tpl
 gosa-core/ihtml/themes/default/islocked.tpl
 gosa-core/ihtml/themes/default/ldifViewer.tpl
 gosa-core/ihtml/themes/default/login.tpl
 gosa-core/ihtml/themes/default/logout-close.tpl
 gosa-core/ihtml/themes/default/logout.tpl
 gosa-core/ihtml/themes/default/msg_dialog.tpl
 gosa-core/ihtml/themes/default/password.tpl
 gosa-core/ihtml/themes/default/removeEntries.tpl
 gosa-core/ihtml/themes/default/setup_headers.tpl
 gosa-core/ihtml/themes/default/sizelimit.tpl
 gosa-core/ihtml/themes/default/snapshotdialog.tpl
 gosa-core/ihtml/themes/default/userFilterEditor.tpl
 gosa-core/ihtml/themes/default/userFilter.tpl
 gosa-core/include/class_configRegistry.inc
 gosa-core/include/class_core.inc
 gosa-core/include/class_filterLDAP.inc
 gosa-core/include/class_filterNOACL.inc
 gosa-core/include/class_GOsaRegistration.inc
 gosa-core/include/class_jsonRPC.inc
 gosa-core/include/class_pathNavigator.inc
 gosa-core/include/class_pChartInclude.inc
 gosa-core/include/class_remoteObject.inc
 gosa-core/include/class_stats.inc
 gosa-core/include/class_userFilterEditor.inc
 gosa-core/include/class_userFilter.inc
 gosa-core/include/exporter/class_csvExporter.inc
 gosa-core/include/exporter/class_pdfExporter.inc
 gosa-core/include/exporter/class_PDF.inc
 gosa-core/include/functions_debug.inc
 gosa-core/include/pChart/buildAll.cmd
 gosa-core/include/pChart/bulkdata.csv
 gosa-core/include/pChart/CO2.csv
 gosa-core/include/pChart/datawithtitle.csv
 gosa-core/include/pChart/Example10.php
 gosa-core/include/pChart/Example11.php
 gosa-core/include/pChart/Example12.php
 gosa-core/include/pChart/Example13.php
 gosa-core/include/pChart/Example14.php
 gosa-core/include/pChart/Example15.php
 gosa-core/include/pChart/Example16.php
 gosa-core/include/pChart/Example17.php
 gosa-core/include/pChart/Example18.php
 gosa-core/include/pChart/Example19.php
 gosa-core/include/pChart/Example1.php
 gosa-core/include/pChart/Example20.php
 gosa-core/include/pChart/Example21.php
 gosa-core/include/pChart/Example22.php
 gosa-core/include/pChart/Example23.php
 gosa-core/include/pChart/Example24.php
 gosa-core/include/pChart/Example25.php
 gosa-core/include/pChart/Example26.php
 gosa-core/include/pChart/Example2.php
 gosa-core/include/pChart/Example3.php
 gosa-core/include/pChart/Example4.php
 gosa-core/include/pChart/Example5.php
 gosa-core/include/pChart/Example6.php
 gosa-core/include/pChart/Example7.php
 gosa-core/include/pChart/Example8.php
 gosa-core/include/pChart/Example9.php
 gosa-core/include/pChart/HomePage3.php
 gosa-core/include/pChart/logo.png
 gosa-core/include/pChart/Naked.php
 gosa-core/include/pChart/pCache.class
 gosa-core/include/pChart/pChart.1.27d.rar
 gosa-core/include/pChart/pChart.class
 gosa-core/include/pChart/pData.class
 gosa-core/include/pChart/Point_Asterisk.gif
 gosa-core/include/pChart/Point_Cd.gif
 gosa-core/include/pChart/Sav143.tmp
 gosa-core/include/pChart/SmallGraph.php
 gosa-core/include/pChart/SmallStacked.php
 gosa-core/include/pChart/softtones.txt
 gosa-core/include/pChart/tones.txt
 gosa-core/include/smartyAddons/block.render.php
 gosa-core/include/smartyAddons/block.tr.php
 gosa-core/include/smartyAddons/function.factory.php
 gosa-core/include/smartyAddons/function.image.php
 gosa-core/include/smartyAddons/function.msgPool.php
 gosa-core/include/utils/class_msgPool.inc
 gosa-core/INSTALL
 gosa-core/plugins/addons/dyngroup/dyngroup.tpl
 gosa-core/plugins/addons/propertyEditor/class_commandVerifier.inc
 gosa-core/plugins/addons/propertyEditor/class_filterProperties.inc
 gosa-core/plugins/addons/propertyEditor/class_propertyEditor.inc
 gosa-core/plugins/addons/propertyEditor/commandVerifier.tpl
 gosa-core/plugins/addons/propertyEditor/migrate.tpl
 gosa-core/plugins/addons/propertyEditor/migration/class_migrateRDN.inc
 gosa-core/plugins/addons/propertyEditor/property-filter.xml
 gosa-core/plugins/addons/propertyEditor/property-list.tpl
 gosa-core/plugins/addons/propertyEditor/property-list.xml
 gosa-core/plugins/admin/acl/acl-filter.xml
 gosa-core/plugins/admin/acl/acl-list.tpl
 gosa-core/plugins/admin/acl/acl-list.xml
 gosa-core/plugins/admin/acl/acl_role.tpl
 gosa-core/plugins/admin/acl/class_filterACL.inc
 gosa-core/plugins/admin/acl/migration/class_migrate_aclRoleRDN.inc
 gosa-core/plugins/admin/acl/paste_role.tpl
 gosa-core/plugins/admin/departments/class_filterDEPARTMENT.inc
 gosa-core/plugins/admin/departments/country.tpl
 gosa-core/plugins/admin/departments/dcObject.tpl
 gosa-core/plugins/admin/departments/dep-filter.xml
 gosa-core/plugins/admin/departments/dep_iframe.tpl
 gosa-core/plugins/admin/departments/dep-list.tpl
 gosa-core/plugins/admin/departments/dep-list.xml
 gosa-core/plugins/admin/departments/dep_move_confirm.tpl
 gosa-core/plugins/admin/departments/domain.tpl
 gosa-core/plugins/admin/departments/generic.tpl
 gosa-core/plugins/admin/departments/locality.tpl
 gosa-core/plugins/admin/departments/organization.tpl
 gosa-core/plugins/admin/groups/class_filterGroupLDAP.inc
 gosa-core/plugins/admin/groups/generic.tpl
 gosa-core/plugins/admin/groups/group-filter.xml
 gosa-core/plugins/admin/groups/group-list.tpl
 gosa-core/plugins/admin/groups/group-list.xml
 gosa-core/plugins/admin/groups/migration/class_migrate_groupRDN.inc
 gosa-core/plugins/admin/groups/paste_generic.tpl
 gosa-core/plugins/admin/groups/singleUserSelect/singleUser-filter.xml
 gosa-core/plugins/admin/groups/singleUserSelect/singleUser-list.tpl
 gosa-core/plugins/admin/groups/singleUserSelect/singleUser-list.xml
 gosa-core/plugins/admin/groups/userGroupSelect/selectUserGroup-filter.xml
 gosa-core/plugins/admin/groups/userGroupSelect/selectUserGroup-list.tpl
 gosa-core/plugins/admin/groups/userGroupSelect/selectUserGroup-list.xml
 gosa-core/plugins/admin/groups/userSelect/user-filter.xml
 gosa-core/plugins/admin/groups/userSelect/user-list.tpl
 gosa-core/plugins/admin/groups/userSelect/user-list.xml
 gosa-core/plugins/admin/ogroups/generic.tpl
 gosa-core/plugins/admin/ogroups/migration/class_migrate_ogroupRDN.inc
 gosa-core/plugins/admin/ogroups/objectSelect/class_filterLDAPDepartmentBlacklist.inc
 gosa-core/plugins/admin/ogroups/objectSelect/selectObject-filter.xml
 gosa-core/plugins/admin/ogroups/objectSelect/selectObject-list.tpl
 gosa-core/plugins/admin/ogroups/objectSelect/selectObject-list.xml
 gosa-core/plugins/admin/ogroups/ogroup-filter.xml
 gosa-core/plugins/admin/ogroups/ogroup-list.tpl
 gosa-core/plugins/admin/ogroups/ogroup-list.xml
 gosa-core/plugins/admin/ogroups/paste_generic.tpl
 gosa-core/plugins/admin/users/migration/class_migrate_userRDN.inc
 gosa-core/plugins/admin/users/password.tpl
 gosa-core/plugins/admin/users/template.tpl
 gosa-core/plugins/admin/users/templatize.tpl
 gosa-core/plugins/admin/users/user-filter.xml
 gosa-core/plugins/admin/users/user-list.tpl
 gosa-core/plugins/admin/users/user-list.xml
 gosa-core/plugins/generic/dashBoard/class_dashBoard.inc
 gosa-core/plugins/generic/dashBoard/class_rssReader.inc
 gosa-core/plugins/generic/dashBoard/dashBoard.tpl
 gosa-core/plugins/generic/dashBoard/dbChannelStatus/class_dbChannelStatus.inc
 gosa-core/plugins/generic/dashBoard/dbChannelStatus/contents.tpl
 gosa-core/plugins/generic/dashBoard/dbInformation/class_dbInformation.inc
 gosa-core/plugins/generic/dashBoard/dbInformation/contents.tpl
 gosa-core/plugins/generic/dashBoard/dbNotifications/class_dbNotifications.inc
 gosa-core/plugins/generic/dashBoard/dbNotifications/contents.tpl
 gosa-core/plugins/generic/dashBoard/dbPluginStatus/class_dbPluginStatus.inc
 gosa-core/plugins/generic/dashBoard/dbPluginStatus/contents.tpl
 gosa-core/plugins/generic/dashBoard/Register/class_RegistrationDialog.inc
 gosa-core/plugins/generic/dashBoard/Register/register.tpl
 gosa-core/plugins/generic/infoPage/class_infoPage.inc
 gosa-core/plugins/generic/references/class_aclResolver.inc
 gosa-core/plugins/generic/references/class_ldifViewer.inc
 gosa-core/plugins/generic/references/contents.tpl
 gosa-core/plugins/generic/statistics/chartClasses/class_actionSelectChart.inc
 gosa-core/plugins/generic/statistics/chartClasses/class_categoryActionOverTime.inc
 gosa-core/plugins/generic/statistics/chartClasses/class_cpuLoadChart.inc
 gosa-core/plugins/generic/statistics/chartClasses/class_durationTimeChart.inc
 gosa-core/plugins/generic/statistics/chartClasses/class_memoryUsageChart.inc
 gosa-core/plugins/generic/statistics/chartClasses/class_objectCountChart.inc
 gosa-core/plugins/generic/statistics/chartClasses/class_passwordChangeChart.inc
 gosa-core/plugins/generic/statistics/chartClasses/class_pieChart1.inc
 gosa-core/plugins/generic/statistics/chartClasses/class_pieChart2.inc
 gosa-core/plugins/generic/statistics/chartClasses/class_renderTimeChart.inc
 gosa-core/plugins/generic/statistics/chartClasses/class_statChart.inc
 gosa-core/plugins/generic/statistics/class_statistics.inc
 gosa-core/plugins/generic/statistics/statistics.tpl
 gosa-core/plugins/generic/welcome/class_welcome.inc
 gosa-core/plugins/generic/welcome/welcome.tpl
 gosa-core/plugins/personal/generic/generic_certs.tpl
 gosa-core/plugins/personal/generic/generic_picture.tpl
 gosa-core/plugins/personal/generic/generic.tpl
 gosa-core/plugins/personal/generic/paste_generic.tpl
 gosa-core/plugins/personal/myaccount/changed.tpl
 gosa-core/plugins/personal/myaccount/class_MyAccount.inc
 gosa-core/plugins/personal/myaccount/nochange.tpl
 gosa-core/plugins/personal/myaccount/password.tpl
 gosa-core/plugins/personal/password/changed.tpl
 gosa-core/plugins/personal/password/nochange.tpl
 gosa-core/plugins/personal/password/password.tpl
 gosa-core/plugins/personal/posix/generic.tpl
 gosa-core/plugins/personal/posix/groupSelect/class_filterLDAPBlacklist.inc
 gosa-core/plugins/personal/posix/groupSelect/group-filter.xml
 gosa-core/plugins/personal/posix/groupSelect/group-list.tpl
 gosa-core/plugins/personal/posix/groupSelect/group-list.xml
 gosa-core/plugins/personal/posix/paste_generic.tpl
 gosa-core/plugins/personal/posix/posix_shadow.tpl
 gosa-core/plugins/personal/posix/trustModeDialog/class_trustModeDialog.inc
 gosa-core/plugins/personal/posix/trustModeDialog/generic.tpl
 gosa-core/plugins/personal/posix/trustSelect/trust-filter.xml
 gosa-core/plugins/personal/posix/trustSelect/trust-list.tpl
 gosa-core/plugins/personal/posix/trustSelect/trust-list.xml
 gosa-core/README
 gosa-core/README.ldap
 gosa-core/README.safemode
 gosa-core/setup/license.txt
 gosa-core/setup/setup_checks.tpl
 gosa-core/setup/setup_feedback.tpl
 gosa-core/setup/setup_finish.tpl
 gosa-core/setup/setup_frame.tpl
 gosa-core/setup/setup_language.tpl
 gosa-core/setup/setup_ldap.tpl
 gosa-core/setup/setup_license.tpl
 gosa-core/setup/setup_migrate.tpl
 gosa-core/setup/setup_schema.tpl
 gosa-core/setup/setup_welcome.tpl
 gosa-core/update-locale
 gosa-core/update-pdf-help
 goto/addons/goto/class_filterGotoEvents.inc
 goto/addons/goto/class_goto_import_file.inc
 goto/addons/goto/class_gotoLogView.inc
 goto/addons/goto/deploy-filter.xml
 goto/addons/goto/deploy-list.tpl
 goto/addons/goto/deploy-list.xml
 goto/addons/goto/events/class_filterSystemByIp.inc
 goto/addons/goto/events/DaemonEvent_activate.tpl
 goto/addons/goto/events/DaemonEvent_faireboot.tpl
 goto/addons/goto/events/DaemonEvent_goto_reload.tpl
 goto/addons/goto/events/DaemonEvent_halt.tpl
 goto/addons/goto/events/DaemonEvent_installation_activation.tpl
 goto/addons/goto/events/DaemonEvent_localboot.tpl
 goto/addons/goto/events/DaemonEvent_lock.tpl
 goto/addons/goto/events/DaemonEvent_memcheck.tpl
 goto/addons/goto/events/DaemonEvent_notify.tpl
 goto/addons/goto/events/DaemonEvent_reboot.tpl
 goto/addons/goto/events/DaemonEvent_reinstall.tpl
 goto/addons/goto/events/DaemonEvent_rescan.tpl
 goto/addons/goto/events/DaemonEvent_sysinfo.tpl
 goto/addons/goto/events/DaemonEvent_update.tpl
 goto/addons/goto/events/DaemonEvent_wakeup.tpl
 goto/addons/goto/events/eventTargetSystems-filter.xml
 goto/addons/goto/events/eventTargetSystems-list.tpl
 goto/addons/goto/events/eventTargetSystems-list.xml
 goto/addons/goto/events/eventTargetUser-filter.xml
 goto/addons/goto/events/eventTargetUser-list.tpl
 goto/addons/goto/events/eventTargetUser-list.xml
 goto/addons/goto/events/target_list.tpl
 goto/addons/goto/events/timestamp_select.tpl
 goto/addons/goto/goto_import_file.tpl
 goto/addons/goto/log_view.tpl
 goto/addons/goto/remove.tpl
 goto/admin/applications/application-filter-release.xml
 goto/admin/applications/application-filter.xml
 goto/admin/applications/application-list-release.tpl
 goto/admin/applications/application-list-release.xml
 goto/admin/applications/application-list.tpl
 goto/admin/applications/application-list.xml
 goto/admin/applications/class_applicationGeneric.inc
 goto/admin/applications/class_applicationParameters.inc
 goto/admin/applications/class_filterAPPLICATIONS.inc
 goto/admin/applications/generic.tpl
 goto/admin/applications/migration/class_migrate_applicationRDN.inc
 goto/admin/applications/parameters.tpl
 goto/admin/applications/tabs_application.inc
 goto/admin/devices/class_deviceGeneric.inc
 goto/admin/devices/device-filter.xml
 goto/admin/devices/deviceGeneric.tpl
 goto/admin/devices/device-list.tpl
 goto/admin/devices/device-list.xml
 goto/admin/devices/migration/class_migrate_deviceRDN.inc
 goto/admin/devices/paste_deviceGeneric.tpl
 goto/admin/devices/tabs_devices.inc
 goto/admin/groups/apps/app_list.tpl
 goto/admin/groups/apps/class_groupApplication.inc
 goto/admin/groups/apps/edit_entry.tpl
 goto/admin/mimetypes/class_filterMIMETYPES.inc
 goto/admin/mimetypes/class_mimetypeGeneric.inc
 goto/admin/mimetypes/generic.tpl
 goto/admin/mimetypes/migration/class_migrate_mimetypeRDN.inc
 goto/admin/mimetypes/mimetype-filter-release.xml
 goto/admin/mimetypes/mimetype-filter.xml
 goto/admin/mimetypes/mimetype-list-release.tpl
 goto/admin/mimetypes/mimetype-list-release.xml
 goto/admin/mimetypes/mimetype-list.tpl
 goto/admin/mimetypes/mimetype-list.xml
 goto/admin/mimetypes/paste_generic.tpl
 goto/admin/mimetypes/tabs_mimetypes.inc
 goto/admin/ogroups/goto/class_termgroup.inc
 goto/admin/ogroups/goto/termgroup.tpl
 goto/admin/systems/goto/ArpNewDevice.tpl
 goto/admin/systems/goto/class_ArpNewDevice.inc
 goto/admin/systems/goto/class_gotoLpdEnabled.inc
 goto/admin/systems/goto/class_printGeneric.inc
 goto/admin/systems/goto/class_SelectDeviceType.inc
 goto/admin/systems/goto/class_terminalGeneric.inc
 goto/admin/systems/goto/class_terminalInfo.inc
 goto/admin/systems/goto/class_terminalService.inc
 goto/admin/systems/goto/class_terminalStartup.inc
 goto/admin/systems/goto/class_workstationGeneric.inc
 goto/admin/systems/goto/class_workstationService.inc
 goto/admin/systems/goto/class_workstationStartup.inc
 goto/admin/systems/goto/gencd_frame.tpl
 goto/admin/systems/goto/gencd.tpl
 goto/admin/systems/goto/gotoLpdEnable.tpl
 goto/admin/systems/goto/info.tpl
 goto/admin/systems/goto/migration/class_migrate_GOsaDeviceRDN.inc
 goto/admin/systems/goto/migration/class_migrate_printerRDN.inc
 goto/admin/systems/goto/migration/class_migrate_systemIncomingRDN.inc
 goto/admin/systems/goto/migration/class_migrate_terminalRDN.inc
 goto/admin/systems/goto/migration/class_migrate_workstationRDN.inc
 goto/admin/systems/goto/printer.tpl
 goto/admin/systems/goto/SelectDeviceType.tpl
 goto/admin/systems/goto/tabs_printers.inc
 goto/admin/systems/goto/tabs_terminal.inc
 goto/admin/systems/goto/tabs_workstation.inc
 goto/admin/systems/goto/terminalService.tpl
 goto/admin/systems/goto/terminalStartup.tpl
 goto/admin/systems/goto/terminal.tpl
 goto/admin/systems/goto/workstationService.tpl
 goto/admin/systems/goto/workstationStartup.tpl
 goto/admin/systems/goto/workstation.tpl
 goto/admin/systems/ppd/class_ppdManager.inc
 goto/admin/systems/ppd/class_printerPPDDialog.inc
 goto/admin/systems/ppd/class_printerPPDSelectionDialog.inc
 goto/admin/systems/ppd/printerPPDDialog.tpl
 goto/admin/systems/ppd/printerPPDSelectionDialog.tpl
 goto/admin/systems/ppd/remove_ppd.tpl
 goto/admin/systems/services/cups/class_goCupsServer.inc
 goto/admin/systems/services/cups/goCupsServer.tpl
 goto/admin/systems/services/kiosk/class_goKioskService.inc
 goto/admin/systems/services/kiosk/goKioskService.tpl
 goto/admin/systems/services/ldap/class_goLdapServer.inc
 goto/admin/systems/services/ldap/goLdapServer.tpl
 goto/admin/systems/services/ntp/class_goNtpServer.inc
 goto/admin/systems/services/ntp/goNtpServer.tpl
 goto/admin/systems/services/shares/class_goShareServer.inc
 goto/admin/systems/services/shares/class_servNfs.inc
 goto/admin/systems/services/shares/goShareServer.tpl
 goto/admin/systems/services/shares/servnfs.tpl
 goto/admin/systems/services/terminal/class_goTerminalServer.inc
 goto/admin/systems/services/terminal/goTerminalServer.tpl
 goto/contrib/resolutions
 goto/html/images/*
 goto/personal/environment/class_environment.inc
 goto/personal/environment/class_logonManagementDialog.inc
 goto/personal/environment/environment.tpl
 goto/personal/environment/hotplugSelect/selectHotplug-filter.xml
 goto/personal/environment/hotplugSelect/selectHotplug-list.tpl
 goto/personal/environment/hotplugSelect/selectHotplug-list.xml
 goto/personal/environment/logonManagement.tpl
 goto/personal/environment/printerSelect/selectPrinter-filter.xml
 goto/personal/environment/printerSelect/selectPrinter-list.tpl
 goto/personal/environment/printerSelect/selectPrinter-list.xml
 goto/plugin.dsc
 groupware/admin/groups/GroupwareSharedFolder/class_GroupwareSharedFolder.inc
 groupware/admin/groups/GroupwareSharedFolder/generic.tpl
 groupware/admin/groups/GroupwareSharedFolder/initFailed.tpl
 groupware/admin/ogroups/GroupwareDistributionList/class_GroupwareDistributionList.inc
 groupware/admin/ogroups/GroupwareDistributionList/generic.tpl
 groupware/admin/ogroups/GroupwareDistributionList/initFailed.tpl
 groupware/html/images/*
 groupware/personal/groupware/class_FilterEditor.inc
 groupware/personal/groupware/class_FilterManager.inc
 groupware/personal/groupware/class_GroupwareDao.inc
 groupware/personal/groupware/class_GroupwareDefinitions.inc
 groupware/personal/groupware/filterEditor.tpl
 groupware/personal/groupware/filterManager.tpl
 groupware/personal/groupware/FolderWidget/class_filterFolderWidget.inc
 groupware/personal/groupware/FolderWidget/class_FolderEditDialog.inc
 groupware/personal/groupware/FolderWidget/class_FolderWidget.inc
 groupware/personal/groupware/FolderWidget/class_FolderWidgetListing.inc
 groupware/personal/groupware/FolderWidget/FolderEditDialog.tpl
 groupware/personal/groupware/FolderWidget/FolderWidget-filter.xml
 groupware/personal/groupware/FolderWidget/FolderWidget-list.tpl
 groupware/personal/groupware/FolderWidget/FolderWidget-list.xml
 groupware/personal/groupware/generic.tpl
 groupware/plugin.dsc
 kolab/admin/systems/services/kolab/class_servKolab.inc
 kolab/admin/systems/services/kolab/servkolab.tpl
 kolab/contrib/kolab2.ldif
 kolab/contrib/kolab2.schema
 kolab/contrib/rfc2739.ldif
 kolab/contrib/rfc2739.schema
 kolab/personal/connectivity/kolab/class_kolabAccount.inc
 kolab/personal/connectivity/kolab/kolab.tpl
 kolab/personal/mail/kolab/class_mail-methods-kolab22.inc
 kolab/personal/mail/kolab/class_mail-methods-kolab.inc
 kolab/personal/mail/kolab/class_mail-methods-kolabNoImap.inc
 kolab/plugin.dsc
 ldapmanager/addons/ldapmanager/class_csvimport.inc
 ldapmanager/addons/ldapmanager/class_export.inc
 ldapmanager/addons/ldapmanager/class_exportxls.inc
 ldapmanager/addons/ldapmanager/class_import.inc
 ldapmanager/addons/ldapmanager/class_ldif.inc
 ldapmanager/addons/ldapmanager/contentcsv.tpl
 ldapmanager/addons/ldapmanager/contentexport.tpl
 ldapmanager/addons/ldapmanager/contentexportxls.tpl
 ldapmanager/addons/ldapmanager/contentimport.tpl
 ldapmanager/addons/ldapmanager/tabs_ldif.inc
 ldapmanager/html/images/ldif.png
 ldapmanager/plugin.dsc
 log/admin/systems/services/syslog/class_goLogDBServer.inc
 log/admin/systems/services/syslog/class_goSyslogServer.inc
 log/admin/systems/services/syslog/goLogDBServer.tpl
 log/admin/systems/services/syslog/goSyslogServer.tpl
 log/contrib/goconfig.ldif
 log/contrib/goconfig.schema
 log/contrib/golog.sql
 log/contrib/logging.sql
 log/contrib/README
 log/html/images/*
 log/plugin.dsc
 mail/admin/groups/mail/class_groupMail.inc
 mail/admin/groups/mail/mail.tpl
 mail/admin/groups/mail/paste_mail.tpl
 mail/admin/ogroups/mail/class_mailogroup.inc
 mail/admin/ogroups/mail/mail.tpl
 mail/admin/ogroups/mail/paste_mail.tpl
 mail/admin/systems/services/imap/class_goImapServer.inc
 mail/admin/systems/services/imap/goImapServer.tpl
 mail/admin/systems/services/mail/class_goMailServer.inc
 mail/admin/systems/services/mail/goMailServer.tpl
 mail/admin/systems/services/spam/class_goSpamServer.inc
 mail/admin/systems/services/spam/class_goSpamServerRule.inc
 mail/admin/systems/services/spam/goSpamServerRule.tpl
 mail/admin/systems/services/spam/goSpamServer.tpl
 mail/admin/systems/services/virus/class_goVirusServer.inc
 mail/admin/systems/services/virus/goVirusServer.tpl
 mail/contrib/goAgent.pl
 mail/contrib/sieve_vacation/IMAP/Sieve.pm
 mail/contrib/vacation_example.txt
 mail/etc/sieve-discard.txt
 mail/etc/sieve-header.txt
 mail/etc/sieve-mailsize.txt
 mail/etc/sieve-spam.txt
 mail/etc/sieve-vacation.txt
 mail/etc/vacation/vacation_example.txt
 mail/html/images/*
 mail/personal/mail/class_mailAccount.inc
 mail/personal/mail/class_mail-methods-cyrus.inc
 mail/personal/mail/class_mail-methods.inc
 mail/personal/mail/copypaste.tpl
 mail/personal/mail/generic.tpl
 mail/personal/mail/mailAddressSelect/selectMailAddress-filter.xml
 mail/personal/mail/mailAddressSelect/selectMailAddress-list.tpl
 mail/personal/mail/mailAddressSelect/selectMailAddress-list.xml
 mail/personal/mail/sieve/class_My_Parser.inc
 mail/personal/mail/sieve/class_My_Scanner.inc
 mail/personal/mail/sieve/class_My_Tree.inc
 mail/personal/mail/sieve/class_parser.inc
 mail/personal/mail/sieve/class_scanner.inc
 mail/personal/mail/sieve/class_semantics.inc
 mail/personal/mail/sieve/class_sieveElement_Block_End.inc
 mail/personal/mail/sieve/class_sieveElement_Block_Start.inc
 mail/personal/mail/sieve/class_sieveElement_Comment.inc
 mail/personal/mail/sieve/class_sieveElement_Discard.inc
 mail/personal/mail/sieve/class_sieveElement_Else_Elsif.inc
 mail/personal/mail/sieve/class_sieveElement_Fileinto.inc
 mail/personal/mail/sieve/class_sieveElement_If.inc
 mail/personal/mail/sieve/class_sieveElement_Keep.inc
 mail/personal/mail/sieve/class_sieveElement_Redirect.inc
 mail/personal/mail/sieve/class_sieveElement_Reject.inc
 mail/personal/mail/sieve/class_sieveElement_Require.inc
 mail/personal/mail/sieve/class_sieveElement_Stop.inc
 mail/personal/mail/sieve/class_sieveElement_Vacation.inc
 mail/personal/mail/sieve/class_tree.inc
 mail/personal/mail/sieve/libsieve.inc
 mail/personal/mail/sieve/templates/add_element.tpl
 mail/personal/mail/sieve/templates/block_indent_start.tpl
 mail/personal/mail/sieve/templates/block_indent_stop.tpl
 mail/personal/mail/sieve/templates/create_script.tpl
 mail/personal/mail/sieve/templates/edit_frame_base.tpl
 mail/personal/mail/sieve/templates/element_address.tpl
 mail/personal/mail/sieve/templates/element_allof.tpl
 mail/personal/mail/sieve/templates/element_anyof.tpl
 mail/personal/mail/sieve/templates/element_block_end.tpl
 mail/personal/mail/sieve/templates/element_block_start.tpl
 mail/personal/mail/sieve/templates/element_boolean.tpl
 mail/personal/mail/sieve/templates/element_comment.tpl
 mail/personal/mail/sieve/templates/element_discard.tpl
 mail/personal/mail/sieve/templates/element_else.tpl
 mail/personal/mail/sieve/templates/element_elsif.tpl
 mail/personal/mail/sieve/templates/element_envelope.tpl
 mail/personal/mail/sieve/templates/element_exists.tpl
 mail/personal/mail/sieve/templates/element_fileinto.tpl
 mail/personal/mail/sieve/templates/element_header.tpl
 mail/personal/mail/sieve/templates/element_if.tpl
 mail/personal/mail/sieve/templates/element_keep.tpl
 mail/personal/mail/sieve/templates/element_redirect.tpl
 mail/personal/mail/sieve/templates/element_reject.tpl
 mail/personal/mail/sieve/templates/element_require.tpl
 mail/personal/mail/sieve/templates/element_size.tpl
 mail/personal/mail/sieve/templates/element_stop.tpl
 mail/personal/mail/sieve/templates/element_vacation.tpl
 mail/personal/mail/sieve/templates/import_script.tpl
 mail/personal/mail/sieve/templates/management.tpl
 mail/personal/mail/sieve/templates/object_container_clear.tpl
 mail/personal/mail/sieve/templates/object_container.tpl
 mail/personal/mail/sieve/templates/object_test_container.tpl
 mail/personal/mail/sieve/templates/remove_script.tpl
 mail/personal/mail/sieve/templates/select_test_type.tpl
 mail/plugin.dsc
 mit-krb5/admin/systems/services/kerberos/goKrbServer.tpl
 mit-krb5/admin/systems/services/kerberos/krb5_policy.tpl
 mit-krb5/admin/systems/services/kerberos/krb_host_keys.tpl
 mit-krb5/admin/systems/services/kerberos/pwd_kerberos_mit.tpl
 mit-krb5/contrib/hdb.ldif
 mit-krb5/contrib/hdb.schema
 mit-krb5/plugin.dsc
 nagios/contrib/gosa_bind.conf
 nagios/contrib/nagios_ldap.conf
 nagios/contrib/nagios.ldif
 nagios/contrib/nagios.schema
 nagios/html/images/plugin.png
 nagios/personal/nagios/class_nagiosAccount.inc
 nagios/personal/nagios/nagios.tpl
 nagios/plugin.dsc
 nagios/README.nagios
 netatalk/contrib/apple.schema.README
 netatalk/html/images/plugin.png
 netatalk/html/images/select_netatalk.png
 netatalk/personal/netatalk/netatalk.tpl
 netatalk/plugin.dsc
 opengroupware/personal/connectivity/opengroupware/class_opengwAccount.inc
 opengroupware/personal/connectivity/opengroupware/class_opengw.inc
 opengroupware/personal/connectivity/opengroupware/class_pgsql_opengw.inc
 opengroupware/personal/connectivity/opengroupware/opengw.tpl
 opengroupware/plugin.dsc
 openxchange/contrib/openxchange.ldif
 openxchange/contrib/openxchange.schema
 openxchange/personal/connectivity/openxchange/oxchange.tpl
 openxchange/plugin.dsc
 openxchange/README.openxchange
 phpgw/contrib/phpgwaccount.ldif
 phpgw/contrib/phpgwaccount.schema
 phpgw/personal/connectivity/phpgw/class_phpgwAccount.inc
 phpgw/personal/connectivity/phpgw/phpgw.tpl
 phpgw/plugin.dsc
 phpscheduleit/contrib/phpscheduleit.ldif
 phpscheduleit/contrib/phpscheduleit.schema
 phpscheduleit/personal/connectivity/phpscheduleit/phpscheduleit.tpl
 phpscheduleit/plugin.dsc
 phpscheduleit/README.phpscheduleit
 pptp/contrib/pptp.ldif
 pptp/contrib/pptp.schema
 pptp/contrib/README.pptp
 pptp/personal/connectivity/pptp/pptp.tpl
 pptp/plugin.dsc
 pureftpd/contrib/pureftpd.ldif
 pureftpd/contrib/pureftpd.schema
 pureftpd/personal/connectivity/pureftpd/class_pureftpdAccount.inc
 pureftpd/personal/connectivity/pureftpd/pureftpd.tpl
 pureftpd/plugin.dsc
 rolemanagement/admin/roleManagement/migration/class_migrate_roleRDN.inc
 rolemanagement/admin/roleManagement/paste_generic.tpl
 rolemanagement/admin/roleManagement/role-filter.xml
 rolemanagement/admin/roleManagement/roleGeneric.tpl
 rolemanagement/admin/roleManagement/role-list.tpl
 rolemanagement/admin/roleManagement/role-list.xml
 rolemanagement/html/images/plugin.png
 rolemanagement/html/images/role.png
 rolemanagement/plugin.dsc
 rsyslog/addons/rsyslog/class_rsyslog.inc
 rsyslog/addons/rsyslog/rsyslogTabs.inc
 rsyslog/addons/rsyslog/rSyslog.tpl
 rsyslog/admin/systems/services/rsyslog/class_rSyslogServer.inc
 rsyslog/admin/systems/services/rsyslog/rSyslogServer.tpl
 rsyslog/html/images/clock.png
 rsyslog/html/images/plugin.png
 rsyslog/html/images/server.png
 rsyslog/html/images/workstation.png
 rsyslog/plugin.dsc
 samba/admin/systems/samba/class_winGeneric.inc
 samba/admin/systems/samba/migration/class_migrate_sambaMachineAccountRDN.inc
 samba/admin/systems/samba/tabs_winstation.inc
 samba/admin/systems/samba/wingeneric.tpl
 samba/html/images/plugin.png
 samba/html/images/terminal_server.png
 samba/personal/samba/class_sambaLogonHours.inc
 samba/personal/samba/samba3.tpl
 samba/personal/samba/sambaLogonHours.tpl
 samba/plugin.dsc
 scalix/admin/groups/scalix/class_scalixGroup.inc
 scalix/html/images/envelope.png
 scalix/html/images/plugin.png
 scalix/personal/scalix/class_scalixAccount.inc
 scalix/personal/scalix/generic.tpl
 scalix/personal/scalix/paste_generic.tpl
 scalix/plugin.dsc
 squid/contrib/goAgent.pl
 squid/contrib/goQuota.pl
 squid/contrib/goQuotaView.pl
 squid/contrib/goSquid.pl
 squid/contrib/mkHash.pl
 squid/personal/connectivity/squid/class_proxyAccount.inc
 squid/personal/connectivity/squid/proxy.tpl
 squid/plugin.dsc
 squid/README.squid
 ssh/contrib/openssh-lpk.ldif
 ssh/contrib/openssh-lpk.schema
 ssh/personal/ssh/sshPublicKey.tpl
 ssh/plugin.dsc
 sudo/admin/sudo/generic.tpl
 sudo/admin/sudo/migration/class_migrate_sudoRDN.inc
 sudo/admin/sudo/options.tpl
 sudo/admin/sudo/paste_generic.tpl
 sudo/admin/sudo/sudo-filter.xml
 sudo/admin/sudo/sudo-list.tpl
 sudo/admin/sudo/sudo-list.xml
 sudo/contrib/sudo.ldif
 sudo/contrib/sudo.schema
 sudo/html/images/negate.png
 sudo/html/images/select_sudo.png
 sudo/html/images/select_workstation.png
 sudo/html/images/sudo.png
 sudo/plugin.dsc
 systems/admin/systems/class_filterOPSIHOSTS.inc
 systems/admin/systems/class_filterServerService.inc
 systems/admin/systems/class_filterSYSTEMS.inc
 systems/admin/systems/component.tpl
 systems/admin/systems/contents.tpl
 systems/admin/systems/migration/class_migrate_componentRDN.inc
 systems/admin/systems/migration/class_migrate_serverRDN.inc
 systems/admin/systems/migration/class_migrate_systemRDN.inc
 systems/admin/systems/network.tpl
 systems/admin/systems/password.tpl
 systems/admin/systems/paste_generic.tpl
 systems/admin/systems/serverService-filter.xml
 systems/admin/systems/serverService-list.tpl
 systems/admin/systems/serverService-list.xml
 systems/admin/systems/server.tpl
 systems/admin/systems/system-filter.xml
 systems/admin/systems/system-list.tpl
 systems/admin/systems/system-list.xml
 systems/admin/systems/systemSelect/selectSystem-filter.xml
 systems/admin/systems/systemSelect/selectSystem-list.tpl
 systems/admin/systems/systemSelect/selectSystem-list.xml
 systems/html/images/cdrom.png
 systems/html/images/clock.png
 systems/html/images/drives.png
 systems/html/images/network.png
 systems/html/images/plugin.png
 systems/html/images/select_component.png
 systems/html/images/select_default.png
 systems/html/images/select_phone.png
 systems/html/images/select_printer.png
 systems/html/images/select_server.png
 systems/html/images/select_terminal.png
 systems/html/images/select_winstation.png
 systems/html/images/select_workstation.png
 systems/html/images/server_busy.png
 systems/html/images/server_error.png
 systems/html/images/server.png
 systems/html/images/terminal_error.png
 systems/html/images/workstation_busy.png
 systems/html/images/workstation_error.png
 systems/plugin.dsc
 uw-imap/contrib/procmail-discard.txt
 uw-imap/contrib/procmail-footer.txt
 uw-imap/contrib/procmail-header.txt
 uw-imap/contrib/procmail-spam.txt
 uw-imap/contrib/procmail-vacation.txt
 uw-imap/plugin.dsc
 webdav/personal/connectivity/webdav/class_webdavAccount.inc
 webdav/personal/connectivity/webdav/webdav.tpl
 webdav/plugin.dsc
Copyright: *No copyright*
License: GPL-2+
Comment:
 Assuming license from gosa-core/COPYING.

Files: gosa-core/html/include/tooltip.js
Copyright: 2006, Jonathan Weiss <jw@innerewut.de>
License: Expat

Files: gosa-core/contrib/latex2html
Copyright: 2004, Nikos Drakos <nikos@cbl.leeds.ac.uk>
License: GPL-2
Comment:
 This exact license has been obtained from the debian/copyright file
 in the Debian package latex2html.

Files: */locale/*/LC_MESSAGES/messages.po
 */locale/messages.po
 gosa-core/locale/core/messages.po
Copyright: 2003, GONICUS GmbH, Germany
     2005, Alessandro Amici <a.amici@bopen.it>
     2005, B-Open Solutions srl - http://www.bopen.it/
     2009, The GOsa Project
     YEAR, THE PACKAGE'S COPYRIGHT HOLDER
License: GPL-2+
Comment:
 Using license from gosa-core/COPYING

Files: apache2/admin/systems/services/apache2/class_servApacheEditVhost.inc
 apache2/admin/systems/services/apache2/class_servApacheVhost.inc
 gofax/gofax/blocklists/class_blocklistManagement.inc
 gofax/gofax/blocklists/main.inc
 gofax/gofax/faxaccount/faxNumberSelect/class_faxNumberSelect.inc
 gofax/html/getfax.php
 gofon/gofon/conference/class_phoneConferenceManagment.inc
 gofon/gofon/conference/main.inc
 gofon/gofon/macro/class_gofonMacroManagement.inc
 gofon/gofon/macro/main.inc
 gosa-core/html/include/gosa.js
 gosa-core/html/autocomplete.php
 gosa-core/html/getbin.php
 gosa-core/html/helpviewer.php
 gosa-core/html/index.php
 gosa-core/html/logout.php
 gosa-core/html/main.php
 gosa-core/html/password.php
 gosa-core/html/setup.php
 gosa-core/include/class_CopyPasteHandler.inc
 gosa-core/include/class_ItemSelector.inc
 gosa-core/include/class_SnapShotDialog.inc
 gosa-core/include/class_SnapshotHandler.inc
 gosa-core/include/class_acl.inc
 gosa-core/include/class_baseSelector.inc
 gosa-core/include/class_certificate.inc
 gosa-core/include/class_config.inc
 gosa-core/include/class_departmentSortIterator.inc
 gosa-core/include/class_filter.inc
 gosa-core/include/class_gosaSupportDaemon.inc
 gosa-core/include/class_ldapMultiplexer.inc
 gosa-core/include/class_listing.inc
 gosa-core/include/class_listingSortIterator.inc
 gosa-core/include/class_log.inc
 gosa-core/include/class_management.inc
 gosa-core/include/class_msg_dialog.inc
 gosa-core/include/class_multi_plug.inc
 gosa-core/include/class_plugin.inc
 gosa-core/include/class_pluglist.inc
 gosa-core/include/class_releaseSelector.inc
 gosa-core/include/class_session.inc
 gosa-core/include/class_socketClient.inc
 gosa-core/include/class_sortableListing.inc
 gosa-core/include/class_tabs.inc
 gosa-core/include/class_userinfo.inc
 gosa-core/include/functions.inc
 gosa-core/include/functions_helpviewer.inc
 gosa-core/include/password-methods/class_password-methods-clear.inc
 gosa-core/include/password-methods/class_password-methods-crypt.inc
 gosa-core/include/password-methods/class_password-methods-md5.inc
 gosa-core/include/password-methods/class_password-methods-sasl.inc
 gosa-core/include/password-methods/class_password-methods-sha.inc
 gosa-core/include/password-methods/class_password-methods-smd5.inc
 gosa-core/include/password-methods/class_password-methods-ssha.inc
 gosa-core/include/password-methods/class_password-methods.inc
 gosa-core/include/php_setup.inc
 gosa-core/plugins/admin/acl/class_aclManagement.inc
 gosa-core/plugins/admin/acl/class_aclRole.inc
 gosa-core/plugins/admin/acl/main.inc
 gosa-core/plugins/admin/acl/tabs_acl.inc
 gosa-core/plugins/admin/acl/tabs_acl_role.inc
 gosa-core/plugins/admin/departments/class_countryGeneric.inc
 gosa-core/plugins/admin/departments/class_dcObject.inc
 gosa-core/plugins/admin/departments/class_department.inc
 gosa-core/plugins/admin/departments/class_departmentManagement.inc
 gosa-core/plugins/admin/departments/class_domain.inc
 gosa-core/plugins/admin/departments/class_localityGeneric.inc
 gosa-core/plugins/admin/departments/class_organizationGeneric.inc
 gosa-core/plugins/admin/departments/main.inc
 gosa-core/plugins/admin/departments/tabs_department.inc
 gosa-core/plugins/admin/groups/class_group.inc
 gosa-core/plugins/admin/groups/class_groupManagement.inc
 gosa-core/plugins/admin/groups/main.inc
 gosa-core/plugins/admin/groups/singleUserSelect/class_singleUserSelect.inc
 gosa-core/plugins/admin/groups/tabs_group.inc
 gosa-core/plugins/admin/groups/userGroupSelect/class_userGroupSelect.inc
 gosa-core/plugins/admin/groups/userSelect/class_userSelect.inc
 gosa-core/plugins/admin/ogroups/class_ogroup.inc
 gosa-core/plugins/admin/ogroups/class_ogroupManagement.inc
 gosa-core/plugins/admin/ogroups/main.inc
 gosa-core/plugins/admin/ogroups/objectSelect/class_objectSelect.inc
 gosa-core/plugins/admin/ogroups/tabs_ogroups.inc
 gosa-core/plugins/admin/users/class_userManagement.inc
 gosa-core/plugins/admin/users/main.inc
 gosa-core/plugins/admin/users/tabs_user.inc
 gosa-core/plugins/generic/references/class_reference.inc
 gosa-core/plugins/generic/welcome/main.inc
 gosa-core/plugins/personal/generic/class_user.inc
 gosa-core/plugins/personal/myaccount/MyAccountTabs.inc
 gosa-core/plugins/personal/myaccount/main.inc
 gosa-core/plugins/personal/password/class_password.inc
 gosa-core/plugins/personal/password/main.inc
 gosa-core/plugins/personal/posix/class_posixAccount.inc
 gosa-core/plugins/personal/posix/groupSelect/class_groupSelect.inc
 gosa-core/plugins/personal/posix/trustSelect/class_trustSelect.inc
 gosa-core/setup/class_setup.inc
 gosa-core/setup/class_setupStep_Checks.inc
 gosa-core/bin/gosa-encrypt-passwords
 gosa-core/dh-make-gosa
 gosa-core/dh-make-gosa.1
 gosa-core/gosa-encrypt-passwords.1
 gosa-core/gosa-encrypt-passwords.pod
 gosa-core/update-gosa
 gosa-core/update-gosa.1
 gosa-core/update-gosa.pod
 gosa-core/update-locale.1
 gosa-core/update-locale.pod
 gosa-core/update-online-help.1
 gosa-core/update-online-help.pod
 gosa-core/update-pdf-help.1
 gosa-core/update-pdf-help.pod
 goto/addons/goto/class_gotomasses.inc
 goto/addons/goto/events/class_DaemonEvent.inc
 goto/addons/goto/events/class_DaemonEvent_activate.inc
 goto/addons/goto/events/class_DaemonEvent_activate_new.inc
 goto/addons/goto/events/class_DaemonEvent_faireboot.inc
 goto/addons/goto/events/class_DaemonEvent_goto_reload.inc
 goto/addons/goto/events/class_DaemonEvent_halt.inc
 goto/addons/goto/events/class_DaemonEvent_installation_activation.inc
 goto/addons/goto/events/class_DaemonEvent_localboot.inc
 goto/addons/goto/events/class_DaemonEvent_lock.inc
 goto/addons/goto/events/class_DaemonEvent_memcheck.inc
 goto/addons/goto/events/class_DaemonEvent_notify.inc
 goto/addons/goto/events/class_DaemonEvent_reboot.inc
 goto/addons/goto/events/class_DaemonEvent_recreate_fai_release_db.inc
 goto/addons/goto/events/class_DaemonEvent_recreate_fai_server_db.inc
 goto/addons/goto/events/class_DaemonEvent_reinstall.inc
 goto/addons/goto/events/class_DaemonEvent_reload_ldap_config.inc
 goto/addons/goto/events/class_DaemonEvent_rescan.inc
 goto/addons/goto/events/class_DaemonEvent_sysinfo.inc
 goto/addons/goto/events/class_DaemonEvent_update.inc
 goto/addons/goto/events/class_DaemonEvent_wakeup.inc
 goto/addons/goto/events/class_EventAddSystemDialog.inc
 goto/addons/goto/events/class_EventAddUserDialog.inc
 goto/addons/goto/main.inc
 goto/admin/applications/class_applicationManagement.inc
 goto/admin/applications/main.inc
 goto/admin/devices/class_deviceManagement.inc
 goto/admin/devices/main.inc
 goto/admin/mimetypes/class_mimetypeManagement.inc
 goto/admin/mimetypes/main.inc
 goto/personal/environment/hotplugSelect/class_hotplugSelect.inc
 goto/personal/environment/printerSelect/class_printerSelect.inc
 mail/personal/mail/mailAddressSelect/class_mailAddressSelect.inc
 mit-krb5/admin/systems/services/kerberos/class_krb_host_keys.inc
 rolemanagement/admin/roleManagement/class_roleGeneric.inc
 rolemanagement/admin/roleManagement/class_roleManagement.inc
 rolemanagement/admin/roleManagement/main.inc
 rolemanagement/admin/roleManagement/tabs_roles.inc
 samba/contrib/fix_munged
 ssh/personal/ssh/class_sshPublicKey.inc
 sudo/admin/sudo/class_sudoGeneric.inc
 sudo/admin/sudo/class_sudoManagement.inc
 sudo/admin/sudo/class_sudoOption.inc
 sudo/admin/sudo/main.inc
 sudo/admin/sudo/tabs_sudo.inc
 systems/admin/systems/class_componentGeneric.inc
 systems/admin/systems/class_servGeneric.inc
 systems/admin/systems/class_serverService.inc
 systems/admin/systems/class_systemManagement.inc
 systems/admin/systems/class_termDNS.inc
 systems/admin/systems/main.inc
 systems/admin/systems/services/class_goService.inc
 systems/admin/systems/systemSelect/class_systemSelect.inc
 systems/admin/systems/tabs_arpnewdevice.inc
 systems/admin/systems/tabs_component.inc
 systems/admin/systems/tabs_server.inc
Copyright: 2003-2010, GONICUS GmbH
           2006, GONICUS GmbH
           2008, GONICUS GmbH
License: GPL-2+

Files: dhcp/admin/systems/services/dhcp/class_dhcpAdvanced.inc
 dhcp/admin/systems/services/dhcp/class_dhcpClass.inc
 dhcp/admin/systems/services/dhcp/class_dhcpDnsZone.inc
 dhcp/admin/systems/services/dhcp/class_dhcpGroup.inc
 dhcp/admin/systems/services/dhcp/class_dhcpHost.inc
 dhcp/admin/systems/services/dhcp/class_dhcpNetwork.inc
 dhcp/admin/systems/services/dhcp/class_dhcpPlugin.inc
 dhcp/admin/systems/services/dhcp/class_dhcpPool.inc
 dhcp/admin/systems/services/dhcp/class_dhcpService.inc
 dhcp/admin/systems/services/dhcp/class_dhcpSharedNetwork.inc
 dhcp/admin/systems/services/dhcp/class_dhcpSubClass.inc
 dhcp/admin/systems/services/dhcp/class_dhcpSubnet.inc
 dhcp/admin/systems/services/dhcp/class_dhcpTSigKey.inc
 gofon/gofon/conference/class_phoneConferenceGeneric.inc
 gosa-core/include/utils/class_tests.inc
 gosa-core/include/utils/class_timezone.inc
 gosa-core/plugins/addons/propertyEditor/main.inc
 gosa-core/plugins/generic/dashBoard/main.inc
 gosa-core/plugins/generic/infoPage/main.inc
 gosa-core/plugins/generic/statistics/main.inc
 groupware/personal/groupware/class_Groupware.inc
 ldapmanager/addons/ldapmanager/main.inc
 mail/personal/mail/class_mail-methods-sendmail-cyrus.inc
 rsyslog/addons/rsyslog/main.inc
 samba/personal/samba/class_sambaAccount.inc
 samba/personal/samba/class_sambaMungedDial.inc
 uw-imap/personal/mail/uw-imap/class_mail-methods-uwimap.inc
Copyright: 2003-2008, Cajus Pollmeier
License: GPL-2+

Files: gosa-core/setup/class_setupStep.inc
 gosa-core/setup/class_setupStep_Feedback.inc
 gosa-core/setup/class_setupStep_Finish.inc
 gosa-core/setup/class_setupStep_Language.inc
 gosa-core/setup/class_setupStep_Ldap.inc
 gosa-core/setup/class_setupStep_License.inc
 gosa-core/setup/class_setupStep_Migrate.inc
 gosa-core/setup/class_setupStep_Schema.inc
 gosa-core/setup/class_setupStep_Welcome.inc
 gosa-core/setup/main.inc
 mit-krb5/admin/systems/services/kerberos/class_goKrbServer.inc
 mit-krb5/admin/systems/services/kerberos/class_krb5_policy.inc
 mit-krb5/admin/systems/services/kerberos/class_password-methods-MIT.inc
Copyright: 2007-2008, Fabian Hickert
License: GPL-2+

Files: gosa-core/include/utils/excel/class.writeexcel_biffwriter.inc.php
 gosa-core/include/utils/excel/class.writeexcel_format.inc.php
 gosa-core/include/utils/excel/class.writeexcel_formula.inc.php
 gosa-core/include/utils/excel/class.writeexcel_olewriter.inc.php
 gosa-core/include/utils/excel/class.writeexcel_workbook.inc.php
 gosa-core/include/utils/excel/class.writeexcel_worksheet.inc.php
 gosa-core/include/utils/excel/functions.writeexcel_utility.inc.php
Copyright: 2002, Johann Hanne
License: LGPL-2.1+

Files: phpscheduleit/personal/connectivity/phpscheduleit/class_phpscheduleitAccount.inc
 pptp/personal/connectivity/pptp/class_pptpAccount.inc
Copyright: 2005, Benoit Mortier
  2005, Guillaume Delecourt
License: GPL-2+

Files: openxchange/personal/connectivity/openxchange/class_oxchangeAccount.inc
Copyright: 2005, Alejandro Escanero Blanco
License: GPL-2+

Files: gosa-core/include/class_ldap.inc
Copyright: 1998, Eric Kilfoil <eric@ipass.net>
  2003, Alejandro Escanero Blanco <aescanero@chaosdimension.org>
  2003-2008, GONICUS GmbH
License: GPL-2+

Files: ldapmanager/html/getxls.php
Copyright: 2003, Cajus Pollmeier
  2005, Benoit Mortier
  2005, Guillaume Delecourt
  2005, Vincent Seynhaeve
License: GPL-2+

Files: samba/contrib/goSamba.pl
Copyright: 2005, Guillaume Delecourt <guillaume.delecourt@opensides.be>
  2009, Benoit Mortier <benoit.mortier@opensides.be>
License: GPL-2+

Files: nagios/contrib/goNagios.pl
Copyright: 2005, Guillaume Delecourt <guillaume.delecourt@opensides.be>
  2005, Vincent Senave <vincent.senave@opensides.be>
  2005-2009, Benoit Mortier <benoit.mortier@opensides.be>
License: GPL-2+

Files: netatalk/personal/netatalk/class_netatalk.inc
Copyright: 2006, Bernd Zeimetz <bernd@zeimetz.de>
  2006, Gina Haeussge <osd@foosel.net>
License: GPL-2+

Files: gosa-core/include/utils/class_xml.inc
Copyright: 2008, Cajus Pollmeier and
License: GPL-2+

Files: mail/personal/mail/sieve/class_sieveManagement.inc
Copyright: 2003-2007, - Fabian Hickert <hickert@gonicus.de>
License: GPL-2+

Files: mail/contrib/sieve_vacation/update-vacation.pl
Copyright: 2007, Frank Moeller
License: GPL-2+

Files: gosa-core/plugins/addons/dyngroup/class_DynamicLdapGroup.inc
Copyright: 2003-2008, GONICUS GmbH
  2010, Thomas CHEMINEAU
License: GPL-2+

Files: gosa-core/include/accept-to-gettext.inc
Copyright: 2003, Wouter Verhelst <wouter@debian.org>
License: GPL-2+

Files: gosa-core/doc/admin/en/manual_gosa_en.tex
Copyright: 2005, Alejandro Escanero Blanco.
License: Expat

Files: mail/personal/mail/sieve/class_sieve.inc
Copyright: 2001, Dan Ellis <danellis@rushmore.com>
License: GPL-2+

Files: gosa-core/html/include/builder.js
 gosa-core/html/include/dragdrop.js
 gosa-core/html/include/effects.js
Copyright: 2005-2008, Thomas Fuchs <thomas@script.aculo.us>
License: Expat

Files: gosa-core/html/include/controls.js
Copyright: 2005-2009, Thomas Fuchs <http://script.aculo.us, http://mir.aculo.us>
  2005-2009, Ivan Krstic <http://blogs.law.harvard.edu/ivan>
  2005-2009, Jon Tirsen <http://www.tirsen.com>
License: Expat

Files: gosa-core/html/include/pulldown.js
Copyright: 2004, Knallgrau New Medias Solutions GmbH
License: BSD-4-clause

Files: gosa-core/html/include/pwdStrength.js
Copyright: 2006, Steve Moitozo <god at zilla dot us>
License: Expat

Files: gosa-core/html/include/datepicker.js
Copyright: 2007, Mathieu Jondet
License: Expat

Files: README.multi-orig-tarball-package
   debian/*
Copyright: 2010, Benoit Mortier <benoit.mortier@opensides.be>
     2014-2015, Mike Gabriel <sunweaver@debian.org>
License: GPL-2+ or GPL-3+ or LGPL-2.1+ or Expat or BSD-4-clause

License: GPL-2
 This package is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; version 2 of the License.
 .
 This package is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this package; if not, write to the Free Software
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 .
 On Debian systems, the complete text of the GNU General
 Public License 2 can be found in `/usr/share/common-licenses/GPL-2'.

License: GPL-2+
 This package is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.
 .
 This package is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this package; if not, write to the Free Software
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 .
 On Debian systems, the complete text of the GNU General
 Public License 2 can be found in `/usr/share/common-licenses/GPL-2'.

License: GPL-3+
 This package is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 3 of the License, or
 (at your option) any later version.
 .
 This package is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this package; if not, write to the Free Software
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 .
 On Debian systems, the complete text of the GNU General
 Public License 3 can be found in `/usr/share/common-licenses/GPL-3'.

License: LGPL-2.1+
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or (at your option) any later version.
 .
 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Lesser General Public License for more details.
 .
 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 MA  02110-1301  USA
 .
 On Debian systems, the full text of the GNU Lesser General Public
 License version 2,1 can be found in the file
 `/usr/share/common-licenses/LGPL-2.1'.

License: Expat
 Permission is hereby granted, free of charge, to any person obtaining a copy of
 this software and associated documentation files (the "Software"), to deal in
 the Software without restriction, including without limitation the rights to
 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
 of the Software, and to permit persons to whom the Software is furnished to do
 so, subject to the following conditions:
 .
 The above copyright notice and this permission notice shall be included in all
 copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.

License: BSD-4-clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 .
 - Redistributions of source code must retain the above copyright notice,
   this list of conditions and the following disclaimer.
 - Redistributions in binary form must reproduce the above copyright notice,
   this list of conditions and the following disclaimer in the documentation
   and/or other materials provided with the distribution.
 - All advertising materials mentioning features or use of this software must
   display the following acknowledgement: “This product includes software
   developed by the <author(s)>.”
 - Neither the name of the author(s) nor the names of this program's
   contributors may be used to endorse or promote products derived from this
   software without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) “AS IS” AND ANY EXPRESS OR IMPLIED
 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
 EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
 OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
 OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.