email/editconfig
1 minute read.
Last Modified 2021-02-04 11:38 ESTNamespace | Name | Admin Only | Log Summary | Generates Event | Version Added |
---|---|---|---|---|---|
editconfig | yes | yes | yes | 1 (Removed in 1.2) |
This API namespace was depricated in version 1.1, and removed in version 1.2. Please look at the alertplugins/* API namespace for the repacement for this functionality.
Configure SSMTP
- Required:
- “rootaddress” (String)
- “mailserver” (String)
- “port” (String)
- “security” (String) (“TLS” or “STARTTLS” or “TLS+STARTTLS”)
- “AuthUser” (String)
- “AuthPass” (String)
- “AuthMethod” (String)
{
"namespace" : "email",
"name" : "writeconfig",
"id" : "some_id",
"args" : {
"rootaddress" : "email@domain.com",
"mailserver" : "smtp.domain.com",
"port" : "587",
"security" "TLS+STARTTLS",
"AuthUser" "useraddress",
"AuthPass" "userpass",
"AuthMethod" : "LOGIN"
}
}
{
"namespace" : "email",
"name" : "response",
"id" : "some_id",
"args" : {
"result" : "success"
}
}