Add the reusable RMS core application (server, web UI, plugins, tests, tools) with generic defaults, GPL licensing, and maintainer context documentation so deployments can consume this repo as software source independent of station-specific overlays.
28 lines
697 B
JSON
28 lines
697 B
JSON
{
|
|
"id": "rms.auth.smtp_relay",
|
|
"name": "SMTP Relay Auth",
|
|
"version": "1.0.0",
|
|
"apiVersion": "1.0",
|
|
"capabilities": [],
|
|
"authMethod": {
|
|
"id": "smtp-link",
|
|
"type": "link",
|
|
"label": "per Mail"
|
|
},
|
|
"settingsSchema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"host": { "type": "string" },
|
|
"port": { "type": "integer", "minimum": 1, "maximum": 65535 },
|
|
"secure": { "type": "boolean" },
|
|
"authUser": { "type": "string" },
|
|
"authPass": { "type": "string" },
|
|
"from": { "type": "string" },
|
|
"replyTo": { "type": "string" },
|
|
"allowInvalidCert": { "type": "boolean" }
|
|
},
|
|
"additionalProperties": false
|
|
},
|
|
"uiControls": []
|
|
}
|