Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Dovecot error when sending email on port 993
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Dovecot error when sending email on port 993

bill32bill32 Member
edited February 2012 in General

I'm trying to setup my Postfix + Dovecot email server with my email client. POP (port 995, SSL) works great. But when I'm trying to send mail over SMTP port 993, I get this error:

!(http://i.imgur.com/9n3YW.png)

I think the connection to the server is working...so is this an authentication problem? What is an "incorrect greeting?"

Comments

  • edited February 2012

    Your email client is trying to talk SMTP protocol, but the listening side is talking IMAP.

    Looks like Dovecot is already listening on port 993.

  • To my knowledge, Dovecot is not an SMTP server.

  • prometeusprometeus Member, Host Rep

    As it has been said you are using an imap server as smtp server and this cannot work. Postfix should listen to port 25 for plain text /starttls sessions...

    What is the output of
    netstat -lnp

    ???

  • bill32bill32 Member
    edited February 2012

    @prometeus:

    # netstat -lnp tcp 0 0 0.0.0.0:993 0.0.0.0:* LISTEN 1677/imap-login tcp 0 0 0.0.0.0:995 0.0.0.0:* LISTEN 10639/pop3-login tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN 9233/php5-fpm tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 7866/mysqld tcp 0 0 0.0.0.0:587 0.0.0.0:* LISTEN 2841/master tcp 0 0 0.0.0.0:110 0.0.0.0:* LISTEN 10639/pop3-login tcp 0 0 0.0.0.0:143 0.0.0.0:* LISTEN 1677/imap-login tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 21049/nginx tcp 0 0 0.0.0.0:2020 0.0.0.0:* LISTEN 10267/sshd

    The configuration on my email program:
    Server name: bill
    Port: 993
    User name: bill@....
    Authentication: Password
    Connection security: SSL/TLS

  • prometeusprometeus Member, Host Rep

    Your postfix is listening on port 587. Set your email client to use that port in ssl.

  • That works, the "incorrect greeting" error message is gone!

Sign In or Register to comment.