doveadm mailbox command fails if backend has an IPv6 address

2018-01-15 Thread Andreas Jobs
IPv4) or Lookup of host ipv6addr:542 failed: ... (if backend is connected via IPv6) doveadm_tcp_connect_port tried a net_gethostbyname with "ipv6addr:542" as hostname. I've attached a quick-and-dirty-patch (for 2.2.33.2) that fixes this (at least for me). Regards, Andrea

Re: Strange thing on log rotation front

2018-01-20 Thread Andreas Jobs
t;B" (don't insert info message about log rotation) is useful too. --Andreas -- ! Andreas Jobs Network Operation Center ! ! Ruhr-Universitaet Bochum ! ! One Day I Will Find This Peer Guy and Then I Will Reset HIS Connection !

[BUG] Dovecot 2.2.22 lmtp child killed with signal 11

2016-03-20 Thread Andreas Jobs
l attach a backtrace and the current configuration. --Andreas -- ! Andreas Jobs Network Operation Center ! ! Ruhr-Universitaet Bochum ! ! One Day I Will Find This Peer Guy and Then I Will Reset HIS Connection ! #

Re: [BUG] Dovecot 2.2.22 lmtp child killed with signal 11

2016-03-21 Thread Andreas Jobs
vecot/core/commit/65d8efa66dca27db85f74ee2574188b51569a4c2.patch Yes, they fixed it. Thank you. --Andreas -- ! Andreas Jobs Network Operation Center ! ! Ruhr-Universitaet Bochum ! ! One Day I Will Find This Peer Guy and Then I Will Reset HIS Connection !

Dovecot 2.2.22 - doveadm via socket not working

2016-03-21 Thread Andreas Jobs
Limit% The server logs: Mar 22 00:29:47 doveadm(134.147.53.150): Fatal: USER environment is missing and -u option not used Mar 22 00:29:47 doveadm(134.147.53.150): Fatal: master: service(doveadm): child 31599 returned error 64 Any hints? --Andreas -- ! Andreas

[BUG] Dovecot 2.2.22 Pigeonhole 0.4.13 - Panic: epoll_ctl(del, 18) failed: Bad file descriptor

2016-03-21 Thread Andreas Jobs
: master: service(lmtp): child 18908 killed with signal 6 (core dumped) Regards, Andreas -- ! Andreas Jobs Network Operation Center ! ! Ruhr-Universitaet Bochum ! ! One Day I Will Find This Peer Guy and Then I Will Reset HIS

Re: Dovecot 2.2.22 - doveadm via socket not working

2016-03-23 Thread Andreas Jobs
e working as expected. Regards, Andreas -- ! Andreas Jobs Network Operation Center ! ! Ruhr-Universitaet Bochum ! ! One Day I Will Find This Peer Guy and Then I Will Reset HIS Connection !

Panic: file message-part-serialize.c: line 90 (part_serialize): assertion failed: (part->children == NULL)

2016-04-29 Thread Andreas Jobs
29 11:05:20 lmtp(redac...@ruhr-uni-bochum.de): Fatal: master: service(lmtp): child 12080 killed with signal 6 (core dumped) It looks like that this may be caused by a mail where there is the blank line after a part header missing: I attach Backtrace and configuration. --

Re: Panic: file message-part-serialize.c: line 90 (part_serialize): assertion failed: (part->children == NULL)

2016-04-30 Thread Andreas Jobs
On Sat, Apr 30, 2016 at 02:27:56PM +0300, Timo Sirainen wrote: > Thanks, this should fix it not to crash: > https://github.com/dovecot/core/commit/12fd7a30563f3256642070ef9528dda0d089cb41 Yes, it does. Thank you. --Andreas -- ! Andreas Jobs Network Ope

Re: [Dovecot] Antispam folder names

2013-08-05 Thread Andreas Jobs
scht* dovecot-antispam-utf8-logging.patch contains a patch for that (and adds some logging). The second patch (dovecot-antispam-configure.patch) fixes only a minor problem that I had with the configure script. --Andreas -- ! Andreas Jobs

smtp_address_cmp does not ignore case of localpart

2019-02-11 Thread Andreas Jobs via dovecot
Hi, in src/lib-smtp/smtp-address.c line 759 the localpart is compared with null_strcmp, which does not ignore the case. While this is the correct behavior (according to the RFC) it causes problems in real life. In my case the vacation notices are not sent, if someone writes to first.l...@ruh

Re: smtp_address_cmp does not ignore case of localpart

2019-02-12 Thread Andreas Jobs via dovecot
On Tue, Feb 12, 2019 at 08:12:43AM +0100, John Fawcett via dovecot wrote: On 11/02/2019 22:43, Andreas Jobs via dovecot wrote: In practice if you convert the username part to lower case in the MTA then you will accept mail with mixed case but only have to deal with lowercase in Dovecot. Yes