mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
nixos/ssmtp: add assertion for useSTARTTLS dependency on useTLS
services.ssmtp.useSTARTTLS has no effect when services.ssmtp.useTLS is disabled.
This commit is contained in:
parent
7d3fb8234d
commit
f7c50a8aa0
1 changed files with 7 additions and 0 deletions
|
@ -142,6 +142,13 @@ in
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
|
assertions = [
|
||||||
|
{
|
||||||
|
assertion = cfg.useSTARTTLS -> cfg.useTLS;
|
||||||
|
message = "services.ssmtp.useSTARTTLS has no effect without services.ssmtp.useTLS";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
services.ssmtp.settings = mkMerge [
|
services.ssmtp.settings = mkMerge [
|
||||||
({
|
({
|
||||||
MailHub = cfg.hostName;
|
MailHub = cfg.hostName;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue