This commit is contained in:
2022-12-30 16:23:27 +00:00
parent 02776e8478
commit 20da343c54
1304 changed files with 870224 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{% extends "base.html" %}
{% block content %}
{% call text() %}
<h1>{{ alias.email }} is disabled</h1>
{% endcall %}
{% call text() %}
There are several emails sent to your alias {{ alias.email }} that have been bounced
by your mailbox {{ mailbox_email }}.
{% endcall %}
{{ render_button("View the refused email", refused_email_url) }}
{% call text() %}
As security measure, we have disabled the alias.
{% endcall %}
{{ render_text('Please let us know if you have any question.') }}
{{ render_text('Thanks,
<br />
SimpleLogin Team.') }}
{{ raw_url(refused_email_url) }}
{% endblock %}

View File

@ -0,0 +1,13 @@
{{alias.email}} is disabled.
There are several emails sent to your alias {{alias.email}} that have been bounced by your mailbox {{mailbox_email}}.
You can view this email here:
{{ refused_email_url }}
As security measure, we have disabled the alias {{alias.email}}.
Please let us know if you have any question.
Best,
SimpleLogin team.

View File

@ -0,0 +1,29 @@
{% extends "base.html" %}
{% block content %}
{% call text() %}
<h1>Email cannot be sent to {{ contact.email }} from your alias {{ alias.email }}</h1>
{% endcall %}
{% call text() %}
This might mean {{ contact.email }}
<ul>
<li>is not a valid email address, or</li>
<li>doesn't exist, or</li>
<li>its mail server refuses your email</li>
</ul>
{% endcall %}
{{ render_button("View the original email", refused_email_url) }}
{% call text() %}
This email is automatically deleted in 7 days.
{% endcall %}
{% call text() %}
Best,
<br />
SimpleLogin Team.
{% endcall %}
{% endblock %}

View File

@ -0,0 +1,16 @@
Email cannot be sent to {{ contact.email }} from your alias {{ alias.email }}
This might mean {{ contact.email }}
- is not a valid address, or
- doesn't exist, or
- its mail server refuses your email.
You can view the email at {{refused_email_url}}.
This email is automatically deleted in 7 days.
Best,
SimpleLogin Team.

View File

@ -0,0 +1,44 @@
{% extends "base.html" %}
{% block content %}
{% call text() %}
<h1>
An email sent to your alias {{ alias.email }} from {{ website_email }} was <b>bounced</b> by your mailbox
{{ mailbox_email }}
</h1>
{% endcall %}
{% call text() %}
This is usually because your mailbox service thinks the email is <b>spam</b>.
{% endcall %}
{{ render_button("View the bounced email", refused_email_url) }}
{{ render_text('The email is automatically deleted in 7 days.') }}
{% call text() %}
Please consider the following options:
<br />
<ol>
<li>
If the email is not spam, you can create a
<a href="https://simplelogin.io/docs/getting-started/troubleshooting/">filter</a>
to explicitly allow all emails from SimpleLogin.
<br />
</li>
<li>
If this email is indeed spam, it means your alias {{ alias.email }} is now in the hands of a spammer.
You can either
<a href="{{ disable_alias_link }}">disable the alias</a>
or
<a href="{{ block_sender_link }}">block the sender</a>
if they send too many spams.
</li>
</ol>
<br />
Please note that the alias can be automatically disabled if too many emails sent to it are bounced.
{% endcall %}
{{ render_text('Thanks,
<br />
SimpleLogin Team.') }}
{% endblock %}

View File

@ -0,0 +1,20 @@
An email sent to your alias {{alias.email}} from {{website_email}} was bounced by your mailbox {{mailbox_email}}.
This is usually because your mailbox service thinks the email is a spam.
You can view this email on {{ refused_email_url }}
The email is automatically deleted in 7 days.
Please consider the following options:
1. If the email is not spam at all, you can create a "filter" to explicitly allow all emails from SimpleLogin.
We have a small gudie on https://simplelogin.io/docs/getting-started/troubleshooting/
2. If this email is spam, it means your alias {{alias}} is now in the hands of a spammer.
You can either disable the alias on {{disable_alias_link}}
or block the sender on {{ block_sender_link }} if they send too many spams.
Please note that the alias can be automatically disabled if too many emails sent to it are bounced.
Thanks,
SimpleLogin team.