This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 1.7 kB View raw
1{ 2 "capabilities": { 3 "urn:ietf:params:jmap:core": { 4 "maxSizeUpload": 50000000, 5 "maxConcurrentUpload": 4, 6 "maxSizeRequest": 10000000, 7 "maxConcurrentRequests": 4, 8 "maxCallsInRequest": 16, 9 "maxObjectsInGet": 500, 10 "maxObjectsInSet": 500, 11 "collationAlgorithms": ["i;ascii-casemap", "i;octet"] 12 }, 13 "urn:ietf:params:jmap:mail": { 14 "maxMailboxesPerEmail": 1000, 15 "maxMailboxDepth": 10, 16 "maxSizeMailboxName": 490, 17 "maxSizeAttachmentsPerEmail": 50000000, 18 "emailQuerySortOptions": ["receivedAt", "from", "to", "subject", "size"], 19 "mayCreateTopLevelMailbox": true 20 }, 21 "urn:ietf:params:jmap:submission": { 22 "maxDelayedSend": 86400, 23 "submissionExtensions": {} 24 } 25 }, 26 "accounts": { 27 "A001": { 28 "name": "Personal", 29 "isPersonal": true, 30 "isReadOnly": false, 31 "accountCapabilities": { 32 "urn:ietf:params:jmap:core": {}, 33 "urn:ietf:params:jmap:mail": {} 34 } 35 }, 36 "A002": { 37 "name": "Shared Archive", 38 "isPersonal": false, 39 "isReadOnly": true, 40 "accountCapabilities": { 41 "urn:ietf:params:jmap:mail": {} 42 } 43 } 44 }, 45 "primaryAccounts": { 46 "urn:ietf:params:jmap:core": "A001", 47 "urn:ietf:params:jmap:mail": "A001", 48 "urn:ietf:params:jmap:submission": "A001" 49 }, 50 "username": "john.doe@example.com", 51 "apiUrl": "https://jmap.example.com/api/", 52 "downloadUrl": "https://jmap.example.com/download/{accountId}/{blobId}/{name}?type={type}", 53 "uploadUrl": "https://jmap.example.com/upload/{accountId}/", 54 "eventSourceUrl": "https://jmap.example.com/events/?types={types}&closeafter={closeafter}&ping={ping}", 55 "state": "xyz789-session-state" 56}