-
Notifications
You must be signed in to change notification settings - Fork 22
/
config.example
31 lines (30 loc) · 1010 Bytes
/
config.example
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
{
"gmail" : {
"client_id" : "XXX",
"client_secret": "YYY",
"auth_url" : "https://accounts.google.com/o/oauth2/auth",
"token_url" : "https://accounts.google.com/o/oauth2/token",
"callback_url" : "https://proxy.jmap.io/cb/google",
"scopes" : [
"https://www.googleapis.com/auth/userinfo.email",
"https://mail.google.com/",
"https://www.googleapis.com/auth/carddav",
"https://www.googleapis.com/auth/calendar"
]
},
"aol" : {
"client_id" : "XXX",
"client_secret": "YYY",
"auth_url" : "https://api.screenname.aol.com/auth/authorize",
"token_url" : "https://api.screenname.aol.com/auth/access_token",
"callback_url" : "https://proxy.jmap.io/cb/aol",
"scopes" : [
"opencalendar",
"addressbook",
"imap_smtp",
"offline_access",
"email",
"profile"
]
}
}