Hello antony, thanks for answering.
I’m using docker, here’s the content of the compose file.
version: ‘3.3’
services:
passbolt:
image: passbolt/passbolt:latest-ce
#Alternatively you can use rootless:
#image: passbolt/passbolt:latest-ce-non-root
restart: unless-stopped
environment:
APP_FULL_BASE_URL: http://192.168.15.5:8081
DATASOURCES_DEFAULT_HOST: "mariadb"
DATASOURCES_DEFAULT_USERNAME: "passbolt_user"
DATASOURCES_DEFAULT_PASSWORD: "Senh@P4ssb0lt"
DATASOURCES_DEFAULT_DATABASE: "passbolt_db"
EMAIL_DEFAULT_FROM_NAME: "joao@joaoafricano.com.br"
EMAIL_DEFAULT_FROM: "joao@joaoafricano.com.br"
EMAIL_TRANSPORT_DEFAULT_HOST: "smtp.sendgrid.net"
EMAIL_TRANSPORT_DEFAULT_PORT: "587"
EMAIL_TRANSPORT_DEFAULT_USERNAME: "apikey"
EMAIL_TRANSPORT_DEFAULT_PASSWORD: "&hhdf98*UHDKKLD09ppkfd;lfk(DIlkjmf9U(FDppjoidfjpo(LKHJDF\}{SDF}"
EMAIL_TRANSPORT_DEFAULT_TLS: "true"
volumes:
- gpg_volume:/etc/passbolt/gpg
- jwt_volume:/etc/passbolt/jwt
command: ["/usr/bin/wait-for.sh", "-t", "0", "mariadb:3306", "--", "/docker-entrypoint.sh"]
ports:
- 8081:80
- 7443:443
networks:
- guacamole_network
- passbolt_network
#Alternatively for non-root images:
# - 8080:80
# - 4433:433
networks:
guacamole_network:
external: true
passbolt_network:
name: passbolt_network
driver: bridge
volumes:
gpg_volume:
jwt_volume:
In this case I am using another container with the mariadb database, which is on the guacamole_network .
As you can see, the APP_FULL_BASE_URL variable is filled in.
Everything works, the email reaches the recipient.
Below is a copy of the email that arrives.
=====================================================================
Rina Arielle (joao@alwaystec.com.br)
joao just created an account for you on passbolt!
Feb 23, 2025, 19:18 (UTC)
Welcome Rina,
Joao just invited you to join passbolt at http://192.168.15.5:8081/ Passbolt is an open source password manager. It is designed to allow sharing credentials securely with your team!
Let’s take the next five minutes to get you started!
get started
This email is an automatic notification sent by http://192.168.15.5:8081. You can disable these notifications by requesting an administrator to delete your account.
=====================================================================
Note that although the path appears correct in the email, the link it points to is another one that is not even in the compose file. I have no idea where he gets it from.
Note that the domain “joaoafricano.com.br” is mine, and the only mention of this domain is in the email.