{% extends 'default.html' %} {% set active_page = "mailbox" %} {% block title %} Mailbox {{ mailbox.email }} {% endblock %} {% block default_content %}

{{ mailbox.email }} {% if mailbox.verified %} {% else %} 🚫 {% endif %} {% if mailbox.pgp_finger_print %} 🗝 {% endif %}

{% if not mailbox.verified %}
Mailbox not verified, please check your inbox/spam folder for the verification email.
To receive the verification email again, you can delete and re-add the mailbox.
{% endif %}
{{ change_email_form.csrf_token }}
Change Mailbox Address
{{ change_email_form.email(class="form-control", value=mailbox.email, readonly=pending_email != None) }} {{ render_field_errors(change_email_form.email) }} {% if pending_email %}
Pending change: {{ pending_email }} Cancel mailbox change
{% endif %}
Pretty Good Privacy (PGP)
By importing your PGP Public Key into SimpleLogin, all emails sent to {{mailbox.email}} are encrypted with your key.
{% endblock %}