nixos/postfix: undo deprecation of extraConfig, extraMasterConf

I realize that advanced users like to configure services with Nix
attrsets, but I don't think we should remove the option to use the
(configuration) language provided by upstream.

authored by Bjørn Forsman and committed by Robin Gloster eed14bae 56ccd27d

-6
-6
nixos/modules/services/mail/postfix.nix
··· 836 (mkIf (cfg.dnsBlacklists != []) { 837 services.postfix.mapFiles."client_access" = checkClientAccessFile; 838 }) 839 - (mkIf (cfg.extraConfig != "") { 840 - warnings = [ "The services.postfix.extraConfig option was deprecated. Please use services.postfix.config instead." ]; 841 - }) 842 - (mkIf (cfg.extraMasterConf != "") { 843 - warnings = [ "The services.postfix.extraMasterConf option was deprecated. Please use services.postfix.masterConfig instead." ]; 844 - }) 845 ]); 846 }
··· 836 (mkIf (cfg.dnsBlacklists != []) { 837 services.postfix.mapFiles."client_access" = checkClientAccessFile; 838 }) 839 ]); 840 }