- Fix handling of INBOX when personal namespace prefix is non-empty (#1487657)

release-0.6
alecpl 14 years ago
parent 4da0bee2f8
commit a36e1ef967

@ -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
--------------

@ -3337,7 +3337,7 @@ class rcube_imap
}
}
// 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;
}
}

Loading…
Cancel
Save