Skip to content

Commit

Permalink
Redirect Firefox Monitor privacy notice to subscription-services noti…
Browse files Browse the repository at this point in the history
…ce (Fixes mozilla#14186)
  • Loading branch information
alexgibson committed Feb 6, 2024
1 parent 031b836 commit 3ab86f3
Show file tree
Hide file tree
Showing 7 changed files with 105 additions and 14 deletions.
2 changes: 2 additions & 0 deletions bedrock/privacy/redirects.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,6 @@
redirect(r"^privacy/betterweb/?$", "privacy.archive.firefox-betterweb-2023-06"),
redirect(r"^privacy/firefox-fire-tv/?$", "privacy.archive.firefox-fire-tv-2023-06"),
redirect(r"^privacy/firefox-reality/?$", "privacy.archive.firefox-reality-notice-2023-06"),
# issue 14186
redirect(r"^privacy/firefox-monitor/?$", "privacy.notices.subscription-services"),
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
{#
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at https://mozilla.org/MPL/2.0/.
#}

{% extends "privacy/archive/base-resp.html" %}

{% block page_title %}Firefox Monitor Terms & Privacy — Archived, February 6, 2024{% endblock %}

{% block body_id %}firefox-monitor-archived{% endblock %}

{% block article_header_logo %}{{ static('protocol/img/logos/firefox/monitor/logo.svg') }}{% endblock %}

{% block title %}Firefox Monitor Terms & Privacy{% endblock %}

{% block time %}<span class="archived">Archived, February 6, 2024</span>{% endblock %}

{% block sections %}
<section>
<h2>1. Introduction</h2>
<p>
Firefox Monitor is a service provided by Mozilla to promote online safety. We strongly encourage people
not to reuse passwords because—if any of those accounts are compromised—then hackers can access other
accounts using the same account credentials. Because account credentials are often reused when
registering for services, we think it’s important to know which accounts have been compromised in a
publicly disclosed data breach.
</p>
</section>
<section>
<h2>2. Features</h2>
<p>
Using your email address, you can do a Basic Scan on our website or sign up to receive a Full Report,
Breach Alerts, and Safety Tips.<br> <em>Basic Scan:</em> <em>These results display most publicly known
breaches. They exclude “Sensitive Breaches” (those including minors’ data or participants of adult and
dating sites) in order to protect the privacy of those account holders</em>.<br> <strong>Full Report:
</strong> This includes a complete list of publicly known hacks, including Sensitive Breaches.
* <strong>Breach Alerts:</strong> This notifies you if your email address appears in a new data breach.
* <strong>Safety Tips:</strong> This sends you occasional online safety tips from Mozilla.
</p>
</section>
<section>
<h2>3. Your Responsibilities</h2>
<p>
If you become aware that your account credentials have been compromised, you should immediately update
your passwords and any other credentials for those accounts, as well as other services using the same or
similar account information. It is your responsibility to protect your online accounts using strong and
different passwords, security questions, two-factor authentication, password managers, and other safety
measures.
</p>
</section>
<section>
<h2>4. Privacy</h2>
<p>
When Mozilla receives information from you, our <a href="{{ url('privacy') }}">Mozilla Privacy Policy</a>
describes how we handle that information. Here are things you should know about Firefox Monitor:
</p>
<ul class="mzp-u-list-styled">
<li>
If you sign up, we (and our email providers SalesForce and Amazon) receive your email address to contact
you in connection with the Firefox Monitor Service, which includes Full Reports, Breach Alerts, and Safety
Tips. You can unsubscribe at any time.
</li>
<li>
The data that powers Firefox Monitor is provided by <a href="https://haveibeenpwned.com/">Have I Been Pwned?</a>
</li>
<li>
<a href="{{ url('privacy.notices.websites') }}#cookies">Learn more</a> about our cookies and analytics, and
how to opt-out.
</li>
<li>
<a href="https://blog.mozilla.org/security/2018/06/25/scanning-breached-accounts-k-anonymity/">Learn more</a>
about the measures we take to protect the privacy of your email address.
</li>
</ul>
</section>
<section>
<h2>5. Your and Our Rights</h2>
<p>
The <a href="{{ url('legal.terms.mozilla') }}">Websites and Communications Terms</a> of Use governs Mozilla websites
and emails we send, including those of Firefox Monitor. <strong>It includes an indemnification, disclaimer, and
limitation on liability.</strong> Although Firefox Monitor and <a href="https://haveibeenpwned.com/">Have I Been
Pwned?</a>, strive to have current data, there is no guarantee that either will have complete or timely records
of all public data breaches.
</p>
</section>
{% endblock %}

{% block footnote %}<p><a href="{{ url('privacy') }}#contact">Contact Us</a></p>{% endblock %}
6 changes: 6 additions & 0 deletions bedrock/privacy/templates/privacy/archive/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ <h2>Firefox Browser</h2>
<li><a href="{{ url('legal.eula.firefox-3-eula') }}">Firefox End-User Licensing Agreement - Version 3.0</a></li>
</ul>
</section>
<section>
<h2>Firefox Monitor</h2>
<ul class="mzp-u-list-styled">
<li><a href="{{ url('privacy.archive.firefox-monitor-2024-02') }}">February 2024</a></li>
</ul>
</section>
<section>
<h2>Firefox Relay</h2>
<ul class="mzp-u-list-styled">
Expand Down
11 changes: 0 additions & 11 deletions bedrock/privacy/templates/privacy/notices/firefox-monitor.html

This file was deleted.

7 changes: 6 additions & 1 deletion bedrock/privacy/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
path("thunderbird/", views.thunderbird_notices, name="privacy.notices.thunderbird"),
path("websites/", views.websites_notices, name="privacy.notices.websites"),
page("websites/data-preferences/", "privacy/data-preferences.html", ftl_files=["privacy/data-preferences"]),
path("firefox-monitor/", views.firefox_monitor_notices, name="privacy.notices.firefox-monitor"),
path("mdn-plus/", views.mdn_plus, name="privacy.notices.mdn-plus"),
path("ad-targeting-guidelines/", views.ad_targeting_guidelines, name="privacy.notices.ad-targeting-guidelines"),
path("subscription-services/", views.subscription_services, name="privacy.notices.subscription-services"),
Expand Down Expand Up @@ -90,4 +89,10 @@
ftl_files=["privacy/index"],
active_locales=["en-US"],
),
page(
"archive/firefox-monitor/2024-02/",
"privacy/archive/firefox-monitor-2024-02.html",
ftl_files=["privacy/index"],
active_locales=["en-US"],
),
)
2 changes: 0 additions & 2 deletions bedrock/privacy/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ def get_legal_doc(self):

websites_notices = PrivacyDocView.as_view(template_name="privacy/notices/websites.html", legal_doc_name="websites_privacy_notice")

firefox_monitor_notices = PrivacyDocView.as_view(template_name="privacy/notices/firefox-monitor.html", legal_doc_name="firefox_monitor_terms_privacy")

mdn_plus = PrivacyDocView.as_view(template_name="privacy/notices/mdn-plus.html", legal_doc_name="mdn_plus_privacy")

ad_targeting_guidelines = PrivacyDocView.as_view(
Expand Down
2 changes: 2 additions & 0 deletions tests/redirects/map_globalconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -1227,5 +1227,7 @@
url_test("/contact/spaces/paris/", "/contact/spaces/"),
# Issue 13924
url_test("/foundation/annualreport/{,2022/}", "https://stateof.mozilla.org/"),
# Issue 14186
url_test("/privacy/firefox-monitor/", "/privacy/subscription-services/"),
)
)

0 comments on commit 3ab86f3

Please sign in to comment.