1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Fix Nextcloud SMTP config again

This commit is contained in:
RGBCube 2024-01-17 13:27:33 +03:00
parent 05bdffa0a9
commit eb5f6997cc
No known key found for this signature in database

View file

@ -48,17 +48,15 @@ in serverSystemConfiguration {
extraOptions = { extraOptions = {
default_phone_region = "TR"; default_phone_region = "TR";
mail_sendmailmode = "smtp"; mail_smtphost = config.mailserver.fqdn;
mail_smtpmode = "smtp"; mail_domain = domain;
mail_smtpauth = 1; mail_smtpauth = true;
mail_smtphost = config.mailserver.fqdn;
mail_smtpport = "465"; mail_smtpport = "465";
mail_smtpsecure = "ssl"; mail_smtpsecure = "ssl";
mail_domain = domain;
mail_from_address = "cloud"; mail_from_address = "cloud";
mail_smtpname = "cloud@${domain}"; mail_smtpname = "contact@${domain}";
}; };
# { "mail_smtppassword": "..." } # { "mail_smtppassword": "..." }