Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2015-08-20 16:08:53 +0300
committerYann Leboulanger <asterix@lagaule.org>2015-08-20 16:08:53 +0300
commita44a71d6a5f5c550be3512c6252043029b25914c (patch)
tree11c9a2ac3a945d7bc6d6a3b4cd3b63e4493de712 /src
parent190b1b7886df90d57538775fbae2aca5ba70027c (diff)
add option to en(dis)able XEP-0136/0313. Fixes #8127
Diffstat (limited to 'src')
-rw-r--r--src/common/config.py1
-rw-r--r--src/config.py8
-rw-r--r--src/gui_interface.py6
3 files changed, 13 insertions, 2 deletions
diff --git a/src/common/config.py b/src/common/config.py
index f9670f912..4d6ad1de5 100644
--- a/src/common/config.py
+++ b/src/common/config.py
@@ -363,6 +363,7 @@ class Config:
'custom_host': [ opt_str, '', '', True ],
'sync_with_global_status': [ opt_bool, False, ],
'no_log_for': [ opt_str, '', _('Space separated list of JIDs for which you do not want to store logs. You can also add account name to log nothing for this account.')],
+ 'sync_logs_with_server': [ opt_bool, True, _('Download logs stored on server on Gajim startup if server supports XEP-0136 or XEP-0313')],
'allow_no_log_for': [ opt_str, '', _('Space separated list of JIDs for which you accept to not log conversations if he does not want to.')],
'minimized_gc': [ opt_str, '' ],
'attached_gpg_keys': [ opt_str, '' ],
diff --git a/src/config.py b/src/config.py
index 580ca864c..bc8883421 100644
--- a/src/config.py
+++ b/src/config.py
@@ -1990,6 +1990,8 @@ class AccountsWindow:
else:
self.xml.get_object('log_history_checkbutton1').set_active(True)
+ self.xml.get_object('sync_logs_with_server_checkbutton1').set_active(
+ gajim.config.get_per('accounts', account, 'sync_logs_with_server'))
self.xml.get_object('sync_with_global_status_checkbutton1').set_active(
gajim.config.get_per('accounts', account,
'sync_with_global_status'))
@@ -2343,6 +2345,12 @@ class AccountsWindow:
gajim.config.set_per('accounts', self.current_account, 'no_log_for',
' '.join(list_no_log_for))
+ def on_sync_logs_with_server_checkbutton_toggled(self, widget):
+ if self.ignore_events:
+ return
+ self.on_checkbutton_toggled(widget, 'sync_logs_with_server',
+ account=self.current_account)
+
def on_sync_with_global_status_checkbutton_toggled(self, widget):
if self.ignore_events:
return
diff --git a/src/gui_interface.py b/src/gui_interface.py
index 723437943..c5cbe565d 100644
--- a/src/gui_interface.py
+++ b/src/gui_interface.py
@@ -1139,13 +1139,15 @@ class Interface:
# Else disable autoaway
gajim.sleeper_state[account] = 'off'
- if obj.conn.archiving_136_supported:
+ if obj.conn.archiving_136_supported and gajim.config.get_per('accounts',
+ account, 'sync_logs_with_server'):
# Start merging logs from server
obj.conn.request_modifications_page(gajim.config.get_per('accounts',
account, 'last_archiving_time'))
gajim.config.set_per('accounts', account, 'last_archiving_time',
time.strftime('%Y-%m-%dT%H:%M:%SZ', time.gmtime()))
- if obj.conn.archiving_313_supported:
+ if obj.conn.archiving_313_supported and gajim.config.get_per('accounts',
+ account, 'sync_logs_with_server'):
mam_id = gajim.config.get_per('accounts', account, 'last_mam_id')
if mam_id:
obj.conn.request_archive(after=mam_id)