Skip to content

Commit

Permalink
- Fix handling of INBOX when personal namespace prefix is non-empty (…
Browse files Browse the repository at this point in the history
…#1487657)
  • Loading branch information
alecpl committed Dec 30, 2010
1 parent 4da0bee commit a36e1ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Expand Up @@ -4,6 +4,7 @@ CHANGELOG Roundcube Webmail
- Show the same message only once (#1487641)
- Fix namespaces handling (#1487649)
- Add handling of multifolder METADATA/ANNOTATION responses
- Fix handling of INBOX when personal namespace prefix is non-empty (#1487657)

RELEASE 0.5-RC
--------------
Expand Down
2 changes: 1 addition & 1 deletion program/include/rcube_imap.php
Expand Up @@ -3337,7 +3337,7 @@ function mod_mailbox($mbox_name, $mode='in')
}
}
// Add prefix if first personal namespace is non-empty
if ($this->namespace['personal'][0][0]) {
if ($mbox_name != 'INBOX' && $this->namespace['personal'][0][0]) {
return $this->namespace['personal'][0][0].$mbox_name;
}
}
Expand Down

0 comments on commit a36e1ef

Please sign in to comment.