Email configuration for SMTP server requiring no authentication

Hi!

I managed to get Passbolt running on Debian 8.
But there’s a little problem with the email part. All Emails from my Servers are going to a central Firewall which has whitelisted IPs and needs no other Authentication. I’ve changed the email.php Settings to

        public $default = array(
            'transport' => 'Smtp',
            'from' => array('myemailaddress' => 'Passbolt'),
            'host' => 'firewallip',
            'port' => 25,
            'timeout' => 30,
            'username' => '',
            'password' => '',
            'tls' => false,

But when I try to run the email comand I get this error:

SMTP Error: 503 AUTH command used when not advertised
SMTP Error: 503 AUTH command used when not advertised

It seems like passbolt tries to use Authentication, but my firewall rejects it.
How can I disable Emailauthentication completely in passbolt?

Greets Daniel

Hi @triggad23, Can you try to set the username and password to null instead of ‘’? If I remember correctly someone had a similar issue in the past it this fixed it. Cheers,

1 Like

Thanks a lot
it worked!

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