Re: SMTPUTF8 in dovecot lmtp - current status

2024-11-12 Thread Peter via dovecot
On 12/11/24 20:18, Aki Tuomi via dovecot wrote: There is an experimental feature in main branch, but you need to enable it yourself for now. We are likely going to release 2.4 packages with the feature enabled, though. To enable, use --enable-experimental-mail-utf8 configure flag. Is there

Re: SMTPUTF8 in dovecot lmtp - current status

2024-11-11 Thread Aki Tuomi via dovecot
> On 12/11/2024 08:22 EET Kamil Jońca via dovecot wrote: > > > About a year ago I asked about SMTPUTF8 in dovecot-lmtp, and then > dovecod did not handle it. > Is that changed? > KJ There is an experimental feature in main branch, but you need to enable it yourself f

SMTPUTF8 in dovecot lmtp - current status

2024-11-11 Thread Kamil Jońca via dovecot
About a year ago I asked about SMTPUTF8 in dovecot-lmtp, and then dovecod did not handle it. Is that changed? KJ -- http://wolnelektury.pl/wesprzyj/teraz/ A bore is someone who persists in holding his own views after we have enlightened him with ours

dovecot lmtp delivery fails with compression enabled and mailbox stored under different os users

2024-09-20 Thread jonas--- via dovecot
# dovecot --version 2.3.21.1 (d492236fa0) Error itself(I've replaced some data like original domains/and usernames): Sep 20 14:24:08 lmtp(l...@forwardusr.org)<486449><+IvZKVhb7WYxbAcAZOUKzw>: Debug: auth-master: userdb lookup(l...@forwardusr.org): Started userdb lookup Sep 20 14:24:08 lmtp(l...

Re: dovecot lmtp and smtputf8

2023-10-24 Thread Kamil Jońca
"k v" writes: > Using the changes described in this pull request > https://github.com/dovecot/core/pull/190, you can add SMTPUTF8 capability to > the Dovecot LMTP server. Work on the patch is still in progress, and UTF8 > support is not complete. However, you can u

Re: dovecot lmtp and smtputf8

2023-10-24 Thread k v
Using the changes described in this pull request https://github.com/dovecot/core/pull/190, you can add SMTPUTF8 capability to the Dovecot LMTP server. Work on the patch is still in progress, and UTF8 support is not complete. However, you can use the following trick: Enable SMTPUTF8 support in

dovecot lmtp and smtputf8

2023-10-23 Thread Kamil Jońca
Does dovecot handle smtputf8? Last articles regarding this are several years old. Anything changed? KJ ___ dovecot mailing list -- dovecot@dovecot.org To unsubscribe send an email to dovecot-le...@dovecot.org

Re: postfix connects to dovecot lmtp socket, but nothing is delivered

2023-01-05 Thread Benny Pedersen
Gerben Wierda skrev den 2023-01-05 21:34: Hmm: according to the documentation, the default is "imap pop3 lmtp" But my installation (2.3.20, Alpine apk) for some reason only ran "imap" by default and now you know there is no defaults ? in case of not working a doveconf -n would be helpfull on

Re: postfix connects to dovecot lmtp socket, but nothing is delivered

2023-01-05 Thread Gerben Wierda
rt? For using a socket postfix would look >>> something like: >>> >>>virtual_transport = lmtp:unix:private/lmtp >>> >> >> I removed the tcp port for now. >> >> / # doveconf service/lmtp >> service lmtp { >>

Re: postfix connects to dovecot lmtp socket, but nothing is delivered

2023-01-05 Thread Gerben Wierda
mtp:unix:private/lmtp >> > > I removed the tcp port for now. > > / # doveconf service/lmtp > service lmtp { > chroot = > client_limit = 1 > drop_priv_before_exec = no > executable = lmtp > extra_groups = $default_internal_group > group = >

Re: postfix connects to dovecot lmtp socket, but nothing is delivered

2023-01-05 Thread Gerben Wierda
_before_exec = no executable = lmtp extra_groups = $default_internal_group group = idle_kill = 0 privileged_group = process_limit = 0 process_min_avail = 0 protocol = lmtp service_count = 0 type = unix_listener /var/spool/postfix/private/dovecot-lmtp { group =

Re: postfix connects to dovecot lmtp socket, but nothing is delivered

2023-01-05 Thread Gerben Wierda
, so I changed the config to use that one. Now I only have to find out why dovecot doesn't create the /var/spool/postfix/private/dovecot-lmtp socket The inet_listener was added to see if I could work around this. G

Re: postfix connects to dovecot lmtp socket, but nothing is delivered

2023-01-05 Thread Aki Tuomi
> On 05/01/2023 19:17 EET dove...@ptld.com wrote: > > > > service lmtp { > > inet_listener lmtp { > > address = 127.0.0.1 > > port = 24 > > } > > > unix_listener /var/spool/postfix/private/lmtp { > > mode = 0660 > > user = postfix > > group = postfix > > } > > > Looks like you are activatin

Re: postfix connects to dovecot lmtp socket, but nothing is delivered

2023-01-05 Thread dovecot
service lmtp { inet_listener lmtp { address = 127.0.0.1 port = 24 } unix_listener /var/spool/postfix/private/lmtp { mode = 0660 user = postfix group = postfix } Looks like you are activating both a socket and a port. Im not sure what dovecot does, does it bind to both or does it pick one an

Re: postfix connects to dovecot lmtp socket, but nothing is delivered

2023-01-05 Thread Aki Tuomi
> On 05/01/2023 18:38 EET Gerben Wierda wrote: > > > I am setting up a new server combination (postfix + dovecot). dovecot's auth > service works for postfix. Just lmtp does not and I need to find out why. I > don't see anything in the dovecot logging, but I see this on the postfix side > (

postfix connects to dovecot lmtp socket, but nothing is delivered

2023-01-05 Thread Gerben Wierda
I am setting up a new server combination (postfix + dovecot). dovecot's auth service works for postfix. Just lmtp does not and I need to find out why. I don't see anything in the dovecot logging, but I see this on the postfix side (debug) Jan 05 16:11:59 snape postfix/lmtp[127]: connection esta

Re: dovecot-lmtp crashing when setting lmtp_proxy=yes

2021-07-19 Thread Camilo Sperberg
Your solution did work perfectly, although I had to enable an inet-listener because I had only a socket connection configured. In hindsight the problem was pretty obvious but the segfault threw me off a bit. Thanks for the answer! Greetings, Camilo Sperberg On Fri, Jul 16, 2021 at 8:10 AM Aki Tu

Re: dovecot-lmtp crashing when setting lmtp_proxy=yes

2021-07-15 Thread Aki Tuomi
> On 15/07/2021 18:37 Camilo Sperberg wrote: > > > Hi all: > > We are currently in the process of setting up dovecot proxy so that we can > deploy multiple machines in order to keep growing. > > We are trying now to create an entry point, and from there send the traffic > to either the sam

Dovecot LMTP Process Hung

2021-07-01 Thread Miguel Ângelo Santos Pereira
Hey there guys, Here's what I found in the logs: Jul 1 08:10:27 tango dovecot: imap-login: Warning: Event 0x564fff5fcb20 leaked (parent=(nil)): client-common.c:217 Jul 1 08:10:27 tango dovecot: master: Warning: Sent SIGTERM to 1 auth processes Jul 1 08:10:27 tango dovecot: master: Warning: Proces

Re: dovecot: lmtp: Error: fatal error: failed to reserve page summary memory

2020-10-08 Thread Roman Vasilyev
t; > DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,RDNS_NONE,SPF_HELO_NONE,SPF_PASS > > > > scantime=0.3,size=2760,user=Debian-exim,uid=114,required_score=5.0,rhost=::1,raddr=::1,rport=57844,mid= pf95pxus...@mail.gmail.com >

Re: dovecot: lmtp: Error: fatal error: failed to reserve page summary memory

2020-10-08 Thread Stephan Bosch
_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,RDNS_NONE,SPF_HELO_NONE,SPF_PASS scantime=0.3,size=2760,user=Debian-exim,uid=114,required_score=5.0,rhost=::1,raddr=::1,rport=57844,mid=<mailto:pf95pxus...@mail.gmail.com>>,autolearn=no autolearn_force=no Sep 17 08:54:00 lonjemail dovecot: lmtp(4254): Connect fro

dovecot: lmtp: Error: fatal error: failed to reserve page summary memory

2020-09-17 Thread Roman Vasilyev
d=114,required_score=5.0,rhost=::1,raddr=::1,rport=57844,mid=,autolearn=no autolearn_force=no Sep 17 08:54:00 lonjemail dovecot: lmtp(4254): Connect from local Sep 17 08:54:00 lonjemail dovecot: lmtp: Error: fatal error: failed to reserve page summary memory Sep 17 08:54:00 lonjemail dovecot: lmtp: Error: Sep

dovecot-lmtp dont see otherMailbox record?

2020-03-01 Thread pi0trek75
Hello Postfix + LDAP , Samba as LDAP server, Dovecot virtual_transport set in postfix to dovecot-lmtp ( for autoresponder support ) Users have their email aliases in the otherMailbox record For example, account_test@example-domain user has an alias: test@exmaple-domain Query from

Re: socket dovecot-lmtp is not created anymore

2020-01-22 Thread ratatouille
Sami Ketola schrieb am 22.01.20 um 21:07:24 Uhr: > > This the setting in /etc/dovecot/conf.d/10-master.conf > > > > service lmtp { > > unix_listener /var/spool/postfix/private/dovecot-lmtp { > >group = postfix > >mode = 0600 > >user = postf

Re: socket dovecot-lmtp is not created anymore

2020-01-22 Thread Sami Ketola
> On 22 Jan 2020, at 20.59, ratatouille wrote: > > Hello! > > Since experiments on my testserver two days ago > /var/spool/postfix/private/dovecot-lmtp > is not created anymore. > > This the setting in /etc/dovecot/conf.d/10-master.conf > > service lmtp { &

socket dovecot-lmtp is not created anymore

2020-01-22 Thread ratatouille
Hello! Since experiments on my testserver two days ago /var/spool/postfix/private/dovecot-lmtp is not created anymore. This the setting in /etc/dovecot/conf.d/10-master.conf service lmtp { unix_listener /var/spool/postfix/private/dovecot-lmtp { group = postfix mode = 0600 user

Re: Case sensitive problem for vacation with dovecot lmtp pigeonhole

2019-09-11 Thread Stephan Bosch via dovecot
inet_listener imaps {     port = 993     ssl = yes   }   process_min_avail = 10 } service imap {   process_limit = 2128 } service lmtp {   executable = lmtp -L   process_min_avail = 15   unix_listener /var/spool/postfix/private/dovecot-lmtp {     group = postfix     mode = 0600     user = postfix   } }

Re: dovecot-lmtp and postfix

2019-08-11 Thread Coy Hile via dovecot
On 2019-08-11 18:40, Alexander Dalloz via dovecot wrote: Am 11.08.2019 um 18:06 schrieb Coy Hile via dovecot: Your Postfix configuration makes Postfix think gmail.com to be a virtual(8) target domain. Thus it uses virtual_transport. So validate your virtual_alias_maps = pgsql:/opt/local/etc

Re: dovecot-lmtp and postfix

2019-08-11 Thread Alexander Dalloz via dovecot
ovecot: [ID 702911 mail.info] lmtp(50179): Connect from local 2019-08-11T15:38:40+00:00 81716ec5-bca4-6d53-ed81-bd1a55d46b4f postfix/lmtp[56821]: [ID 197553 mail.info] 12327F13D: to=, relay=81716ec5-bca4-6d53-ed81-bd1a55d46b4f.localdomain[private/dovecot-lmtp], delay=55, delays=55/0.01/0/0.0

dovecot-lmtp and postfix

2019-08-11 Thread Coy Hile via dovecot
Hi all, I’ve got postfix setup to use dovecot-lmtp for (virtual) user delivery, and things to users or aliases that Dovecot knows about now get delivered correctly. However, I’ve done something wrong with postfix and/or the LMTP configuration because upon RCPT TO, instead of forwarding the

Re: Dovecot LMTP mixing up users on multi-recipient mail

2019-07-03 Thread Timo Sirainen via dovecot
seeing error messages > very similar to this old thread > > https://dovecot.org/pipermail/dovecot/2015-July/101396.html > > It appears to be happening when a mail with multiple recipients on this > message store is getting delivered through lmtp. > > Jun 27 11:47:36 lxmhs74 dovec

Dovecot LMTP mixing up users on multi-recipient mail

2019-06-27 Thread Bernhard Schmidt via dovecot
uly/101396.html It appears to be happening when a mail with multiple recipients on this message store is getting delivered through lmtp. Jun 27 11:47:36 lxmhs74 dovecot: lmtp(user1)<47683>: Error: open(/var/cache/dovecot/index/n/user2n/.INBOX/dovecot.index.cache) failed: Permission deni

Re: Case sensitive problem for vacation with dovecot lmtp pigeonhole

2019-06-19 Thread Stephan Bosch via dovecot
3     ssl = yes   }   process_min_avail = 10 } service imap {   process_limit = 2128 } service lmtp {   executable = lmtp -L   process_min_avail = 15   unix_listener /var/spool/postfix/private/dovecot-lmtp {     group = postfix     mode = 0600     user = postfix   } } service managesieve-login {

Re: Dovecot LMTP rejecting mail from address with apostrophe

2019-06-18 Thread Michal Krzysztofowicz via dovecot
> > > > Have you tried setting > > auth_username_chars = > abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@' > > Aki Hi Aki, I have indeed. I’m still getting the same error in the logs: Jun 18 09:53:39 mail smtpd[95887]: 88142e1ef398de69 mda delivery evpid=27d472ffef8

Re: Dovecot LMTP rejecting mail from address with apostrophe

2019-06-17 Thread Aki Tuomi via dovecot
On 17.6.2019 14.07, Michal Krzysztofowicz wrote: > >> On 15 Jun 2019, at 21:09, Aki Tuomi wrote: >> >> >>> On 15 June 2019 10:56 Daniel Lange via dovecot wrote: >>> >>> >>> Am 15.06.19 um 00:36 schrieb Michal Krzysztofowicz via dovecot: Would you know if Dovecot project uses an issue track

Re: Dovecot LMTP rejecting mail from address with apostrophe

2019-06-17 Thread Michal Krzysztofowicz via dovecot
> On 15 Jun 2019, at 21:09, Aki Tuomi wrote: > > >> On 15 June 2019 10:56 Daniel Lange via dovecot wrote: >> >> >> Am 15.06.19 um 00:36 schrieb Michal Krzysztofowicz via dovecot: >>> Would you know if Dovecot project uses an issue tracker which is publicly >>> available, and which I can ch

Re: Dovecot LMTP rejecting mail from address with apostrophe

2019-06-15 Thread Aki Tuomi via dovecot
> On 15 June 2019 10:56 Daniel Lange via dovecot wrote: > > > Am 15.06.19 um 00:36 schrieb Michal Krzysztofowicz via dovecot: > > Would you know if Dovecot project uses an issue tracker which is publicly > > available, and which I can check? > > I am not aware of public access to the Open E

Re: Dovecot LMTP rejecting mail from address with apostrophe

2019-06-15 Thread Daniel Lange via dovecot
Am 15.06.19 um 00:36 schrieb Michal Krzysztofowicz via dovecot: Would you know if Dovecot project uses an issue tracker which is publicly available, and which I can check? I am not aware of public access to the Open Exchange AG / Dovecot OY issue tracker. I guess that is a perk that comes wit

Re: Dovecot LMTP rejecting mail from address with apostrophe

2019-06-14 Thread Michal Krzysztofowicz via dovecot
> On 14 Jun 2019, at 17:01, Daniel Lange wrote: > > Am 14.06.19 um 16:20 schrieb Michal Krzysztofowicz via dovecot: >> Jun 14 11:57:34 atlantic smtpd[42606]: 21749fd12ac76b57 mda delivery >> evpid=56aed6237d6444a0 from= >> to= rcpt= user=me delay=0s >> result=PermFail stat=Error ("mail.lmtp:

Re: Dovecot LMTP rejecting mail from address with apostrophe

2019-06-14 Thread Daniel Lange via dovecot
Am 14.06.19 um 16:20 schrieb Michal Krzysztofowicz via dovecot: Jun 14 11:57:34 atlantic smtpd[42606]: 21749fd12ac76b57 mda delivery evpid=56aed6237d6444a0 from= to= rcpt= user=me delay=0s result=PermFail stat=Error ("mail.lmtp: LMTP server error: 501 5.5.4 Invalid FROM: Invalid character in l

Dovecot LMTP rejecting mail from address with apostrophe

2019-06-14 Thread Michal Krzysztofowicz via dovecot
Hi, I have an OpenSMTPD / Dovecot installation on an OpenBSD server. I recently came across an issue where Dovecot LMTP would reject a message sent to a local user from an address which contains a single apostrophe (e.g. firstname.o'lastn...@example.com). Apparently apostrophe, as well

Case sensitive problem for vacation with dovecot lmtp pigeonhole

2019-06-09 Thread kadafax--- via dovecot
table = lmtp -L   process_min_avail = 15   unix_listener /var/spool/postfix/private/dovecot-lmtp {     group = postfix     mode = 0600     user = postfix   } } service managesieve-login {   inet_listener sieve {     port = 4190   } } service pop3-login {   inet_listener pop3s {     port = 995     ssl = ye

Re: testing dovecot LMTP with postfix/spamassassin

2019-03-17 Thread Aki Tuomi via dovecot
On 17 March 2019 13:30 Eduardo M KALINOWSKI via dovecot < dovecot@dovecot.org> wrote: On 16/03/2019 11:49, Marek Kozlowski via dovecot wrote: Can I test local mail delivery by dovecot LMTP manually? I me

Re: testing dovecot LMTP with postfix/spamassassin

2019-03-17 Thread Eduardo M KALINOWSKI via dovecot
On 16/03/2019 11:49, Marek Kozlowski via dovecot wrote: > Can I test local mail delivery by dovecot LMTP manually? I mean: to > simulate "I'm the Postfix" and produce for some testing e-mail the > same effect as postfix granting it via `local_transport' to dovecot? >

Re: testing dovecot LMTP with postfix/spamassassin

2019-03-17 Thread Yassine Chaouche via dovecot
On 3/17/19 11:59 AM, Yassine Chaouche via dovecot wrote: On 3/17/19 11:10 AM, Marek Kozlowski via dovecot wrote: Thank you but... Please mind that I'm planning to use dovecot LMTP rather than LDA. Best regards, Marek There's /usr/lib/dovecot/lmtp too Yassine. Here'

Re: testing dovecot LMTP with postfix/spamassassin

2019-03-17 Thread Yassine Chaouche via dovecot
On 3/17/19 11:10 AM, Marek Kozlowski via dovecot wrote: Thank you but... Please mind that I'm planning to use dovecot LMTP rather than LDA. Best regards, Marek There's /usr/lib/dovecot/lmtp too Yassine.

Re: testing dovecot LMTP with postfix/spamassassin

2019-03-17 Thread Marek Kozlowski via dovecot
:-) On 3/17/19 10:22 AM, Yassine Chaouche via dovecot wrote: On 3/16/19 3:49 PM, Marek Kozlowski via dovecot wrote: Can I test local mail delivery by dovecot LMTP manually? I mean: to simulate "I'm the Postfix" and produce for some testing e-mail the same effect as postfix

Re: testing dovecot LMTP with postfix/spamassassin

2019-03-17 Thread Yassine Chaouche via dovecot
On 3/16/19 3:49 PM, Marek Kozlowski via dovecot wrote: Can I test local mail delivery by dovecot LMTP manually? I mean: to simulate "I'm the Postfix" and produce for some testing e-mail the same effect as postfix granting it via `local_transport' to dovecot? Best rega

testing dovecot LMTP with postfix/spamassassin

2019-03-16 Thread Marek Kozlowski via dovecot
--- I'd like to make this rule active for only local deliveries via dovecot LMTP with sieve plugin and setting postfix `mailbox_transport' to dovecot LMTP. I believe it is so simple it should work (am I wrong?). But... It would be more convenient to

Fwd: dovecot/lmtp dumps core when proxying to multiple recipients via protocol=smtp

2019-02-19 Thread Piper Andreas via dovecot
Hello, is there already any idea on this topic? Do you need additional information? I would appreciate any input, as my migration scenario depends on this. With many thanks and best regards, Andreas Weitergeleitete Nachricht Betreff: dovecot/lmtp dumps core when proxying to

dovecot/lmtp dumps core when proxying to multiple recipients via protocol=smtp

2019-02-14 Thread Piper Andreas via dovecot
Hello, when trying to set up a migration scenario from my old mailbox-servers to my new dovecot-cluster, I get a coredump from dovecot/lmtp when proxying mail-delivery to more than one recipient on the old mailbox-server. My setup: 3 director-hosts (Debian stretch) are proxying to a pair of

Re: dovecot lmtp thinks that "disk quota exceeded" is "internal error"

2018-11-13 Thread Arkadiusz Miśkiewicz
On 13/11/2018 21:07, Aki Tuomi wrote: > >> On 13 November 2018 at 22:06 Arkadiusz Miśkiewicz wrote: >> >> >> On 13/11/2018 15:54, Arkadiusz Miśkiewicz wrote: >>> >>> 2.2.36 (not migrated to 2.3 yet) reports such problem: >>> >>>&

Re: dovecot lmtp thinks that "disk quota exceeded" is "internal error"

2018-11-13 Thread Arkadiusz Miśkiewicz
On 13/11/2018 21:07, Sami Ketola wrote: > > >> On 13 Nov 2018, at 21.06, Arkadiusz Miśkiewicz wrote: >> >> On 13/11/2018 15:54, Arkadiusz Miśkiewicz wrote: >>> >>> 2.2.36 (not migrated to 2.3 yet) reports such problem: >>> >>>>

Re: dovecot lmtp thinks that "disk quota exceeded" is "internal error"

2018-11-13 Thread Sami Ketola
> On 13 Nov 2018, at 21.06, Arkadiusz Miśkiewicz wrote: > > On 13/11/2018 15:54, Arkadiusz Miśkiewicz wrote: >> >> 2.2.36 (not migrated to 2.3 yet) reports such problem: >> >>> Nov 13 15:50:58 mbox dovecot: lmtp(xxx): session=, >>> Error: open

Re: dovecot lmtp thinks that "disk quota exceeded" is "internal error"

2018-11-13 Thread Aki Tuomi
> On 13 November 2018 at 22:06 Arkadiusz Miśkiewicz wrote: > > > On 13/11/2018 15:54, Arkadiusz Miśkiewicz wrote: > > > > 2.2.36 (not migrated to 2.3 yet) reports such problem: > > > >> Nov 13 15:50:58 mbox dovecot: lmtp(xxx): se

Re: dovecot lmtp thinks that "disk quota exceeded" is "internal error"

2018-11-13 Thread Arkadiusz Miśkiewicz
On 13/11/2018 15:54, Arkadiusz Miśkiewicz wrote: > > 2.2.36 (not migrated to 2.3 yet) reports such problem: > >> Nov 13 15:50:58 mbox dovecot: lmtp(xxx): session=, >> Error: open(/var/mail/xxx/mailboxes.lock1bf6ad16b7b8b703) failed: Disk quota >> exceeded >> N

dovecot lmtp thinks that "disk quota exceeded" is "internal error"

2018-11-13 Thread Arkadiusz Miśkiewicz
2.2.36 (not migrated to 2.3 yet) reports such problem: > Nov 13 15:50:58 mbox dovecot: lmtp(xxx): session=, > Error: open(/var/mail/xxx/mailboxes.lock1bf6ad16b7b8b703) failed: Disk quota > exceeded > Nov 13 15:50:58 mbox dovecot: lmtp(xxx): session=, > Error: Couldn't

Re: dovecot lmtp and drop privileges to specific user

2018-07-23 Thread Aki Tuomi
On 21.07.2018 13:04, Christos Chatzaras wrote: > Is it possible when dovecot LMTP to drop privileges to a specific user > instead of the e-mail account user? Yes. You can use protocol lda {   userdb {     driver = static     args = uid=whatever gid=whoever   } } Aki

dovecot lmtp and drop privileges to specific user

2018-07-21 Thread Christos Chatzaras
Is it possible when dovecot LMTP to drop privileges to a specific user instead of the e-mail account user?

Dovecot LMTP rejects all users as non-existent

2018-03-09 Thread Alexander Harm
s rejected: unverified address: host my.mail.server[private/dovecot-lmtp] said: 550 5.1.1 User doesn't exist: user@my.domain (in reply to RCPT TO command); from= to= proto=ESMTP helo= However, testing my installation with doveadm works fine: doveadm user -u user@my.domain userdb: user@my.domain u

Re: Dovecot lmtp doesn't log

2017-12-04 Thread Stephan Bosch
Or if anyone has any other ideas. Are you sure Dovecot LMTP  is even being used? Your MTA may be delivering messages directly, without involving Dovecot. Check the MTA logs.

Re: Dovecot lmtp doesn't log

2017-12-04 Thread Tomislav Perisic
Does anyone have a working configuration regarding this that they don't >> have a problem with LMTP logging? If yes could you please send me your >> config and dovecot version to compare. >> >> Or if anyone has any other ideas. >> >> > Are you sure Dovecot L

Re: Dovecot lmtp doesn't log

2017-12-04 Thread Stephan Bosch
working configuration regarding this that they don't have a problem with LMTP logging? If yes could you please send me your config and dovecot version to compare. Or if anyone has any other ideas. Are you sure Dovecot LMTP  is even being used? Your MTA may be delivering messages dir

Re: Dovecot lmtp doesn't log

2017-12-01 Thread Thomas Leuxner
* Tomislav Perisic 2017.12.01 15:30: > Does anyone have a working configuration regarding this that they don't > have a problem with LMTP logging? If yes could you please send me your > config and dovecot version to compare. 2.2.devel (904765b05): # doveconf deliver_log_format syslog_facility de

Re: Dovecot lmtp doesn't log

2017-12-01 Thread Tomislav Perisic
> proxied email and delivers it with lmtp to the user inboxes. >> >> The problem is that the dovecot on server B Doesn't log anything regarding >> the emails that are being delivered to the mailbox via lmtp. >> >> Dovecot on server A logs everything perfect

Re: Dovecot lmtp doesn't log

2017-11-30 Thread Stephan Bosch
oesn't log anything regarding the emails that are being delivered to the mailbox via lmtp. Dovecot on server A logs everything perfectly regarding the proxy, so my assumption is that there is an issue with Dovecot lmtp logging. We changed the logging from syslog directly to a file and we n

Re: [SPAMMY]Re: Dovecot LMTP Proxy + STARTTLS?

2017-11-26 Thread Stephan Bosch
Op 11/23/2017 om 8:44 PM schreef tobiswo...@gmail.com: > Hi > > thanks for the link. Read that page before but somehow missed the > comment about ssl+lmtp proxy :-) > > Are there any plans to implement that to dovecot in future? Shouldn't be a problem for v2.3. Regards, Stephan. > Regards > > t

[SPAMMY]Re: Dovecot LMTP Proxy + STARTTLS?

2017-11-26 Thread Carsten Rosenberg
NOTE: LMTP/doveadm proxying doesn't support SSL/TLS currently - any ssl/starttls extra field is ignored https://wiki2.dovecot.org/PasswordDatabase/ExtraFields/Proxy Am 23. November 2017 09:31:41 MEZ schrieb Tobi : >Hi > >I got dovecot 2.2.26 on a Centos7 with latest updates. Dovecot is >configur

Re: Dovecot LMTP Proxy + STARTTLS?

2017-11-26 Thread Matt Bryant
Not according to dovecot doco ... from https://wiki2.dovecot.org/PasswordDatabase/ExtraFields/Proxy *NOTE: LMTP/doveadm proxying doesn't support SSL/TLS currently - any ssl/starttls extra field is ignored *rgds Matt > Tobi > 23 November 2017 at 6:31 pm > Hi > > I

Re: Dovecot lmtp doesn't log

2017-11-25 Thread Tomislav Perisic
that are being delivered to the mailbox via lmtp. Dovecot on server A logs everything perfectly regarding the proxy, so my assumption is that there is an issue with Dovecot lmtp logging. We changed the logging from syslog directly to a file and we noticed the same problem, missing log entries. We also t

Re: [SPAMMY]Re: Dovecot LMTP Proxy + STARTTLS?

2017-11-23 Thread tobisworld
Hi thanks for the link. Read that page before but somehow missed the comment about ssl+lmtp proxy :-) Are there any plans to implement that to dovecot in future? Regards tobi Am 23.11.2017 um 18:38 schrieb Carsten Rosenberg: > NOTE: LMTP/doveadm proxying doesn't support SSL/TLS currently - any

Dovecot LMTP Proxy + STARTTLS?

2017-11-23 Thread Tobi
Hi I got dovecot 2.2.26 on a Centos7 with latest updates. Dovecot is configured to act as director and delivers to my two backend servers. I enabled lmtp proxy on director to listen on port 24. Now I see in msg headers that the connection to the lmtp proxy uses STARTTLS but the connection from pr

Dovecot lmtp doesn't log

2017-11-17 Thread Tomislav Perisic
proxy, so my assumption is that there is an issue with Dovecot lmtp logging. We changed the logging from syslog directly to a file and we noticed the same problem, missing log entries. We also tried turning on verbose logging and it didn't help. Server B: Red Hat 6.7 x86_64 rpm -qa |

Re: Dovecot lmtp

2016-11-12 Thread Aki Tuomi
> On November 12, 2016 at 8:08 PM Peter Fraser wrote: > > > Hi All > I am migrating from dovecot-1.x where I had LDA running > to dovecot2-2.2.26.0_1 where I am trying to set up LMTP. I have enabled a > TCP/IP socket .Setting below. > service lmtp { > inet_listener lmtp { > address = 12

Dovecot lmtp

2016-11-12 Thread Peter Fraser
Hi All I am migrating from dovecot-1.x where I had LDA running to dovecot2-2.2.26.0_1 where I am trying to set up LMTP. I have enabled a TCP/IP socket .Setting below. service lmtp { inet_listener lmtp { address = 127.0.0.1 port = 24 } } and put this additional entry in postfix vir

Dovecot lmtp support for SMTPUTF8

2016-09-20 Thread Igor Colombi
Hello, I'm using dovecot lmtp with Postfix. I'm enabling SMTPUTF8 (EAI), but when Postfix (v 3.1.2) tries to deliver the message to dovecot-lmtp it receive this error: status=bounced (SMTPUTF8 is required, but was not offered by host dlvmx.espsrv.net[private/dovecot-lmtp] I

Re: Dovecot-LMTP and LDAP: passdb doesn't support credential lookups

2016-03-30 Thread Sven Hartge
Niols wrote: > Here is my /etc/dovecot/conf.d/auth-ldap.conf.ext. I use the static > driver for userdb, and the LDAP driver for passdb. > passdb { > driver = ldap > args = /etc/dovecot/dovecot-ldap.conf.ext > } > userdb { > driver = static > args = uid=mail g

Dovecot-LMTP and LDAP: passdb doesn't support credential lookups

2016-03-30 Thread Niols
nd: http://wiki.dovecot.org/AuthDatabase/LDAP/AuthBinds I've already managed to have postfix working with this LDAP server, the users (and their aliases) are correctly recognized. Postfix then sends the mails to Dovecot (2.2.13, Debian Jessie's version) with dovecot-lmtp. Here is

Re: postfix/dovecot - [private/dovecot-lmtp]: No such file or directory

2016-02-21 Thread Aki Tuomi
connect to [private/dovecot-lmtp]: No such file or directory Also, user's ~/.Maildir aren't created, although there is such instructions in dovecot. Finally, doveconf -n says there is no ssl enabled, although I explicitly set it in /conf.d/10-ssl.conf Below are dmesg, postconf -n, dovecon

postfix/dovecot - [private/dovecot-lmtp]: No such file or directory

2016-02-21 Thread soko.tica
Hello list, I am trying to send a mail message from root to a system user on the same box. While postfix functions without dovecot properly, once dovecot is installed, I get the message from logs as set in the subject line - that postfix/lmpt cannot connect to [private/dovecot-lmtp]: No such file

Re: Dovecot LMTP tries to access a directory of a different user, than the one it actually changed to.

2015-07-06 Thread Ernest Deak
to send an email to multiple recipients. Jul 3 12:34:57 dhcp90 dovecot: lmtp(24106, tester): Error: stat(/home/han.solo/mail/.imap/INBOX/dovecot.index.log) failed: Permission denied (euid=802(tester) egid=800(kerber) missing +x perm: /home/han.solo, euid is not dir owner) Jul 3 12:34:57 dhcp

Re: Dovecot LMTP tries to access a directory of a different user, than the one it actually changed to.

2015-07-03 Thread Arkadiusz Miśkiewicz
On Friday 03 of July 2015, Ernest Deak wrote: > Hello, I encountered a problem when trying to send an email to multiple > recipients. That bug exists for some time http://www.dovecot.org/list/dovecot/2014-September/097688.html but no solution exists and I think no one actually tried to fix it.

Re: Dovecot LMTP tries to access a directory of a different user, than the one it actually changed to.

2015-07-03 Thread Steffen Kaiser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Fri, 3 Jul 2015, Ernest Deak wrote: Hello, I encountered a problem when trying to send an email to multiple recipients. Jul 3 12:34:57 dhcp90 dovecot: lmtp(24106, tester): Error: stat(/home/han.solo/mail/.imap/INBOX/dovecot.index.log) failed

Dovecot LMTP tries to access a directory of a different user, than the one it actually changed to.

2015-07-03 Thread Ernest Deak
Hello, I encountered a problem when trying to send an email to multiple recipients. === LOG === ... cut ... Jul 3 12:34:57 dhcp90 dovecot: lmtp(24106): Debug: none: root=, index=, control=, inbox= Jul 3 12:34:57 dhcp90 dovecot: lmtp(24106): Connect from local Jul 3 12:34:57 dhcp90

Re: dovecot-lmtp

2015-07-01 Thread Steven Hopps
= Ask about my Security Tune-Up & 24/7 Server Monitoring! = On 7/1/2015 10:28, Steven Hopps wrote: Hi, I'm trying to use dovecot-lmtp so that I can filter messages with sieve, however it doesn't appear to be working. I followed the instructions on wiki2.dovecot.org. I'm run

Re: dovecot-lmtp

2015-07-01 Thread Steven Hopps
On 07/01/2015 02:28 PM, Steven Hopps wrote: Hi, I'm trying to use dovecot-lmtp so that I can filter messages with sieve, however it doesn't appear to be working. I followed the instructions on wiki2.dovecot.org. I'm running Debian Wheezy. I've got runit configured to exe

Re: dovecot-lmtp

2015-07-01 Thread Steven Hopps
I tried copying virtual_transport to mailbox_transport and started receiving user unknown and no such user errors. Current configuration output follows: virtual_transport = lmtp:unix:private/dovecot-lmtp mailbox_transport = # 2.1.7: /etc/dovecot/dovecot.conf # OS: Linux 3.2.0-4-amd64 x86_64

Re: dovecot-lmtp

2015-07-01 Thread Pascal Volk
On 07/01/2015 02:28 PM, Steven Hopps wrote: > Hi, I'm trying to use dovecot-lmtp so that I can filter messages with > sieve, however it doesn't appear to be working. > > I followed the instructions on wiki2.dovecot.org. I'm running Debian > Wheezy. I've got

dovecot-lmtp

2015-07-01 Thread Steven Hopps
Hi, I'm trying to use dovecot-lmtp so that I can filter messages with sieve, however it doesn't appear to be working. I followed the instructions on wiki2.dovecot.org. I'm running Debian Wheezy. I've got runit configured to execute postfix and dovecot, which may be the s

problem with dovecot/lmtp

2015-03-02 Thread Dan LaSota
I am getting this in my errorlog for postfix/dovecot Mar 2 16:42:14 mail postfix/error[5074]: A689580F236: to=, relay=none, delay=21420, delays=21420/0.05/0/0, dsn=4.4.1, status=deferred (delivery temporarily suspended: connect to mail.example.com[private/dovecot-lmtp]: Connection refused

How to setup a dovecot lmtp proxy server ?

2014-09-01 Thread Webster Liang
Dear All : I want to setup a dovecot lmtp proxy server , my target as below : Postfix (lmtp) -->dovecot lmtp proxy servers-->dovecot backend servers but i don't know how to setup the dovecot lmtp proxy server , who can help me ? thanks a lot . -- View this message in con

Aw: Re: OT - Finding/removing duplicate emails - WAS: Re: [Dovecot] dovecot/lmtp munmap()-ing a lot

2014-07-04 Thread Infoomatic
> >> On 6/9/2014 5:44 PM, Ralf Hildebrandt wrote: > >>> That's probably the problem here. The user had LOTS of (duplicate!) > >>> mails in his inbox. I had the same problem with a corrupted IBM Domino mailfile which gave me lots of duplicates, however imapsync with the options "--useheader Date

Re: OT - Finding/removing duplicate emails - WAS: Re: [Dovecot] dovecot/lmtp munmap()-ing a lot

2014-07-03 Thread Jiri Bourek
On 3.7.2014 21:35, Timo Sirainen wrote: On 10.6.2014, at 14.05, Charles Marcus wrote: On 6/9/2014 5:44 PM, Ralf Hildebrandt wrote: That's probably the problem here. The user had LOTS of (duplicate!) mails in his inbox. Anyone ever found a reliable way to do this? It sure would be nice if

Re: OT - Finding/removing duplicate emails - WAS: Re: [Dovecot] dovecot/lmtp munmap()-ing a lot

2014-07-03 Thread Timo Sirainen
On 10.6.2014, at 14.05, Charles Marcus wrote: > On 6/9/2014 5:44 PM, Ralf Hildebrandt wrote: >> That's probably the problem here. The user had LOTS of (duplicate!) >> mails in his inbox. > > Anyone ever found a reliable way to do this? > > It sure would be nice if dovecot could perform this on

Re: OT - Finding/removing duplicate emails - WAS: Re: [Dovecot] dovecot/lmtp munmap()-ing a lot

2014-06-10 Thread Charles Marcus
On 6/10/2014 12:32 PM, Ralf Hildebrandt wrote: * Charles Marcus: >On 6/9/2014 5:44 PM, Ralf Hildebrandt wrote: > >That's probably the problem here. The user had LOTS of (duplicate!) > >mails in his inbox. > >Anyone ever found a reliable way to do this? To duplicate the mails? 'This' refer

Re: OT - Finding/removing duplicate emails - WAS: Re: [Dovecot] dovecot/lmtp munmap()-ing a lot

2014-06-10 Thread Ralf Hildebrandt
> Wasn't there a thread some days/weeks ago, that Pigeonhole behaves the > same by default and the poster asked how long the timeframe is Pigeonhole > remembers the ids? How would I go about enabling this? > Actually, I still wonder about whether or not the same message-id is > sufficient to

Re: OT - Finding/removing duplicate emails - WAS: Re: [Dovecot] dovecot/lmtp munmap()-ing a lot

2014-06-10 Thread Ralf Hildebrandt
> The basic question is: what is a duplicate? > > I spot 100% duplicates within the same Maildir mailbox with a script > similiar to "fdupes" http://linux.die.net/man/1/fdupes . > Because an user may copy messages around, I scan one mailbox at a time. But with mdbox? Or mailboxes != Maildir form

Re: OT - Finding/removing duplicate emails - WAS: Re: [Dovecot] dovecot/lmtp munmap()-ing a lot

2014-06-10 Thread Ralf Hildebrandt
* Charles Marcus : > On 6/9/2014 5:44 PM, Ralf Hildebrandt wrote: > >That's probably the problem here. The user had LOTS of (duplicate!) > >mails in his inbox. > > Anyone ever found a reliable way to do this? To duplicate the mails? Yeah: Just let fetchmail run unobserved for weeks, will fuck up

Re: OT - Finding/removing duplicate emails - WAS: Re: [Dovecot] dovecot/lmtp munmap()-ing a lot

2014-06-10 Thread Steffen Kaiser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, 10 Jun 2014, Reindl Harald wrote: Am 10.06.2014 15:39, schrieb Steffen Kaiser: On Tue, 10 Jun 2014, Reindl Harald wrote: Am 10.06.2014 15:17, schrieb Steffen Kaiser: The basic question is: what is a duplicate? However, neither script I wou

Re: OT - Finding/removing duplicate emails - WAS: Re: [Dovecot] dovecot/lmtp munmap()-ing a lot

2014-06-10 Thread Reindl Harald
Am 10.06.2014 15:39, schrieb Steffen Kaiser: > On Tue, 10 Jun 2014, Reindl Harald wrote: >> Am 10.06.2014 15:17, schrieb Steffen Kaiser: >>> The basic question is: what is a duplicate? >>> However, neither script I would call general enough for automatic processing > >> dbmail has just "suppress_

  1   2   3   4   5   >