Skip to content

core/docs/core/config/namespaces.md: Add @mailbox_defaults #1249

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions docs/core/config/namespaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,30 @@ All visible namespaces must have the same separator.

Inside each namespace there is a list of folders, which form a sub-hierarchy.

::: info
Enable default INBOX namespace and English language mailbox names with mailbox_special_use flags with [[setting,@mailbox_defaults,english]]
Using this setting will set these settings by default:

::: details Click to show settings
```[dovecot.conf]
namespace inbox {
inbox = yes
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like namespace should be indented left.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added indent

mailbox Drafts {
special_use = \Drafts
}
mailbox Junk {
special_use = \Junk
}
mailbox Sent {
special_use = \Sent
}
mailbox Trash {
special_use = \Trash
}
}
```
:::

## Folder Names

Each folder has a name. In configuration files and log files Dovecot almost
Expand Down