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

Account: {{ accountUsername }}

Actions: View | Edit | Delete | Send mail

Edit account data

{% if success is defined %}

Success

{{ success }}
{% elseif error is defined %}

Error

{{ error }}
{% endif %}

Username

Current username: {{ account.getUsername() }}

Password

The new password will be hashed using the current default hash algorithm.

Account status

Current status: {{ account.isActive() ? 'Active' : 'Inactive' }}
New status:

Home directory

Important: Changing the home directory here will NOT move any existing mail data, this needs to be done manually!

Current home directory: /srv/vmail/{{ account.getHomeDir() }}
/srv/vmail/

This field is only readable by admins.

{% endblock %}