{% extends "base.html.twig" %} {% block title %}View account{% endblock %} {% block content %}

Account: {{ accountUsername }}

Actions: View | Edit | Delete | Send mail

View account details

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'] }}

Aliases

{% if aliases %} {% for alias in aliases %} {# TODO #} {% endfor %}
Address Created at Actions
{{ alias['mail_address'] }} {{ alias['created_at'] }} Delete
{% else %}

No aliases.

{% endif %} {% endblock %}