On Sun, 8 Apr 2001, Kevin van Haaren wrote:
> I'm having a problem delivering mail to cyrus imap (version 2.0.12)
> running on a Debian Linux PowerPC box (kernel 2.2.19pre17). I'm
> using postfix for smtp. I have no problems connecting to the imap
Easiest thing to do would be to avoid this pipe -> deliver(client) ->
deliver(server) route and talk LMTP directly. If you're using the
recent Postfix release, just put this in main.cf:
mailbox_transport = lmtp:unix:/var/lib/cyrus/socket/lmtp
Then in your cyrus.conf, have:
SERVICES {
...
# lmtp ...
lmtpunix cmd="lmtpd" listen="/var/lib/cyrus/socket/lmtp" prefork=1
}
Make sure both user 'cyrus' and user 'postfix' can get to this socket
file!
--
Amos