Removed variable which leads to bugs in other contexts

This commit is contained in:
Kevin Veen-Birkenbach 2025-08-19 20:50:08 +02:00
parent 0856c340c7
commit 95aba805c0
No known key found for this signature in database
GPG Key ID: 44D8F11FD62F878E
2 changed files with 2 additions and 3 deletions

View File

@ -10,11 +10,11 @@ tls_trust_file /etc/ssl/certs/ca-certificates.crt
tls off tls off
{% endif %} {% endif %}
account {{ DEFAULT_EMAIL_ACCOUNT }} account system_email_no_reply
host {{ SYSTEM_EMAIL.HOST }} host {{ SYSTEM_EMAIL.HOST }}
port {{ SYSTEM_EMAIL.PORT }} port {{ SYSTEM_EMAIL.PORT }}
from {{ users['no-reply'].email }} from {{ users['no-reply'].email }}
user {{ users['no-reply'].email }} user {{ users['no-reply'].email }}
password {{ users['no-reply'].mailu_token }} password {{ users['no-reply'].mailu_token }}
account default : {{ DEFAULT_EMAIL_ACCOUNT }} account default : system_email_no_reply

View File

@ -1 +0,0 @@
DEFAULT_EMAIL_ACCOUNT: "{{ SOFTWARE_NAME | replace('.', '_') | lower }}__default_email_account"