Hello Martin
(cc-ing dev mailing list as this answer might be of a common interest)
Roundcube skins define a number of named containers which can be used to
add custom elements from plugins. Seek the skin templates
for <roundcube:container ..> tags to locate them.
For the compose screen, there's the 'composeoptions' container which is
probably the one you want. The plugin API wiki describes how to add
elements to such containers:
https://github.com/roundcube/roundcubemail/wiki/Plugin-…
[View More]API#client-scripts-a…
Using JavaScript, this could look like this:
var menu = $('<select>')...
rcmail.add_element(menu, 'composeoptions');
You can also add elements to containers with PHP when the view template is
rendered:
$menu = new html_select(array('name' => 'xxx'));
$menu->add(array(/* add options here */));
$this->api->add_content(
html::span('composeoption', html::label(null, $menu->show() .
$this->gettext('menulabel'))),
'composeoptions'
);
For further questions about Roundcube plugin development, please subscribe
and post to the dev mailing list. This is our dedicated support channel for
development stuff.
Kind regards,
Thomas
On Wed, May 17, 2017 at 1:16 PM, Martin Landhage <martin.landhage(a)gmail.com>
wrote:
> This is what I'm trying to archive.
>
> Regards
> Martin
>
> 2017-05-17 13:13 GMT+02:00 Martin Landhage <martin.landhage(a)gmail.com>:
>
>> Hello !
>>
>> I have been struggling some time now to make a menu in compose area, but
>> I have not been very successful.
>>
>> First I did a version that adds the menu in settings area that worked
>> quite well. But the customer was not happy with that.
>>
>> Then I have been struggling with diffrent solutions and no one really
>> worked for me.
>>
>> The best solution I have seen is for Enigma plugin. But it's only working
>> in Classic skin and ONLY for Enigma.
>>
>> I have to use Roundcube 1.1.4.
>>
>> Any good ideas ?
>>
>> To unpack the file, add .tar.gz
>>
>> Regards
>> Martin Landhage
>>
>
>
[View Less]
Hi, I've noticed a strange behaviour after upgrading from RC 1.2.3 to 1.2.5, HTML e-mails rendering seems to be a little broken.
This is how a test massage looks in RC 1.2.3:
And this is how same message looks in RC 1.2.5 and 1.2.4 too (note the missing formatting, colors, …):
To reproduce this, I’ve used same configuration on both testing environments.
Attached below, the e-mail template used in this example.
Anyone else il facing the same issue or have an idea on how to fix this?
…
[View More]Thanks
Dott. Stefano Gironella
Schema31 S.p.A. - Socio Unico
FI - ROMA - PA
ITALY
Tel: +39. 06.98.358.472
Fax: +39. 055.71.880.466
Società del Gruppo Ovidio Tech s.r.l.
[View Less]
Dear subscribers
We proudly announce that the feature-complete release candidate for the
next major version 1.3 of Roundcube webmail is now available for final
testing.
After dropping support for older browsers and PHP versions and adding some
new features like the widescreen layout, the release candidate finalizes
that work and also fixes two security issues (updates for stable versions
will follow) plus adds improvements to the Managesieve and Enigma plugins.
We also slightly polished the …
[View More]Larry theme to make it look a little less
2010 :-)
Although the default theme still doesn’t work on mobile devices, a fully
responsive skin is currently being worked on.
As a reminder: if you’re installing the dependent package or run Roundcube
directly from source, you now need to install the removed 3rd party
javascript modules by executing the following install script:
$ bin/install-jsdeps.sh
With the upcoming stable release of 1.3.0 the old 1.x series will only
receive important security fixes.
As usual, see the complete Changelog in our wiki [1] and download the new
packages from https://roundcube.net/download.
Please note that this is a release candidate and we recommend to test it on
a separate environment. And don’t forget to backup your data before
installing it.
Kind regards,
Thomas
[1] https://github.com/roundcube/roundcubemail/wiki/Changelog
[View Less]