>>>>> On Mon, 12 Feb 2001 11:29:44 -0800,
>>>>> David R Bosso <[EMAIL PROTECTED]> (drb) writes:
drb> max_use = 300
drb> lmtp_destination_recipient_limit = 1000
drb> lmtp_destination_concurrency_limit = 1000
Looks like they should still be valid. You could experiment with
default_destination_recipient_limit
default_destination_concurrency_limit
drb> Here's what a delivery looks like in maillog:
What if you add "-v" to the end of the "lmtp" line in master.cf?
Then you'll see the actual protocol dialog:
lmtp unix - - n - - lmtp -v
drb> So it looks like it's using a new lmtp process each time, which is
drb> not what I'd expect.
Maybe it's the limitation of using the UNIX domain sockets. With
Cyrus 2.0.11, you could experiment with the TCP route:
/etc/cyrus.conf:
SERVICES {
...
lmtp cmd="lmtpd -a" listen="[127.0.0.1]:lmtp" prefork=1
...
}
/etc/services:
lmtp 2003/tcp
/etc/postfix/transport:
domain.name lmtp:[127.0.0.1]
--
Amos