{# version, hostname, uptime, loadavg, #} {% extends "layout.html" %} {% from "macros/msg_handlers.html" import success_info, error_info with context %} {% block title %} {{ _('Dashboard') }} {% endblock %} {% block navlinks_dashboard %}class="active"{% endblock %} {% block main %} {# Checked and get response data #} {% if session.get('new_version_available') %} {{ success_info( _("New version of iRedAdmin, %s, is now available for upgrading. Upgrade tutorial.") |format(session.get('new_version') |e), removable=false, trusted=true ) }} {% elif session.get('new_version_available') is sameas false %} {# Error while checking new version #} {{ error_info( _('Error while checking new version of iRedAdmin:') + ' ' + session.get('new_version_check_error') |e ) }} {% endif %}

{{ _('System Information') }}

{# Show number of total domains, users, aliases #} {% if backend in ['mysql', 'pgsql'] %} {% endif %} {% if session.get('show_used_quota') %} {% endif %} {# ---- System Information ---- #} {% if uptime is not sameas none and uptime|length == 3 %} {% endif %} {# ---- Network interfaces and IP info ---- #} {% for netif in netif_data %} {% endfor %}
{{ _('Number of domains') }} {{ num_existing_domains |e }}
{{ _('Number of users') }} {{ num_existing_users |e }}
{{ _('Stored emails') }} {% if total_messages %}{{ total_messages |e }} {{ _('Emails') }}.{% endif %} {% if total_bytes %}{{ total_bytes |file_size_format }}.{% endif %}
iRedMail {{ iredmail_version }}
iRedAdmin {{ version |e }} {% if backend == 'mysql' %} (MySQL) {% elif backend == 'pgsql' %} (PostgreSQL) {% elif backend == 'ldap' %} (LDAP) {% endif %}
{{ _('Hostname') }} {{ hostname |e }}
{{ _('Uptime') }} {{ _('%s days, %s hours, %s minutes.') |format(uptime[0] |e, uptime[1] |e, uptime[2] |e ) }}
{{ _('Server Load') }} {{ loadavg[0] }}, {{ loadavg[1] }}, {{ loadavg[2] }}
{{ _('Network') }} ({{ netif[0] |e }}) {{ netif[1] }}
{# .box-wrap #}
{# col1-3 #}

Upgrade to iRedAdmin-Pro for more features

  • RESTful API interface
  • Domain level admins. Grant clients to manage their own domains.
  • Unlimited mailing list and mail alias accounts
  • Manage more domain profiles: forwarding, bcc, relay, alias domain, catch-all
  • Manage more user profiles: forwarding, bcc, relay, alias addresses, real-time quota usage report
  • Greylisting setting
  • Throttle setting
  • View basic info of received and sent emails
  • Manage quarantined mails
  • User self-service: change password, mail forwarding, white/blacklists, spam policy
  • Per-domain and per-user service restrictions
  • And many more ...
Comparison and Pricing
{# .columns #} {% endblock main %}