Monday, November 08, 2010 at 12:06 AM.
system.verbs.builtins.webBrowser.protocols.otherhandlers.mailto
on mailto (url) {
local (protocolstring = string.nthField (url, ':', 1));
url = string.delete (url, 1, sizeof (protocolstring) + 1);
if Eudora.launch () { <<a scriptable version of Eudora is now running
local (x);
Eudora.bringtofront ();
x = Eudora.createMessage ();
Eudora.setMessageTo (x, url);
Eudora.setMessageSubject (x, webBrowser.getFrontWindowURL ());
return (true)}}
This listing is for code that runs in the OPML Editor environment. I created these listings because I wanted the search engines to index it, so that when I want to look up something in my codebase I don't have to use the much slower search functionality in my object database. Dave Winer.