From 37dd9ad4a44951f1d4b4fc0e9c57686fc6c946c3 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 26 Aug 2021 17:21:32 +0200 Subject: [PATCH] Bug 28870: non-FQDN addresses are valid Signed-off-by: Tomas Cohen Arazi Signed-off-by: Martin Renvoize Signed-off-by: Nick Clemens --- t/Koha/Email.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/Koha/Email.t b/t/Koha/Email.t index f47a0908cd..a329950a37 100755 --- a/t/Koha/Email.t +++ b/t/Koha/Email.t @@ -255,10 +255,10 @@ subtest 'is_valid' => sub { is(Koha::Email->is_valid('Fróm '), 1); is(Koha::Email->is_valid('from@example.com'), 1); is(Koha::Email->is_valid(''), 1); + is(Koha::Email->is_valid('root@localhost'), 1); # See bug 28017 is(Koha::Email->is_valid(''), 0); # "In accordance with RFC 822 and its descendants, this module demands that email addresses be ASCII only" isnt(Koha::Email->is_valid('@example.com'), 1); isnt(Koha::Email->is_valid('example.com'), 1); - isnt(Koha::Email->is_valid('root@localhost'), 1); isnt(Koha::Email->is_valid('from'), 1); }; -- 2.20.1