{% extends "base.html" %} {% block title %}Users - Email Server Management{% endblock %} {% block page_title %}User Management{% endblock %} {% block content %}

Users

Add User
All Users
{% if users %}
{% for user, domain in users %} {% endfor %}
Email Domain Permissions Status Created Actions
{{ user.email }}
{{ domain.domain_name }} {% if user.can_send_as_domain %} Domain Admin
Can send as *@{{ domain.domain_name }} {% else %} User
Can only send as {{ user.email }} {% endif %}
{% if user.is_active %} Active {% else %} Inactive {% endif %} {{ user.created_at.strftime('%Y-%m-%d %H:%M') }}
{% if user.is_active %}
{% else %}
{% endif %}
{% else %}

No users configured

Add users to enable username/password authentication

Add Your First User
{% endif %}
{% if users %}
User Statistics
  • Active users: {{ users|selectattr('0.is_active')|list|length }}
  • Domain admins: {{ users|selectattr('0.can_send_as_domain')|list|length }}
  • Regular users: {{ users|rejectattr('0.can_send_as_domain')|list|length }}
Permission Levels
  • Domain Admin Can send as any email address in their domain
  • Regular User Can only send as their own email address
{% endif %} {% endblock %}