parent
25bb529245
commit
e79d11b623
|
@ -267,7 +267,7 @@ let
|
||||||
lines = [ sep (formatLine labels) (formatLine labelDefaults) sep ];
|
lines = [ sep (formatLine labels) (formatLine labelDefaults) sep ];
|
||||||
in concatStringsSep "\n" lines;
|
in concatStringsSep "\n" lines;
|
||||||
|
|
||||||
in formattedLabels + "\n" + concatMapStringsSep "\n" formatLine masterCf + "\n";
|
in formattedLabels + "\n" + concatMapStringsSep "\n" formatLine masterCf + "\n" + cfg.extraMasterConf;
|
||||||
|
|
||||||
headerCheckOptions = { ... }:
|
headerCheckOptions = { ... }:
|
||||||
{
|
{
|
||||||
|
@ -839,5 +839,8 @@ in
|
||||||
(mkIf (cfg.extraConfig != "") {
|
(mkIf (cfg.extraConfig != "") {
|
||||||
warnings = [ "The services.postfix.extraConfig option was deprecated. Please use services.postfix.config instead." ];
|
warnings = [ "The services.postfix.extraConfig option was deprecated. Please use services.postfix.config instead." ];
|
||||||
})
|
})
|
||||||
|
(mkIf (cfg.extraMasterConf != "") {
|
||||||
|
warnings = [ "The services.postfix.extraMasterConf option was deprecated. Please use services.postfix.masterConfig instead." ];
|
||||||
|
})
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue