-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcom.microsoft.SkypeForBusiness.json
68 lines (66 loc) · 1.68 KB
/
com.microsoft.SkypeForBusiness.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
{
"$schema": "http://json-schema.org/schema#",
"title": "Microsoft Skype For Business Settings",
"description": "Domain: com.microsoft.SkypeForBusiness",
"type": "object",
"properties": {
"userName": {
"type": "string",
"title": "Username",
"description": "UPN (username) to use."
},
"sipAddress": {
"type": "string",
"title": "SIP Address",
"description": "SIP address (email) to use."
},
"userNameInAdvancedOnly": {
"type": "boolean",
"title": "Username field in Advanced pane",
"default": "false"
},
"autoAcceptTimeout": {
"type": "integer",
"title": "Auto-accept timeout",
"description": "Auto-accept timeout for users without server-side conversation history.",
"minimum": 0,
"default": 0
},
"warnWhenUnknownLocationForE911": {
"type": "boolean",
"title": "Warn when emergency service location can not be determined",
"default": "false"
},
"autoDetectAutoDicoveryURLs": {
"type": "boolean",
"title": "Auto detect server URLs",
"default": "false"
},
"internalAutoDiscoveryURL": {
"type": "string",
"title": "Internal Auto Discovery URL"
},
"externalAutoDiscoveryURL": {
"type": "string",
"title": "External Auto Discovery URL"
},
"httpProxyDomain": {
"type": "string",
"title": "HTTP Proxy Domain"
},
"httpProxyUserName": {
"type": "string",
"title": "HTTP Proxy Username"
},
"httpProxyPassword": {
"type": "string",
"title": "HTTP Proxy Password"
},
"trustedDomainList": {
"type": "array",
"title": "Trusted Domain List",
"description": "List of trusted domains for HTTP redirects.",
"items": {"type": "string", "title": "Domain"}
}
}
}