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

2016-02-01 Thread Amr Ibrahim
Guys, I opened LP: #1540399 for this bug. Please write your comments and
patches their because this one is closed.

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2016-01-31 Thread Bill Kelly
I fixed this locally. The problem is in the function
"desktop_file_to_binary()". "grep" on line 228 is returning 3 matches.
It needs to be piped to "head -n1". Without this change, "which" on the
next line is returning "", and "run_thunderbird" is not executed by the
calling function.

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2016-01-31 Thread Bill Kelly
** Attachment added: "Added "| head -n 1 ", line 228"
   
https://bugs.launchpad.net/xdg-utils/+bug/515386/+attachment/4560852/+files/xdg-email

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2016-01-27 Thread chrysoberyl
Is this bug fixed in Ubuntu Trusty 64 (LTS!) ?

I'am still unable to send emails with their attachments from simple
scan.

Thunderbird open up a new message but, but nothing is attached to it.

Should I open yet another bug report? Will this bug show its ugly head every 
time Tbird is updated?
What can I do to help ? 

Thunderbird 38.5.1
Ubuntu 14.04
xdg-utils 1.1.0~rc1-2ubuntu7.1

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/515386

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2015-09-13 Thread Robert Ancell
** No longer affects: simple-scan (Ubuntu)

** No longer affects: thunderbird (Ubuntu)

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2015-09-13 Thread Robert Ancell
Please open new bugs for this - it's very confusing to re-use existing
bugs for new issues.

The two issues indicated are:

1. xdg-email doesn't handle having more than one Exec entry in a
.desktop file. This is a new feature (called Quicklists in Ubuntu) that
was added to the specification [1] and didn't exist at time this issue
was raised.

2. There is a bug in the patch gnome-3.0.diff which is not present in
the associated upstream change. This patch was added due to bug 670128
in 2011 - after this original issue was raised.

[1] http://standards.freedesktop.org/desktop-entry-
spec/latest/ar01s10.html#extra-actions-keys

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2015-09-12 Thread ippsatsi
In Xubuntu 14.04.2 no problem.  In Ubuntu 14.04 i have the same problem
without attachment.

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2015-07-15 Thread Amr Ibrahim
Robert Ancell, could you please review that patch and, if applicable,
apply for wily, vivid and trusty? Thanks.

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 21
 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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/515386

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2015-01-08 Thread Thomas Guettler
Is there a way to write a unittest for this, to make this bug never
appear again in Ubuntu?

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2014-11-22 Thread Christoph Weber
Also Linux Mint 17 is affected.

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2014-07-16 Thread Alex
Also effect ubuntu 14.04

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2014-06-10 Thread Amr Ibrahim
** Changed in: thunderbird (Ubuntu)
   Status: Invalid = New

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2014-06-10 Thread Amr Ibrahim
This bug is still in trusty.

** Project changed: simple-scan = simple-scan (Ubuntu)

** Changed in: simple-scan (Ubuntu)
   Status: Invalid = New

** Changed in: thunderbird
   Importance: High = Undecided

** Changed in: thunderbird
   Status: Invalid = New

** Changed in: thunderbird
 Remote watch: Mozilla Bugzilla #549058 = None

** Tags added: regression-release trusty

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

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

** Changed in: simple-scan (Ubuntu)
   Status: New = Confirmed

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

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

** Changed in: thunderbird (Ubuntu)
   Status: New = Confirmed

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunderbird/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2014-01-12 Thread Geb
Linux Mint 16 (based on Ubuntu 13.10):
new email window opens but no file attached - problem still persists

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/simple-scan/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2013-08-18 Thread Rolf Leggewie
this problem was apparently dealt with in xdg-utils for ubuntu, nothing
left to be done for thunderbird package

** Changed in: thunderbird (Ubuntu)
   Status: Triaged = Invalid

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/simple-scan/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2013-07-05 Thread Matthias Hafner
The workaround in xdg-email does not work in Ubuntu 13.04 for
Thunderbird.

The workaround includes looking up and parsing thunderbird.desktop to
finally call thunderbird. Maybe there could be an easier solution?

xdg-email currently ends up with calling gvfs-open mailto:?attach=...;
what does not work with thunderbird due to some strange security
policies.

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/simple-scan/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2013-07-05 Thread Matthias Hafner
The workaround in xdg-email does not work in Ubuntu 13.04 for
Thunderbird.

The workaround includes looking up and parsing thunderbird.desktop to
finally call thunderbird. Maybe there could be an easier solution?

xdg-email currently ends up with calling gvfs-open mailto:?attach=...;
what does not work with thunderbird due to some strange security
policies.

This should be fixed within xdg-email in my opinion. Can somebody please
reopen https://bugs.freedesktop.org/show_bug.cgi?id=13435

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/simple-scan/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2013-07-05 Thread Matthias Hafner
this bug should be reopened

** Changed in: xdg-utils
   Importance: Medium = Undecided

** Changed in: xdg-utils
   Status: Fix Released = New

** Changed in: xdg-utils
 Remote watch: freedesktop.org Bugzilla #13435 = None

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/simple-scan/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2013-05-29 Thread manolo
I'm sorry to inform you that the problem persists between Simple Scan 3.6.0 and 
TB 17.0.6 installed on Linux Mint 14.
The problem did not appear on Kubuntu 12.10
What should I do?

Thanks,
regards.

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/simple-scan/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2013-05-09 Thread Johnny Arthur
Hi,
i have the same problem with raring.
for me there seem to be at least 2 errors in the script:
in open_gnome the wrong variable is used to find the desktop file (browser 
instead of desktop)
and in desktop_file_to_binary() the grep command finds multiple occurences of 
'Exec'. The supposed patch below only takes the first one and removes all 
following lines.

hence i suppose the following changes, that seem to work for me:

@@ -319,11 +319,11 @@
 unset IFS
 [ $dir -a -d $dir/applications ] || continue
 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 -s -d= -f 2- | 
sed -e 's/ .*$//;2,$d'`
 command=`which $command`
 readlink -f $command
 return
 done
 }
@@ -510,11 +510,11 @@
 open_gnome()
 {
 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
 fi

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/simple-scan/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2013-04-02 Thread Gabriel
I confirm comment #42, on Ubuntu 12.10 this does not work, I still get
the Thunderbird email without the attachment. I am using Thunderbird
17.0.4.

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/simple-scan/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2012-09-06 Thread Michael Nagel
hmmm:

this works:
thunderbird -compose attachment='file:///etc/hostname'
it creates an email with attachment

this does not work:
XDG_UTILS_DEBUG_LEVEL=100 xdg-email --attach /etc/hostname
it creates an email withou attachment and prints the following debug output:
DE is gnome
Checking /usr/share/ubuntu/applications/defaults.list
Checking /usr/share/gnome/applications/defaults.list
Running gvfs-open mailto:?attach=/etc/hostname;

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/simple-scan/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2012-09-05 Thread Bug Watch Updater
** Changed in: thunderbird
   Status: Confirmed = Invalid

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/simple-scan/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


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

2012-04-08 Thread kroq-gar78
** Summary changed:

- No attachment when thunderbird 3 is set as default client.
+ No attachment when Thunderbird is set as default client.

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/simple-scan/+bug/515386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 515386] Re: No attachment when thunderbird is set as default client.

2010-02-26 Thread Saïvann Carignan
** Also affects: thunderbird (Ubuntu)
   Importance: Undecided
   Status: New

** Bug watch added: Mozilla Bugzilla #549058
   https://bugzilla.mozilla.org/show_bug.cgi?id=549058

** Also affects: thunderbird via
   https://bugzilla.mozilla.org/show_bug.cgi?id=549058
   Importance: Unknown
   Status: Unknown

-- 
No attachment when thunderbird 3 is set as default client.
https://bugs.launchpad.net/bugs/515386
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 515386] Re: No attachment when thunderbird is set as default client.

2010-02-26 Thread Saïvann Carignan
Robert Ancell : I've subscribed you to this bug  as the issue with
thunderbird re-appeared since it has been updated to v3 and because you
mentionned that this issue was important to be fixed for Lucid. This
time, it is a regression in Thunderbird itself, which affect the
-compose command line.

Alexander Sack : May I ask you if there is something else we can do to
your knowledge with mozilla projects to make sure that this gets fixed
in thunderbird before Lucid hit stable?

I've reported all details about the regression in upstream bug report :
https://bugzilla.mozilla.org/show_bug.cgi?id=549058

** Summary changed:

- No attachment when thunderbird is set as default client.
+ No attachment when thunderbird 3 is set as default client.

-- 
No attachment when thunderbird 3 is set as default client.
https://bugs.launchpad.net/bugs/515386
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 515386] Re: No attachment when thunderbird is set as default client.

2010-02-15 Thread Saïvann Carignan
I confirm that this bug is fixed, thank you very much, that was quick
and well done :-) The great thing is that any future app will also be
able to send attachments correctly with thunderbird, not only simple-
scan.

-- 
No attachment when thunderbird is set as default client.
https://bugs.launchpad.net/bugs/515386
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 515386] Re: No attachment when thunderbird is set as default client.

2010-02-14 Thread Robert Ancell
** Also affects: xdg-utils (Ubuntu)
   Importance: Undecided
   Status: New

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

** Changed in: xdg-utils (Ubuntu)
   Importance: Undecided = Medium

** Changed in: simple-scan
   Status: Triaged = Invalid

-- 
No attachment when thunderbird is set as default client.
https://bugs.launchpad.net/bugs/515386
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 515386] Re: No attachment when thunderbird is set as default client.

2010-02-14 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-desktop/xdg-utils/ubuntu

-- 
No attachment when thunderbird is set as default client.
https://bugs.launchpad.net/bugs/515386
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 515386] Re: No attachment when thunderbird is set as default client.

2010-02-14 Thread Launchpad Bug Tracker
This bug was fixed in the package xdg-utils - 1.0.2-6.1ubuntu2

---
xdg-utils (1.0.2-6.1ubuntu2) lucid; urgency=low

  * debian/patches/xdg-email-thunderbird.diff:
- Make xdg-email attachments work with Thunderbird (LP: #515386)
  * debian/patches/xdg-email-attachment-url-escape.diff:
- Fix xdg-email attachment URL escape bug (LP: #408350)
  * debian/control:
- Add Vcs-Bzr link
 -- Robert Ancell robert.anc...@canonical.com   Mon, 15 Feb 2010 11:50:53 
+1100

** Changed in: xdg-utils (Ubuntu)
   Status: Triaged = Fix Released

-- 
No attachment when thunderbird is set as default client.
https://bugs.launchpad.net/bugs/515386
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs