Re: [RCU] Roundcube logging settings

2017-01-29 Thread Maarten
If you set debug_level=0 then it should stop logging verbose. Then it should only log where the connection came from, method,pid, session, etc. So normal log stuff On 2017-01-29 20:01, G. Schlisio wrote: Hi all, I am using RC 1.2.3 on a linux/systemd machine and it works really well - than

Re: [RCU] Help with Apache rewriterule to force roundcube to use https

2017-03-09 Thread Maarten
I use SL(another rhel clone) and this works for me: RewriteEngine on ReWriteCond %{SERVER_PORT} !^443$ RewriteRule ^/(.*) https://%{HTTP_HOST}/$1 [NC,R,L] On 2017-03-09 19:47, Robert Moskowitz wrote: I am working on Centos7 which provides roundcubemail 1.1.7 and Apache 2.4. My current serve

Re: [RCU] Help with Apache rewriterule to force roundcube to use https

2017-03-09 Thread Maarten
I meant I use Scientific Linux 7 On 2017-03-09 19:56, Maarten wrote: I use SL(another rhel clone) and this works for me: RewriteEngine on ReWriteCond %{SERVER_PORT} !^443$ RewriteRule ^/(.*) https://%{HTTP_HOST}/$1 [NC,R,L] On 2017-03-09 19:47, Robert Moskowitz wrote: I am working on

[RCU] syncing roundcube contacts/calendar with a device

2017-06-03 Thread Maarten
Hello, I've been search for a way to sync my contacts and calendar in roundcube to a device(thunderbird,phone etc..). Anyone on this list know if there is way to get that done with roundcube? greetings, Maarten ___ Roundcube Users mailing list

Re: [RCU] Install Debian Package without apache2_invoke

2017-06-11 Thread Maarten
Hello Johannes, As far as I know the roundcube devs only maintain the roundcube tar froms the website(https://roundcube.net/download). The one from the debian repos is probably packaged by debian repo packager. You can create your own or/and disbable it, then pointing towards the location where

Re: [RCU] SSL certificate woes with Roundcube 1.3 and PHP 5.6

2017-08-11 Thread Maarten
'cafile' => '/etc/pki/tls/certs/combined.pem', ), ); smtp settings: $config['smtp_conn_options'] = array( 'ssl' => array( 'verify_peer' => true, 'verify_depth' => 3, ), ); Hope that hel

[RCU] mailsploit

2017-12-07 Thread Maarten
Hello, Is roundcube going to get a patch for mailsploit? https://www.mailsploit.com/ I tried the demo and it seems that roundcube is vulnurable for this: https://www.mailsploit.com/index#demo Incoming mail can be shown is if were from some domein which it is not from. __

Re: [RCU] mailsploit

2017-12-07 Thread Maarten
My bad, I tested wrong, seems I understood the exploit wrong. I just realized it's not on the receiving end but on the sending client. Which payload did you use to test roundcube or how did you test this in roundcube? On 2017-12-07 10:07, A.L.E.C wrote: On 12/07/2017 09:45 AM, Maarten

Re: [RCU] My roundcube email

2018-02-05 Thread Maarten
roundcube is just a mail client, do you see any mails being received in your maillogs by your mta(postfix, sendmail,..?) If you do but no mail is showing up or loading into you client that the problem could be a problem with your roundcube config or a problem with your imap server setup to retrieve

Re: [RCU] My roundcube email

2018-02-07 Thread Maarten
e who you are paying for > email or web hosting services. > > Roundcube is not a service but free software which your hosting > provider installed on their servers. > > Best regards, > Thomas > > > On Mon, Feb 5, 2018 at 7:22 PM, Maarten >

Re: [RCU] Unknown user in users table, very odd, possible security hole

2018-02-08 Thread Maarten
I would start by checking the ip adress that user logged in with. On 02/08/2018 07:10 PM, Jorge Bastos wrote: > > Howdy, > >   > > I have a verrry odd thing happening. > > I have an user, unknown, that is in my users table, for a domain > */_that isn’t mine, and never was._/* > > This records

Re: [RCU] Cannot send mail via round cube

2018-03-01 Thread Maarten
I'm using letsencrypt certificates with roundcube and I'm not having any issues. On 03/01/2018 07:49 PM, ɹןʇnqן wrote: > On Mar 1, 2018, at 09:21, NederHost/Sebastiaan Hoogeveen > wrote: >> The 'SSL alert number 48' indicates that the server certificate cannot be >> verified due to being issue

Re: [RCU] Cannot send mail via round cube

2018-03-02 Thread Maarten
ssl_cert = How do you have it setup? > > In dovecot I have the key and cert set to point to > /usr/local/etc/dehydrated/certs/domain/privkey.pem and .../fullchain.pem > > >> On Mar 1, 2018, at 11:01, Maarten wrote: >> >> I'm using letsencrypt certificates

Re: [RCU] Cannot send mail via round cube

2018-03-02 Thread Maarten
), ); Combined being ca-bundle.trust.crt and ca-bundle.crt. When I remove that config setting I can still send mail via roundcube. Might be worth trying seeing what it does for you. On 2018-03-02 20:09, Maarten wrote: ssl_cert = How do you have it setup? In dovecot I have the key and cert

Re: [RCU] Cannot send mail via round cube

2018-03-02 Thread Maarten
Or you could try setting verify_peer => false On 03/02/2018 08:20 PM, Maarten wrote: > In my roundcube I have the following set: > > $config['imap_conn_options'] = array( >   'ssl' => array( > 'verify_peer'  => true, > &#

Re: [RCU] Cannot send mail via round cube

2018-03-02 Thread Maarten
https://secure.php.net/manual/en/context.ssl.php On 03/02/2018 08:22 PM, Maarten wrote: > Or you could try setting verify_peer => false > > > On 03/02/2018 08:20 PM, Maarten wrote: >> In my roundcube I have the following set: >> >> $config['

Re: [RCU] Cannot send mail via round cube

2018-03-02 Thread Maarten
verify_peer was added in php 5.6.0 so if you are running a lower version that option won't work. On 03/02/2018 08:28 PM, Maarten wrote: > https://secure.php.net/manual/en/context.ssl.php > > > On 03/02/2018 08:22 PM, Maarten wrote: >> Or you could try setting verify_peer

Re: [RCU] Cannot send mail via round cube

2018-03-03 Thread Maarten
The file you are asking about as /etc/Ppi? That file is the roundcube configuration file--> config.inc.php: // IMAP socket context options // See http://php.net/manual/en/context.ssl.php // The example below enables server certificate validation $config['imap_conn_options'] = array(   'ssl'   

Re: [RCU] Cannot send mail via round cube

2018-03-03 Thread Maarten
;> Am 03.03.2018 um 10:08 schrieb Maarten: >>> If I understand ssl correctly I don't see the point to putting >>> fullchain.pem letsencrypt there, because of the following. Your browser >>> has the Root certificates installed, a php application does not.

Re: [RCU] roundcube on iphone: huge font

2015-10-05 Thread Maarten van Baarsel
undcubemail/blob/release-1.1/skins/larry/ui.js#L61 > > Could you provide the User-Agent string for your device/browser? In the bug! Thanks for the fast reply, Maarten. ___ Roundcube Users mailing list users@lists.roundcube.net http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] SSL certificate woes with Roundcube 1.3 and PHP 5.6

2017-08-31 Thread Maarten van Baarsel
to Ubuntu. What I have done today is to rebuild OpenSSL, PHP and even Apache, in that order. It seemed a long shot, but I had run out of ideas. Lo and behold, rebuilding has done the trick! A simple My guess would be that this runs 'c_rehash' as part of the build process. Maarten. ___