diff options
author | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-09-29 21:17:15 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-09-29 21:17:15 +0200 |
commit | a4fb637c441cad75350edcbbb2520f7a303b33c2 (patch) | |
tree | 7761e4104a6c3cb64b0930293bc2a748e0c52c11 /template | |
parent | 58825808fb1fd2d9950e8f7a81ad62db18be4aa7 (diff) |
Grant the right to create aliases and/or lists.
Diffstat (limited to 'template')
-rw-r--r-- | template/edit-domain.html | 42 |
1 files changed, 40 insertions, 2 deletions
diff --git a/template/edit-domain.html b/template/edit-domain.html index 3844775..a8af3fb 100644 --- a/template/edit-domain.html +++ b/template/edit-domain.html @@ -52,7 +52,7 @@ <hr/> <h4 class="label" id="description">Description</h4> - <textarea name="description" cols="50" rows="3" ><TMPL_VAR NAME=description></textarea> + <textarea name="description" cols="50" rows="5" ><TMPL_VAR NAME=description></textarea> <div class="help"> An optional description. (HTML tags are allowed.) </div> @@ -60,7 +60,7 @@ <hr/> <h4 class="label" id="catch-all">Catch-All aliases</h4> - <textarea name="catchalls" cols="50" rows="10" ><TMPL_VAR NAME=catchalls></textarea> + <textarea name="catchalls" cols="50" rows="5" ><TMPL_VAR NAME=catchalls></textarea> <div class="help"> An optional list of destinations (one e-mail address per line) that will receive mail sent to <i>non existing</i> recipients. @@ -70,6 +70,44 @@ will then be sent to <span class="email">inexisting@example.org</span>. </div> + <TMPL_IF NAME=isPostmaster> + <hr/> + + <h4 class="label" id="canCreateAlias">Grant right to create aliases</h4> + <textarea name="canCreateAlias" cols="50" rows="5" ><TMPL_VAR NAME=canCreateAlias></textarea> + <div class="help"> + An optional list of e-mails (one address per line) that are + allowed to create aliases under your domain + <span class="domain"><TMPL_VAR NAME=domain></span>. + It is possible to grant right for a whole domain by leaving out + the local part: For instance, listing + <span class="email">@example.org</span> here will give every user + under <span class="domain">example.org</span> the right to + create aliases under + <span class="domain"><TMPL_VAR NAME=domain></span>. + <i>Note</i>: You already have this right, so there is no need to + list your e-mail here. + </div> + + <hr/> + + <h4 class="label" id="canCreateList">Grant right to create lists</h4> + <textarea name="canCreateList" cols="50" rows="5" ><TMPL_VAR NAME=canCreateList></textarea> + <div class="help"> + An optional list of e-mails (one address per line) that are + allowed to create mailing lists under your domain + <span class="domain"><TMPL_VAR NAME=domain></span>. + It is possible to grant right for a whole domain by leaving out + the local part: For instance, listing + <span class="email">@example.org</span> here will give every user + under <span class="domain">example.org</span> the right to + create mailing lists under + <span class="domain"><TMPL_VAR NAME=domain></span>. + <i>Note</i>: You already have this right, so there is no need to + list your e-mail here. + </div> + + </TMPL_IF> <hr/> <br/> |