Skip to content

Commit

Permalink
Merge branch 'master' of github.com:webmin/usermin
Browse files Browse the repository at this point in the history
  • Loading branch information
jcameron committed Nov 11, 2020
2 parents 7e32fe8 + ced7745 commit 8bf4ddf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mailbox/mailbox-lib.pl
Original file line number Diff line number Diff line change
Expand Up @@ -307,15 +307,15 @@ sub list_folders
my $fn = $4 || $3;
next if ($fn eq "INBOX");
push(@rv,
{ 'name' => $fn,
{ 'name' => &decode_utf7($fn),
'id' => $fn,
'type' => 4,
'server' => $imapserver,
'user' => $rv[0]->{'user'},
'pass' => $rv[0]->{'pass'},
'mode' => 0,
'remote' => 1,
'flags' => 1,
'flags' => 1,
'imapauto' => 1,
'mailbox' => $fn,
'nologout' => $config{'nologout'},
Expand Down Expand Up @@ -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"},
Expand Down

0 comments on commit 8bf4ddf

Please sign in to comment.