Re: Trouble configuring managesive plugin for roundcube

2022-07-16 Thread Austin Witmer
That seems to have done it! Thanks again! Austin Witmer > On Jul 14, 2022, at 2:00 AM, Christian Kivalo wrote: > > > > >>> But you can make php think it connects to the correct hostname with the ssl >>> connection options >>> >>> $config['managesieve_conn_options'] = [ >>> 'ssl'

Re: Trouble configuring managesive plugin for roundcube

2022-07-14 Thread Christian Kivalo
>> But you can make php think it connects to the correct hostname with the ssl >> connection options >> >> $config['managesieve_conn_options'] = [ >> 'ssl' => [ >> 'verify_peer' => false, >> 'peer_name' => 'FQDN of mailserver', >> ], >> ]; >> >> This probably even works with

Re: Trouble configuring managesive plugin for roundcube

2022-07-13 Thread Austin Witmer
Thanks so much Christian Kivalo! See below. > On Jul 12, 2022, at 9:13 AM, Christian Kivalo wrote: > > On 2022-07-12 16:19, Austin Witmer wrote: >> So, I changed the $config['managesieve_host'] = >> 'tls://mail.mydomain.com’; to the fqdn of my mail server instead of >> the internal IP address a

Re: Trouble configuring managesive plugin for roundcube

2022-07-12 Thread Christian Kivalo
On 2022-07-12 16:19, Austin Witmer wrote: So, I changed the $config['managesieve_host'] = 'tls://mail.mydomain.com’; to the fqdn of my mail server instead of the internal IP address and now it works! Good to hear it works now :) Why would using the fqdn work, but not the internal LAN IP addres

Re: Trouble configuring managesive plugin for roundcube

2022-07-12 Thread Austin Witmer
So, I changed the $config['managesieve_host'] = 'tls://mail.mydomain.com’; to the fqdn of my mail server instead of the internal IP address and now it works! Why would using the fqdn work, but not the internal LAN IP address? As a side note, I am now remembering that in my main Roundcube config,

Re: Trouble configuring managesive plugin for roundcube

2022-07-11 Thread Christian Kivalo
I added “login” to my auth_mechanisms line in /etc/dovecot/conf.d/10-auth.conf. That line already looked like auth_mechanisms = plain This is what the line looks like now: auth_mechanisms = plain login I restarted dovecot and it still is not advertising anything after “SASL” in the sieve log fil

Re: Trouble configuring managesive plugin for roundcube

2022-07-10 Thread Austin Witmer
On Jul 10, 2022, at 5:34 PM, Benny Pedersen wrote: > > On 2022-07-11 00:38, Austin Witmer wrote: > >> Jul 10 22:33:27 mail dovecot: managesieve-login: Disconnected (no auth >> attempts in 0 secs): user=<>, rip=10.116.0.3, lip=10.116.0.2, TLS, >> session=<7VswBnvjXuIKdAAD> > > roundcube send no

Re: Trouble configuring managesive plugin for roundcube

2022-07-10 Thread Benny Pedersen
On 2022-07-11 00:38, Austin Witmer wrote: Jul 10 22:33:27 mail dovecot: managesieve-login: Disconnected (no auth attempts in 0 secs): user=<>, rip=10.116.0.3, lip=10.116.0.2, TLS, session=<7VswBnvjXuIKdAAD> roundcube send no user login to dovecot managesived, thats why it fails now imho wha

Re: Trouble configuring managesive plugin for roundcube

2022-07-10 Thread Austin Witmer
See below. > On Jul 10, 2022, at 4:03 PM, Christian Kivalo wrote: > > > > On 2022-07-10 23:10, Austin Witmer wrote: >> Ok, I changed to $config['managesieve_host'] = 'tls://10.116.0.2’; and >> the below is the log from /var/www/roundcube/logs/sieve.log during a >> connection attempt. Does this

Re: Trouble configuring managesive plugin for roundcube

2022-07-10 Thread Christian Kivalo
On 2022-07-10 23:10, Austin Witmer wrote: Ok, I changed to $config['managesieve_host'] = 'tls://10.116.0.2’; and the below is the log from /var/www/roundcube/logs/sieve.log during a connection attempt. Does this log give you any clues? [10-Jul-2022 14:59:48 -0600]: S: "IMPLEMENTATION" "Dovec

Re: Trouble configuring managesive plugin for roundcube

2022-07-10 Thread Austin Witmer
Ok, I changed to $config['managesieve_host'] = 'tls://10.116.0.2’; and the below is the log from /var/www/roundcube/logs/sieve.log during a connection attempt. Does this log give you any clues? [10-Jul-2022 14:59:48 -0600]: S: "IMPLEMENTATION" "Dovecot (Ubuntu) Pigeonhole" [10-Jul-2022 14:59:4

Re: POSSIBLE SPAM: Re: Trouble configuring managesive plugin for roundcube

2022-07-10 Thread Christian Kivalo
On July 10, 2022 5:01:02 PM GMT+02:00, Austin Witmer wrote: When I enable ssl = yes in my /etc/dovecot/conf.d/20-managesieve.conf file, I get the log line below from mail.log on my mail server. Jul 10 14:57:18 mail dovecot: managesieve-login: Disconnected (no auth attempts in 62 secs): use

Re: POSSIBLE SPAM: Re: Trouble configuring managesive plugin for roundcube

2022-07-10 Thread Austin Witmer
When I enable ssl = yes in my /etc/dovecot/conf.d/20-managesieve.conf file, I get the log line below from mail.log on my mail server. Jul 10 14:57:18 mail dovecot: managesieve-login: Disconnected (no auth attempts in 62 secs): user=<>, rip=10.116.0.3, lip=10.116.0.2, TLS handshaking: SSL_accept

Re: Trouble configuring managesive plugin for roundcube

2022-07-10 Thread Austin Witmer
So, here is my dovecot configuration. /etc/dovecot/dovecot.conf ## Dovecot configuration file # Enable installed protocols !include_try /usr/share/dovecot/protocols.d/*.protocol dict { #quota = mysql:/etc/dovecot/dovecot-dict-sql.conf.ext #expire = sqlite:/etc/dovecot/dovecot-dict-sql.conf.e

Re: Trouble configuring managesive plugin for roundcube

2022-07-10 Thread Christian Kivalo
>And here is my managesieve configuration from my roundcube server. >/var/www/roundcube/plugins/managesieve/config.inc.php > > >$config['managesieve_port'] = 4190; > >$config['managesieve_host'] = 'ssl://10.116.0.2'; Did you enable ssl on the dovecot managesieve listener? Also in roundcube co