[Desktop-packages] [Bug 893031] Re: Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

2021-10-13 Thread Steve Langasek
The Precise Pangolin has reached end of life, so this bug will not be
fixed for that release

** Changed in: telepathy-gabble (Ubuntu Precise)
   Status: Confirmed => Won't Fix

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libproxy in Ubuntu.
https://bugs.launchpad.net/bugs/893031

Title:
  Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

Status in telepathy-gabble:
  Unknown
Status in libproxy package in Ubuntu:
  Fix Released
Status in telepathy-gabble package in Ubuntu:
  Fix Released
Status in libproxy source package in Precise:
  Fix Released
Status in telepathy-gabble source package in Precise:
  Won't Fix

Bug description:
  Empathy is unable to connect behind the proxy servers whatever way we try. It 
doesn't utilize the proxy settings given globally to the system. There is no 
proxy option in the program also. I tried connecting to empathy from Ubuntu 
11.10 in three systems behind a proxy server and in all cases it failed.
  I tried all of the following but none worked:

  1. Changing settings with gconf-editor ( Walk down the tree to system -> 
http_proxy . Search for use_http_proxy and check it. )
  Even after doing that there is no change in behaviour of empathy
  2. gksudo gedit /etc/bash.bashrc
  export http_proxy=http://proxyhost:port/
  export ftp_proxy=http://proxyhost:port/
  save and exit
  This also didnt help anything
  3. Using tsocks and editing its config files also.
  In that case the result was:
  "tsocks dbus-launch  empathy" fails to retrieve the accounts list.
  "tsocks empathy" launches empathy, but it is unable to connect..

  Please generate a patch for this problem and release new version of
  the program.

To manage notifications about this bug go to:
https://bugs.launchpad.net/telepathy-gabble/+bug/893031/+subscriptions


-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 893031] Re: Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

2019-12-04 Thread Bug Watch Updater
Launchpad has imported 9 comments from the remote bug at
https://bugs.freedesktop.org/show_bug.cgi?id=47960.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2012-03-27T12:39:23+00:00 Ken VanDine wrote:

Created attachment 59127
WOCKY_DEBUG=xmpp with contact info stripped out

In my test scenario, I have a local squid proxy properly configured to
handle HTTP CONNECT, tested with pidgin and it works.  MS Live accounts
works as well using telepathy-haze.  However attempting to connect to
gtalk or jabber.org accounts, according to the squid access log, never
attempts to connect to the configured proxy.


Downstream bug report: 
https://bugs.launchpad.net/ubuntu/precise/+source/telepathy-gabble/+bug/893031

Reply at:
https://bugs.launchpad.net/ubuntu/+source/libproxy/+bug/893031/comments/18


On 2012-03-28T08:01:24+00:00 Nicilas wrote:

Can you provide your system configuration, and the returned
configuration as seen by libproxy:

proxy xmpp-client://myserfer
proxy https://myserfer

HTTP Connect for bare jabber is currently not supported by libproxy (not
support fro any non https:// protocols). Also, be aware that Pidgin
erroneously reads the HTTP_PROXY rather then SECURE_PROXY gnome setting
for doing HTTP Connect.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/libproxy/+bug/893031/comments/20


On 2012-03-28T11:59:38+00:00 Ken VanDine wrote:

proxy xmpp-client://myserfer
direct://
proxy https://myserfer
http://localhost:3128

Looking through the gabble source, I don't see anywhere that it uses
libproxy, not even an includes for proxy.h.  How does it interact with
libproxy?

Previously it had been suggested that it wasn't working because our
version of libproxy in Ubuntu was too old, 0.3.x.  We now have the
0.4.7, the latest and it still doesn't work.

So this isn't a bug so much as it is not supported yet?

Reply at:
https://bugs.launchpad.net/ubuntu/+source/libproxy/+bug/893031/comments/21


On 2012-03-28T12:30:14+00:00 Nicilas wrote:

(In reply to comment #2)
> proxy xmpp-client://myserfer
> direct://
> proxy https://myserfer
> http://localhost:3128
> 
> Looking through the gabble source, I don't see anywhere that it uses libproxy,
> not even an includes for proxy.h.  How does it interact with libproxy?
> 
> Previously it had been suggested that it wasn't working because our version of
> libproxy in Ubuntu was too old, 0.3.x.  We now have the 0.4.7, the latest and
> it still doesn't work.
> 
> So this isn't a bug so much as it is not supported yet?

Gabble uses a library called Wocky which is base on GIO. And GIO has a
libproxy and gnome plugin. I usually suggest using libproxy for distro
that can run both KDE and Gnome on the same install, the Gnome plugin
ignores the environment.

Currently the support for HTTP Connect is very restricted because the
GIO developers did not agree it was a correct way of doing generic
socket proxying. Here is how you can make it work. First thing to know
is that wocky will do HTTP Connect only when you are running in Old SSL
mode. Which mean the first thing you do is an TLS handshake (so it
cannot be differentiated from a HTTPS connection). Then you need a
correct configuration, which you have.

If you are using a google account configured with older version of Empathy, I 
suggest to remove it and re-create it. This will add the fallback-servers 
parameter to your account. Note that HTTP Connect is never the first, so 
connection may take a little while depending on how fat the other attempts 
fails. You can check the params using mc-tool show ... Here's what you should 
see:
(GStrv) fallback-servers = ["talkx.l.google.com", 
"talkx.l.google.com:443,oldssl", "talkx.l.google.com:80"]

Unless someone broke the fallbacks, wocky will try the server
talk.google.com (use to do SRV, but was changed recently). In case of
failure, it will fallback to talkx.l.google.com using normal TLS, if it
fails again, it will try talkx.l.google.com:443 using OLD SSL mode, and
if that still fails it will try cleartext on port 80 (I think this one
always fails these days, not sure).

In the future, libproxy should try HTTP Connect for any type of
connection, and have a direct fallback, but that couldn't be done
without changing libproxy internals a lot. Also, the HTTP Connect GLIB
plugin should be provided by libsoup. Feel free to contribute if you
have time.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/libproxy/+bug/893031/comments/22


On 

[Desktop-packages] [Bug 893031] Re: Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

2013-05-15 Thread OrlandoSaavedra
I'm running 13.04 (upgrading since 12.04) , bug still exists

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to telepathy-gabble in Ubuntu.
https://bugs.launchpad.net/bugs/893031

Title:
  Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

Status in Jabber/XMPP connection manager:
  Unknown
Status in “libproxy” package in Ubuntu:
  Fix Released
Status in “telepathy-gabble” package in Ubuntu:
  Fix Released
Status in “libproxy” source package in Precise:
  Fix Released
Status in “telepathy-gabble” source package in Precise:
  Confirmed

Bug description:
  Empathy is unable to connect behind the proxy servers whatever way we try. It 
doesn't utilize the proxy settings given globally to the system. There is no 
proxy option in the program also. I tried connecting to empathy from Ubuntu 
11.10 in three systems behind a proxy server and in all cases it failed.
  I tried all of the following but none worked:

  1. Changing settings with gconf-editor ( Walk down the tree to system - 
http_proxy . Search for use_http_proxy and check it. )
  Even after doing that there is no change in behaviour of empathy
  2. gksudo gedit /etc/bash.bashrc
  export http_proxy=http://proxyhost:port/
  export ftp_proxy=http://proxyhost:port/
  save and exit
  This also didnt help anything
  3. Using tsocks and editing its config files also.
  In that case the result was:
  tsocks dbus-launch  empathy fails to retrieve the accounts list.
  tsocks empathy launches empathy, but it is unable to connect..

  Please generate a patch for this problem and release new version of
  the program.

To manage notifications about this bug go to:
https://bugs.launchpad.net/telepathy-gabble/+bug/893031/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 893031] Re: Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

2013-05-06 Thread Rui Cunha
I'm still having that problem since 12.04, currently on 13.04.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to telepathy-gabble in Ubuntu.
https://bugs.launchpad.net/bugs/893031

Title:
  Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

Status in Jabber/XMPP connection manager:
  Unknown
Status in “libproxy” package in Ubuntu:
  Fix Released
Status in “telepathy-gabble” package in Ubuntu:
  Fix Released
Status in “libproxy” source package in Precise:
  Fix Released
Status in “telepathy-gabble” source package in Precise:
  Confirmed

Bug description:
  Empathy is unable to connect behind the proxy servers whatever way we try. It 
doesn't utilize the proxy settings given globally to the system. There is no 
proxy option in the program also. I tried connecting to empathy from Ubuntu 
11.10 in three systems behind a proxy server and in all cases it failed.
  I tried all of the following but none worked:

  1. Changing settings with gconf-editor ( Walk down the tree to system - 
http_proxy . Search for use_http_proxy and check it. )
  Even after doing that there is no change in behaviour of empathy
  2. gksudo gedit /etc/bash.bashrc
  export http_proxy=http://proxyhost:port/
  export ftp_proxy=http://proxyhost:port/
  save and exit
  This also didnt help anything
  3. Using tsocks and editing its config files also.
  In that case the result was:
  tsocks dbus-launch  empathy fails to retrieve the accounts list.
  tsocks empathy launches empathy, but it is unable to connect..

  Please generate a patch for this problem and release new version of
  the program.

To manage notifications about this bug go to:
https://bugs.launchpad.net/telepathy-gabble/+bug/893031/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 893031] Re: Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

2013-04-25 Thread Dan Jared
the bug affect the 13.04 version

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to telepathy-gabble in Ubuntu.
https://bugs.launchpad.net/bugs/893031

Title:
  Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

Status in Jabber/XMPP connection manager:
  Unknown
Status in “libproxy” package in Ubuntu:
  Fix Released
Status in “telepathy-gabble” package in Ubuntu:
  Fix Released
Status in “libproxy” source package in Precise:
  Fix Released
Status in “telepathy-gabble” source package in Precise:
  Confirmed

Bug description:
  Empathy is unable to connect behind the proxy servers whatever way we try. It 
doesn't utilize the proxy settings given globally to the system. There is no 
proxy option in the program also. I tried connecting to empathy from Ubuntu 
11.10 in three systems behind a proxy server and in all cases it failed.
  I tried all of the following but none worked:

  1. Changing settings with gconf-editor ( Walk down the tree to system - 
http_proxy . Search for use_http_proxy and check it. )
  Even after doing that there is no change in behaviour of empathy
  2. gksudo gedit /etc/bash.bashrc
  export http_proxy=http://proxyhost:port/
  export ftp_proxy=http://proxyhost:port/
  save and exit
  This also didnt help anything
  3. Using tsocks and editing its config files also.
  In that case the result was:
  tsocks dbus-launch  empathy fails to retrieve the accounts list.
  tsocks empathy launches empathy, but it is unable to connect..

  Please generate a patch for this problem and release new version of
  the program.

To manage notifications about this bug go to:
https://bugs.launchpad.net/telepathy-gabble/+bug/893031/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 893031] Re: Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

2013-04-24 Thread Nicolas Michel
I'm so surprised that nobody from the UBUNTU team can't take care of this 
problem which is:
- old
- confirmed
- should be a staple feature of any OS

Probably that you are busy working on mobile features that nobody use?

I'm sorry, I love free softwares, but sometimes, it is really frustrating.
Nicolas

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to telepathy-gabble in Ubuntu.
https://bugs.launchpad.net/bugs/893031

Title:
  Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

Status in Jabber/XMPP connection manager:
  Unknown
Status in “libproxy” package in Ubuntu:
  Fix Released
Status in “telepathy-gabble” package in Ubuntu:
  Confirmed
Status in “libproxy” source package in Precise:
  Fix Released
Status in “telepathy-gabble” source package in Precise:
  Confirmed

Bug description:
  Empathy is unable to connect behind the proxy servers whatever way we try. It 
doesn't utilize the proxy settings given globally to the system. There is no 
proxy option in the program also. I tried connecting to empathy from Ubuntu 
11.10 in three systems behind a proxy server and in all cases it failed.
  I tried all of the following but none worked:

  1. Changing settings with gconf-editor ( Walk down the tree to system - 
http_proxy . Search for use_http_proxy and check it. )
  Even after doing that there is no change in behaviour of empathy
  2. gksudo gedit /etc/bash.bashrc
  export http_proxy=http://proxyhost:port/
  export ftp_proxy=http://proxyhost:port/
  save and exit
  This also didnt help anything
  3. Using tsocks and editing its config files also.
  In that case the result was:
  tsocks dbus-launch  empathy fails to retrieve the accounts list.
  tsocks empathy launches empathy, but it is unable to connect..

  Please generate a patch for this problem and release new version of
  the program.

To manage notifications about this bug go to:
https://bugs.launchpad.net/telepathy-gabble/+bug/893031/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 893031] Re: Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

2013-04-24 Thread Nithin C
Dear Nicholas,

  I had this problem in Ubuntu 11.10 but it is no longer there in
Ubuntu 12.10 or 13.04 (beta 2). I am able to connect all programs via
proxy. I think the fix was committed almost one year back.

Nithin C

** Changed in: telepathy-gabble (Ubuntu)
   Status: Confirmed = Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to telepathy-gabble in Ubuntu.
https://bugs.launchpad.net/bugs/893031

Title:
  Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

Status in Jabber/XMPP connection manager:
  Unknown
Status in “libproxy” package in Ubuntu:
  Fix Released
Status in “telepathy-gabble” package in Ubuntu:
  Fix Released
Status in “libproxy” source package in Precise:
  Fix Released
Status in “telepathy-gabble” source package in Precise:
  Confirmed

Bug description:
  Empathy is unable to connect behind the proxy servers whatever way we try. It 
doesn't utilize the proxy settings given globally to the system. There is no 
proxy option in the program also. I tried connecting to empathy from Ubuntu 
11.10 in three systems behind a proxy server and in all cases it failed.
  I tried all of the following but none worked:

  1. Changing settings with gconf-editor ( Walk down the tree to system - 
http_proxy . Search for use_http_proxy and check it. )
  Even after doing that there is no change in behaviour of empathy
  2. gksudo gedit /etc/bash.bashrc
  export http_proxy=http://proxyhost:port/
  export ftp_proxy=http://proxyhost:port/
  save and exit
  This also didnt help anything
  3. Using tsocks and editing its config files also.
  In that case the result was:
  tsocks dbus-launch  empathy fails to retrieve the accounts list.
  tsocks empathy launches empathy, but it is unable to connect..

  Please generate a patch for this problem and release new version of
  the program.

To manage notifications about this bug go to:
https://bugs.launchpad.net/telepathy-gabble/+bug/893031/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 893031] Re: Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

2013-01-21 Thread david.barbion
Same here. I've configured all envionment variables and nothing works...
Env vars are http_proxy https_proxy and ftp_proxy.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to telepathy-gabble in Ubuntu.
https://bugs.launchpad.net/bugs/893031

Title:
  Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

Status in Jabber/XMPP connection manager:
  Unknown
Status in “libproxy” package in Ubuntu:
  Fix Released
Status in “telepathy-gabble” package in Ubuntu:
  Confirmed
Status in “libproxy” source package in Precise:
  Fix Released
Status in “telepathy-gabble” source package in Precise:
  Confirmed

Bug description:
  Empathy is unable to connect behind the proxy servers whatever way we try. It 
doesn't utilize the proxy settings given globally to the system. There is no 
proxy option in the program also. I tried connecting to empathy from Ubuntu 
11.10 in three systems behind a proxy server and in all cases it failed.
  I tried all of the following but none worked:

  1. Changing settings with gconf-editor ( Walk down the tree to system - 
http_proxy . Search for use_http_proxy and check it. )
  Even after doing that there is no change in behaviour of empathy
  2. gksudo gedit /etc/bash.bashrc
  export http_proxy=http://proxyhost:port/
  export ftp_proxy=http://proxyhost:port/
  save and exit
  This also didnt help anything
  3. Using tsocks and editing its config files also.
  In that case the result was:
  tsocks dbus-launch  empathy fails to retrieve the accounts list.
  tsocks empathy launches empathy, but it is unable to connect..

  Please generate a patch for this problem and release new version of
  the program.

To manage notifications about this bug go to:
https://bugs.launchpad.net/telepathy-gabble/+bug/893031/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 893031] Re: Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

2013-01-21 Thread Nithin C
I can actually connect to chat accounts in Ubuntu 12.10 via Pidgin. I am using 
the settings described here. 
http://nithinaneeshsct06bt.blogspot.in/2012/12/facebook-and-gtalk-via-pidgin-in-ubuntu.html
I didn't try with empathy but it works fine with Pidgin.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to telepathy-gabble in Ubuntu.
https://bugs.launchpad.net/bugs/893031

Title:
  Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

Status in Jabber/XMPP connection manager:
  Unknown
Status in “libproxy” package in Ubuntu:
  Fix Released
Status in “telepathy-gabble” package in Ubuntu:
  Confirmed
Status in “libproxy” source package in Precise:
  Fix Released
Status in “telepathy-gabble” source package in Precise:
  Confirmed

Bug description:
  Empathy is unable to connect behind the proxy servers whatever way we try. It 
doesn't utilize the proxy settings given globally to the system. There is no 
proxy option in the program also. I tried connecting to empathy from Ubuntu 
11.10 in three systems behind a proxy server and in all cases it failed.
  I tried all of the following but none worked:

  1. Changing settings with gconf-editor ( Walk down the tree to system - 
http_proxy . Search for use_http_proxy and check it. )
  Even after doing that there is no change in behaviour of empathy
  2. gksudo gedit /etc/bash.bashrc
  export http_proxy=http://proxyhost:port/
  export ftp_proxy=http://proxyhost:port/
  save and exit
  This also didnt help anything
  3. Using tsocks and editing its config files also.
  In that case the result was:
  tsocks dbus-launch  empathy fails to retrieve the accounts list.
  tsocks empathy launches empathy, but it is unable to connect..

  Please generate a patch for this problem and release new version of
  the program.

To manage notifications about this bug go to:
https://bugs.launchpad.net/telepathy-gabble/+bug/893031/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 893031] Re: Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

2013-01-15 Thread Dirley Rodrigues
** Summary changed:

- Empathy is not working behind the proxy servers in Ubuntu 11.10
+ Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to telepathy-gabble in Ubuntu.
https://bugs.launchpad.net/bugs/893031

Title:
  Empathy is not working behind the proxy servers SINCE Ubuntu 11.10

Status in Jabber/XMPP connection manager:
  Unknown
Status in “libproxy” package in Ubuntu:
  Fix Released
Status in “telepathy-gabble” package in Ubuntu:
  Confirmed
Status in “libproxy” source package in Precise:
  Fix Released
Status in “telepathy-gabble” source package in Precise:
  Confirmed

Bug description:
  Empathy is unable to connect behind the proxy servers whatever way we try. It 
doesn't utilize the proxy settings given globally to the system. There is no 
proxy option in the program also. I tried connecting to empathy from Ubuntu 
11.10 in three systems behind a proxy server and in all cases it failed.
  I tried all of the following but none worked:

  1. Changing settings with gconf-editor ( Walk down the tree to system - 
http_proxy . Search for use_http_proxy and check it. )
  Even after doing that there is no change in behaviour of empathy
  2. gksudo gedit /etc/bash.bashrc
  export http_proxy=http://proxyhost:port/
  export ftp_proxy=http://proxyhost:port/
  save and exit
  This also didnt help anything
  3. Using tsocks and editing its config files also.
  In that case the result was:
  tsocks dbus-launch  empathy fails to retrieve the accounts list.
  tsocks empathy launches empathy, but it is unable to connect..

  Please generate a patch for this problem and release new version of
  the program.

To manage notifications about this bug go to:
https://bugs.launchpad.net/telepathy-gabble/+bug/893031/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp