fix: smtp_password

This commit is contained in:
Henri Bourcereau 2026-05-20 20:26:19 +02:00
parent 5b64a24b81
commit 5923681eb8
2 changed files with 2 additions and 2 deletions

View file

@ -178,7 +178,7 @@ in
'';
startScript = pkgs.writeShellScript "trictrac-start" (
optionalString (cfg.smtp.passwordFile != null) ''
export SMTP_PASS="$(< "$CREDENTIALS_DIRECTORY/smtp-pass")"
export SMTP_PASSWORD="$(< "$CREDENTIALS_DIRECTORY/smtp-pass")"
'' + ''
exec ${pkgs.trictrac}/bin/relay-server
''