-
Notifications
You must be signed in to change notification settings - Fork 7
/
com.trusourcelabs.NoMAD.json
2079 lines (2078 loc) · 70.1 KB
/
com.trusourcelabs.NoMAD.json
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
{
"title": "com.trusourcelabs.NoMAD",
"description": "Preference Domain: com.trusourcelabs.NoMAD, Application: NoMAD",
"__version": "1.2.0",
"__feedback": "[email protected]",
"type": "object",
"options": {
"remove_empty_properties": true
},
"properties": {
"ADDomain": {
"title": "ADDomain",
"description": "Defines the AD domain you’re working with.",
"propertyOrder": 1,
"type": "string",
"options": {
"infoText": "Key: ADDomain"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"AutoConfigure": {
"title": "AutoConfigure",
"description": "Keyword to determine what auto configuration scheme to use.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: AutoConfigure"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"AutoRenewCert": {
"title": "AutoRenewCert",
"description": "Sets the number of days to go on a cert before automatically renewing it.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "integer"
}
],
"options": {
"infoText": "Key: AutoRenewCert"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"CaribouTime": {
"title": "CaribouTime",
"description": "Changes the icon set to Carrie the Caribou",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean"
}
],
"options": {
"infoText": "Key: CaribouTime"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"ChangePasswordCommand": {
"title": "ChangePasswordCommand",
"description": "Script or other binary to run when a password is sucessfully changed.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: ChangePasswordCommand"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"ChangePasswordOptions": {
"title": "ChangePasswordOptions",
"description": "Task, URL or App path for ChangePasswordType (<<serial>>, <<fullname>>, <<shortname>> and <<domain>> are currently supported as substitutions).",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: ChangePasswordOptions"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"ChangePasswordType": {
"title": "ChangePasswordType",
"description": "Determines type of ChangePassword function (Kerberos, Task, URL, App, and None are currently supported).",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"enum": ["Kerberos", "Task", "URL", "App", "None"],
"default": "Kerberos",
"options": {
"infoText": "Key: ChangePasswordType"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"CleanCerts": {
"title": "CleanCerts",
"description": "Determines if NoMAD should remove extra certs from user’s Keychain. This will leave the 2 newest and the 2 oldest certs in the keychian.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean"
}
],
"options": {
"infoText": "Key: CleanCerts"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"ConfigureChrome": {
"title": "ConfigureChrome",
"description": "Tells NoMAD to update your Chrome settings to allow for Kerberos auth with your AD domain.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean"
}
],
"options": {
"infoText": "Key: ConfigureChrome"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"ConfigureChromeDomain": {
"title": "ConfigureChromeDomain",
"description": "Tells NoMAD to update your Chrome settings to allow for Kerberos auth with for the set domain. This allows for Chrome to work with domains other than your AD Domain. Note that the domain will be automatically wildcarded, so setting a domain of “nomad.test” will result in *nomad.test being set. Multiple domains are supported, seperate them by “,”.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: ConfigureChromeDomain"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"CustomLDAPAttributes": {
"title": "CustomLDAPAttributes",
"description": "List of custom attributes to query in AD on each user record lookup. Attributes will be written back to the UserAttributes key.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "array",
"items": {
"type": "string",
"title": "Attribute"
}
}
],
"options": {
"infoText": "Key: CustomLDAPAttributes"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"DontMatchKerbPrefs": {
"title": "DontMatchKerbPrefs",
"description": "Determines if the kasspwd server is written out to the com.apple.Kerberos preference domain.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean"
}
],
"options": {
"infoText": "Key: DontMatchKerbPrefs"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"DontShowWelcome": {
"title": "DontShowWelcome",
"description": "Determines if the Welcome window is shown on first launch.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean"
}
],
"options": {
"infoText": "Key: DontShowWelcome"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"DontShowWelcomeDefaultOn": {
"title": "DontShowWelcomeDefaultOn",
"description": "Shows the Welcome Screen, but checks the “Don’t show again” box by default. Useful for when you want to show the Welcome screen only once.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean"
}
],
"options": {
"infoText": "Key: DontShowWelcomeDefaultOn"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"ExportableKey": {
"title": "ExportableKey",
"description": "Determines if the private key from any generate certs can be exported.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean"
}
],
"default": false,
"options": {
"infoText": "Key: ExportableKey"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"GetCertificateAutomatically": {
"title": "GetCertificateAutomatically",
"description": "Determines if a certificate is automatically requested for a user when they don’t have a valid existing certificate.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean"
}
],
"options": {
"infoText": "Key: GetCertificateAutomatically"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"GetHelpOptions": {
"title": "GetHelpOptions",
"description": "URL or Path for GetHelpType (<<serial>>, <<fullname>>, <<shortname>> and <<domain>> are currently supported as substitutions).",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: GetHelpOptions"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"GetHelpType": {
"title": "GetHelpType",
"description": "Determines type of GetHelp function (Bomgar, URL and App are currently supported).",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: GetHelpType"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"HicFix": {
"title": "HicFix",
"description": "Enables a secondary password change with AD to fix an issue with macOS 10.13.0 with AD-bound mobile accounts.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean"
}
],
"options": {
"infoText": "Key: HicFix"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"HideAbout": {
"title": "HideAbout",
"description": "Removes the About menu from NoMAD.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean"
}
],
"options": {
"infoText": "Key: HideAbout"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"HideExpiration": {
"title": "HideExpiration",
"description": "Hides the password countdown display in the menu bar.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean"
}
],
"options": {
"infoText": "Key: HideExpiration"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"HideExpirationMessage": {
"title": "HideExpirationMessage",
"description": "Specifies text to show in the menu bar when the password countdown has been suppressed.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: HideExpirationMessage"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"HideGetSoftware": {
"title": "HideGetSoftware",
"description": "Determines if the Get Software menu is visible.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: HideGetSoftware"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"HideHelp": {
"title": "HideHelp",
"description": "Determines if the Get Help menu is visible.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: HideHelp"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"HideLockScreen": {
"title": "HideLockScreen",
"description": "Determines if the Lock Screen menu is visible.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: HideLockScreen"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"HidePrefs": {
"title": "HidePrefs",
"description": "Prevents the Preferences menu from being accessible.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"default": false,
"options": {
"infoText": "Key: HidePrefs"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"HideRenew": {
"title": "HideRenew",
"description": "Determines if the Renew Tickets menu is visible.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: HideRenew"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"HideSignOut": {
"title": "HideSignOut",
"description": "Determines if the Sign Out menu is visible.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: HideSignOut"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"HideQuit": {
"title": "HideQuit",
"description": "Determines if the Quit menu is visible.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: HideQuit"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"HomeAppendDomain": {
"title": "HomeAppendDomain",
"description": "Adds your AD domain to the end of the user’s hold folder. Used for when the home in AD is not fully qualified.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: HomeAppendDomain"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"IconOff": {
"title": "IconOff",
"description": "Specifies an icon file to use for when NoMAD is not connected. Note: this needs to be a 16×16 image to display correctly.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: IconOff"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"IconOffDark": {
"title": "IconOffDark",
"description": "Specifies an icon file to use for when NoMAD is not connected in dark mode.Note: this needs to be a 16×16 image to display correctly.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: IconOffDark"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"IconOn": {
"title": "IconOn",
"description": "Specifies an icon file to use for when NoMAD is connected. Note: this needs to be a 16×16 image to display correctly.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: IconOn"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"IconOnDark": {
"title": "IconOnDark",
"description": "Specifies an icon file to use for when NoMAD is connected in dark mode. Note: this needs to be a 16×16 image to display correctly.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: IconOnDark"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"KerberosRealm": {
"title": "KerberosRealm",
"description": "Defines your Kerberos realm",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: KerberosRealm"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"KeychainItems": {
"title": "KeychainItems",
"description": "A Dictionary or Keychain Items matching an item name to an account name. On password change, NoMAD will update these items with the user’s new password.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "object"
}
],
"options": {
"infoText": "Key: KeychainItems"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"KeychainItemsDebug": {
"title": "KeychainItemsDebug",
"description": "Enbables KeychainItems debugging. Will attempt to update passwords on any sign in through the NoMAD UI and log verbosely as to what’s not working.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean"
}
],
"options": {
"infoText": "Key: KeychainItemsDebug"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"LDAPAnonymous": {
"title": "LDAPAnonymous",
"description": "Determines if NoMAD uses anonymous LDAP binding when getting the user record.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean"
}
],
"options": {
"infoText": "Key: LDAPAnonymous"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"LDAPServerList": {
"title": "LDAPServerList",
"description": "List of LDAP servers for NoMAD to use instead of doing SRV lookups.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: LDAPServerList"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"LDAPOnly": {
"title": "LDAPOnly",
"description": "Sets NoMAD to treat the remote server as just an LDAP server and not specifically AD.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean"
}
],
"options": {
"infoText": "Key: LDAPOnly"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"LDAPOverSSL": {
"title": "LDAPOverSSL",
"description": "Determines if NoMAD uses LDAP over SSL.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean"
}
],
"options": {
"infoText": "Key: LDAPOverSSL"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"LDAPType": {
"title": "LDAPType",
"description": "An indication of what specific LDAP type is in use. Currently only “OD” for Apple’s Open Directory is available.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "string"
}
],
"options": {
"infoText": "Key: LDAPType"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"LightsOutIKnowWhatImDoing": {
"title": "LightsOutIKnowWhatImDoing",
"description": "Removes the icon from the menu bar. Note that NoMAD still is in the menu bar, just with no icon and taking up less space.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean"
}
],
"options": {
"infoText": "Key: LightsOutIKnowWhatImDoing"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"LocalPasswordSync": {
"title": "LocalPasswordSync",
"description": "Determines if we keep the local password in sync with the network password or not.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "boolean"
}
],
"default": false,
"options": {
"infoText": "Key: LocalPasswordSync"
},
"links": [{
"rel": "More information",
"href": "https://nomad.menu/help/preferences-and-what-they-do/"
}]
},
"LocalPasswordSyncDontSyncLocalUsers": {
"title": "LocalPasswordSyncDontSyncLocalUsers",
"description": "An array of user names that if they match the current local user, NoMAD won’t synchronize the password regardless of what user logs into AD.",
"propertyOrder": 10,
"anyOf": [
{
"title": "Not Configured",
"type": "null"
},
{
"title": "Configured",
"type": "array",
"items": {
"type": "string",
"title": "Username"
}
}
],
"options": {
"infoText": "Key: LocalPasswordSyncDontSyncLocalUsers"
},