lol

postfix: fix recipient_delimiter option

This reverts commit 88f4b75a00855c878624e465e1a83930aaa92858 and fixes the
recipientDelimiter config option. Till then the camel case variant was used
while recipient_delimiter would have been right.

+11
+1
nixos/modules/services/mail/mlmmj.nix
··· 88 88 89 89 services.postfix = { 90 90 enable = true; 91 + recipientDelimiter= "+"; 91 92 extraMasterConf = '' 92 93 mlmmj unix - n n - - pipe flags=ORhu user=mlmmj argv=${pkgs.mlmmj}/bin/mlmmj-receive -F -L ${spoolDir}/$nextHop 93 94 '';
+10
nixos/modules/services/mail/postfix.nix
··· 77 77 smtpd_tls_key_file = ${cfg.sslKey} 78 78 79 79 smtpd_use_tls = yes 80 + 81 + recipient_delimiter = ${cfg.recipientDelimiter} 80 82 '' 81 83 + optionalString (cfg.virtual != "") '' 82 84 virtual_alias_maps = hash:/etc/postfix/virtual ··· 287 289 sslKey = mkOption { 288 290 default = ""; 289 291 description = "SSL key to use."; 292 + }; 293 + 294 + recipientDelimiter = mkOption { 295 + default = ""; 296 + example = "+"; 297 + description = " 298 + Delimiter for address extension: so mail to user+test can be handled by ~user/.forward+test 299 + "; 290 300 }; 291 301 292 302 virtual = mkOption {