Roundcube Community Forum

 

Recent posts

#1
General Discussion / Re: Mail interface :: Panel ar...
Last post by adriansev - September 06, 2024, 12:37:17 PM
nevermind, the Larry interface skin have exactly what i need.
#2
General Discussion / Mail interface :: Panel arrang...
Last post by adriansev - September 06, 2024, 10:29:19 AM
Hi! I'm a new user of roundcube, on a new installation of it and as 2nd user (after the admin) i
observed the non-optimal arrangement of panels meaning:
        |           |
folders | mail list | mail content
        |           |

with not possibility to change to :

        |
        |      mail list
folders |---------------------
        |
        |      selected mail content IF mail selected


Does anyone have an idea if this can be changed?
Thanks a lot!!
#3
API Based Plugins / Re: Calendar plugin recommenda...
Last post by doktoil-makresh - September 06, 2024, 09:07:01 AM
Hi,

First of all, thank you for sharing your guide to allow Caldav usage in RC.
I installed everything but the elastic skin patch (I'm currently using Larry)

I've a personnal nextcloud instance running, so I've adapted the URL like this:
$config['calendar_caldav_server'] = "https://mynextcloud.instance.org/remote.php/dav";
$config['calendar_caldav_url'] = 'https://mynextcloud.instance.org/remote.php/dav/principals/%u';;

Please note my nextcloud password is different than my IMAP's password.

I can see the calendar icon in RC, but I can't see my CalDAV calendar into it, neither add it.
Same in Settings/Calendar menu.

Is there something I missed somewhere?
#4
Pending Issues / Re: Multiple domain help issue...
Last post by SKaero - September 05, 2024, 08:03:14 PM
If you create a php file in the Roundcube directory with the following what does it return?
1. <?php echo $_SERVER['HTTP_HOST']; ?><br />
2. <?php echo $_SERVER['SERVER_NAME']; ?><br />
3. <?php echo $_SERVER['SERVER_ADDR']; ?><br />
#5
Pending Issues / Re: Multiple domain setup
Last post by Shadow1000 - September 05, 2024, 03:06:17 PM
hello?
#6
Pending Issues / Re: Roundcube Webmail 1.4.15: ...
Last post by IOSalex - September 05, 2024, 11:36:43 AM
Quote from: SKaero on September 05, 2024, 11:20:52 AMIf your a end user and just have access to Roundcube you wont be able to change your password in Roundcube unless your provider sets up the password plugin.

Thanks - unfortunately, it's not my own server. 😧
 
#7
Pending Issues / Re: Roundcube Webmail 1.4.15: ...
Last post by SKaero - September 05, 2024, 11:20:52 AM
If you run the server Roundcube is installed on you can configure the password plugin that comes with Roundcube to change the password on the mail server.

If your a end user and just have access to Roundcube you wont be able to change your password in Roundcube unless your provider sets up the password plugin.
#8
Pending Issues / Roundcube Webmail 1.4.15: Can ...
Last post by IOSalex - September 05, 2024, 09:50:02 AM
Hello community, I hope I am storing my topic in the right section, otherwise I ask to forgive my mistake and put it on the right place.....  🙏

I wonder, how a user can change his password in Roundcube Webmail 1.4.15? I didn't find any hint in the settings. 🤔

Thank you very much!
#9
API Based Plugins / Re: Calendar plugin recommenda...
Last post by internethering - September 05, 2024, 06:43:55 AM
There is no patch needed at the moment. My steps to get it working:

cd /var/www/html/roundcubemail
git clone https://git.kolab.org/diffusion/RPK/roundcubemail-plugins-kolab.git
cd /var/www/html/roundcubemail/roundcubemail-plugins-kolab
cp -a /var/www/html/roundcubemail/roundcubemail-plugins-kolab/calendar /var/www/html/roundcubemail/plugins
cp -a /var/www/html/roundcubemail/roundcubemail-plugins-kolab/libcalendaring /var/www/html/roundcubemail/plugins
cp -a /var/www/html/roundcubemail/roundcubemail-plugins-kolab/libkolab /var/www/html/roundcubemail/plugins

enabled these three plugins in /var/www/html/roundcubemail/config/config.inc.php
integrated the /var/www/html/roundcubemail/plugins/libkolab/SQL/mysql.initial.sql

copied /var/www/html/roundcubemail/plugins/config.inc.php.dist to /var/www/html/roundcubemail/plugins/config.inc.php and edited:

$config['calendar_caldav_server'] = "https://<nextcloud_url>/remote.php/dav";
$config['calendar_caldav_url'] = 'https://<nextcloud_url>/remote.php/dav/calendars/%u/%n';

so, now it works, but the elastic skin is failing. so I followed the steps of https://git.kolab.org/T4247#75894

cd /var/www/html/roundcubemail/roundcubemail-plugins-kolab
git checkout dev/elastic
npm install less
ln -s /var/www/html/roundcubemail/skins /var/www/html/roundcubemail/roundcubemail-plugins-kolab/
edited less-build.sh so its using ./node_modules/less/bin/lessc

./less-build.sh
cp plugins/libkolab/skins/elastic/libkolab.min.css /var/www/html/roundcubemail/plugins/libkolab/skins/elastic/libkolab.css

voila: working calender with nextcloud
#10
Issues & Bugs / TNEF encoding
Last post by azzepis - September 04, 2024, 09:00:16 AM
Hi.
I'm using Roundcube Webmail 1.6.8 and list of plugins:
filesystem_attachments   1.0
jqueryui   1.13.2   
managesieve   9.4
markasjunk   2.0   
password   5.3

I'm receiving regularly emails from some user, who uses outlook and his messages uses TNEF format.
Message looks like:



if I change here program/lib/Roundcube/rcube_message.php on line 1102 (this line added here https://github.com/roundcube/roundcubemail/commit/22066d8ffcc9b01e12472d652548a2291fd08aad)

$tpart->charset         = RCUBE_CHARSET;
to

$tpart->charset         = 'windows-1251';
All looks good.

I think RCUBE_CHARSET should be replaced with some function that checks encoding in TNEF attachment and uses it instead of some default constant.
Can you please advice the way I can implement some similar workaround but without  source code changes?