Re: Apparent Maildir permission issue

2017-01-16 Thread Bill Shirley
I've gotten errors like this when it was actually a selinux denial. If you're running selinux, check those logs too. Bill On 1/16/2017 4:09 PM, Mark Foley wrote: More info ... This is the only user having this permission problem. All other Thunderbird/dovecot users are getting mail file.

Re: Remove empty milder folders

2017-01-16 Thread Joseph Tam
@lbutlr writes: Not sure if anyone will find this useful, but this is how I deleted a bunch (several hundred) of empty mail folders from a user account: # doveadm mailbox status -u ?u...@example.com" messages "*" ALL | grep "=0" | awk -F= '{print $1}' | awk '{print "rm -rf

Re: Sieve: fileinto :create issue with Public Folder

2017-01-16 Thread Timo Sirainen
On 16 Jan 2017, at 20.25, dovecot@avv.solutions wrote: > > Hello Community, > > I face the following issue: > - using a sieve script to file into a existing private folder: ok > - using a sieve script to file into new private folder using ":create": ok > - using a sieve script to file into a

Re: Apparent Maildir permission issue

2017-01-16 Thread Mark Foley
More info ... This is the only user having this permission problem. All other Thunderbird/dovecot users are getting mail file. They all have the same permissions set on their Maildir folder. --Mark -Original Message- From: Mark Foley Date: Mon, 16 Jan 2017 13:21:31

Re: fts-solr: Returning 400 on searches; unescaped braces

2017-01-16 Thread Michael Welsh Duggan
Michael Welsh Duggan writes: > Using Debian, dovecot-solr 1:2.2.26.0-4, and solr-tomcat 3.6.2+dfsg-9, I > am getting 400 errors when doing searches. Here is an example search > query from dovecot that failed (captured with wireshark): > > Frame 23: 338 bytes on wire (2704

Sieve: fileinto :create issue with Public Folder

2017-01-16 Thread dovecot
Hello Community, I face the following issue: - using a sieve script to file into a existing private folder: ok - using a sieve script to file into new private folder using ":create": ok - using a sieve script to file into a existing public folder: ok - using a sieve script to file into new

Apparent Maildir permission issue

2017-01-16 Thread Mark Foley
I've just upgraded from Slackware 14.1 to 14.2. I've not done anything with dovecot -- it's the same version that was running before the upgrade. However, now I'm getting a permission error: /var/log/maillog: Jan 16 13:09:44 mail dovecot: imap(mark): Error: opendir(/home/HPRS/mark/Maildir)

Re: Dovecot source code audit

2017-01-16 Thread Odhiambo Washington
On 13 January 2017 at 20:17, Timo Sirainen wrote: > Mozilla sponsored source code audit for Dovecot. So thanks to them we have > our first public code audit: https://wiki.mozilla.org/MOSS/ > Secure_Open_Source/Completed#dovecot > > Dates: October 2016 - January 2017 > > dovecot is a

Re: Dovecot source code audit

2017-01-16 Thread Prakash Autade
Congratulations. On 13 January 2017 at 22:47, Timo Sirainen wrote: > Mozilla sponsored source code audit for Dovecot. So thanks to them we have > our first public code audit: https://wiki.mozilla.org/MOSS/ > Secure_Open_Source/Completed#dovecot > > Dates: October 2016 - January

Re: Remove empty milder folders

2017-01-16 Thread Darac Marjal
On Mon, Jan 16, 2017 at 07:03:49AM -0700, @lbutlr wrote: Not sure if anyone will find this useful, but this is how I deleted a bunch (several hundred) of empty mail folders from a user account: # doveadm mailbox status -u “u...@example.com" messages "*" ALL | grep "=0" | awk -F= '{print $1}'

Re: Plugin "mail_crypt" does not work

2017-01-16 Thread Evgeniy Korneechev
We tried these rights: [root@mail44 dovecot]# ls -la итого 80 drwxr-xr-x 8 root root 4096 янв 13 13:17 . drwxr-xr-x 98 root root 12288 янв 11 11:47 .. drwxrwxrwx 2 root root 4096 янв 10 15:58 eckey drwxr-xr-x 2 root root 4096 янв 13 12:42 eckey2 drwxr-xr-x 2 vmail vmail 4096 янв

Re: Replication: Can't unsubscribe from shared mailbox

2017-01-16 Thread Mike Fröhner
Hi Karsten, I have a similar issue with current 2.2.27 version on CentOS with public folder/namespaces on a active/active replication. I am able to subscribe the public folder on one dovecot, but it is not replicated to the 2nd dovecot throught dsync. Everything else is fine with dsync,

Re: Replication: Can't unsubscribe from shared mailbox

2017-01-16 Thread Karsten Heiken
Hi all, I hope it's okay to bump this once after four months. In the meantime we updated to 2.2.26.0 and our problem still persists: After unsubscribing from a shared mailbox, the subscription instantly re-appears. A pcap was attached to my original mail, in case it has something to do with

Remove empty milder folders

2017-01-16 Thread @lbutlr
Not sure if anyone will find this useful, but this is how I deleted a bunch (several hundred) of empty mail folders from a user account: # doveadm mailbox status -u “u...@example.com" messages "*" ALL | grep "=0" | awk -F= '{print $1}' | awk '{print "rm -rf ."$1}' > list then I looked over