7

I am using ubuntu 15.04 and chrome. When i click on any html link with mailto protocol e.g.

<a href="mailto:myemail@example.com">Click to send me email!</a>

It opens my default email application (thunderbird) but populate address field with wrong address. It prepends /// to email address. So in above case, recipient will looks like this

///myemail@example.com

instead of

myemail@example.com

Same issue is with skype urls. i.e.

<a href="skype:myusername?chat">Click to chat with me!</a>

It will open skype window with wrong user by prepending slash (/) same happen as with email address.

Any help in this regard will be appreciated.

Shahzad Tariq
  • 2,767
  • 1
  • 22
  • 31

2 Answers2

1

There is issue of gvfs package on ubuntu 15.04 which is responsible for opening files or performing actions using default program.

gvfs package opens mailto with wrong address. Remove this package

sudo apt-get purge gvfs

And, It will work fine, for both mailto and skype.

Shahzad Tariq
  • 2,767
  • 1
  • 22
  • 31
Sarwan Kumar
  • 1,283
  • 9
  • 24
0

By purging gvfs, many programs starts to misbehave. It also made file explorer and desktop files inaccessible.

This is known issue in ubuntu 15.04 and hopefully solved in next stable release.

Shahzad Tariq
  • 2,767
  • 1
  • 22
  • 31