-
Notifications
You must be signed in to change notification settings - Fork 21
/
app.json
96 lines (96 loc) · 2.46 KB
/
app.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
{
"name": "autodiscover-email-settings",
"description": "Provides IMAP/SMTP/LDAP Autoconfiguration capabilities for Microsoft Outlook, Apple Mail, and Thunderbird",
"website": "https://monogramm.io",
"repository": "https://github.com/monogramm/autodiscover-email-settings",
"keywords": ["monogramm", "autoconfigure", "autoconf", "autodiscover", "outlook", "thunderbird", "apple mail", "imap", "smtp", "ldap"],
"addons": [
"papertrail"
],
"env": {
"COMPANY_NAME": {
"description": "Your company name",
"value": "AutoDiscover"
},
"SUPPORT_URL": {
"description": "Your company support URL",
"value": "autodiscover.example.com"
},
"DOMAIN": {
"description": "Your default domain",
"value": "example.com"
},
"IMAP_HOST": {
"description": "Your IMAP Host",
"value": "imap.example.com"
},
"IMAP_PORT": {
"description": "Your IMAP Port",
"value": "993"
},
"IMAP_SOCKET": {
"description": "Your IMAP Socket",
"value": "SSL"
},
"SMTP_HOST": {
"description": "Your SMTP Host",
"value": "smtp.example.com"
},
"SMTP_PORT": {
"description": "Your SMTP Port",
"value": "587"
},
"SMTP_SOCKET": {
"description": "Your SMTP Socket",
"value": "STARTTLS"
},
"MOBILESYNC_URL": {
"description": "MobileSync URL",
"value": "https://sync.example.com"
},
"MOBILESYNC_NAME": {
"description": "MobileSync Name",
"value": "sync.example.com"
},
"LDAP_HOST": {
"description": "Your LDAP Host",
"value": "ldap.example.com"
},
"LDAP_PORT": {
"description": "Your LDAP Port",
"value": "389"
},
"LDAP_SOCKET": {
"description": "Your LDAP Socket",
"value": "STARTTLS"
},
"LDAP_BASE": {
"description": "Your LDAP Base DN",
"value": "dc=ldap,dc=example,dc=com"
},
"LDAP_USER_FIELD": {
"description": "Your LDAP Username name",
"value": "uid"
},
"LDAP_USER_BASE": {
"description": "Your LDAP User Base DN",
"value": "ou=People,dc=ldap,dc=example,dc=com"
},
"PROFILE_IDENTIFIER": {
"description": "Your mobile profile identifier",
"value": "com.example.autodiscover"
},
"PROFILE_UUID": {
"description": "Your mobile profile globally unique ID",
"value": "92943D26-CAB3-4086-897D-DC6C0D8B1E86"
},
"MAIL_UUID": {
"description": "Your mail profile globally unique ID",
"value": "7A981A9E-D5D0-4EF8-87FE-39FD6A506FAC"
},
"LDAP_UUID": {
"description": "Your ldap profile globally unique ID",
"value": "6ECB6BA9-2208-4ABF-9E60-4E9F4CD7309E"
}
}
}