From f2762e6711df8b731d81b8517acfeb41eb55775d Mon Sep 17 00:00:00 2001 From: David Coutadeur Date: Mon, 5 Sep 2022 17:18:37 +0200 Subject: [PATCH] fix regex rule in documentation: need to escape the @ --- doc/sources/admin/rules_examples.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/sources/admin/rules_examples.rst b/doc/sources/admin/rules_examples.rst index a65f50310..a820e8b5c 100644 --- a/doc/sources/admin/rules_examples.rst +++ b/doc/sources/admin/rules_examples.rst @@ -60,7 +60,7 @@ attribute you see there can be used in a rule! :: $cn =~ /^Doctor.*/i - $email !~ /@spam.com$/ + $email !~ /\@spam.com$/ - Filtering on Authentication Level