Change SMTP settings on debian

I mistyped the SMTP settings during configuration wizard.
Anybody know the complete path to change the SMTP settings on a debian installation?
Cant find it.

Hi @oformoso,

You will want to make the needed changes in the passbolt.php config file which is located in the/etc/passbolt folder.

The passbolt.default.php file in the same folder shows the template in original form, which you can use for reference if needed. Specifically, you’ll be looking for the EmailTransport block:

 // Email configuration.
'EmailTransport' => [
    'default' => [
        'host' => 'localhost',
        'port' => 25,
        'username' => 'user',
        'password' => 'secret',
        // Is this a secure connection? true if yes, null if no.
        'tls' => null,
        //'timeout' => 30,
        //'client' => null,
        //'url' => null,
    ],
],

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.