RoundCube Webmail Forum  

Go Back   RoundCube Webmail Forum > Miscellaneous > Roundcube Discussion

For more information about the ads and why they're here, please see the FAQ
Reply
  #1  
Old 02-09-2007, 09:51 AM
Registered User
 
Join Date: Feb 2007
Posts: 9
Downloads: 0
Uploads: 0
Default Mailto link opening roundcube

Is it possible to get mailto-links on webpages to open a roundcube mail compose window?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 03-05-2007, 04:35 PM
Registered User
 
Join Date: Mar 2007
Posts: 3
Downloads: 0
Uploads: 0
Default Re: Mailto link opening roundcube

Browser-based mailto links pull from the user's default mail client on their machine. The browser knows this information and therefore activates the program upon clicking a mailto link for the user's default mail client. I can say that I am nearly 100% confident this is not possible.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 03-05-2007, 06:22 PM
Registered User
 
Join Date: Feb 2007
Posts: 9
Downloads: 0
Uploads: 0
Default Re: Mailto link opening roundcube

I found it actually is possible (in Firefox at least) using the webmailcompose extension.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 03-07-2007, 04:43 PM
Registered User
 
Join Date: Mar 2007
Posts: 21
Downloads: 0
Uploads: 0
Default Re: Mailto link opening roundcube

It IS possible - Yahoo! Web-based e-mail uses this. All you have to do is download a little file they have onto your computer and whenever you click on a mailto link, a new browser window with your Yahoo! Webmail opens and the "to" and "subject" (if specified in the link) fields are filled out (if you are already logged into your Yahoo! mail account, of course - otherwise it will just take you to the login screen).
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5  
Old 03-07-2007, 06:57 PM
Registered User
 
Join Date: Sep 2006
Posts: 36
Downloads: 0
Uploads: 0
Default Re: Mailto link opening roundcube

gmail does a similar thing but this would require roundcube to create a desktop applet, i don't believe they have any plans for this at present.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6  
Old 03-23-2007, 06:56 PM
Registered User
 
Join Date: Nov 2006
Posts: 7
Downloads: 0
Uploads: 0
Default Re: Mailto link opening roundcube

WebMailCompose works with Firefox if you apply my patch below. First, get WebMailCompose for FF2.0 and install it: http://sas.sparklingstudios.com/arti...in-firefox-2-0

Save the patch below to roundcubemail/program/steps/mail/webmailcompose.diff

Run the patch:
# patch -p0 < webmailcompose.diff

The patch:
Code:
--- compose.inc.orig  2007-03-23 11:23:44.000000000 -0700
+++ compose.inc 2007-03-23 11:16:44.000000000 -0700
@@ -365,3 +365,7 @@

- $body = '';
+ //webmailcompose
+ if (isset($_GET['_message']))
+  $body = $_GET['_message'];
+ else
+  $body = '';

@@ -632,4 +636,7 @@

+ //webmailcompose
+ if (isset($_GET['_subject']))
+  $subject = $_GET['_subject'];
  // use subject from post
- if (isset($_POST['_subject']))
+ else if (isset($_POST['_subject']))
   $subject = get_input_value('_subject', RCUBE_INPUT_POST, TRUE);

Go into the options for the WebMailCompose extension.

Go to the WebMail Services tab and check Enable Other.

Paste the line below into the Enable Other field:
Code:
http://YOUR_ROUNDCUBE_URL/?_task=mail&_action=compose&_to=^T&_subject=^S&_message=^M
You should now be able to right click on a webpage and select Send Link. This should compose a new Roundcube email with the page title as the subject line and a link to the page as the message body.

NOTE: You must already be logged into Roundcube for this to work.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

For more information about the ads and why they're here, please see the FAQ

All times are GMT. The time now is 11:06 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Copyright © 2006-2008 RoundCube Webmail Community