{% extends "base.html.twig" %} {% block title %}View account{% endblock %} {% block content %}
Actions: View | Edit | Delete | Send mail
| User ID | {{ account.getId() }} |
|---|---|
| Username | {{ account.getUsername() }} |
| Domain | {{ account.getDomain() }} |
| Password | {% if passwordHashType == 'empty' %} [No password set] {% elseif passwordHashType == 'unknown' %} [Not hashed / unknown hash algorithm] {% else %} [{{ passwordHashType }} hash] {% endif %} |
| Status | {{ account.isActive() ? 'Active' : 'Inactive' }} |
| Home directory | /srv/vmail/{{ account.getHomeDir() }} |
| Admin memo | {{ account.getMemo() | nl2br }} |
| Created at | {{ account.getCreatedAt() | date }} |
| Last modified at | {{ account.getModifiedAt() | date }} |
No aliases.
{% endif %} {% endblock %}