Page MenuHomePhabricator

Ho to change database configuration for phpmailer.smtp-password?
Closed, ResolvedPublic

Description

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?

Event Timeline

JamesRamm raised the priority of this task from to Needs Triage.
JamesRamm updated the task description. (Show Details)
JamesRamm added a project: Config.
JamesRamm added a subscriber: JamesRamm.

Use bin/config delete --database phpmailer.smtp-password to delete the database value.

epriestley claimed this task.

Presuming this is resolved, but let us know if that doesn't work for you.