From 7f7d3e6ec6b99db259a40781a3ec1e6cd42fe4e1 Mon Sep 17 00:00:00 2001 From: M66B Date: Sat, 26 Jun 2021 21:10:14 +0200 Subject: [PATCH] Added Barracuda --- PRIVACY.md | 1 + app/src/main/assets/PRIVACY.md | 1 + app/src/main/java/eu/faircode/email/DnsBlockList.java | 8 ++++---- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/PRIVACY.md b/PRIVACY.md index 5676e81c94..3d455c2236 100644 --- a/PRIVACY.md +++ b/PRIVACY.md @@ -26,6 +26,7 @@ FairEmail **can use** these services if they are explicitly enabled (off by defa * [Gravatar](https://gravatar.com/) – [Privacy policy](https://automattic.com/privacy/) * [Spamhaus](https://www.spamhaus.org/) – [Privacy policy](https://www.spamhaus.org/organization/privacy/) * [Spamcop](https://www.spamcop.net/) – [Privacy policy](https://www.spamcop.net/fom-serve/cache/168.html) +* [Barracuda](https://www.barracudacentral.org/rbl/how-to-use) – [Privacy policy](https://www.barracuda.com/company/legal/trust-center/data-privacy/privacy-policy) * [Thunderbird autoconfiguration](https://developer.mozilla.org/docs/Mozilla/Thunderbird/Autoconfiguration) – [Privacy policy](https://www.mozilla.org/privacy/) FairEmail **can access** the websites at the domain names of email addresses diff --git a/app/src/main/assets/PRIVACY.md b/app/src/main/assets/PRIVACY.md index 5676e81c94..3d455c2236 100644 --- a/app/src/main/assets/PRIVACY.md +++ b/app/src/main/assets/PRIVACY.md @@ -26,6 +26,7 @@ FairEmail **can use** these services if they are explicitly enabled (off by defa * [Gravatar](https://gravatar.com/) – [Privacy policy](https://automattic.com/privacy/) * [Spamhaus](https://www.spamhaus.org/) – [Privacy policy](https://www.spamhaus.org/organization/privacy/) * [Spamcop](https://www.spamcop.net/) – [Privacy policy](https://www.spamcop.net/fom-serve/cache/168.html) +* [Barracuda](https://www.barracudacentral.org/rbl/how-to-use) – [Privacy policy](https://www.barracuda.com/company/legal/trust-center/data-privacy/privacy-policy) * [Thunderbird autoconfiguration](https://developer.mozilla.org/docs/Mozilla/Thunderbird/Autoconfiguration) – [Privacy policy](https://www.mozilla.org/privacy/) FairEmail **can access** the websites at the domain names of email addresses diff --git a/app/src/main/java/eu/faircode/email/DnsBlockList.java b/app/src/main/java/eu/faircode/email/DnsBlockList.java index ddef98b448..ce1cb2a29c 100644 --- a/app/src/main/java/eu/faircode/email/DnsBlockList.java +++ b/app/src/main/java/eu/faircode/email/DnsBlockList.java @@ -67,11 +67,11 @@ public class DnsBlockList { new BlockList(true, "Spamcop", "bl.spamcop.net", true, new String[]{ // https://www.spamcop.net/fom-serve/cache/291.html "127.0.0.2", - }) + }), - //new BlockList(false, "Barracuda", "b.barracudacentral.org", true, new String[]{ - // // https://www.barracudacentral.org/rbl/how-to-use - //}) + new BlockList(false, "Barracuda", "b.barracudacentral.org", true, new String[]{ + // https://www.barracudacentral.org/rbl/how-to-use + }) )); private static final long CACHE_EXPIRY_AFTER = 3600 * 1000L; // milliseconds