mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2025-09-06 03:54:22 +08:00
IMAP Custom Name for Shared Folders ignored (closes #1620)
This commit is contained in:
parent
c1a638c19e
commit
d844abbaf8
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ impl JmapConfig {
|
|||
{
|
||||
match SpecialUse::parse_value(&key) {
|
||||
Ok(SpecialUse::Shared) => {
|
||||
if let Some(value) = config.value(&key) {
|
||||
if let Some(value) = config.value(("email.folders", key.as_str(), "name")) {
|
||||
shared_folder = value.to_string();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue