12

I don't know if I am the only one with this bug, but I can't use my MSN account with a freshly installed Ubuntu 11.10 with Empathy. It used to work with my Arch Linux, but now with Ubuntu, it continuously tries to connect but nothing happens.

How can I solve this problem?

Yi Jiang
  • 1,206
aliasbody
  • 1,021

4 Answers4

19

Without uninstalling anything, you can fix this by changing a line in the file /usr/share/pyshared/papyon/service/description/AB/__init__.py.

Edit it as root by running:

sudo -H gedit /usr/share/pyshared/papyon/service/description/AB/__init__.py

Change line 23 from this:

url = "http://contacts.msn.com/abservice/abservice.asmx"

To this:

url = "https://local-bay.contacts.msn.com/abservice/abservice.asmx"

Or to this:

url = "https://local-sn.contacts.msn.com/abservice/abservice.asmx"

Reboot and test it, it's working for me!

Eliah Kagan
  • 119,640
razor7
  • 1,589
2

Just open the terminal and enter this command:

sudo apt-get install msn-pecan

Then after it finishes installing, choose msn-pecan for your email instead of MSN messenger and it will work.

jokerdino
  • 41,732
2
sudo apt-get remove telepathy-butterfly

Remove your MSN account and add it again, it worked for me.

Yi Jiang
  • 1,206
Mazen
  • 21
1

This happened on my PC at the weekend. I disabled the account, waited 10 seconds and then re-enabled the account. MSN network connected straight away.

Phil Hannent
  • 1,595