Hi All,
I applied the following in my test environment through Dev tools:
PUT /_cluster/settings
{
"persistent": {
"xpack.notification.email.account.exchange_account": {
"profile": "outlook",
"email_defaults": {
"from": "hello.world@abc.com"
},
"smtp": {
"auth": false,
"starttls.enable": false,
"host": "abc.def.net",
"port": 25
}
}
}
}
I need to remove these settings now.
Please guide on how this could be done.
My entire cluster settings are as follows:
{
"persistent": {
"cluster": {
"max_shards_per_node": "5000"
},
"search": {
"max_async_search_response_size": "50mb"
},
"xpack": {
"monitoring": {
"collection": {
"enabled": "true"
}
},
"notification": {
"email": {
"account": {
"exchange_account": {
"email_defaults": {
"from": "hello.world@abc.com"
},
"profile": "outlook",
"smtp": {
"host": "abc.def.net",
"starttls": {
"enable": "false"
},
"auth": "false",
"port": "25"
}
}
}
}
}
}
},
"transient": {}
Thanks