Passbolt not sending emails

After the update to v2 passbolt is not sending emails anymore.

bin/cake passbolt send_test_email

returns:

[235] 2.7.0 Authentication successful
[250] 2.1.0 Ok
[250] 2.1.5 Ok
[250] 2.0.0 Ok: queued as 4FCC027023

And I can see the Mail “Passbolt test email” on my mailserver so the communication between passbolt and my mailserver seems to be fine. What else can I check?

Regards

Hello @jimb0,

Did you follow the documentation regarding the email cron job (section 9.).
https://help.passbolt.com/hosting/upgrade/ce/upgrade-ce.html

Cheers,
Cédric

@jimb0 most likely the path to the cake command in not good in your cronjob.

@jimb0 I agree with what @remy said, I had the same problem and I changed it from:
* * * * * /var/www/pb/bin/cake EmailQueue.sender >> /var/www/pb/app/tmp/email.log 2>&1
to
* * * * * su -c "/var/www/pb/bin/cake EmailQueue.sender >> /var/log/passbolt.log 2>&1" -s /bin/bash www-data

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