1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-14 10:53:30 +02:00
Mailu/setup/templates/steps/initial-config.html

60 lines
1.9 KiB
HTML
Raw Normal View History

2018-10-16 15:12:42 +02:00
{% call macros.panel("info", "Step 0 - Initial configuration") %}
<p>Before starting some variables must be st</p>
<div class="form-group">
<label>Root path: </label>
2018-10-16 17:03:59 +02:00
<input class="form-control" type="text" name="root" value="/mailu">
2018-10-16 15:12:42 +02:00
</div>
<div class="form-group">
<label>Main mail domain</label>
<input class="form-control" type="text" name="domain" placeholder="e.g. mailu.io">
</div>
2018-10-16 17:03:59 +02:00
<div class="form-check form-check-inline">
<label class="form-check-label">
<input class="form-check-input" type="checkbox" name="domain_registration" value="true">
Domain registration
</label>
</div>
2018-10-16 15:12:42 +02:00
<div class="form-group">
<label>Postmaster local part (will append the main mail domain)</label>
2018-10-16 17:03:59 +02:00
<input class="form-control" type="text" name="postmaster" value="admin">
2018-10-16 15:12:42 +02:00
</div>
<div class="form-group">
<label>Choose how secure connections will behave </label>
<br/>
<select name="tls_flavor">
{% for tlsflavor in ["letsencrypt", "cert", "notls", "mail", "mail-letsencrypt"] %}
<option value="{{ tlsflavor }}" >{{ tlsflavor }}</option>
{% endfor %}
</select>
</div>
<div class="form-group">
<label>Authentication rate limit (per source IP address)</label>
2018-10-16 17:03:59 +02:00
<p><input class="form-control" style="width: 7%; display: inline;" type="text" name="auth_ratelimit_pm">/minute;
<input class="form-control" style="width: 7%; display: inline;;" type="text" name="auth_ratelimit_ph">/hour</p>
2018-10-16 15:12:42 +02:00
</div>
<div class="form-check form-check-inline">
<label class="form-check-label">
<input class="form-check-input" type="checkbox" name="disable_statistics" value="True">
Opt-out of statistics
</label>
</div>
<div class="form-group">
<label>Website name</label>
2018-10-16 17:03:59 +02:00
<input class="form-control" type="text" name="site_name" value="Mailu">
2018-10-16 15:12:42 +02:00
</div>
<div class="form-group">
<label>Linked Website URL</label>
2018-10-16 17:03:59 +02:00
<input class="form-control" type="text" name="website" value="https://mailu.io">
2018-10-16 15:12:42 +02:00
</div>
{% endcall %}