Re: what's your LMTP use-case

2019-07-05 Thread Edgar Pettijohn
On Jul 5, 2019 9:57 AM, Gilles Chehade wrote: > > helo, > > this is just a question out of curiosity > > I know plenty of people use the lmtp action to deliver mail through LMTP > and I'm genuinely curious: what is your use-case ? > > Why do you deliver to LMTP ? > > -- > Gilles Chehade   

Re: filter feedback/help request

2019-07-05 Thread Marc Chantreux
hello, as it's not relatted to opensmtp, i don't know if replying is ok. please let me know if it wasn't. > Here is a basic shell script that works. #!/bin/sh echo "register|report|smtp-in|*" echo "register|ready" while read -r line; do echo "$line" >> /tmp/test.txt

what's your LMTP use-case

2019-07-05 Thread Gilles Chehade
helo, this is just a question out of curiosity I know plenty of people use the lmtp action to deliver mail through LMTP and I'm genuinely curious: what is your use-case ? Why do you deliver to LMTP ? -- Gilles Chehade @poolpOrg

Re: what's your LMTP use-case

2019-07-05 Thread mabi
‐‐‐ Original Message ‐‐‐ On Friday, July 5, 2019 5:25 PM, Edgar Pettijohn wrote: > I'm using dovecot for imap so might as well let it handle the delivery also. > Not much of a reason but it's it. Same here, Dovecot "dictates" me to use LMTP... -- You received this mail because you

Re: what's your LMTP use-case

2019-07-05 Thread Thomas Bohl
Hello, I know plenty of people use the lmtp action to deliver mail through LMTP and I'm genuinely curious: what is your use-case ? I use dovecot's lmtp to utilise Sieve[1] scripts and mailbox replication[2]. [1] https://wiki2.dovecot.org/Pigeonhole [2] https://wiki2.dovecot.org/Replication

Re: what's your LMTP use-case

2019-07-05 Thread Vijay Sankar
Quoting Gilles Chehade : helo, this is just a question out of curiosity I know plenty of people use the lmtp action to deliver mail through LMTP and I'm genuinely curious: what is your use-case ? Why do you deliver to LMTP ? -- Gilles Chehade

Re: filter feedback/help request

2019-07-05 Thread Edgar Pettijohn
Turned out to be a line buffering issue. The following works. #!/usr/bin/perl open(my $fh, '>', '/tmp/test.txt'); select(STDOUT); $|++; select($fh); $|++; print STDOUT "register|report|smtp-in|*\n"; print STDOUT "register|ready\n"; while ( my $line = <> ) { print $fh "$line"; } close