Quantcast
Channel: iRedMail
Viewing all articles
Browse latest Browse all 14119

Dovecot LMTP with a remot MTA

$
0
0

==== Required information ====
- iRedMail version:
- Store mail accounts in which backend (LDAP/MySQL/PGSQL):
- Linux/BSD distribution name and version:
- Related log if you're reporting an issue:
====

I am implementing SMTP server running postfix and IMAP server running Dovecot each on different machine. I need to use LMTP on dovecot to connect to an SMTP server. My config are:

main.cf
virtual_transport = lmtp:inet:xxxx.xxxx.xxxx.xxxx:xx
smtpd_sasl_path = inet:xxxx.xxxx.xxxx.xxxx:xxxx

dovecot.conf
service lmtp {   
  inet_listener lmtp {
    address = xxxx.xxxx.xxxx.xxxx
    port = xxx
    #process_min_avail = 12
    #executable = lmtp -L
  }
  unix_listener lmtp {
    #group = _postfix
    mode = 0600
    #user = _postfix
  }
}


but mails are delivered and am getting the following warning on MTA:
Dec  4 16:28:28 gms01 postfix/qmgr[19175]: warning: connect to transport private/dovecot: Connection refused
Dec  4 16:28:28 gms01 postfix/qmgr[19175]: warning: connect to transport private/dovecot: Connection refused
Dec  4 16:28:28 gms01 postfix/error[17945]: 016CD130875: to=<mm@test.com>, relay=none, delay=8964, delays=8964/0.13/0/0.02, dsn=4.3.0, status=deferred (mail transport unavailable)

Any Idea on setting up?


Viewing all articles
Browse latest Browse all 14119

Trending Articles