[Desktop-packages] [Bug 1019259] Re: xdg-email fails to launch Thunderbird

2016-02-01 Thread Amr Ibrahim
*** This bug is a duplicate of bug 1540399 ***
https://bugs.launchpad.net/bugs/1540399

** This bug is no longer a duplicate of bug 515386
   No attachment when Thunderbird is set as default client.
** This bug has been marked a duplicate of bug 1540399
   Simple Scan do not attach files in Thunderbird

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

Title:
  xdg-email fails to launch Thunderbird

Status in Xdg-utils:
  Unknown
Status in xdg-utils package in Ubuntu:
  Confirmed

Bug description:
  When clicking "mailto:; links in Chromium, nothing happens. I have
  Googled around and found that Chromium uses xdg-email for these. I
  think the problems is the routine "desktop_file_to_binary" which
  returns empty because the grep for Exec finds three such lines in the
  file /usr/share/applications/thunderbird.desktop.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: xdg-utils 1.1.0~rc1-2ubuntu6
  ProcVersionSignature: Ubuntu 3.2.0-26.41-generic 3.2.19
  Uname: Linux 3.2.0-26-generic x86_64
  ApportVersion: 2.0.1-0ubuntu8
  Architecture: amd64
  Date: Fri Jun 29 13:10:56 2012
  Dependencies:
   
  InstallationMedia: Lubuntu 12.04 "Precise Pangolin" - Release amd64 (20120423)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_GB:en
   TERM=xterm
   PATH=(custom, user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: xdg-utils
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/xdg-utils/+bug/1019259/+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 1019259] Re: xdg-email fails to launch Thunderbird

2015-03-02 Thread Alexey Kotlyarov
*** This bug is a duplicate of bug 515386 ***
https://bugs.launchpad.net/bugs/515386

** Bug watch added: freedesktop.org Bugzilla #61475
   https://bugs.freedesktop.org/show_bug.cgi?id=61475

** Also affects: xdg-utils via
   https://bugs.freedesktop.org/show_bug.cgi?id=61475
   Importance: Unknown
   Status: Unknown

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

Title:
  xdg-email fails to launch Thunderbird

Status in Xdg-utils:
  Unknown
Status in xdg-utils package in Ubuntu:
  Confirmed

Bug description:
  When clicking mailto:; links in Chromium, nothing happens. I have
  Googled around and found that Chromium uses xdg-email for these. I
  think the problems is the routine desktop_file_to_binary which
  returns empty because the grep for Exec finds three such lines in the
  file /usr/share/applications/thunderbird.desktop.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: xdg-utils 1.1.0~rc1-2ubuntu6
  ProcVersionSignature: Ubuntu 3.2.0-26.41-generic 3.2.19
  Uname: Linux 3.2.0-26-generic x86_64
  ApportVersion: 2.0.1-0ubuntu8
  Architecture: amd64
  Date: Fri Jun 29 13:10:56 2012
  Dependencies:
   
  InstallationMedia: Lubuntu 12.04 Precise Pangolin - Release amd64 (20120423)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_GB:en
   TERM=xterm
   PATH=(custom, user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: xdg-utils
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/xdg-utils/+bug/1019259/+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 1019259] Re: xdg-email fails to launch Thunderbird

2015-01-01 Thread Thomas E. Horner
*** This bug is a duplicate of bug 515386 ***
https://bugs.launchpad.net/bugs/515386

i confirm that adding the patch sending email works again.
for readability i'd like to propose using | head -n 1, tough:

the first change makes sure that only the first occurrence of Exec in 
thunderbird's desktop file is considered: | head -n 1.
the second change is a fix for what is clearly a bug (having $browser instead 
of the correct variable $desktop).

diff -u org/xdg-email fixed/xdg-email
--- org/xdg-email 2014-07-16 11:43:48.0 +0200
+++ fixed/xdg-email 2014-12-30 17:44:27.990930489 +0100
@@ -321,7 +321,7 @@
 file=$dir/applications/$desktop
 [ -r $file ] || continue
 # Remove any arguments (%F, %f, %U, %u, etc.).
- command=`grep -E ^Exec(\[[^]=]*])?= $file | cut -d= -f 2- | sed -e 's/ 
.*$//'`
+ command=`grep -E ^Exec(\[[^]=]*])?= $file | cut -d= -f 2- | sed -e 's/ 
.*$//' | head -n 1`
 command=`which $command`
 readlink -f $command
 return
@@ -512,7 +512,7 @@
 local client
 local desktop
 desktop=`xdg-mime query default x-scheme-handler/mailto`
- client=`desktop_file_to_binary $browser`
+ client=`desktop_file_to_binary $desktop`
 echo $client | grep thunderbird  /dev/null 21
 if [ $? -eq 0 ] ; then
 run_thunderbird $client $1


** This bug has been marked a duplicate of bug 515386
   No attachment when Thunderbird is set as default client.

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

Title:
  xdg-email fails to launch Thunderbird

Status in xdg-utils package in Ubuntu:
  Confirmed

Bug description:
  When clicking mailto:; links in Chromium, nothing happens. I have
  Googled around and found that Chromium uses xdg-email for these. I
  think the problems is the routine desktop_file_to_binary which
  returns empty because the grep for Exec finds three such lines in the
  file /usr/share/applications/thunderbird.desktop.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: xdg-utils 1.1.0~rc1-2ubuntu6
  ProcVersionSignature: Ubuntu 3.2.0-26.41-generic 3.2.19
  Uname: Linux 3.2.0-26-generic x86_64
  ApportVersion: 2.0.1-0ubuntu8
  Architecture: amd64
  Date: Fri Jun 29 13:10:56 2012
  Dependencies:
   
  InstallationMedia: Lubuntu 12.04 Precise Pangolin - Release amd64 (20120423)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_GB:en
   TERM=xterm
   PATH=(custom, user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: xdg-utils
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xdg-utils/+bug/1019259/+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 1019259] Re: xdg-email fails to launch Thunderbird

2014-02-12 Thread Hans Burg
** Information type changed from Public to Public Security

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

Title:
  xdg-email fails to launch Thunderbird

Status in “xdg-utils” package in Ubuntu:
  Confirmed

Bug description:
  When clicking mailto:; links in Chromium, nothing happens. I have
  Googled around and found that Chromium uses xdg-email for these. I
  think the problems is the routine desktop_file_to_binary which
  returns empty because the grep for Exec finds three such lines in the
  file /usr/share/applications/thunderbird.desktop.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: xdg-utils 1.1.0~rc1-2ubuntu6
  ProcVersionSignature: Ubuntu 3.2.0-26.41-generic 3.2.19
  Uname: Linux 3.2.0-26-generic x86_64
  ApportVersion: 2.0.1-0ubuntu8
  Architecture: amd64
  Date: Fri Jun 29 13:10:56 2012
  Dependencies:
   
  InstallationMedia: Lubuntu 12.04 Precise Pangolin - Release amd64 (20120423)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_GB:en
   TERM=xterm
   PATH=(custom, user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: xdg-utils
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xdg-utils/+bug/1019259/+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 1019259] Re: xdg-email fails to launch Thunderbird

2012-12-11 Thread Ubuntu Foundations Team Bug Bot
The attachment xdg-email.patch of this bug report has been identified
as being a patch.  The ubuntu-reviewers team has been subscribed to the
bug report so that they can review the patch.  In the event that this is
in fact not a patch you can resolve this situation by removing the tag
'patch' from the bug report and editing the attachment so that it is not
flagged as a patch.  Additionally, if you are member of the ubuntu-
reviewers team please also unsubscribe the team from this bug report.

[This is an automated message performed by a Launchpad user owned by
Brian Murray.  Please contact him regarding any issues with the action
taken in this bug report.]

** Tags added: patch

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

Title:
  xdg-email fails to launch Thunderbird

Status in “xdg-utils” package in Ubuntu:
  Confirmed

Bug description:
  When clicking mailto:; links in Chromium, nothing happens. I have
  Googled around and found that Chromium uses xdg-email for these. I
  think the problems is the routine desktop_file_to_binary which
  returns empty because the grep for Exec finds three such lines in the
  file /usr/share/applications/thunderbird.desktop.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: xdg-utils 1.1.0~rc1-2ubuntu6
  ProcVersionSignature: Ubuntu 3.2.0-26.41-generic 3.2.19
  Uname: Linux 3.2.0-26-generic x86_64
  ApportVersion: 2.0.1-0ubuntu8
  Architecture: amd64
  Date: Fri Jun 29 13:10:56 2012
  Dependencies:
   
  InstallationMedia: Lubuntu 12.04 Precise Pangolin - Release amd64 (20120423)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_GB:en
   TERM=xterm
   PATH=(custom, user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: xdg-utils
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xdg-utils/+bug/1019259/+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 1019259] Re: xdg-email fails to launch Thunderbird

2012-12-10 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: xdg-utils (Ubuntu)
   Status: New = Confirmed

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

Title:
  xdg-email fails to launch Thunderbird

Status in “xdg-utils” package in Ubuntu:
  Confirmed

Bug description:
  When clicking mailto:; links in Chromium, nothing happens. I have
  Googled around and found that Chromium uses xdg-email for these. I
  think the problems is the routine desktop_file_to_binary which
  returns empty because the grep for Exec finds three such lines in the
  file /usr/share/applications/thunderbird.desktop.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: xdg-utils 1.1.0~rc1-2ubuntu6
  ProcVersionSignature: Ubuntu 3.2.0-26.41-generic 3.2.19
  Uname: Linux 3.2.0-26-generic x86_64
  ApportVersion: 2.0.1-0ubuntu8
  Architecture: amd64
  Date: Fri Jun 29 13:10:56 2012
  Dependencies:
   
  InstallationMedia: Lubuntu 12.04 Precise Pangolin - Release amd64 (20120423)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_GB:en
   TERM=xterm
   PATH=(custom, user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: xdg-utils
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xdg-utils/+bug/1019259/+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 1019259] Re: xdg-email fails to launch Thunderbird

2012-12-10 Thread Derek L
I also encountered this bug.  It affects any program that passes
attachments to Thunderbird (I hit it while using DarkTable 1.1 under
Ubuntu 12.10 Quantal Quetzal).   See attached patch for a simple fix.

Note that there is a newer version of xdg-utils included in Debian, but
it contains other bugs.

** Patch added: xdg-email.patch
   
https://bugs.launchpad.net/ubuntu/+source/xdg-utils/+bug/1019259/+attachment/3457022/+files/xdg-email.patch

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

Title:
  xdg-email fails to launch Thunderbird

Status in “xdg-utils” package in Ubuntu:
  Confirmed

Bug description:
  When clicking mailto:; links in Chromium, nothing happens. I have
  Googled around and found that Chromium uses xdg-email for these. I
  think the problems is the routine desktop_file_to_binary which
  returns empty because the grep for Exec finds three such lines in the
  file /usr/share/applications/thunderbird.desktop.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: xdg-utils 1.1.0~rc1-2ubuntu6
  ProcVersionSignature: Ubuntu 3.2.0-26.41-generic 3.2.19
  Uname: Linux 3.2.0-26-generic x86_64
  ApportVersion: 2.0.1-0ubuntu8
  Architecture: amd64
  Date: Fri Jun 29 13:10:56 2012
  Dependencies:
   
  InstallationMedia: Lubuntu 12.04 Precise Pangolin - Release amd64 (20120423)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_GB:en
   TERM=xterm
   PATH=(custom, user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: xdg-utils
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xdg-utils/+bug/1019259/+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