nixos: services: gitea: fix mail 'FROM' address
All checks were successful
ci/woodpecker/push/check Pipeline was successful
All checks were successful
ci/woodpecker/push/check Pipeline was successful
This commit is contained in:
parent
40d1b39837
commit
d423a03663
|
@ -88,7 +88,7 @@ in
|
||||||
ENABLED = true;
|
ENABLED = true;
|
||||||
SMTP_ADDR = cfg.mail.host;
|
SMTP_ADDR = cfg.mail.host;
|
||||||
SMTP_PORT = cfg.mail.port;
|
SMTP_PORT = cfg.mail.port;
|
||||||
FROM = cfg.mail.user;
|
FROM = "Gitea <${cfg.mail.user}>";
|
||||||
USER = cfg.mail.user;
|
USER = cfg.mail.user;
|
||||||
PROTOCOL = cfg.mail.protocol;
|
PROTOCOL = cfg.mail.protocol;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue