From b28b3d4ed30b0805e8f390b405e0f7cb46e099e3 Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Mon, 14 Nov 2011 18:44:17 +0100
Subject: [PATCH] add a Tor proxy in default configuration when Gajim starts.
 Fixes #7026

---
 src/common/config.py |  4 ++++
 src/gui_interface.py | 12 ++++++++++++
 2 files changed, 16 insertions(+)

diff --git a/src/common/config.py b/src/common/config.py
index 97724f9ea3..75cc1a13d3 100644
--- a/src/common/config.py
+++ b/src/common/config.py
@@ -519,6 +519,10 @@ class Config:
 
     }
 
+    proxies_default = {
+        _('Tor'): ['socks5', 'localhost', 9050],
+    }
+
     def foreach(self, cb, data = None):
         for opt in self.__options:
             cb(data, opt, None, self.__options[opt])
diff --git a/src/gui_interface.py b/src/gui_interface.py
index fb2b7a5977..fb2c34f916 100644
--- a/src/gui_interface.py
+++ b/src/gui_interface.py
@@ -2651,6 +2651,18 @@ class Interface:
                 for o in d:
                     gajim.config.set_per('themes', theme_name, o,
                         theme[d.index(o)])
+        # Add Tor proxy if there is not in the config
+        if len(gajim.config.get_per('proxies')) == 0:
+            default = gajim.config.proxies_default
+            for proxy in default:
+                gajim.config.add_per('proxies', proxy)
+                gajim.config.set_per('proxies', proxy, 'type',
+                    default[proxy][0])
+                gajim.config.set_per('proxies', proxy, 'host',
+                    default[proxy][1])
+                gajim.config.set_per('proxies', proxy, 'port',
+                    default[proxy][2])
+
 
         gajim.idlequeue = idlequeue.get_idlequeue()
         # resolve and keep current record of resolved hosts
-- 
GitLab