[tor-commits] [torbirdy/master] Use onion service addresses for Riseup and systemli.org accounts

sukhbir at torproject.org sukhbir at torproject.org
Sat Oct 6 15:31:28 UTC 2018


commit 1d06f439ed738ac29e57d25408a54a0bfcfd5341
Author: Sukhbir Singh <sukhbir at torproject.org>
Date:   Sat Oct 6 11:24:30 2018 -0400

    Use onion service addresses for Riseup and systemli.org accounts
---
 chrome/content/emailwizard.js | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/chrome/content/emailwizard.js b/chrome/content/emailwizard.js
index febc4d2..8e2deea 100644
--- a/chrome/content/emailwizard.js
+++ b/chrome/content/emailwizard.js
@@ -102,13 +102,15 @@ if(!org.torbirdy.emailwizard) org.torbirdy.emailwizard = new function() {
           // Gmail uses OAuth2, which we deal with later.
           pub.isGmail = true;
           break;
+        // From https://riseup.net/security/network-security/tor/hs-addresses-signed.txt
         case "riseup.net":
-          config.incoming.hostname = "mail.%EMAILDOMAIN%";
-          config.outgoing.hostname = "mail.%EMAILDOMAIN%";
+          config.incoming.hostname = "5gdvpfoh6kb2iqbizb37lzk2ddzrwa47m6rpdueg2m656fovmbhoptqd.onion";
+          config.outgoing.hostname = "5gdvpfoh6kb2iqbizb37lzk2ddzrwa47m6rpdueg2m656fovmbhoptqd.onion";
           break;
+        // From https://www.systemli.org/en/service/mail.html
         case "systemli.org":
-          config.incoming.hostname = "mail.%EMAILDOMAIN%";
-          config.outgoing.hostname = "mail.%EMAILDOMAIN%";
+          config.incoming.hostname = "h2qkxasmmqdmyiov.onion";
+          config.outgoing.hostname = "h2qkxasmmqdmyiov.onion";
           break;
       }
 





More information about the tor-commits mailing list