You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
3.0 KiB
HTML
74 lines
3.0 KiB
HTML
7 years ago
|
{% call macros.panel("info", "Step 3 - pick some features") %}
|
||
|
<p>Mailu comes with multiple base features, including a specific admin
|
||
|
interface, Web email clients (webmails), antispam, antivirus, etc. If you
|
||
|
wish to disable some of these features, you are free to do so.</p>
|
||
|
|
||
|
<p>The admin interface is the main Mailu-specific bit, it provides tools to
|
||
|
manage your email domains, users, etc.</p>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label>Enable the admin UI (and path to the admin UI)</label>
|
||
|
<div class="input-group">
|
||
6 years ago
|
<div class="input-group-addon"><input type="checkbox" name="admin_enabled" value="true"></div>
|
||
7 years ago
|
<input class="form-control" type="text" name="admin_path" value="/admin">
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<p>Emails will be available through IMAP and POP3. You may also enable a Web
|
||
|
email client. These do add some complexity but provide an easier way of
|
||
|
accessing messages for beginner users.</p>
|
||
|
|
||
6 years ago
|
<!-- Switched from radio buttons to dropdown menu in order to remove the checkbox -->
|
||
7 years ago
|
<div class="form-group">
|
||
|
<label>Enable Web email client (and path to the Web email client)</label>
|
||
6 years ago
|
<!-- <div class="radio"> -->
|
||
|
<!-- {{ macros.radio("webmail_type", "roundcube", "RoundCube", "popular Webmail running on top of PHP") }} -->
|
||
|
<!-- {{ macros.radio("webmail_type", "rainloop", "Rainloop", "lightweight Webmail based on PHP, no database") }} -->
|
||
|
<!-- </div> -->
|
||
|
<br/>
|
||
|
<select name="webmail_type">
|
||
|
{% for webmailtype in ["none", "roundcube", "rainloop"] %}
|
||
|
<option value="{{ webmailtype }}" >{{ webmailtype }}</option>
|
||
|
{% endfor %}
|
||
|
</select>
|
||
|
<p></p>
|
||
7 years ago
|
<div class="input-group">
|
||
6 years ago
|
<!-- <div class="input-group-addon"><input type="checkbox" name="webmail_enabled" value="true"></div> -->
|
||
7 years ago
|
<input class="form-control" type="text" name="webmail_path" value="/webmail">
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<p>Email filtering is a really important features. You can still disable it, which
|
||
|
will prevent Mailu from doing spam filtering, virus filtering, and from applying
|
||
|
white and blacklists that you may configure in the admin interface. You may
|
||
|
also disable the antivirus if required (it does use aroung 1GB of ram).</p>
|
||
|
|
||
|
<div class="form-check form-check-inline">
|
||
|
<label class="form-check-label">
|
||
6 years ago
|
<input class="form-check-input" type="checkbox" name="antispam_enabled" value="rspamd" checked>
|
||
|
Enable the spam filtering service
|
||
7 years ago
|
</label>
|
||
|
</div>
|
||
|
<div class="form-check form-check-inline">
|
||
|
<label class="form-check-label">
|
||
6 years ago
|
<input class="form-check-input" type="checkbox" name="antivirus_enabled" value="clamav">
|
||
7 years ago
|
Enable the antivirus service
|
||
|
</label>
|
||
|
</div>
|
||
|
|
||
6 years ago
|
<div class="form-check form-check-inline">
|
||
|
<label class="form-check-label">
|
||
|
<input class="form-check-input" type="checkbox" name="webdav_enabled" value="radicale">
|
||
|
Enable the webdav service
|
||
|
</label>
|
||
|
</div>
|
||
|
|
||
6 years ago
|
<div class="form-check form-check-inline">
|
||
|
<label class="form-check-label">
|
||
|
<input class="form-check-input" type="checkbox" name="fetchmail_enabled" value="true">
|
||
|
Enable fetchmail
|
||
|
</label>
|
||
|
</div>
|
||
|
|
||
7 years ago
|
{% endcall %}
|