Dovecot startet die Ports (110 / 143) nicht

Lord_Icon

Member
Hi,

möchte qpopper auf Dovecot wechseln.

Also erstmal Xintet gestart, damit qpopper die Ports nicht mehr belegt.

mit ein nmap -v <IP> gegrüft, ob die Ports wirklich runtergefahren sind bzw. frei sind = sind sie.

Dovecot gestart und nochmal nmp gestart. Leider sind hier die 110 143 nicht geöffnet. Firewall ist ausgeschalten.

Hier meine dovecot.conf

Code:
base_dir = /var/run/dovecot/

protocols = imap pop3 imaps pop3s

protocol imap {
 listen = *:143
}

protocol pop3 {
 listen = *:110
}

log_timestamp = .%Y-%m-%d %H:%M:%S .
syslog_facility = mail

disable_plaintext_auth = yes

ssl_cert_file = /etc/ssl/certs/dovecot.pem
ssl_key_file = /etc/ssl/private/dovecot.pem

mail_location = maildir:/var/mail/%d/%u

mail_extra_groups = mail
mail_debug = no
first_valid_uid = 150
last_valid_uid = 150
maildir_copy_with_hardlinks = yes

protocol imap {
 login_executable = /usr/lib/dovecot/imap-login
 mail_executable = /usr/lib/dovecot/imap
 imap_max_line_length = 65536
}

protocol pop3 {
 login_executable = /usr/lib/dovecot/pop3-login
 mail_executable = /usr/lib/dovecot/pop3
 pop3_uidl_format = %08Xu%08Xv
}

protocol lda {
 postmaster_address = [email protected]
 sendmail_path = /usr/lib/sendmail
 auth_socket_path = /var/run/dovecot/auth-master
}

auth_verbose = no
auth_debug = no
auth_debug_passwords = no

auth default {
 mechanisms = plain login
 socket listen {
        master {
          path = /var/run/dovecot/auth-master
          mode = 0660
          user = vmail
          group = mail
        }

        client {
          path = /var/spool/postfix/private/auth
          mode = 0660
          user = postfix
          group = postfix
        }
}
}

Fehlt noch was ?
Wenn ich das Howto richtig gelesen habe, stellt Dovecot doch die Port von selbst(?)
 
Last edited by a moderator:
Back
Top