link imap sync to server and show email on front

This commit is contained in:
grimhilt
2023-03-26 14:20:16 +02:00
parent b156c5954d
commit d0d666f4cb
17 changed files with 266 additions and 64 deletions

View File

@@ -0,0 +1,14 @@
{
"type": "object",
"properties": {
"email": { "type": "string", "format": "email" },
"pwd": { "type": "string" },
"xoauth": { "type": "string" },
"xoauth2": { "type": "string" },
"host": { "type": "string", "format": "hostname" },
"port": { "type": "number", "maximum": 65535 },
"tls": { "type": "boolean" }
},
"required": ["email", "host", "port", "tls"],
"additionalProperties": false
}