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

Account: {{ accountUsername }}

Actions: View | Edit | Delete | Send mail

Edit account data

{% if error is defined %}

Error

{{ error }}
{% endif %}

Username

Current username: {{ accountData['username'] }}

Password

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

Account status

Current status: {{ accountData['is_active'] == '1' ? '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/{{ accountData['home_dir'] }}
/srv/vmail/

This field is only readable by admins.

{% endblock %}