make esession autonegotiation option per-account and per-jid
This commit is contained in:
parent
a3d0166f1d
commit
90098b1e34
|
@ -1135,6 +1135,9 @@ class ChatControl(ChatControlBase):
|
|||
self.gpg_is_active = False
|
||||
gpg_pref = gajim.config.get_per('contacts', contact.jid,
|
||||
'gpg_enabled')
|
||||
e2e_pref = gajim.config.get_per('accounts', self.account,
|
||||
'autonegotiate_esessions') and gajim.config.get_per('contacts',
|
||||
contact.jid, 'autonegotiate_esessions')
|
||||
|
||||
# try GPG first
|
||||
if not e2e_is_active and gpg_pref and \
|
||||
|
@ -1155,8 +1158,7 @@ class ChatControl(ChatControlBase):
|
|||
self.session and self.session.is_loggable(), True)
|
||||
# then try E2E
|
||||
# XXX: Once we have fallback to disco, remove notexistant check
|
||||
elif not e2e_is_active and gajim.HAVE_PYCRYPTO \
|
||||
and gajim.config.get('autonegotiate_esessions') \
|
||||
elif not e2e_is_active and gajim.HAVE_PYCRYPTO and e2e_pref \
|
||||
and gajim.capscache.is_supported(contact, NS_ESESSION) \
|
||||
and not gajim.capscache.is_supported(contact, 'notexistant'):
|
||||
self.begin_e2e_negotiation()
|
||||
|
|
|
@ -191,7 +191,6 @@ class Config:
|
|||
'tabs_border': [opt_bool, False, _('Show tabbed notebook border in chat windows?')],
|
||||
'tabs_close_button': [opt_bool, True, _('Show close button in tab?')],
|
||||
'log_encrypted_sessions': [opt_bool, True, _('When negotiating an encrypted session, should Gajim assume you want your messages to be logged?')],
|
||||
'autonegotiate_esessions': [opt_bool, True, _('Should Gajim automatically start an encrypted session when possible?')],
|
||||
'esession_modp': [opt_str, '5,14', _('A list of modp groups to use in a Diffie-Hellman, highest preference first, separated by commas. Valid groups are 1, 2, 5, 14, 15, 16, 17 and 18. Higher numbers are more secure, but take longer to calculate when you start a session.')],
|
||||
'chat_avatar_width': [opt_int, 52],
|
||||
'chat_avatar_height': [opt_int, 52],
|
||||
|
@ -277,6 +276,7 @@ class Config:
|
|||
'keyid': [ opt_str, '', '', True ],
|
||||
'gpg_sign_presence': [ opt_bool, True, _('If disabled, don\'t sign presences with GPG key, even if GPG is configured.') ],
|
||||
'keyname': [ opt_str, '', '', True ],
|
||||
'autonegotiate_esessions': [opt_bool, True, _('Should Gajim automatically start an encrypted session when possible?')],
|
||||
'connection_types': [ opt_str, 'tls ssl plain', _('Ordered list (space separated) of connection type to try. Can contain tls, ssl or plain')],
|
||||
'warn_when_plaintext_connection': [ opt_bool, True, _('Show a warning dialog before sending password on an plaintext connection.') ],
|
||||
'warn_when_insecure_ssl_connection': [ opt_bool, True, _('Show a warning dialog before using standard SSL library.') ],
|
||||
|
@ -374,6 +374,7 @@ class Config:
|
|||
}, {}),
|
||||
'contacts': ({
|
||||
'gpg_enabled': [ opt_bool, False, _('Is OpenPGP enabled for this contact?')],
|
||||
'autonegotiate_esessions': [opt_bool, True, _('Should Gajim automatically start an encrypted session with this contact when possible?')],
|
||||
'speller_language': [ opt_str, '', _('Language for which we want to check misspelled words')],
|
||||
}, {}),
|
||||
'rooms': ({
|
||||
|
|
Loading…
Reference in New Issue