feat: Add SMTP authentication types to settings

This commit is contained in:
Stefan Schokker
2023-10-14 14:29:34 +02:00
parent 2c8afecfbb
commit 85de1c97ff
3 changed files with 21 additions and 3 deletions
+16
View File
@@ -918,6 +918,22 @@
"type": "bool",
"value": true,
"description": "Warning, disabling this makes you much more vulnerable to man-in-the-middle attacks"
},
"auth_type": {
"name": "Authentication type",
"required": false,
"requires_restart": false,
"advanced": false,
"type": "select",
"options": [
["0", "Plain"],
["1", "Login"],
["2", "CRAM-MD5"],
["3", "None"],
["4", "Auto"]
],
"value": 4,
"description": "SMTP authentication method"
}
}
},