add two more ft proxies until we get to autodiscover if the server we have the JID on, has support and we prio on that
This commit is contained in:
parent
223a2627b5
commit
599e8d15a4
|
@ -184,7 +184,7 @@ class Config:
|
|||
'http_auth': [opt_str, 'ask'], # yes, no, ask
|
||||
# proxy65 for FT
|
||||
'file_transfer_proxies': [opt_str,
|
||||
'proxy.jabber.org, proxy65.jabber.autocom.pl, proxy.jabber.cd.chalmers.se, proxy.netlab.cz']
|
||||
'proxy.jabber.org, proxy65.jabber.autocom.pl, proxy.jabber.cd.chalmers.se, proxy.netlab.cz', 'proxy65.jabber.ccc.de','proxy65.unstable.nl']
|
||||
}, {}),
|
||||
'statusmsg': ({
|
||||
'message': [ opt_str, '' ],
|
||||
|
@ -338,7 +338,8 @@ class Config:
|
|||
'proxy65.jabber.autocom.pl': ['213.134.161.52', '7777', 'proxy65.jabber.autocom.pl'],
|
||||
'proxy.jabber.cd.chalmers.se': ['129.16.79.37', '7777', 'proxy.jabber.cd.chalmers.se'],
|
||||
'proxy.netlab.cz': ['82.119.241.3', '7777', 'proxy.netlab.cz'],
|
||||
'proxy65.unstable.nl': ['84.107.143.192', '7777', 'proxy65.unstable.nl']
|
||||
'proxy65.jabber.ccc.de': ['217.10.10.196', '7777', 'proxy65.jabber.ccc.de'],
|
||||
'proxy65.unstable.nl': ['84.107.143.192', '7777', 'proxy65.unstable.nl'],
|
||||
}
|
||||
|
||||
def foreach(self, cb, data = None):
|
||||
|
|
|
@ -108,8 +108,7 @@ def reduce_chars_newlines(text, max_chars = 0, max_lines = 0,
|
|||
and show only the first 'max_lines'. If there is more text
|
||||
to be shown, display the whole text in tooltip on 'widget'
|
||||
If any of the params is not present(None or 0) the action
|
||||
on it is not performed
|
||||
'''
|
||||
on it is not performed'''
|
||||
text = text
|
||||
|
||||
def _cut_if_long(str):
|
||||
|
|
|
@ -207,9 +207,7 @@ class SignalObject(DbusPrototype):
|
|||
if not jid:
|
||||
# FIXME: raise exception for missing argument (dbus0.35+)
|
||||
return None
|
||||
if jid.startswith('xmpp://'):
|
||||
jid = jid[7:] # len('xmpp://') = 7
|
||||
elif jid.startswith('xmpp:'):
|
||||
if jid.startswith('xmpp:'):
|
||||
jid = jid[5:] # len('xmpp:') = 5
|
||||
|
||||
if account:
|
||||
|
|
Loading…
Reference in New Issue