Talk:Redmine: Difference between revisions
imported>Vater |
imported>Vater →enabling sending mails example configuration: new section |
||
| Line 53: | Line 53: | ||
:: https://github.com/NixOS/nixpkgs/blob/nixos-20.09/pkgs/applications/graphics/ImageMagick/7.0.nix | :: https://github.com/NixOS/nixpkgs/blob/nixos-20.09/pkgs/applications/graphics/ImageMagick/7.0.nix | ||
!--> | !--> | ||
== enabling sending mails example configuration == | |||
<syntaxhighlight lang="nix"> | |||
</syntaxhighlight> | |||
<syntaxhighlight lang="nix"> | |||
services.redmine.settings = { | |||
production = { | |||
email_delivery = { | |||
delivery_method = ":smtp"; | |||
smtp_settings = { | |||
address = "mail.domain.tld"; | |||
port = 25; | |||
}; | |||
# email_delivery = { | |||
# delivery_method = ":sendmail"; | |||
# }; | |||
}; | |||
}; | |||
}; | |||
</syntaxhighlight> | |||
<syntaxhighlight lang="nix"> | |||
</syntaxhighlight> | |||