My phpmailer.smtp-password settings look like this:
```
{
"config": [
{
"key": "phpmailer.smtp-password",
"source": "local",
"value": "CurrentPassword",
"status": "set",
"errorInfo": null
},
{
"key": "phpmailer.smtp-password",
"source": "database",
"value": "OldPassword",
"status": "set",
"errorInfo": null
}
]
}
```
The `local` config is correct, the `database` config is wrong. As I understand, the `database` config will override everything else. This would explain why no emails are getting through!
If I do:
./bin/config set phpmailer.smtp-password CurrentPassword
It only sets the local config. How to set the database config?