[Desktop-packages] [Bug 515386] Re: No attachment when Thunderbird is set as default client.

2016-01-18 Thread Thomas E. Horner
Updated fix for 15.10

--- xdg-email.old   2015-09-16 22:36:49.0 +0200
+++ xdg-email.new   2016-01-18 16:38:29.755859228 +0100
@@ -225,7 +225,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" | head -n 1 | cut -d= 
-f 2- | sed -e 's/ .*$//'`"
 command="`which "$command"`"
 readlink -f "$command"
 return
@@ -648,7 +648,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 2>&1
 if [ $? -eq 0 ] ; then
 run_thunderbird "$client" "$1"

-- 
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/515386

Title:
  No attachment when Thunderbird is set as default client.

Status in Mozilla Thunderbird:
  New
Status in Xdg-utils:
  New
Status in xdg-utils package in Ubuntu:
  Fix Released

Bug description:
  Currently, when thunderbird is set as the default email client, when
  simple-scan tries to open a new message using mailto: , a new message
  window is opened for thunderbird, but there are no attachment.

  This is probably due to Thunderbird who does not support attachment
  with mailto because it is considered unsecure, but still, this makes
  user experience very poor, as the user is left thinking "ok a new
  window opened, therefore the attachment must be somewhere..". And
  thunderbird is pretty popular.

  Fortunately this might be easy to "workaround". Picasa already did it
  using xdg-email script that I attached since its code show exactly
  what's needed. the run_thunderbird() function is the more important
  part in the file.

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+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 1508718] Re: NetworkManager - error initialzing editor

2015-11-19 Thread Thomas E. Horner
Definitely happens as described.
Makes the mobile broadband unusable.

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

Title:
  NetworkManager - error initialzing editor

Status in network-manager-applet package in Ubuntu:
  Confirmed

Bug description:
  Error initializing editor
  settings/nm-settings-connection.c.995 - Connection didn't have requested 
setting 'ppp'

  Error occurs when attempting to edit existing mobile broadband connection.
  Editing existing Ethernet connections succeeds without error.

  This broke between 1.0.4-0ubuntu3 and 1.0.4-0ubuntu5

  The connection still functions correctly but its properties can no
  longer be edited with gui.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: network-manager-gnome 0.9.10.1-0ubuntu7
  ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
  Uname: Linux 4.2.0-16-generic x86_64
  ApportVersion: 2.19.1-0ubuntu3
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed Oct 21 23:14:57 2015
  ExecutablePath: /usr/bin/nm-connection-editor
  IfupdownConfig:
   # interfaces(5) file used by ifup(8) and ifdown(8)
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2015-09-30 (21 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20150924)
  IpRoute:
   default via 10.109.83.190 dev wwan0  proto static  metric 750 
   10.109.83.188/30 dev wwan0  proto kernel  scope link  src 10.109.83.189  
metric 750 
   169.254.0.0/16 dev wwan0  scope link  metric 1000
  IwConfig:
   wwan0 no wireless extensions.
   
   eno1  no wireless extensions.
   
   lono wireless extensions.
  JournalErrors:
   No journal files were found.
   -- No entries --
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=true
   WWANEnabled=true
   WimaxEnabled=true
  RfKill:
   
  SourcePackage: network-manager-applet
  UpgradeStatus: No upgrade log present (probably fresh install)
  WifiSyslog:
   
  nmcli-dev:
   DEVICETYPE  STATE DBUS-PATH  
CONNECTION  CON-UUID  CON-PATH  
 
   cdc-wdm0  gsm   connected /org/freedesktop/NetworkManager/Devices/2  
att_stick   d13a7207-c11a-47ad-8876-ee62c3ccb5b2  
/org/freedesktop/NetworkManager/ActiveConnection/7 
   eno1  ethernet  disconnected  /org/freedesktop/NetworkManager/Devices/0  
--  ----
 
   loloopback  unmanaged /org/freedesktop/NetworkManager/Devices/1  
--  ----
  nmcli-nm: Error: command ['nmcli', '-f', 'all', 'nm'] failed with exit code 
2: Error: Object 'nm' is unknown, try 'nmcli help'.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-applet/+bug/1508718/+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 515386] Re: No attachment when Thunderbird is set as default client.

2015-07-15 Thread Thomas E. Horner
with the following patch "simple-scan" -> "Email" works correctly on
Ubuntu 15.04 again:

diff -u org/xdg-email fixed/xdg-email
--- org/xdg-email   2015-01-26 09:14:22.0 +0100
+++ fixed/xdg-email 2015-07-15 15:33:30.353509685 +0200
@@ -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" | head -n 1 | cut -d= 
-f 2- | sed -e 's/ .*$//'`"
 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 2>&1
 if [ $? -eq 0 ] ; then
 run_thunderbird "$client" "$1"

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).
it's a little sad to see nothing happen here as this is a pain for a lot of 
users and quite easy to fix.

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

Title:
  No attachment when Thunderbird is set as default client.

Status in Mozilla Thunderbird:
  New
Status in Xdg-utils:
  New
Status in simple-scan package in Ubuntu:
  Confirmed
Status in thunderbird package in Ubuntu:
  Confirmed
Status in xdg-utils package in Ubuntu:
  Fix Released

Bug description:
  Currently, when thunderbird is set as the default email client, when
  simple-scan tries to open a new message using mailto: , a new message
  window is opened for thunderbird, but there are no attachment.

  This is probably due to Thunderbird who does not support attachment
  with mailto because it is considered unsecure, but still, this makes
  user experience very poor, as the user is left thinking "ok a new
  window opened, therefore the attachment must be somewhere..". And
  thunderbird is pretty popular.

  Fortunately this might be easy to "workaround". Picasa already did it
  using xdg-email script that I attached since its code show exactly
  what's needed. the run_thunderbird() function is the more important
  part in the file.

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+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 1361906] Re: gvfsd-ftp crashed with SIGABRT in g_mutex_unlock_slowpath()

2015-02-02 Thread Thomas E. Horner
Nautilus (well, of cause actually gvfsd-ftp) now works as expected!

gvfs/utopic-proposed,now 1.20.2-1ubuntu3 amd64
gvfs-backends/utopic-proposed,now 1.20.2-1ubuntu3 amd64
gvfs-bin/utopic-proposed,now 1.20.2-1ubuntu3 amd64
gvfs-common/utopic-proposed,now 1.20.2-1ubuntu3 all
gvfs-daemons/utopic-proposed,now 1.20.2-1ubuntu3 amd64
gvfs-fuse/utopic-proposed,now 1.20.2-1ubuntu3 amd64
gvfs-libs/utopic-proposed,now 1.20.2-1ubuntu3 amd64

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

Title:
  gvfsd-ftp crashed with SIGABRT in g_mutex_unlock_slowpath()

Status in GVFS:
  Fix Released
Status in bluefish package in Ubuntu:
  Invalid
Status in gvfs package in Ubuntu:
  Fix Released
Status in bluefish source package in Utopic:
  Invalid
Status in gvfs source package in Utopic:
  Fix Committed

Bug description:
  [ Description ]

  gvfsd-ftp sometimes attempts to unlock an already unlocked mutex,
  which is fatal with glib in utopic and later.

  [ QA ]

  1. Open gedit
  2. File -> Open
  3. Ctrl-l
  4. Type ftp://ftp.gnome.org/
  5. Press enter

  At this point gvfsd-ftp may crash, and you'll see an apport popup if
  so. The operation won't work.

  With the fix it should not crash and you should see the listings of
  the remote server.

  [ Development fix ]

  This commit is in Vivid

  [ Original Report ]

  Ubuntu 14.10

  A clicked on a gvfs ftp mount in a Shotwell Save As dialog and it went
  boom.

  ProblemType: Crash
  DistroRelease: Ubuntu 14.10
  Package: gvfs-backends 1.20.2-1ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-10.15-generic 3.16.1
  Uname: Linux 3.16.0-10-generic x86_64
  ApportVersion: 2.14.6-0ubuntu2
  Architecture: amd64
  CrashCounter: 1
  CurrentDesktop: Unity
  Date: Tue Aug 26 18:09:46 2014
  ExecutablePath: /usr/lib/gvfs/gvfsd-ftp
  InstallationDate: Installed on 2014-07-04 (53 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20140520)
  ProcCmdline: /usr/lib/gvfs/gvfsd-ftp --spawner :1.4 /org/gtk/gvfs/exec_spaw/3
  ProcEnviron:
   XDG_RUNTIME_DIR=
   SHELL=/bin/bash
   LANGUAGE=en_US
   PATH=(custom, no user)
   LANG=en_US.UTF-8
  Signal: 6
  SourcePackage: gvfs
  StacktraceTop:
   g_mutex_unlock_slowpath (mutex=, prev=) at 
/build/buildd/glib2.0-2.41.3/./glib/gthread-posix.c:1327
   g_mutex_unlock (mutex=) at 
/build/buildd/glib2.0-2.41.3/./glib/gthread-posix.c:1350
   g_vfs_ftp_task_acquire_connection (task=0x7fa0c5ad1d40) at gvfsftptask.c:266
   g_vfs_ftp_task_sendv (task=0x7fa0c5ad1d40, flags=G_VFS_FTP_PASS_550, 
reply=reply@entry=0x0, format=format@entry=0x4105a9 "CWD %s", 
varargs=varargs@entry=0x7fa0c5ad1b78) at gvfsftptask.c:632
   g_vfs_ftp_task_sendv (varargs=0x7fa0c5ad1b78, format=0x4105a9 "CWD %s", 
reply=0x0, flags=G_VFS_FTP_PASS_550, task=0x7fa0c5ad1d40) at gvfsftptask.c:515
  Title: gvfsd-ftp crashed with SIGABRT in g_mutex_unlock_slowpath()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm audio cdrom dip lpadmin mediatomb plugdev pulse sambashare 
sudo vboxusers

To manage notifications about this bug go to:
https://bugs.launchpad.net/gvfs/+bug/1361906/+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 1361906] Re: gvfsd-ftp crashed with SIGABRT in g_mutex_unlock_slowpath()

2015-02-02 Thread Thomas E. Horner
on my system the following command was required to update gvfs without
removing dependent programs:

sudo apt-get install gvfs/utopic-proposed gvfs-daemons/utopic-proposed
gvfs-libs/utopic-proposed gvfs-common/utopic-proposed gvfs:i386/utopic-
proposed gvfs-libs:i386/utopic-proposed gvfs-backends/utopic-proposed
gvfs-bin/utopic-proposed gvfs-fuse/utopic-proposed

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

Title:
  gvfsd-ftp crashed with SIGABRT in g_mutex_unlock_slowpath()

Status in GVFS:
  Fix Released
Status in bluefish package in Ubuntu:
  Invalid
Status in gvfs package in Ubuntu:
  Fix Released
Status in bluefish source package in Utopic:
  Invalid
Status in gvfs source package in Utopic:
  Fix Committed

Bug description:
  [ Description ]

  gvfsd-ftp sometimes attempts to unlock an already unlocked mutex,
  which is fatal with glib in utopic and later.

  [ QA ]

  1. Open gedit
  2. File -> Open
  3. Ctrl-l
  4. Type ftp://ftp.gnome.org/
  5. Press enter

  At this point gvfsd-ftp may crash, and you'll see an apport popup if
  so. The operation won't work.

  With the fix it should not crash and you should see the listings of
  the remote server.

  [ Development fix ]

  This commit is in Vivid

  [ Original Report ]

  Ubuntu 14.10

  A clicked on a gvfs ftp mount in a Shotwell Save As dialog and it went
  boom.

  ProblemType: Crash
  DistroRelease: Ubuntu 14.10
  Package: gvfs-backends 1.20.2-1ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-10.15-generic 3.16.1
  Uname: Linux 3.16.0-10-generic x86_64
  ApportVersion: 2.14.6-0ubuntu2
  Architecture: amd64
  CrashCounter: 1
  CurrentDesktop: Unity
  Date: Tue Aug 26 18:09:46 2014
  ExecutablePath: /usr/lib/gvfs/gvfsd-ftp
  InstallationDate: Installed on 2014-07-04 (53 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20140520)
  ProcCmdline: /usr/lib/gvfs/gvfsd-ftp --spawner :1.4 /org/gtk/gvfs/exec_spaw/3
  ProcEnviron:
   XDG_RUNTIME_DIR=
   SHELL=/bin/bash
   LANGUAGE=en_US
   PATH=(custom, no user)
   LANG=en_US.UTF-8
  Signal: 6
  SourcePackage: gvfs
  StacktraceTop:
   g_mutex_unlock_slowpath (mutex=, prev=) at 
/build/buildd/glib2.0-2.41.3/./glib/gthread-posix.c:1327
   g_mutex_unlock (mutex=) at 
/build/buildd/glib2.0-2.41.3/./glib/gthread-posix.c:1350
   g_vfs_ftp_task_acquire_connection (task=0x7fa0c5ad1d40) at gvfsftptask.c:266
   g_vfs_ftp_task_sendv (task=0x7fa0c5ad1d40, flags=G_VFS_FTP_PASS_550, 
reply=reply@entry=0x0, format=format@entry=0x4105a9 "CWD %s", 
varargs=varargs@entry=0x7fa0c5ad1b78) at gvfsftptask.c:632
   g_vfs_ftp_task_sendv (varargs=0x7fa0c5ad1b78, format=0x4105a9 "CWD %s", 
reply=0x0, flags=G_VFS_FTP_PASS_550, task=0x7fa0c5ad1d40) at gvfsftptask.c:515
  Title: gvfsd-ftp crashed with SIGABRT in g_mutex_unlock_slowpath()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm audio cdrom dip lpadmin mediatomb plugdev pulse sambashare 
sudo vboxusers

To manage notifications about this bug go to:
https://bugs.launchpad.net/gvfs/+bug/1361906/+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 2>&1
 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 1277884] Re: xdg-email does not attach file with thunderbird

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

** 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/1277884

Title:
  xdg-email does not attach file with thunderbird

Status in xdg-utils package in Ubuntu:
  New

Bug description:
  Steps to reproduce:

  $ touch /tmp/test
  $ xdg-email --attach /tmp/test

  Expected:
  Thunderbird e-mail composition window opens _with_ attached file "test"

  Actual:
  composition window opens, but there is _no_ attached file

  I am using xdg-utils 1.1.0~rc1-2ubuntu7 and thunderbird
  1:24.2.0+build1-0ubuntu0.13.10.1 on Ubuntu 13.10.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xdg-utils/+bug/1277884/+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 515386] Re: No attachment when Thunderbird is set as default client.

2015-01-01 Thread Thomas E. Horner
with the following patch "simple-scan" -> "Email" works correctly on
Ubuntu 14.10 again:

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 2>&1
 if [ $? -eq 0 ] ; then
 run_thunderbird "$client" "$1"

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

Title:
  No attachment when Thunderbird is set as default client.

Status in Mozilla Thunderbird Mail and News:
  New
Status in Xdg-utils:
  New
Status in simple-scan package in Ubuntu:
  Confirmed
Status in thunderbird package in Ubuntu:
  Confirmed
Status in xdg-utils package in Ubuntu:
  Fix Released

Bug description:
  Currently, when thunderbird is set as the default email client, when
  simple-scan tries to open a new message using mailto: , a new message
  window is opened for thunderbird, but there are no attachment.

  This is probably due to Thunderbird who does not support attachment
  with mailto because it is considered unsecure, but still, this makes
  user experience very poor, as the user is left thinking "ok a new
  window opened, therefore the attachment must be somewhere..". And
  thunderbird is pretty popular.

  Fortunately this might be easy to "workaround". Picasa already did it
  using xdg-email script that I attached since its code show exactly
  what's needed. the run_thunderbird() function is the more important
  part in the file.

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+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 1401632] Re: xdg-email fails to add attachment with Thunderbird

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

** 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/1401632

Title:
  xdg-email fails to add attachment with Thunderbird

Status in xdg-utils package in Ubuntu:
  Confirmed

Bug description:
  Attachment is not added even though I can attach files from command-
  line using the following command thunderbird -remote
  
"xfeDoCommand(composeMessage,subject='S',to='y...@example.com',body='B',attachment='/some/absolute/file.txt')"

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xdg-utils 1.1.0~rc1-2ubuntu7.1
  ProcVersionSignature: User Name 3.13.0-40.69-generic 3.13.11.10
  Uname: Linux 3.13.0-40-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu Dec 11 10:24:08 2014
  InstallationDate: Installed on 2014-09-18 (83 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.2)
  PackageArchitecture: all
  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/1401632/+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 1397423] [NEW] nvidia-331-uvm 331.89-0ubuntu5: nvidia-331-uvm kernel module failed to build

2014-11-28 Thread Thomas E. Horner
Public bug reported:

error "nvidia-331-uvm 331.89-0ubuntu5: nvidia-331-uvm kernel module
failed to build"

ProblemType: Package
DistroRelease: Ubuntu 14.10
Package: nvidia-331-uvm 331.89-0ubuntu5
ProcVersionSignature: Ubuntu 3.16.0-24.32-generic 3.16.4
Uname: Linux 3.16.0-24-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.7-0ubuntu8
Architecture: amd64
DKMSKernelVersion: 3.16.0-25-generic
Date: Fri Nov 28 19:22:24 2014
PackageVersion: 331.89-0ubuntu5
SourcePackage: nvidia-graphics-drivers-331
Title: nvidia-331-uvm 331.89-0ubuntu5: nvidia-331-uvm kernel module failed to 
build
UpgradeStatus: Upgraded to utopic on 2014-10-29 (30 days ago)

** Affects: nvidia-graphics-drivers-331 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package utopic

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

Title:
  nvidia-331-uvm 331.89-0ubuntu5: nvidia-331-uvm kernel module failed to
  build

Status in nvidia-graphics-drivers-331 package in Ubuntu:
  New

Bug description:
  error "nvidia-331-uvm 331.89-0ubuntu5: nvidia-331-uvm kernel module
  failed to build"

  ProblemType: Package
  DistroRelease: Ubuntu 14.10
  Package: nvidia-331-uvm 331.89-0ubuntu5
  ProcVersionSignature: Ubuntu 3.16.0-24.32-generic 3.16.4
  Uname: Linux 3.16.0-24-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.7-0ubuntu8
  Architecture: amd64
  DKMSKernelVersion: 3.16.0-25-generic
  Date: Fri Nov 28 19:22:24 2014
  PackageVersion: 331.89-0ubuntu5
  SourcePackage: nvidia-graphics-drivers-331
  Title: nvidia-331-uvm 331.89-0ubuntu5: nvidia-331-uvm kernel module failed to 
build
  UpgradeStatus: Upgraded to utopic on 2014-10-29 (30 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-331/+bug/1397423/+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 1080787] Re: hp scanner 5300c does no longer work after upgrading to quantal

2014-09-27 Thread Thomas E. Horner
Amazing!
Following the guideline mgfrobozz posted on 2014-09-26 and applying the patch 
patch_1080787.txt indeed scanning works again!
@mgfrobozz: Thanks a lot :-)

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

Title:
  hp scanner 5300c does no longer work after upgrading to quantal

Status in “sane-backends” package in Ubuntu:
  Confirmed

Bug description:
  on 12.10 the scanner doesn't work anymore.
  on 12.04 it worked on the same machine.
  the scanner still works on a second machine that was not upgraded by now.

  
  uname:
  Linux matrix 3.5.0-17-generic #28-Ubuntu SMP Tue Oct 9 19:31:23 UTC 2012 
x86_64 x86_64 x86_64 GNU/Linux

  lsb_release:
  Description:  Ubuntu 12.10
  Release:  12.10

  versions:
  sane: 1.0.14-9
  libsane: 1.0.23-0ubuntu1

  dmesg:
  [12883.928037] usb 3-6: >new full-speed USB device number 23 using ohci_hcd
  [12884.157054] usb 3-6: >New USB device found, idVendor=03f0, idProduct=0701
  [12884.157059] usb 3-6: >New USB device strings: Mfr=1, Product=2, 
SerialNumber=3
  [12884.157062] usb 3-6: >Product: Hewlett Packard ScanJet 5300C/5370C 
  [12884.157064] usb 3-6: >Manufacturer: Hewlett Packard
  [12884.157067] usb 3-6: >SerialNumber: 

  lsusb:
  Bus 003 Device 002: ID 0a12:0001 Cambridge Silicon Radio, Ltd Bluetooth 
Dongle (HCI mode)
  Bus 003 Device 023: ID 03f0:0701 Hewlett-Packard ScanJet 5300c/5370c
  Bus 004 Device 002: ID 08e6:3437 Gemplus GemPC Twin SmartCard Reader
  Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub

  scanimage -Lv
  No scanners were identified. If you were expecting something different,
  check that the scanner is plugged in, turned on and detected by the
  sane-find-scanner tool (if appropriate). Please read the documentation
  which came with this software (README, FAQ, manpages).

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