Re: How to send mail to mailbox with disabled domain?

2018-09-17 Thread Kai Schaetzl
Thanks for all the replies. I didn't have time to reply earlier. I went with my first proposed solution. Everything else is simply too much hazzle. You would have to set this for every single exception/address/user and so on and you cannot be sure that it doesn't bite you some time later with a

Re: Problem with envelope from in Pigeonhole after upgrade

2018-09-17 Thread Aki Tuomi
Can you also provide the resulting email? Aki On 17.09.2018 09:17, David Dodd wrote: > I was able to make it happen from the command line on the host that would > normally receive inbound mail for me: > > echo Hello | dovecot-lda -d dave -f f...@nowhere.com > > The output then appears as an

Re: Quotas not working with roundcube

2018-09-17 Thread Reio Remma
Ahh, there it is. I was reading "Enabling quota plugins". Thanks, Reio On 17/09/2018 09:56, Aki Tuomi wrote: You should read it more carefully.  See the 'Configuration' section. Aki On 17.09.2018 09:31, Reio Remma wrote: I was wondering about that myself, but then I couldn't find any info

Re: Quotas not working with roundcube

2018-09-17 Thread Reio Remma
I was wondering about that myself, but then I couldn't find any info on quota = in the wiki. Please update: https://wiki2.dovecot.org/Quota :) Thanks, Reio On 17/09/2018 08:57, Aki Tuomi wrote: You did everything except actually enable quota... =) Try adding this to your configuration

Re: Problem with envelope from in Pigeonhole after upgrade

2018-09-17 Thread David Dodd
I was able to make it happen from the command line on the host that would normally receive inbound mail for me: echo Hello | dovecot-lda -d dave -f f...@nowhere.com The output then appears as an email in my inbox. --Dave

Re: Quotas not working with roundcube

2018-09-17 Thread Mik J
Hello Aki, Thank you very much, indeed that was the missing part. I've also enabled mailbox_list_index = yes protocol !indexer-worker {   mail_vsize_bg_after_count = 100 } As described in the documentation https://wiki.dovecot.org/Quota/Count Regards Le lundi 17 septembre 2018 à 07:57:58

Re: Quotas not working with roundcube

2018-09-17 Thread Aki Tuomi
You should read it more carefully.  See the 'Configuration' section. Aki On 17.09.2018 09:31, Reio Remma wrote: > I was wondering about that myself, but then I couldn't find any info > on quota = in the wiki. > > Please update: > > https://wiki2.dovecot.org/Quota > > :) > > Thanks, > Reio > >

Re: Problem with envelope from in Pigeonhole after upgrade

2018-09-17 Thread David Dodd
The content in my INBOX looks like this... >From MAILER-DEAMON Mon Sep 17 17:13:08 2018 hello X-UID: 30392 Status: X-Keywords: Content-Length: 1 when using dovecot-pigeonhole 0.5 It looks like this... >From no...@nowhere.com Mon Sep 17 17:13:08 2018 hello X-UID: 30392 Status: X-Keywords:

Re: Proxy secured incoming POP3/IMAP4 to unsecure backend?

2018-09-17 Thread Aki Tuomi
On 17.09.2018 13:59, Alexander Chekalin wrote: > Hi, > > I try to set up dovecot as a proxy server, to proxy requests to > several dovecot-based backend servers. I wand external clients who > connects to this proxy Dovecot to use TLS (this is easy to set up) > while want to have unsecured

Re: Proxy secured incoming POP3/IMAP4 to unsecure backend?

2018-09-17 Thread Admin
> On Sep 17, 2018, at 6:59 AM, Alexander Chekalin > wrote: > > Hi, > > I try to set up dovecot as a proxy server, to proxy requests to several > dovecot-based backend servers. I wand external clients who connects to this > proxy Dovecot to use TLS (this is easy to set up) while want to

Using both starttls and ssl in passdb on proxy results in timeouts

2018-09-17 Thread Filias Heidt
Hi List, I have a dovecot which proxies to different backends depending on an entry in a mysql-database. The mysql-query sets ‚ssl‘ to ‚any-cert‘ and this works fine. But this causes me a problem: sieve-backends only support STARTTLS and if I set ‚ssl‘ to ‚any-cert‘ (or yes), it will attempt a

Proxy secured incoming POP3/IMAP4 to unsecure backend?

2018-09-17 Thread Alexander Chekalin
Hi, I try to set up dovecot as a proxy server, to proxy requests to several dovecot-based backend servers. I wand external clients who connects to this proxy Dovecot to use TLS (this is easy to set up) while want to have unsecured (plain IMAP/POP) connections to backends. You see, links to

Re: Proxy secured incoming POP3/IMAP4 to unsecure backend?

2018-09-17 Thread Alexander Chekalin
Thank you! Ok, so I can omit ssl=no and startssl=no, and this results in default settings for ssl which is 'off'? Or the defaults are 'on' anyway? Can I somehow specify ports on remote hosts that proxy will use to connect to? Like (just image): 'proxy host_imap=10.1.1.1:143

Re: Proxy secured incoming POP3/IMAP4 to unsecure backend?

2018-09-17 Thread Aki Tuomi
The port is determined with port=nnn setting. You can't return per-protocol port like that, you need to look at the protocol requested by user and return port based on that, or you can omit port to default into "standard port". not using ssl/starttls is default. > On 17 September 2018 at 16:35

Re: Proxy secured incoming POP3/IMAP4 to unsecure backend?

2018-09-17 Thread Aki Tuomi
https://wiki.dovecot.org/PasswordDatabase/ExtraFields/Proxy For list of values you can use. Aki > On 17 September 2018 at 16:42 Aki Tuomi wrote: > > > The port is determined with port=nnn setting. You can't return per-protocol > port like that, you need to look at the protocol requested by

Re: Proxy secured incoming POP3/IMAP4 to unsecure backend?

2018-09-17 Thread Alexander Chekalin
Seen that URL but port= is strange due to there is no protocol connection. So if I set port=12345 then what proto will I see there? Misleading setting this is why I mentioned (non-existing) per-proto port setting above. May I please ask for any example on how to pass port per proto? It is a bit

Re: Proxy secured incoming POP3/IMAP4 to unsecure backend?

2018-09-17 Thread Aki Tuomi
auth process receives the protocol requested when performing authentication as variable %s (see https://wiki2.dovecot.org/Variables) You can use this to choose the value you return for port. Aki > On 17 September 2018 at 16:56 Alexander Chekalin > wrote: > > > Seen that URL but port= is

Re: Proxy secured incoming POP3/IMAP4 to unsecure backend?

2018-09-17 Thread Alexander Chekalin
Ok, got that! After I remover ssl=no it seems to start working as expected. Will know that 'by design' feature for Dovecot, THANK YOU! On Mon, Sep 17, 2018 at 5:34 PM Aki Tuomi wrote: > auth process receives the protocol requested when performing > authentication as variable %s (see