about summary refs log tree commit diff
path: root/nixos/modules/services/mail
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2019-09-24 04:19:12 +0100
committerGitHub <noreply@github.com>2019-09-24 04:19:12 +0100
commitbfed455de3f0ba756c8e8f6fc19b9cd0609f64b2 (patch)
treec84c7237ac9091334bb5b764ff9629810b2f3bff /nixos/modules/services/mail
parent8025787c745694552ad24afa8ab69dfb3c00cabb (diff)
parent48086fbd702d83ae0839272724350c73184f22fb (diff)
downloadnixlib-bfed455de3f0ba756c8e8f6fc19b9cd0609f64b2.tar
nixlib-bfed455de3f0ba756c8e8f6fc19b9cd0609f64b2.tar.gz
nixlib-bfed455de3f0ba756c8e8f6fc19b9cd0609f64b2.tar.bz2
nixlib-bfed455de3f0ba756c8e8f6fc19b9cd0609f64b2.tar.lz
nixlib-bfed455de3f0ba756c8e8f6fc19b9cd0609f64b2.tar.xz
nixlib-bfed455de3f0ba756c8e8f6fc19b9cd0609f64b2.tar.zst
nixlib-bfed455de3f0ba756c8e8f6fc19b9cd0609f64b2.zip
Merge pull request #68946 from volth/escape
treewide: fix string escapes
Diffstat (limited to 'nixos/modules/services/mail')
-rw-r--r--nixos/modules/services/mail/rspamd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/mail/rspamd.nix b/nixos/modules/services/mail/rspamd.nix
index 89aa9d17ff7f..4db35d9e89ab 100644
--- a/nixos/modules/services/mail/rspamd.nix
+++ b/nixos/modules/services/mail/rspamd.nix
@@ -68,7 +68,7 @@ let
           replaced with <literal>rspamd_proxy</literal>.
         '';
         apply = let
-            from = "services.rspamd.workers.\”${name}\".type";
+            from = "services.rspamd.workers.\"${name}\".type";
             files = options.type.files;
             warning = "The option `${from}` defined in ${showFiles files} has enum value `proxy` which has been renamed to `rspamd_proxy`";
           in x: if x == "proxy" then traceWarning warning "rspamd_proxy" else x;