Re: [Dovecot] v2.1.rc3 released

2012-01-16 Thread Kirill A. Shutemov
' autoreconf: automake failed with exit status: 1 $ automake --version | head -1 automake (GNU automake) 1.11.2 -- Kirill A. Shutemov

[Dovecot] Feature request - search and tag protocol - notmuch-alike approach

2012-02-03 Thread Kirill A. Shutemov
tp://notmuchmail.org/ -- Kirill A. Shutemov

[Dovecot] File descriptor leak in sieve-extprograms

2013-12-13 Thread Kirill A . Shutemov
se(sclient->fd_in) < 0) i_error("close(%s) failed: %m", sclient->path); - if (sclient->fd_out != -1 && sclient->fd_out != sclient->fd_out) + if (sclient->fd_out != -1 && sclient->fd_out != sclient->fd_in + && close(sclient->fd_out) < 0) i_error("close(%s/out) failed: %m", sclient->path); sclient->fd_in = sclient->fd_out = -1; -- Kirill A. Shutemov

Re: [Dovecot] File descriptor leak in sieve-extprograms

2013-12-13 Thread Kirill A. Shutemov
Stephan Bosch wrote: > On 12/13/2013 2:07 AM, Kirill A. Shutemov wrote: > > I've tried to use sieve-filter for my inbox (~6000 messages). It failed > > after > > some work with this backtrace: > > > > sieve-filter(kas): Error: socketpair() failed: Too many o

Re: [Dovecot] File descriptor leak in sieve-extprograms

2013-12-14 Thread Kirill A. Shutemov
Stephan Bosch wrote: > On 12/13/2013 11:14 PM, Kirill A. Shutemov wrote: > > Stephan Bosch wrote: > >> This probably fixes it, although I am not entirely sure. I am mainly a > >> bit puzzled on how this causes the fd leak; the fd_in and fd_out are for > >> the

Re: [Dovecot] File descriptor leak in sieve-extprograms

2013-12-21 Thread Kirill A. Shutemov
On Sat, Dec 21, 2013 at 03:18:31PM +0100, Stephan Bosch wrote: > On 12/14/2013 5:39 PM, Kirill A. Shutemov wrote: > > Stephan Bosch wrote: > >> On 12/13/2013 11:14 PM, Kirill A. Shutemov wrote: > >>> Stephan Bosch wrote: > >>>> This probably fixes it, a