Ich habe versucht qpopper mit SSL Support zu installieren. Leider kommt beim Abrufen:
Code: Select all
Der Server hat unerwartet die Verbindung beendet. Möglicherweise liegt ein Serverproblem vor, es ist ein Netzwerkproblem aufgetreten oder das Zeitlimit wurde überschritten. Konto: '192.168.1.123', Server: '192.168.1.123', Protokoll: POP3, Port: 995, Secure (SSL): Ja, Fehlernummer: 0x800CCC0FCode: Select all
Jul 5 16:16:22 linux popper[1683]: (null) at 192.168.1.111 (192.168.1.111): -ERR Unknown command: "200l^A^C^A".
Jul 5 16:16:22 linux popper[1683]: (null) at 192.168.1.111 (192.168.1.111): -ERR POP EOF or I/O Error
Jul 5 16:16:22 linux popper[1683]: I/O error flushing output to client at 192.168.1.111 [192.168.1.111]: Operation not permitted (1)
Jul 5 16:16:22 linux popper[1683]: I/O error flushing output to client at 192.168.1.111 [192.168.1.111]: Operation not permitted (1)
Jul 5 16:16:22 linux popper[1683]: (v4.0.5) Timing for @192.168.1.111 (error) auth=0 init=0 clean=0
Jul 5 16:16:22 linux popper[1684]: (null) at 192.168.1.111 (192.168.1.111): -ERR POP EOF or I/O Error
Jul 5 16:16:22 linux popper[1684]: I/O error flushing output to client at 192.168.1.111 [192.168.1.111]: Operation not permitted (1)
Jul 5 16:16:22 linux popper[1684]: I/O error flushing output to client at 192.168.1.111 [192.168.1.111]: Operation not permitted (1)
Jul 5 16:16:22 linux popper[1684]: (v4.0.5) Timing for @192.168.1.111 (error) auth=0 init=0 clean=0Code: Select all
root 1550 0.0 1.4 2848 872 ? S 15:53 0:00 /usr/sbin/popper -c -R -s -S -f /etc/qpopper.conf
root 1553 0.0 1.4 2848 884 ? S 15:53 0:00 /usr/sbin/popper 995 -c -R -s -S -f /etc/qpopper.confCode: Select all
./configure
--prefix=/usr
--enable-bulletins=/var/spool/bulletins
--enable-new-bulls=5
--enable-log-login
--enable-shy
--enable-spool-dir=/var/spool/mail
--enable-temp-drop-dir=/var/spool/mail.drop
--enable-cache-dir=/var/spool/mail.cache
--enable-timing
--enable-standalone
--enable-nonauth-file=/etc/pop3.deny
--enable-specialauth
--with-openssl Das Zertifikat habe ich per
Code: Select all
openssl genrsa -des3 -out /etc/ssl/private/ca.key 1024
openssl req -new -x509 -days 365 -key /etc/ssl/private/ca.key -out /etc/ssl/private/ca.crt
mkdir -p -m665 /etc/mail/certs
chown root:mail /etc/mail/certs
chmod 660 /etc/mail/certs
openssl req -new -nodes -out /etc/mail/certs/req.pem -keyout /etc/mail/certs/cert.pem
openssl x509 -req -CA /etc/ssl/private/ca.crt -CAkey /etc/ssl/private/ca.key -days 365 -in /etc/mail/certs/req.pem -out /tmp/cert.pem -CAcreateserial
chmod 600 /etc/mail/certs/cert.pem
chown root:0 /etc/mail/certs/cert.pem
cat /tmp/cert.pem >> /etc/mail/certs/cert.pemHat jemand eine Idee?