diff --git a/core/admin/mailu/sso/templates/sidebar_sso.html b/core/admin/mailu/sso/templates/sidebar_sso.html
index 86db3333..0f75a1de 100644
--- a/core/admin/mailu/sso/templates/sidebar_sso.html
+++ b/core/admin/mailu/sso/templates/sidebar_sso.html
@@ -36,6 +36,12 @@
{%- endif %}
+
+
+
+ {% trans %}Sign in{% endtrans %}
+
+
{#-
User self-registration is only available when
- Admin is available
diff --git a/core/admin/mailu/ui/templates/client.html b/core/admin/mailu/ui/templates/client.html
index bf0ba64e..fddbe0d2 100644
--- a/core/admin/mailu/ui/templates/client.html
+++ b/core/admin/mailu/ui/templates/client.html
@@ -9,7 +9,6 @@
{%- endblock %}
{%- block content %}
-
{%- call macros.table(title=_("Incoming mail"), datatable=False) %}
@@ -59,4 +58,8 @@
{%- endcall %}
+
+ {% trans %}If you use an Apple device,{% endtrans %}
+ {% trans %}click here to autoconfigure it.{% endtrans %}
+
{%- endblock %}
diff --git a/core/admin/mailu/ui/templates/domain/list.html b/core/admin/mailu/ui/templates/domain/list.html
index a6cefe9e..4363e2b8 100644
--- a/core/admin/mailu/ui/templates/domain/list.html
+++ b/core/admin/mailu/ui/templates/domain/list.html
@@ -20,6 +20,7 @@
{% trans %}Mailbox count{% endtrans %} |
{% trans %}Alias count{% endtrans %} |
{% trans %}Comment{% endtrans %} |
+ {% trans %}Enable sign-up{% endtrans %} |
{% trans %}Created{% endtrans %} |
{% trans %}Last edit{% endtrans %} |
@@ -46,6 +47,7 @@
{{ domain.users | count }} / {{ '∞' if domain.max_users == -1 else domain.max_users }} |
{{ domain.aliases | count }} / {{ '∞' if domain.max_aliases == -1 else domain.max_aliases }} |
{{ domain.comment or '' }} |
+ {% if domain.signup_enabled %}{% trans %}yes{% endtrans %}{% else %}{% trans %}no{% endtrans %}{% endif %} |
{{ domain.created_at | format_date }} |
{{ domain.updated_at | format_date }} |
diff --git a/core/admin/mailu/ui/templates/fetch/list.html b/core/admin/mailu/ui/templates/fetch/list.html
index 9f0570fd..05a2f095 100644
--- a/core/admin/mailu/ui/templates/fetch/list.html
+++ b/core/admin/mailu/ui/templates/fetch/list.html
@@ -35,7 +35,7 @@
{{ fetch.protocol }}{{ 's' if fetch.tls else '' }}://{{ fetch.host }}:{{ fetch.port }} |
{{ fetch.username }} |
- {% if fetch.keep %}{% trans %}yes{% endtrans %}{% else %}{% trans %}no{% endtrans %}{% endif %} |
+ {% if fetch.keep %}{% trans %}yes{% endtrans %}{% else %}{% trans %}no{% endtrans %}{% endif %} |
{{ fetch.last_check | format_datetime or '-' }} |
{{ fetch.error or '-' }} |
{{ fetch.created_at | format_date }} |
diff --git a/core/admin/mailu/ui/templates/manager/list.html b/core/admin/mailu/ui/templates/manager/list.html
index 706594c4..95dc9f4a 100644
--- a/core/admin/mailu/ui/templates/manager/list.html
+++ b/core/admin/mailu/ui/templates/manager/list.html
@@ -13,10 +13,10 @@
{%- endblock %}
{%- block content %}
-{%- call macros.table() %}
+{%- call macros.table(order='[[2,"asc"]]') %}
- {% trans %}Actions{% endtrans %} |
+ {% trans %}Actions{% endtrans %} |
{% trans %}Email{% endtrans %} |
diff --git a/core/admin/mailu/ui/templates/user/signup_domain.html b/core/admin/mailu/ui/templates/user/signup_domain.html
index a7db4c97..433d1b3f 100644
--- a/core/admin/mailu/ui/templates/user/signup_domain.html
+++ b/core/admin/mailu/ui/templates/user/signup_domain.html
@@ -9,7 +9,7 @@
{%- endblock %}
{%- block content %}
-{%- call macros.table() %}
+{%- call macros.table(order='[[1,"asc"]]') %}
{% trans %}Domain{% endtrans %} |
{% trans %}Available slots{% endtrans %} |
@@ -18,8 +18,8 @@
{%- for domain_name, domain in available_domains.items() %}
{{ domain_name }} |
- {{ '∞' if domain.max_users == -1 else domain.max_users - (domain.users | count)}} |
- {{ domain.max_quota_bytes or config['DEFAULT_QUOTA'] | filesizeformat }} |
+ {{ '∞' if domain.max_users == -1 else domain.max_users - (domain.users | count)}} |
+ {{ domain.max_quota_bytes or config['DEFAULT_QUOTA'] | filesizeformat }} |
{%- endfor %}
{%- endcall %}