Difference between revisions of "Roundcube"
Jump to navigation
Jump to search
(2 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
=== Use as mailto provider === |
=== Use as mailto provider === |
||
The base url is as follows: |
|||
https://<span class="input"><host></span>/?_task=mail&_action=compose&_to=<span class="input"><email address></span> |
https://<span class="input"><host></span>/?_task=mail&_action=compose&_to=<span class="input"><email address></span> |
||
To add this to firefox follow the steps outlined in the links below and then use the javascript exerpt further down: |
|||
⚫ | |||
⚫ | |||
:[http://support.mozilla.org/en-US/questions/917427#answer-307544 For Firefox 6 and higher] |
|||
javascript:navigator.registerProtocolHandler(' |
|||
mailto, |
|||
'https://<span class="input"><host></span>/?_task=mail&_action=compose&_to=%s', |
|||
'Roundcube' |
|||
); |
|||
[[Category:Mail]] |
Latest revision as of 23:32, 22 May 2012
Roundcube is a web based mail client.
This is a collection of random ramblings regarding working with it.
Use as mailto provider
The base url is as follows:
https://<host>/?_task=mail&_action=compose&_to=<email address>
To add this to firefox follow the steps outlined in the links below and then use the javascript exerpt further down:
javascript:navigator.registerProtocolHandler('
mailto,
'https://<host>/?_task=mail&_action=compose&_to=%s',
'Roundcube'
);