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

{{ mailbox.email }} {% if mailbox.verified %} {% else %} 🚫 {% endif %} {% if mailbox.pgp_enabled() %} 🗝 {% 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 %}
{% if mailbox.is_proton() and not mailbox.pgp_enabled() %}
As an email is always encrypted at rest in Proton Mail, having SimpleLogin also encrypt your email is redundant and does not add any security benefit.
The PGP option on SimpleLogin is instead useful for when your mailbox provider isn't encrypted by default like Gmail, Outlook, etc.
{% endif %}
{% if mailbox.pgp_finger_print and not mailbox.disable_pgp and current_user.include_sender_in_reverse_alias and not mailbox.is_proton() %}
Email headers like From, To, Subject aren't encrypted by PGP. Currently, your reverse alias includes the sender address. You can disable this on Settings.
{% endif %}
Pretty Good Privacy (PGP) {% if mailbox.pgp_finger_print %}
{{ csrf_form.csrf_token }}
{% endif %}
By importing your PGP Public Key into SimpleLogin, all emails sent to {{ mailbox.email }} are encrypted with your key.
{% if PGP_SIGNER %}All forwarded emails will be signed with {{ PGP_SIGNER }}.{% endif %}
{% if not current_user.is_premium() %} {% endif %}
{{ csrf_form.csrf_token }}
{% if mailbox.pgp_finger_print %} {% endif %}
{{ csrf_form.csrf_token }}
Hide email subject when PGP is enabled
When PGP is enabled, you can choose to use a generic subject for the forwarded emails. The original subject is then added into the email body.
As PGP does not encrypt the email subject and the email subject might contain sensitive information, this option will allow a further protection of your email content.
As the email is encrypted, a subject like "Email for you" will probably be rejected by your mailbox since it sounds like a spam.
Something like "Encrypted Email" would work much better :).
{% if mailbox.generic_subject %} {% endif %}

Advanced Options

{% if spf_available %}
{{ csrf_form.csrf_token }}
Enforce SPF
To avoid email-spoofing, SimpleLogin blocks email that seems to come from your mailbox but sent from unknown IP address.
Only turn off this option if you know what you're doing :).
{% endif %}
Authorized addresses
Emails sent from these addresses to a reverse-alias are considered as being sent from {{ mailbox.email }}
{% if mailbox.authorized_addresses | length == 0 %} {% else %}
    {% for authorized_address in mailbox.authorized_addresses %}
  • {{ authorized_address.email }}
    {{ csrf_form.csrf_token }}
  • {% endfor %}
{% endif %}
{{ csrf_form.csrf_token }}
{% endblock %} {% block script %} {% endblock %}