The bug Tim posted is more correct. I've noticed the error happening myself, but now I took a look at the source and I can see the reason:

From SendEmail.cs:

switch (Preferences.Get<string> (Preferences.GNOME_MAILTO_COMMAND)) {
                        case "thunderbird %s":
                        case "mozilla-thunderbird %s":
                        case "seamonkey -mail -compose %s":
                        case "icedove %s":
                                attach_arg.Append(",");
                                break;
                        case "kmail %s":
                                attach_arg.Append(" --attach ");
                                break;
default: //evolution falls into default, since it supports mailto uri correctly
                                attach_arg.Append("&attach=");
                                break;
                        }

My /desktop/gnome/url-handlers/mailto/command is:

        /usr/lib/icedove-3.0/icedove-3.0 "%s"

Clearly, this doesn't match, so it always falls through. While a little gross, would it make sense to alter this block to look for substrings instead? Ideally, the beginning substring "thunderbird" of basename of the configuration string?

--Pat

On 07/01/11 12:53 PM, . wrote:


On 01/07/2011 10:29 AM, Tim Howard wrote:
 On Fri, Jan 7, 2011 at 10:11 AM, . <[email protected]
<mailto:[email protected]>> wrote:



 Is there a fix so that pictures are attached to emails using Thunderbird?


 Not sure what bug you are speaking of. Is it related to this? If so it
looks like there's a workaround.


 http://www.mail-archive.com/[email protected]/msg621188.html


 Can you point to a bug #? That would be helpful. If not, can you file one?



 Thanks,


 Tim


This is the one....I think;

https://bugs.launchpad.net/linuxmint/+bug/621933



_______________________________________________
f-spot-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/f-spot-list
_______________________________________________
f-spot-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/f-spot-list

Reply via email to