{% extends 'default.html' %} {% set active_page = "setting" %} {% block title %} Settings {% endblock %} {% block head %} {% endblock %} {% block default_content %}
Current Plan
{% if current_user.lifetime %} You have lifetime access to the Premium plan. {% elif current_user.lifetime_or_active_subscription() %} {% if current_user.get_subscription() %}
{{ current_user.get_subscription().plan_name() }} plan subscribed via Paddle. Manage Subscription ➡
{% endif %} {% if manual_sub and manual_sub.is_active() %}
Manual plan which expires {{ manual_sub.end_at | dt }} ({{ manual_sub.end_at.format("YYYY-MM-DD") }}). {% if manual_sub.is_giveaway %}
To gain additional features and support SimpleLogin you can upgrade to a Premium plan.
Upgrade {% endif %}
{% endif %} {% if apple_sub and apple_sub.is_valid() %}
Premium plan subscribed via Apple which expires {{ apple_sub.expires_date | dt }} ({{ apple_sub.expires_date.format("YYYY-MM-DD") }}).
If you want to subscribe via the Web instead, please make sure to cancel your subscription on Apple first. Upgrade
{% endif %} {% if coinbase_sub and coinbase_sub.is_active() %}
Yearly plan subscribed with cryptocurrency which expires on {{ coinbase_sub.end_at.format("YYYY-MM-DD") }}. Extend Subscription
{% endif %} {% elif current_user.in_trial() %} Your Premium trial expires {{ current_user.trial_end | dt }}. {% else %} You are on the Free plan. {% endif %}
Two Factor Authentication
Secure your account with 2FA, you'll be asked for a code generated through an app when you login.
{% if not current_user.enable_otp %} Setup TOTP {% else %} Disable TOTP Recovery Codes {% endif %}
Security Key (WebAuthn)
You can secure your account by linking either your FIDO-supported physical key such as Yubikey, Google Titan, or a device with appropriate hardware to your account.
{% if current_user.fido_uuid is none %} Setup WebAuthn {% else %} Manage WebAuthn Recovery Codes {% endif %}
Newsletters
We will occasionally send you emails with new feature announcements.
{{ form.csrf_token }}
Profile
This information will be filled in automatically when you use the Sign in with SimpleLogin button.
{{ form.name(class="form-control", value=current_user.name) }} {{ render_field_errors(form.name) }}
Profile picture
{{ form.profile_picture(class="form-control-file") }} {{ render_field_errors(form.profile_picture) }} {% if current_user.profile_picture_id %} {% endif %}
{{ change_email_form.csrf_token }}
Account Email
This email address is used to log in to SimpleLogin.
If you want to change the mailbox that emails are forwarded to, use the Mailboxes page instead.
{{ change_email_form.email(class="form-control", value=current_user.email, readonly=pending_email != None) }} {{ render_field_errors(change_email_form.email) }} {% if pending_email %}
Pending email change: {{ pending_email }} Resend confirmation email Cancel email change
{% endif %}
{% if connect_with_proton %}
Connect with Proton
{% if proton_linked_account != None %}
You have linked your Proton account: {{ proton_linked_account }}
Unlink account {% else %}
You can connect your Proton account with your SimpleLogin one.
Connect with Proton {% endif %}
{% endif %}
Password
You will receive an email containing instructions on how to change your password.
Aliases
Change the way random aliases are generated by default.
Select the default domain for aliases.
Select the default suffix generator for aliases.
Sender Address Format
When your alias receives an email, say from: John Wick <john@wick.com>, SimpleLogin forwards it to your mailbox.
Due to some email constraints, SimpleLogin cannot keep the sender email address in the original form and needs to transform it to one of the formats below.
Reverse Alias Replacement
Experimental
When replying to a forwarded email, the reverse-alias can be automatically included in the attached message by your email client. If this option is enabled, SimpleLogin will try to replace the reverse-alias by your contact email.
Include sender address in reverse-alias
By default, the reverse-alias is randomly generated and doesn't contain any information about the sender.
Enabling this option will include the sender address in the reverse-alias.
This can be useful if you want to set up email filters based on the reverse-alias. It will also make the reverse-alias more readable.
Always expand alias info
By default, additional alias info is shown after clicking on the "More" button.
When this option is enabled, alias additional info will always be shown.
Include website address in one-click alias creation on browser extension
If enabled, the website name will be used as alias prefix when you create an alias via SimpleLogin browser extension via the email input field
{#
#} {#
#} {#
Ignore Loop Emails
#} {#
#} {# On some email clients, "Reply All" automatically includes your alias that#} {# would send the same email to your mailbox.#} {#
#} {# You can disable these "loop" emails by enabling this option.#} {#
#} {#
#} {# #} {#
#} {# #} {# #} {#
#} {# #} {#
#} {#
#} {#
#}
One-click unsubscribe
On email clients that support the One-click unsubscribe button, clicking on it will disable the alias that receives the emails.
You can choose to block the sender instead of disabling the alias.
Quarantine
When an email sent to your alias is classified as spam or refused by your email provider, it usually means your alias has been leaked to a spammer.
In this case SimpleLogin will keep a copy of this email (so it isn't lost) and notify you so you can take a look at its content and take appropriate actions.
The emails are deleted in 7 days. This is an exceptional case where SimpleLogin stores the email.
See refused emails
Disabled alias/Blocked contact
When an email is sent to a disabled alias or sent from a blocked contact, you can decide what response the sender should see.
Ignore means they will see the message as delivered, but SimpleLogin won't actually forward it to you. This is the default option as you can start receiving the emails again by re-enabling the alias or unblocking a contact.
Reject means SimpleLogin will tell them that the alias does not exist.
Include original sender in email headers
SimpleLogin forwards emails to your mailbox from the reverse-alias and not from the original sender address.
If this option is enabled, the original sender addresses is stored in the email header X-SimpleLogin-Envelope-From. You can choose to display this header in your email client.
As email headers aren't encrypted, your mailbox service can know the sender address via this header.
Alias Import
You can import your aliases created on other platforms into SimpleLogin.
Batch Import
Data Export
You can download all aliases you have created on SimpleLogin along with other data.
Account Deletion
If SimpleLogin isn't the right fit for you, you can simply delete your account.
Delete account
{% endblock %}