mail2couch/rust/config-tls-test.json

48 lines
985 B
JSON
Raw Permalink Normal View History

{
"couchDb": {
"url": "http://localhost:5984",
"user": "admin",
"password": "password"
},
"mailSources": [
{
"name": "TLS Test Port 993",
"enabled": true,
"protocol": "imap",
"host": "imap.gmail.com",
"port": 993,
"user": "test@example.com",
"password": "dummy",
"mode": "archive",
"folderFilter": {
"include": ["INBOX"]
}
},
{
"name": "Plain Test Port 143",
"enabled": true,
"protocol": "imap",
"host": "localhost",
"port": 143,
"user": "test",
"password": "dummy",
"mode": "archive",
"folderFilter": {
"include": ["INBOX"]
}
},
{
"name": "Unknown Port Test",
"enabled": true,
"protocol": "imap",
"host": "example.com",
"port": 9999,
"user": "test",
"password": "dummy",
"mode": "archive",
"folderFilter": {
"include": ["INBOX"]
}
}
]
}