<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on Mailto Compose In GMail (with choice) | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/1657</link>
    <description>Recent comments on userscript: Mailto Compose In GMail (with choice)</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Archived Comments, replied by pandaking @ Wed, 20 Jun 2007 12:12:30 -0500</title>
      <description>&lt;p&gt;Would be nice if it did it next to text email addresses too...&lt;/p&gt;</description>
      <pubDate>Wed, 20 Jun 2007 12:12:30 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74085</guid>
      <author>pandaking</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by Bill Brandt @ Wed, 20 Jun 2007 08:29:37 -0500</title>
      <description>&lt;p&gt;Great script.  I did notice an issue.  If the subject, body, etc. have special characters in them, things get messed up.  A solution seems to be putting the nameValue[2]'s inside escape().  For example:&lt;/p&gt;

&lt;p&gt;line 83:&lt;/p&gt;

&lt;p&gt;emailSubject = escape(nameValue[2]);&lt;/p&gt;

&lt;p&gt;I actually did this for To (76), CC (79), Subject (83), and Body (87)to be on the safe side.  I'm guessing the To and CC can't have too many special characters because of the requirements for a valid email address, but it doesn't seem to hurt.&lt;/p&gt;</description>
      <pubDate>Wed, 20 Jun 2007 08:29:37 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74086</guid>
      <author>Bill Brandt</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by pandaking @ Thu, 31 May 2007 21:06:50 -0500</title>
      <description>&lt;p&gt;Awesome script, thanks! :)&lt;/p&gt;</description>
      <pubDate>Thu, 31 May 2007 21:06:50 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74087</guid>
      <author>pandaking</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by Eladio Caritos @ Sat, 10 Mar 2007 07:43:43 -0600</title>
      <description>&lt;p&gt;I'm trying to edit this script so that I already have a body included.  The problem that I am having is that is does not support multiline when assigning the string to the emailBody variable.&lt;/p&gt;

&lt;p&gt;emailBody =  &quot;hello&quot;;
&lt;br /&gt;// I've tried '\n', '\\n', &quot;\n&quot;, &quot;\\n&quot; as well
&lt;br /&gt;emailBody += &quot;%0D&quot;;
&lt;br /&gt;emailBody += &quot;world&quot;;&lt;/p&gt;

&lt;p&gt;Correct Output:&lt;/p&gt;

&lt;p&gt;hello
&lt;br /&gt;world&lt;/p&gt;

&lt;p&gt;Any suggestions to correct this would be great.&lt;/p&gt;</description>
      <pubDate>Sat, 10 Mar 2007 07:43:43 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74088</guid>
      <author>Eladio Caritos</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by Joe Klemmer @ Sat, 02 Dec 2006 10:22:17 -0600</title>
      <description>&lt;p&gt;This script is awesome. And I like the modifications that Hemal Pandya and Blake West made to the base script.  The option of having the gmail composer popup is quite convenient.  If there were a way to have the &quot;process the page on demand&quot; functionality Hemal wrote could be a toggle (right now it only sets to on).  Maybe I'll learn javascript and try hacking it myself.  Heh, right.  Like that's gonna happen.&lt;/p&gt;</description>
      <pubDate>Sat, 02 Dec 2006 10:22:17 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74089</guid>
      <author>Joe Klemmer</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by Blake West @ Mon, 20 Nov 2006 12:47:21 -0600</title>
      <description>&lt;p&gt;I made a couple small edits to my copy of the script that move the gmail icon to the right of the mailto: link and also open the compose window as a popup that will auto-close after you click send.&lt;/p&gt;

&lt;p&gt;I modified these two lines in the script...
&lt;br /&gt;			eval(&quot;gmailIcon.addEventListener('click', function() { GM_openInTab(&quot; + emailUrlVarName + &quot;); return false; }, true);&quot;);
&lt;br /&gt;        mailtoLink.parentNode.insertBefore(gmailIcon, mailtoLink);&lt;/p&gt;

&lt;p&gt;...to look like this...
&lt;br /&gt;				eval(&quot;gmailIcon.addEventListener('click', function() { window.open(&quot; + emailUrlVarName + &quot;, \'gmail\',\'width=600,height=700\'); return false; }, true);&quot;);
&lt;br /&gt;        mailtoLink.parentNode.insertBefore(gmailIcon, mailtoLink.nextSibling);
&lt;br /&gt;        gmailIcon.parentNode.insertBefore(document.createTextNode(' '),gmailIcon);&lt;/p&gt;

&lt;p&gt;Thanks for the script, cigno5.5! Just what I needed at work.&lt;/p&gt;</description>
      <pubDate>Mon, 20 Nov 2006 12:47:21 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74090</guid>
      <author>Blake West</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by Mauri @ Sun, 29 Oct 2006 13:08:37 -0600</title>
      <description>&lt;p&gt;in firefox 2.0, once i finish composing an email, the tab won't close automatically as it did before. how can I solve this?&lt;/p&gt;</description>
      <pubDate>Sun, 29 Oct 2006 13:08:37 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74091</guid>
      <author>Mauri</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by Adam Victor Nazareth Brandizzi @ Fri, 25 Aug 2006 06:30:30 -0500</title>
      <description>&lt;p&gt;It doesn't work with Geasemonkey on Epiphany Web Browser, unfortunately. I think you don't bother a lot about these weird browsers, but I bet it's noteworthy anyway :p&lt;/p&gt;</description>
      <pubDate>Fri, 25 Aug 2006 06:30:30 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74092</guid>
      <author>Adam Victor Nazareth Brandizzi</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by Estevam Moreira @ Mon, 07 Aug 2006 16:55:16 -0500</title>
      <description>&lt;p&gt;Doesn't work in my greasemonkey 0.6.5.20060727 and firefox 1.5.0.6.&lt;/p&gt;</description>
      <pubDate>Mon, 07 Aug 2006 16:55:16 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74093</guid>
      <author>Estevam Moreira</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by theaulddubliner @ Sat, 29 Apr 2006 19:34:11 -0500</title>
      <description>&lt;p&gt;If you go to &lt;a href=&quot;http://software.hixie.ch/utilities/cgi/data/data&quot;&gt;http://software.hixie.ch/utilities/cgi/data/data&lt;/a&gt; you can upload an image of your choice and encode it for the script.  Select 'base64' at the top. Browse to your image and then select 'generate'.  Copy the result [very long line].  Open the script in a text editor.  Scroll down to 'gmailIcon.src = ' and replace what follows with your new code. Make sure the new image code is between &quot;&quot; and is followed by ;&lt;/p&gt;

&lt;p&gt;  hope this works&lt;/p&gt;</description>
      <pubDate>Sat, 29 Apr 2006 19:34:11 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74094</guid>
      <author>theaulddubliner</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by Uzd4ce @ Mon, 27 Mar 2006 12:55:05 -0600</title>
      <description>&lt;p&gt;It also appears to not recognized MAILTO tags that where the HTML is written in all uppercase.  That also sounds like something I could tweak on my own if someone could give me a hint with the javascript.&lt;/p&gt;</description>
      <pubDate>Mon, 27 Mar 2006 12:55:05 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74095</guid>
      <author>Uzd4ce</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by Uzd4ce @ Mon, 27 Mar 2006 07:51:00 -0600</title>
      <description>&lt;p&gt;I really like the choice aspect of this script, but the Gmail icon can get a little annoying if the page has multiple mailto links.  I'd like to modify the script to display something in text, maybe just a G or even just a * before the link.  Can anyone suggest the script edits that would be needed to do this?&lt;/p&gt;</description>
      <pubDate>Mon, 27 Mar 2006 07:51:00 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74096</guid>
      <author>Uzd4ce</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by Hemal Pandya @ Fri, 03 Mar 2006 00:42:22 -0600</title>
      <description>&lt;p&gt;Changing the last line from 'processMailtoLinks();' to 'GM_registerMenuCommand(&quot;mailto=gmail&quot;, processMailtoLinks)' does exactly that. My first modification of a userscript. Yay!&lt;/p&gt;</description>
      <pubDate>Fri, 03 Mar 2006 00:42:22 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74097</guid>
      <author>Hemal Pandya</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by cigno5.5 @ Thu, 02 Mar 2006 04:01:51 -0600</title>
      <description>&lt;p&gt;i appreciated all of yours suggestions...it's not a tecnical problem implements the suggested features...it's a time problem!! :(
&lt;br /&gt;I hope that i'll can examine modifications in few days/weeks. I'm sorry!&lt;/p&gt;</description>
      <pubDate>Thu, 02 Mar 2006 04:01:51 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74098</guid>
      <author>cigno5.5</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by Hemal Pandya @ Thu, 02 Mar 2006 00:44:38 -0600</title>
      <description>&lt;p&gt;This script is accellent, but I would like it to process the page on demand, not always. Maybe there can be a button somewhere on the page or better still a menu option that triggers the insertion of gmail links. This will achieve two things:
&lt;br /&gt;- save processing, most often you don't click on the mailto links and most pages have them
&lt;br /&gt;- preserve the original layout.&lt;/p&gt;

&lt;p&gt;But I will use the script even if you don't make these changes :-)&lt;/p&gt;</description>
      <pubDate>Thu, 02 Mar 2006 00:44:38 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74099</guid>
      <author>Hemal Pandya</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by Johnny @ Sun, 26 Feb 2006 02:13:43 -0600</title>
      <description>&lt;p&gt;The default exclude of &lt;a href=&quot;http://gmail.google.com&quot;&gt;http://gmail.google.com&lt;/a&gt; didn't work for me. Changing it to &lt;a href=&quot;http://mail.google.com/&quot;&gt;http://mail.google.com/&lt;/a&gt;* and &lt;a href=&quot;https://mail.google.com/&quot;&gt;https://mail.google.com/&lt;/a&gt;* did the trick.&lt;/p&gt;</description>
      <pubDate>Sun, 26 Feb 2006 02:13:43 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74100</guid>
      <author>Johnny</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by Bitt Faulk @ Fri, 03 Feb 2006 14:25:05 -0600</title>
      <description>&lt;p&gt;I've modified the script so that browsers won't add a line break between the icon and the mailto link text.  Would anyone like to see the diff?&lt;/p&gt;</description>
      <pubDate>Fri, 03 Feb 2006 14:25:05 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74101</guid>
      <author>Bitt Faulk</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by Mozmonster @ Tue, 31 Jan 2006 15:03:36 -0600</title>
      <description>&lt;p&gt;I already posted this at the Ideas page, but have received no responses. Is it possible for a GM script to automatically search and convert webpage text strings such as &quot;sendmenospamplease AT hotmail DOT com&quot;, &quot;sendmenospamplease at yahoo dot co dot uk&quot;, or &quot;sendmenospamplease at ibm net&quot; into clickable mailto links? Ideally, this script would search for patterns with phrases such as &quot;at&quot; and &quot;com&quot; or &quot;net&quot; in close proximity. Nearby marking words and phrases that alert GM to a hidden e-mail address can include &quot;send me&quot;, &quot;private me&quot;, &quot;PM&quot;, &quot;message me&quot;. Or the pattern could be &quot;at&quot; then followed by any of the major email or webmail providers (gmail, aol, earthlink, etc...) It would be a PLUS also to have a Gmail/Yahoo mailto icon added after the &quot;re-assembled&quot; e-mail address. All this would make it a convenient one-click access to write to e-mail addresses which were written to avoid spambot harvests. What you do think?&lt;/p&gt;</description>
      <pubDate>Tue, 31 Jan 2006 15:03:36 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74102</guid>
      <author>Mozmonster</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by slam dunk @ Sun, 29 Jan 2006 11:54:27 -0600</title>
      <description>&lt;p&gt;cigno5.5,&lt;/p&gt;

&lt;p&gt;Can you also make it Opera compatible. I tried the script in opera and it gave me type mismatch error. Works fine in Firefox1.5.&lt;/p&gt;

&lt;p&gt;name: TypeError
&lt;br /&gt;message: Statement on line 51: Type mismatch (usually a non-object value used where an object is required)
&lt;br /&gt;Backtrace:
&lt;br /&gt;  Line 51 of User JS script 
&lt;br /&gt;    var res = document.evaluate(xpath, document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
&lt;br /&gt;  Line 124 of User JS script 
&lt;br /&gt;    processMailtoLinks();&lt;/p&gt;</description>
      <pubDate>Sun, 29 Jan 2006 11:54:27 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74103</guid>
      <author>slam dunk</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by slam dunk @ Wed, 25 Jan 2006 16:54:57 -0600</title>
      <description>&lt;p&gt;Thanks for a good script. Finally I found it was trying to write my own but gmail api is hard to understand. For my personal use I would want to add additional functionality to your script.&lt;/p&gt;

&lt;p&gt;1. Want to add a hardcoded file attachment variable. With hardcoded file path, so that I don't have to browse and locate file to attach in Compose window.&lt;/p&gt;

&lt;p&gt;2. Want an IFrame at bottom of Compose box displaying mail search results of recent mail sent/received to/from the mailto(To:) email address.&lt;/p&gt;

&lt;p&gt;3. Asking too much now. Clicking the mailto icon should paste my custom text message in body of email compose window. Or add a dropdown listbox on top to selectively paste text from one of my custom templates.&lt;/p&gt;

&lt;p&gt;-slamdunk&lt;/p&gt;</description>
      <pubDate>Wed, 25 Jan 2006 16:54:57 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74104</guid>
      <author>slam dunk</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by John 2 @ Sun, 15 Jan 2006 05:57:49 -0600</title>
      <description>&lt;p&gt;good one! the only problem is it's gonna make me stop using Thunderbird and my ISP e-mail! ;-p&lt;/p&gt;</description>
      <pubDate>Sun, 15 Jan 2006 05:57:49 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74105</guid>
      <author>John 2</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by ycc2106 @ Fri, 13 Jan 2006 21:57:17 -0600</title>
      <description>&lt;p&gt;Thanks !&lt;/p&gt;</description>
      <pubDate>Fri, 13 Jan 2006 21:57:17 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74106</guid>
      <author>ycc2106</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by m3nth @ Mon, 02 Jan 2006 12:47:35 -0600</title>
      <description>&lt;p&gt;This needs the secure gmail url (https) added as a default to the exclude list.&lt;/p&gt;</description>
      <pubDate>Mon, 02 Jan 2006 12:47:35 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74107</guid>
      <author>m3nth</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by cigno5.5 @ Sat, 31 Dec 2005 05:47:10 -0600</title>
      <description>&lt;p&gt;ycc2106, you must simply go to &lt;a href=&quot;http://www.userscripts.org/scripts/show/595&quot;&gt;http://www.userscripts.org/scripts/show/595&lt;/a&gt;
&lt;br /&gt;this is the original script that i got inspiration!&lt;/p&gt;</description>
      <pubDate>Sat, 31 Dec 2005 05:47:10 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74108</guid>
      <author>cigno5.5</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
    <item>
      <title>Archived Comments, replied by ycc2106 @ Sat, 24 Dec 2005 10:14:36 -0600</title>
      <description>&lt;p&gt;and to have a it link to Gmail, so I don't open an external app.&lt;/p&gt;</description>
      <pubDate>Sat, 24 Dec 2005 10:14:36 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17079:74109</guid>
      <author>ycc2106</author>
      <link>http://userscripts.org/topics/17079</link>
    </item>
  </channel>
</rss>
