From ced77453e4c752d3c493eb0d7440c1718a4582dd Mon Sep 17 00:00:00 2001 From: Ilia Rostovtsev Date: Mon, 26 Oct 2020 16:03:51 +0300 Subject: [PATCH] Fix to consider Maildir storage format https://github.com/webmin/usermin/issues/62 --- mailbox/mailbox-lib.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mailbox/mailbox-lib.pl b/mailbox/mailbox-lib.pl index 39493014..062085f5 100755 --- a/mailbox/mailbox-lib.pl +++ b/mailbox/mailbox-lib.pl @@ -561,7 +561,7 @@ sub list_folders # is ignored next if (!-d $p); } - push(@rv, { 'name' => $name, + push(@rv, { 'name' => decode_utf7($name), 'file' => $p, 'type' => &folder_type($p), 'perpage' => $userconfig{"perpage_$f"},