{% extends "base.html.twig" %} {% block title %}Accounts{% endblock %} {% block content %}
Actions: Edit | Delete | Send mail
| User ID | {{ accountData['user_id'] }} |
|---|---|
| Username | {{ accountData['username'] }} |
| Domain | {{ accountData['domain'] }} |
| Password | {% if passwordHashType == 'empty' %} [No password set] {% elseif passwordHashType == 'unknown' %} [Not hashed / unknown hash algorithm] {% else %} [{{ passwordHashType }} hash] {% endif %} |
| Status | {{ accountData['is_active'] == '1' ? 'Active' : 'Inactive' }} |
| Home directory | /srv/vmail/{{ accountData['home_dir'] }} |
| Admin memo | {{ accountData['memo'] | nl2br }} |
| Created at | {{ accountData['created_at'] }} |
| Last modified at | {{ accountData['modified_at'] }} |
| Address | Created at | Actions |
|---|---|---|
| {{ alias['mail_address'] }} | {{ alias['created_at'] }} | Delete | {# TODO #}
No aliases.
{% endif %} {% endblock %}