From f8d1c1b3e119a346d05d7e80c56c80eadf0f0ca7 Mon Sep 17 00:00:00 2001 From: Daniel Lysfjord Date: Sun, 24 Mar 2024 12:48:13 +0100 Subject: [PATCH] Add non-hostile error "Request timed out waiting for client to continue authentication" --- lib/dovecot_parser.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/dovecot_parser.pm b/lib/dovecot_parser.pm index 1475bc0..b695e07 100644 --- a/lib/dovecot_parser.pm +++ b/lib/dovecot_parser.pm @@ -104,6 +104,9 @@ sub parser { m/Info: pam\([a-zA-Z0-9@._-]*,($re_host),\<.*\>\): unknown user/gi && do { $host = $1; }; + } elsif($string =~ m/Request timed out waiting for client to continue authentication/) { + $hostile = 0; + $reply = 'Timed out during auth'; } else { $reply = 'No match for '.$string; }