Extend documentation in download page. Small cleanup in env.

master
Tim Möhlmann 6 years ago
parent cb1ed349bf
commit ed53d655d3
No known key found for this signature in database
GPG Key ID: AFABC30066A39335

@ -24,7 +24,7 @@ SECRET_KEY={{ secret(16) }}
DOMAIN={{ domain }}
# Mail address of the postmaster
POSTMASTER={{ postmaster or 'admin'}}
POSTMASTER={{ postmaster }}
#Chose how secure connections will behave:
#TLS_FLAVOR={{ tls_flavor }}

@ -11,8 +11,8 @@ in a project directory. First create your project directory.</p>
to read and check the configuration variables generated by the wizard.</p>
<pre><code>cd {{ root }}
wget {{ url_for('.file', uid=uid, filepath='docker-compose.yml', _external=True) }}
wget {{ url_for('.file', uid=uid, filepath='mailu.env', _external=True) }}
curl {{ url_for('.file', uid=uid, filepath='docker-compose.yml', _external=True) }} > docker-compose.yml
curl {{ url_for('.file', uid=uid, filepath='mailu.env', _external=True) }} > mailu.env
</pre></code>
{% endcall %}
@ -33,4 +33,17 @@ command.</p>
<pre><code>cd {{ root }}
docker-compose up -d
</pre></code>
Before you can use Mailu, you must create the primary administrator user account. This should be {{ postmaster }}@{{ domain }}. Use the following command, changing PASSWORD to your liking:
<pre><code>docker-compose exec admin python manage.py admin {{ postmaster }} {{ domain }} PASSWORD
</pre></code>
Login the the admin interface to change the password for a safe one, at
{% if admin_enabled %}
one of the hostnames ({{ hostnames }}){{ admin_path }}.
{% else %}
http://127.0.0.1:8080 (only directly from the host running docker).
{% endif %}
And choose the "Update password" option in the left menu.
{% endcall %}

Loading…
Cancel
Save