Re: dovecot/FreeBSD and Android IMAP clients

2018-09-24 Thread Victor Sudakov
Aki Tuomi wrote: > You can try doing this: > > protocol imap { > >   rawlog_dir = %h/rawlogs > > } > > then make directory under user's homedir called rawlogs and chmod 0777 it. > > Then try, you should end up with lots of files that are full of chatter > between the client & server, maybe it

Re: dovecot/FreeBSD and Android IMAP clients

2018-09-24 Thread Aki Tuomi
You can try doing this: protocol imap {   rawlog_dir = %h/rawlogs } then make directory under user's homedir called rawlogs and chmod 0777 it. Then try, you should end up with lots of files that are full of chatter between the client & server, maybe it gives you more indication what goes wrong

dovecot/FreeBSD and Android IMAP clients

2018-09-24 Thread Victor Sudakov
Dear Colleagues, I have a fairly vanilla setup of dovecot on FreeBSD, serving IMAP and POP3. Thunderbird/IMAP works fine, and so does mutt/IMAP. However, Android clients (Gmail/IMAP and K-9 Mail) have problems accessing folders other than the INBOX. They either show them empty with no mails (K-9

Re: Problem getting quota-warning script to function.

2018-09-24 Thread Aki Tuomi
Hi! It can take some time for us to look into these... Aki > On 24 September 2018 at 19:38 Ted wrote: > > > Hello, > > I haven't received a reply since I sent my last logs in, so I thought > I'd ask again and update the thread.  I had trouble getting the server > to work properly on dovecot

Re: Problem getting quota-warning script to function.

2018-09-24 Thread Ted
Hello, I haven't received a reply since I sent my last logs in, so I thought I'd ask again and update the thread.  I had trouble getting the server to work properly on dovecot 2.3.2 so I rebuilt the server back on 2.2.27.  I've got the quota enforcement itself working, but the warnings still fail

Re: v2.3.3 rc1 - Error: sieve: !!BUG!!: Binary compiled from dovecot.sieve is still corrupt

2018-09-24 Thread James
On 24/09/2018 13:35, Stephan Bosch wrote: You can enable `-d -' and `-t - -Tlevel=matching' as well. $ sieve-test -D -d - -t - -Tlevel=matching -c dovecot.conf sieve message sieve-test(james): Debug: Effective uid=1001, gid=10, home=/home/james sieve-test(james): Debug: maildir++: root=/path/t

Re: v2.3.3 rc1 - Error: sieve: !!BUG!!: Binary compiled from dovecot.sieve is still corrupt

2018-09-24 Thread Stephan Bosch
You can enable `-d -' and `-t - -Tlevel=matching' as well. Op 24-9-2018 om 13:34 schreef James: On 24/09/2018 11:51, Stephan Bosch wrote: Can you try with the sieve-test command-line tool, in particular with trace debugging enabled? Thank you for the debugging tip, is this useful? $ sieve

Re: v2.3.3 rc1 - Error: sieve: !!BUG!!: Binary compiled from dovecot.sieve is still corrupt

2018-09-24 Thread James
On 24/09/2018 12:54, James wrote: Remove 2.3.3 rc1, install 2.3.2 and 0.5.2, success with sieve-test including ":days 1"

Re: v2.3.3 rc1 - Error: sieve: !!BUG!!: Binary compiled from dovecot.sieve is still corrupt

2018-09-24 Thread James
On 24/09/2018 12:34, James wrote: $ cat sieve require ["vacation"]; vacation # Reply at most once a day to a same sender :days 1 ...removing the ":days 1" stops the corruption: $ sieve-test -D -c dovecot.conf sieve.2 message sieve-test(james): Debug: Effective uid=1001, gid=10, home=/home

Re: v2.3.3 rc1 - Error: sieve: !!BUG!!: Binary compiled from dovecot.sieve is still corrupt

2018-09-24 Thread James
On 24/09/2018 11:51, Stephan Bosch wrote: Can you try with the sieve-test command-line tool, in particular with trace debugging enabled? Thank you for the debugging tip, is this useful? $ sieve-test -D -c dovecot.conf sieve message sieve-test(james): Debug: sieve: Pigeonhole version 0.5.3.rc

Re: v2.3.3 rc1 - Error: sieve: !!BUG!!: Binary compiled from dovecot.sieve is still corrupt

2018-09-24 Thread Stephan Bosch
Can you try with the sieve-test command-line tool, in particular with trace debugging enabled? Op 24-9-2018 om 12:03 schreef James: I have a sieve problem with dovecot v2.3.3 rc1 with either of pigeonhole 0.5.2 or 0.5.3.rc1.  The the change that triggers this is in dovecot not pigeonhole.  S

v2.3.3 rc1 - Error: sieve: !!BUG!!: Binary compiled from dovecot.sieve is still corrupt

2018-09-24 Thread James
I have a sieve problem with dovecot v2.3.3 rc1 with either of pigeonhole 0.5.2 or 0.5.3.rc1. The the change that triggers this is in dovecot not pigeonhole. Sieve filtering has been working with v2.3.2 and many earlier versions. Log report: Sep 24 10:36:13 mailhost dovecot: [ID 702911 mail.

AW: Nightly builds of Debian packages

2018-09-24 Thread maurizio
test -Ursprüngliche Nachricht- Von: dovecot Im Auftrag von Christoph Pleger Gesendet: Dienstag, 9. Mai 2017 10:04 An: dovecot@dovecot.org Betreff: Nightly builds of Debian packages Hello, how is the future of the automatically built nightly debian packages of dovecot? Has that project b

Re: Last_login plugin and mysql

2018-09-24 Thread Thomas Hooge
Hello, last_login plugin uses dict interface, which does not support "update", it only supports get, set, unset and atomic inc. Set is implemented with 'INSERT INTO foo ... ON DUPLICATE UPDATE'. There is no configuration setting to change this, as dict cannot know without performing a SELECT t