author | Pascal Volk <user@localhost.localdomain.org> |
Sat, 01 Feb 2014 20:29:23 +0000 | |
changeset 708 | 93b2f5859866 |
parent 703 | 58815c004a61 |
child 741 | 5ffba47a137d |
permissions | -rw-r--r-- |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
1 |
# -*- coding: UTF-8 -*- |
703
58815c004a61
Updated copyright notices to include the year 2014.
Pascal Volk <user@localhost.localdomain.org>
parents:
675
diff
changeset
|
2 |
# Copyright (c) 2012 - 2014, Pascal Volk |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
3 |
# See COPYING for distribution information. |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
4 |
""" |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
5 |
VirtualMailManager.cli.vmmhelp |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
6 |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
7 |
|
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
8 |
Virtual Mail Manager's command line help. |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
9 |
""" |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
10 |
|
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
11 |
_ = lambda msg: msg |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
12 |
|
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
13 |
help_msgs = { |
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
14 |
# TP: There are some words enclosed within angle brackets '<'word'>'. They |
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
15 |
# are used to indicate replaceable arguments. Please do not translate them. |
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
16 |
# |
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
17 |
# The descriptions of subcommands may contain the both keywords 'domain' |
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
18 |
# and 'force', enclosed within single quotes. Please keep them as they are. |
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
19 |
# |
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
20 |
# TP: description of subcommand configget |
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
21 |
'configget': (_(u"""This subcommand is used to display the actual value |
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
22 |
of the given configuration <option>."""),), |
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
23 |
# TP: description of subcommand configset |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
24 |
'configset': (_(u"""Use this subcommand to set or update a single |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
25 |
configuration option's value. <option> is the configuration option, <value> |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
26 |
is the <option>'s new value."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
27 |
_(u"""Note: This subcommand will create a new vmm.cfg without any comments. |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
28 |
Your current configuration file will be backed as vmm.cfg.bak."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
29 |
# TP: description of subcommand configure |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
30 |
'configure': (_(u"""Starts the interactive configuration for all |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
31 |
configuration sections."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
32 |
_(u"""In this process the currently set value of each option will be displayed |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
33 |
in square brackets. If no value is configured, the default value of each |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
34 |
option will be displayed in square brackets. Press the return key, to accept |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
35 |
the displayed value."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
36 |
_(u"""If the optional argument <section> is given, only the configuration |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
37 |
options from the given section will be displayed and will be configurable. |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
38 |
The following sections are available: |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
39 |
"""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
40 |
""" account, bin, database, domain, mailbox, misc""", |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
41 |
_(u"""All configuration options are described in vmm.cfg(5)."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
42 |
_(u"""Note: This subcommand will create a new vmm.cfg without any comments. |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
43 |
Your current configuration file will be backed as vmm.cfg.bak."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
44 |
# TP: description of subcommand getuser |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
45 |
'getuser': (_(u"""If only the <uid> is available, for example from process |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
46 |
list, the subcommand getuser will show the user's address."""),), |
621
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
47 |
# TP: description of subcommand listaddresses |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
48 |
'listaddresses': (_(u"""This command lists all defined addresses. |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
49 |
Addresses belonging to alias-domains are prefixed with a '-', addresses of |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
50 |
regular domains with a '+'. Additionally, the letters 'u', 'a', and 'r' |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
51 |
indicate the type of each address: user, alias and relocated respectively. |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
52 |
The output can be limited with an optional <pattern>."""), |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
53 |
_(u"""To perform a wild card search, the % character can be used at the start |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
54 |
and/or the end of the <pattern>."""),), |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
55 |
# TP: description of subcommand listaliases |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
56 |
'listaliases': (_(u"""This command lists all defined aliases. Aliases |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
57 |
belonging to alias-domains are prefixed with a '-', addresses of regular |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
58 |
domains with a '+'. The output can be limited with an optional <pattern>."""), |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
59 |
_(u"""To perform a wild card search, the % character can be used at the start |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
60 |
and/or the end of the <pattern>."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
61 |
# TP: description of subcommand listdomains |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
62 |
'listdomains': (_(u"""This subcommand lists all available domains. All |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
63 |
domain names will be prefixed either with `[+]', if the domain is a primary |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
64 |
domain, or with `[-]', if it is an alias domain name. The output can be |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
65 |
limited with an optional <pattern>."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
66 |
_(u"""To perform a wild card search, the % character can be used at the start |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
67 |
and/or the end of the <pattern>."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
68 |
# TP: description of subcommand listpwschemes |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
69 |
'listpwschemes': (_(u"""This subcommand lists all password schemes which |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
70 |
could be used in the vmm.cfg as value of the misc.password_scheme option. |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
71 |
The output varies, depending on the used Dovecot version and the system's |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
72 |
libc."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
73 |
_(u"""When your Dovecot installation isn't too old, you will see additionally |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
74 |
a few usable encoding suffixes. One of them can be appended to the password |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
75 |
scheme."""),), |
621
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
76 |
# TP: description of subcommand listrelocated |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
77 |
'listrelocated': (_(u"""This command lists all defined relocated addresses. |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
78 |
Relocated entries belonging to alias-domains are prefixed with a '-', addresses |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
79 |
of regular domains with a '+'. The output can be limited with an optional |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
80 |
<pattern>."""), |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
81 |
_(u"""To perform a wild card search, the % character can be used at the start |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
82 |
and/or the end of the <pattern>."""),), |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
83 |
# TP: description of subcommand listusers |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
84 |
'listusers': (_(u"""This command lists all user accounts. User accounts |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
85 |
belonging to alias-domains are prefixed with a '-', addresses of regular |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
86 |
domains with a '+'. The output can be limited with an optional <pattern>."""), |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
87 |
_(u"""To perform a wild card search, the % character can be used at the start |
d8b60e53334f
VMM/cli/clihelp: Added missing help messages.
Pascal Volk <user@localhost.localdomain.org>
parents:
618
diff
changeset
|
88 |
and/or the end of the pattern."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
89 |
# TP: description of subcommand version |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
90 |
'version': (_(u"""Prints vmm's version and copyright information to stdout. |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
91 |
After this vmm exits."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
92 |
# TP: description of subcommand domainadd |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
93 |
'domainadd': (_(u"""Adds the new domain into the database and creates the |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
94 |
domain directory."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
95 |
_(u"""If the optional argument <transport> is given, it will override the |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
96 |
default transport (domain.transport) from vmm.cfg. The specified <transport> |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
97 |
will be the default transport for all new accounts in this domain."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
98 |
_(u"""Configuration-related behavior:"""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
99 |
u""" * domain.auto_postmaster""", |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
100 |
_(u"""When that option is set to true (default) vmm will automatically create |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
101 |
the postmaster account for the new domain and prompt for postmaster@<fqdn>'s |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
102 |
password."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
103 |
u""" * account.random_password""", |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
104 |
_(u"""When the value of that option is also set to true, vmm will automatically |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
105 |
create the postmaster account for the new domain and print the generated |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
106 |
postmaster password to stdout."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
107 |
# TP: description of subcommand domaindelete |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
108 |
'domaindelete': (_(u"""This subcommand deletes the domain specified by |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
109 |
<fqdn>."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
110 |
_(u"""If there are accounts, aliases and/or relocated users assigned to the |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
111 |
given domain, vmm will abort the requested operation and show an error |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
112 |
message. If you know, what you are doing, you can specify the optional keyword |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
113 |
'force'."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
114 |
_(u"""If you really always know what you are doing, edit your vmm.cfg and set |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
115 |
the option domain.force_deletion to true."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
116 |
# TP: description of subcommand domaininfo |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
117 |
'domaininfo': (_(u"""This subcommand shows some information about the |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
118 |
given domain."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
119 |
_(u"""For a more detailed information about the domain the optional argument |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
120 |
<details> can be specified. A possible <details> value can be one of the |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
121 |
following six keywords:"""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
122 |
""" accounts, aliasdomains, aliases, catchall, relocated, full""",), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
123 |
# TP: description of subcommand domainquota |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
124 |
'domainquota': (_(u"""This subcommand is used to configure a new quota |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
125 |
limit for the accounts of the domain - not for the domain itself."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
126 |
_(u"""The default quota limit for accounts is defined in the vmm.cfg |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
127 |
(domain.quota_bytes and domain.quota_messages)."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
128 |
_(u"""The new quota limit will affect only those accounts for which the limit |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
129 |
has not been overridden. If you want to restore the default to all accounts, |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
130 |
you may pass the keyword 'force'. When the argument <messages> was omitted the |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
131 |
default number of messages 0 (zero) will be applied."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
132 |
# TP: description of subcommand domainservices |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
133 |
'domainservices': (_(u"""To define which services could be used by the |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
134 |
users of the domain — with the given <fqdn> — use this subcommand."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
135 |
_(u"""Each specified <service> will be enabled/usable. All other services |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
136 |
will be deactivated/unusable. Possible <service> names are:"""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
137 |
u""" imap, pop3, sieve, smtp""", |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
138 |
_(u"""The new service set will affect only those accounts for which the set has |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
139 |
not been overridden. If you want to restore the default to all accounts, you |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
140 |
may pass the keyword 'force'."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
141 |
# TP: description of subcommand domaintransport |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
142 |
'domaintransport': (_(u"""A new transport for the indicated domain can be |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
143 |
set with this subcommand."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
144 |
_(u"""The new transport will affect only those accounts for which the transport |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
145 |
has not been overridden. If you want to restore the default to all accounts, |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
146 |
you may pass the keyword 'force'."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
147 |
# TP: description of subcommand domainnote |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
148 |
'domainnote': (_(u"""With this subcommand, it is possible to attach a |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
149 |
note to the specified domain. Without an argument, an existing note is |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
150 |
removed."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
151 |
# TP: description of subcommand aliasdomainadd |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
152 |
'aliasdomainadd': (_(u"""This subcommand adds the new alias domain |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
153 |
(<fqdn>) to the destination <domain> that should be aliased."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
154 |
# TP: description of subcommand aliasdomaindelete |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
155 |
'aliasdomaindelete': (_(u"""Use this subcommand if the alias domain |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
156 |
<fqdn> should be removed."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
157 |
# TP: description of subcommand aliasdomaininfo |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
158 |
'aliasdomaininfo': (_(u"""This subcommand shows to which domain the alias |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
159 |
domain <fqdn> is assigned to."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
160 |
# TP: description of subcommand aliasdomainswitch |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
161 |
'aliasdomainswitch': (_(u"""If the destination of the existing alias |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
162 |
domain <fqdn> should be switched to another <destination> use this |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
163 |
subcommand."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
164 |
# TP: description of subcommand useradd |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
165 |
'useradd': (_(u"""Use this subcommand to create a new e-mail account for |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
166 |
the given <address>."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
167 |
_(u"""If the <password> is not provided, vmm will prompt for it interactively. |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
168 |
When no <password> is provided and account.random_password is set to true, vmm |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
169 |
will generate a random password and print it to stdout after the account has |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
170 |
been created."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
171 |
# TP: description of subcommand userdelete |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
172 |
'userdelete': (_(u"""Use this subcommand to delete the account with the |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
173 |
given <address>."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
174 |
_(u"""If there are one or more aliases with an identical destination address, |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
175 |
vmm will abort the requested operation and show an error message. To prevent |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
176 |
this, specify the optional keyword 'force'."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
177 |
# TP: description of subcommand userinfo |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
178 |
'userinfo': (_(u"""This subcommand displays some information about the |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
179 |
account specified by <address>."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
180 |
_(u"""If the optional argument <details> is given some more information will be |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
181 |
displayed. Possible values for <details> are:"""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
182 |
u""" aliases, du. full""",), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
183 |
# TP: description of subcommand username |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
184 |
'username': (_(u"""The user's real <name> can be set/updated with this |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
185 |
subcommand."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
186 |
_(u"""If no <name> is given, the value stored for the account is erased."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
187 |
), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
188 |
# TP: description of subcommand userpassword |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
189 |
'userpassword': (_(u"""The password of an account can be updated with this |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
190 |
subcommand."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
191 |
_(u"""If no <password> was provided, vmm will prompt for it interactively."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
192 |
), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
193 |
# TP: description of subcommand usernote |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
194 |
'usernote': (_(u"""With this subcommand, it is possible to attach a note |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
195 |
to the specified account. Without an argument, an existing note is |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
196 |
removed."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
197 |
# TP: description of subcommand userquota |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
198 |
'userquota': (_(u"""This subcommand is used to set a new quota limit for |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
199 |
the given account."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
200 |
_(u"""When the argument <messages> was omitted the default number of messages |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
201 |
0 (zero) will be applied."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
202 |
_(u"""Instead of <storage> pass the keyword 'domain' to remove the |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
203 |
account-specific override, causing the domain's value to be in effect."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
204 |
# TP: description of subcommand userservices |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
205 |
'userservices': (_(u"""To grant a user access to the specified services, |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
206 |
use this command."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
207 |
_(u"""All omitted services will be deactivated/unusable for the user with the |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
208 |
given <address>."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
209 |
_(u"""Instead of <service> pass 'domain' to remove the account-specific |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
210 |
override, causing the domain's value to be in effect."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
211 |
# TP: description of subcommand usertransport |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
212 |
'usertransport': (_(u"""A different <transport> for an account can be |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
213 |
specified with this subcommand."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
214 |
_(u"""Instead of <transport> pass 'domain' to remove the account-specific |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
215 |
override, causing the domain's value to be in effect."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
216 |
# TP: description of subcommand aliasadd |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
217 |
'aliasadd': (_(u"""This subcommand is used to create a new alias |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
218 |
<address> with one or more <destination> addresses."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
219 |
_(u"""Within the destination address, the placeholders '%n', '%d', and '%=' |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
220 |
will be replaced by the local part, the domain, or the email address with '@' |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
221 |
replaced by '=' respectively. In combination with alias domains, this enables |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
222 |
domain-specific destinations."""),), |
618
d8736bb80bdc
VMM: {alias,catchall}delete: Accept multiple destinations.
Pascal Volk <user@localhost.localdomain.org>
parents:
609
diff
changeset
|
223 |
# TP: description of subcommand aliasdelete |
d8736bb80bdc
VMM: {alias,catchall}delete: Accept multiple destinations.
Pascal Volk <user@localhost.localdomain.org>
parents:
609
diff
changeset
|
224 |
'aliasdelete': (_(u"""This subcommand is used to delete one or multiple |
d8736bb80bdc
VMM: {alias,catchall}delete: Accept multiple destinations.
Pascal Volk <user@localhost.localdomain.org>
parents:
609
diff
changeset
|
225 |
<destination>s from the alias with the given <address>."""), |
d8736bb80bdc
VMM: {alias,catchall}delete: Accept multiple destinations.
Pascal Volk <user@localhost.localdomain.org>
parents:
609
diff
changeset
|
226 |
_(u"""When no <destination> address was specified the alias with all its |
d8736bb80bdc
VMM: {alias,catchall}delete: Accept multiple destinations.
Pascal Volk <user@localhost.localdomain.org>
parents:
609
diff
changeset
|
227 |
destinations will be deleted."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
228 |
# TP: description of subcommand aliasinfo |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
229 |
'aliasinfo': (_(u"""Information about the alias with the given <address> |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
230 |
can be displayed with this subcommand."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
231 |
# TP: description of subcommand relocatedadd |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
232 |
'relocatedadd': (_(u"""A new relocated user can be created with this |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
233 |
subcommand."""), |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
234 |
_(u"""<address> is the user's ex-email address, for example |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
235 |
b.user@example.com, and <newaddress> points to the new email address where |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
236 |
the user can be reached."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
237 |
# TP: description of subcommand relocatedinfo |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
238 |
'relocatedinfo': (_(u"""This subcommand shows the new address of the |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
239 |
relocated user with the given <address>."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
240 |
# TP: description of subcommand relocateddelete |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
241 |
'relocateddelete': (_(u"""Use this subcommand in order to delete the |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
242 |
relocated user with the given <address>."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
243 |
# TP: description of subcommand catchalladd |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
244 |
'catchalladd': (_(u"""This subcommand allows to specify destination |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
245 |
addresses for a domain, which shall receive mail addressed to unknown |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
246 |
local-parts within that domain. Those catch-all aliases hence "catch all" mail |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
247 |
to any address in the domain (unless a more specific alias, mailbox or |
608
0ed93eb8b364
VMM: Corrected/updated some msgids.
Pascal Volk <user@localhost.localdomain.org>
parents:
606
diff
changeset
|
248 |
relocated user exists)."""), |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
249 |
_(u"""WARNING: Catch-all addresses can cause mail server flooding because |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
250 |
spammers like to deliver mail to all possible combinations of names, e.g. |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
251 |
to all addresses between abba@example.org and zztop@example.org."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
252 |
# TP: description of subcommand catchallinfo |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
253 |
'catchallinfo': (_(u"""This subcommand displays information about catch-all |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
254 |
aliases defined for the domain <fqdn>."""),), |
609
56ec275911f2
Added a few comments for the Translation Project.
Pascal Volk <user@localhost.localdomain.org>
parents:
608
diff
changeset
|
255 |
# TP: description of subcommand catchalldelete |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
256 |
'catchalldelete': (_(u"""With this subcommand, catch-all aliases defined |
618
d8736bb80bdc
VMM: {alias,catchall}delete: Accept multiple destinations.
Pascal Volk <user@localhost.localdomain.org>
parents:
609
diff
changeset
|
257 |
for a domain can be removed, either all of them, or those <destination>s which |
d8736bb80bdc
VMM: {alias,catchall}delete: Accept multiple destinations.
Pascal Volk <user@localhost.localdomain.org>
parents:
609
diff
changeset
|
258 |
were specified explicitly."""),), |
606
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
259 |
} |
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
260 |
|
ab97727357a4
VMM/cli: Activated help subcommand.
Pascal Volk <user@localhost.localdomain.org>
parents:
diff
changeset
|
261 |
del _ |