{% extends "base.html" %} {% from "_hub.html" import hub %} {% block title %}Email accounts — karyab{% endblock %} {% block content %}

Email accounts

{% if flash %} {% if flash_error %}
{{ flash }}
{% else %}
{{ flash }}
{% endif %} {% endif %} {% call hub(hub_sections) %}

Configured accounts

{% if accounts %} {% for acct in accounts %}
{{ acct.name }} {{ acct.status }} {% if acct.has_secret %} credentials ✓ {% else %} no credentials {% endif %} {% if not acct.enabled %} disabled {% endif %}
IMAP: {{ acct.imap_host }} SMTP: {{ acct.smtp_host }}:{{ acct.smtp_port }} Folder: {{ acct.folder }} Auth: {{ acct.auth }} {% if acct.token_cache_present %} Token cache: present {% endif %}
{% if acct.auth == "oauth" %} {% endif %}
{# Edit form #}
Edit account
{% include "_email_form.html" with context %}
{% endfor %} {% else %}

No email accounts configured yet. Add one below.

{% endif %} {# Add account #}
Add email account
{% set acct = {} %} {% include "_email_form.html" with context %}
{% endcall %} {% endblock %}