Checklist
[ x] I have read intro post: About the Installation Issues category
[ x] I have read the tutorials, help and searched for similar issues
[ x] I provide relevant information about my server (component names and versions, etc.)
[ x] I provide a copy of my logs and healthcheck
[ x] I describe the steps I have taken to trouble shoot the problem
[ x] I describe the steps on how to reproduce the issue
Heyall
Im pretty new to passbolt and also new to experimenting with my homelab.
I wanted to add postfix (running on the host) as smtp host in passbolt but I cannot get it working.
[
{
"cmd": null,
"response": [
{
"code": "220",
"message": "core-ctrlr ESMTP Postfix (Ubuntu)"
}
]
},
{
"cmd": "EHLO passbolt.MYDOMAIN.TLD",
"response": [
{
"code": "250",
"message": "core-ctrlr"
},
{
"code": "250",
"message": "PIPELINING"
},
{
"code": "250",
"message": "SIZE 10240000"
},
{
"code": "250",
"message": "VRFY"
},
{
"code": "250",
"message": "ETRN"
},
{
"code": "250",
"message": "STARTTLS"
},
{
"code": "250",
"message": "ENHANCEDSTATUSCODES"
},
{
"code": "250",
"message": "8BITMIME"
},
{
"code": "250",
"message": "DSN"
},
{
"code": "250",
"message": "SMTPUTF8"
},
{
"code": "250",
"message": "CHUNKING"
}
]
},
{
"cmd": "STARTTLS",
"response": [
{
"code": "220",
"message": "2.0.0 Ready to start TLS"
}
]
}
]
This is the output im getting from passbolt when trying to send a test mail.
Passbolt is running in a docker container and the SMTP host I try to reach is the host itself via 172.17.0.1 (ip from the docker0).
I cofigured iptables to allow all incomming request on port 25 from my docker networks.
In Postfix I also added the network of the passbolt-stack to my allowed networks.
Checking the postfix logs I get this output:
Since I got the same SMTP stuff working on my Keycloak-docker-stack I assume it might be a problem from my passbolt installation. From my limited knowledge I would say I either got to configure passbolt to ignore any SSL validation or change something with the self-signed certificate from the proton mail bridge which is being used for postfix.
I would really appreciate your help and if its not a “passbolt” probleme please excuse me for not knowing

If I can provide you with any more logs/ configfiles please let me know.