forked from cyrusimap/cyrus-imapd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request cyrusimap#4886 from tacerus/virtual-domains-unixhi…
…erarchysep Update separator in virtual domain example commands
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,17 +61,17 @@ Names can be qualified | |
|
||
Here are some examples: | ||
|
||
* ``cyradm> create user.[email protected]`` - create a user | ||
* ``cyradm> create user.[email protected]`` - create another user | ||
* ``cyradm> setquota user.[email protected] 50000`` - define a quota | ||
* ``cyradm> setaclmailbox user.[email protected] [email protected] read`` - give Mercedes Knight read access to Luke Cage's mailbox | ||
* ``cyradm> create user/[email protected]`` - create a user | ||
* ``cyradm> create user/[email protected]`` - create another user | ||
* ``cyradm> setquota user/[email protected] 50000`` - define a quota | ||
* ``cyradm> setaclmailbox user/[email protected] [email protected] read`` - give Mercedes Knight read access to Luke Cage's mailbox | ||
* ``cyradm> listmailbox *@example.net`` - list all mailboxes in the example.net domain | ||
|
||
Each mailbox exists in only one domain | ||
|
||
Domains are mutually exclusive | ||
Users only have access to mailboxes within their own domain (intra-domain). The following | ||
example will not work: ``setacl user.[email protected] | ||
example will not work: ``setacl user/[email protected] | ||
[email protected] read``. | ||
|
||
Global and Domain admins | ||
|
@@ -213,11 +213,11 @@ specifying mailboxes outside of the ``defaultdomain``. Examples | |
|
||
To create a new INBOX for user 'test' in ``defaultdomain``:: | ||
|
||
cm user.test | ||
cm user/test | ||
|
||
To create a new INBOX for user 'test' in domain 'example.com':: | ||
|
||
cm user.[email protected] | ||
cm user/[email protected] | ||
|
||
To list all mailboxes in domain 'example.com':: | ||
|
||
|