@@ -47,6 +47,10 @@ run the following command::
|
|||||||
|
|
||||||
$ ./run.py --stop-after-configfile-check <your domain>
|
$ ./run.py --stop-after-configfile-check <your domain>
|
||||||
|
|
||||||
|
An interactive mode is also available::
|
||||||
|
|
||||||
|
$ ./run.py --interactive <your domain>
|
||||||
|
|
||||||
Make your modifications and run the installer as usual.
|
Make your modifications and run the installer as usual.
|
||||||
|
|
||||||
By default, the latest Modoboa version is installed but you can select
|
By default, the latest Modoboa version is installed but you can select
|
||||||
|
|||||||
@@ -129,11 +129,11 @@ ConfigDictTemplate = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"option": "venv_path",
|
"option": "venv_path",
|
||||||
"default": "%(home_dir)s/instance",
|
"default": "%(home_dir)s/env",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"option": "instance_path",
|
"option": "instance_path",
|
||||||
"default": "%(home_dir)s/env",
|
"default": "%(home_dir)s/instance",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"option": "timezone",
|
"option": "timezone",
|
||||||
@@ -161,7 +161,7 @@ ConfigDictTemplate = [
|
|||||||
"modoboa-stats modoboa-webmail modoboa-contacts"),
|
"modoboa-stats modoboa-webmail modoboa-contacts"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"option": "devmod",
|
"option": "devmode",
|
||||||
"default": "false",
|
"default": "false",
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|||||||
1
run.py
1
run.py
@@ -53,6 +53,7 @@ def main(input_args):
|
|||||||
if not config.has_section("general"):
|
if not config.has_section("general"):
|
||||||
config.add_section("general")
|
config.add_section("general")
|
||||||
config.set("general", "domain", args.domain)
|
config.set("general", "domain", args.domain)
|
||||||
|
config.set("dovecot", "domain", args.domain)
|
||||||
config.set("modoboa", "version", args.version)
|
config.set("modoboa", "version", args.version)
|
||||||
utils.printcolor(
|
utils.printcolor(
|
||||||
"Your mail server will be installed with the following components:",
|
"Your mail server will be installed with the following components:",
|
||||||
|
|||||||
Reference in New Issue
Block a user