From owner-freebsd-ports Fri May 31 6:14:31 2002 Delivered-To: freebsd-ports@freebsd.org Received: from aprcity.ru (b.primesite.ru [194.85.132.55]) by hub.freebsd.org (Postfix) with ESMTP id 8487837B400; Fri, 31 May 2002 06:14:20 -0700 (PDT) Received: from infodep01 (me.tvd.net [172.16.0.37]) by aprcity.ru (8.12.3/8.11.6) with SMTP id g4VDHQLU024227; Fri, 31 May 2002 17:17:28 +0400 (MSD) Message-ID: <02d701c208a4$ef574d50$250010ac@aprcity.com> From: "Zaitsev Serg" To: , , Subject: popa3d-0.5.1 Date: Fri, 31 May 2002 17:13:16 +0400 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Dear dinoex@FreeBSD.org . On http://www.freebsd.org/ports/mail.html you pointed as maintainer secure POP3 server popa3d-0.5.1. I allready have fully working POP3 server cucipop. It is good. But it has no support SSL tunneling and I unrest for probability to catch plain text accounts and passwords from traffic. I have find out only one secure POP3 server from lot ones on http://www.freebsd.org/ports/mail.html. I had compile popa3d-0.5.1 on FreeBSD 4.4. POP3 is OK, POP3S do not. su root fetch http://www.openssl.org/source/openssl-0.9.6d.tar.gz Do you know what is difference with http://www.openssl.org/source/openssl-engine-0.9.6d.tar.gz ? tar zxf openssl-0.9.6d.tar.gz cd openssl-0.9.6d ./config make make test make install fetch http://www.openwall.com/popa3d/popa3d-0.5.1.tar.gz tar zxf popa3d-0.5.1.tar.gz cd popa3d-0.5.1 cat INSTALL /usr/bin/ee params.h #define AUTH_PASSWD 0 #define AUTH_SHADOW 1 change to #define AUTH_PASSWD 1 #define AUTH_SHADOW 0 /usr/bin/ee Makefile #CFLAGS += -DHAVE_OPENSSL #LIBS += -lcrypt #LIBS += -lcrypto change to CFLAGS += -DHAVE_OPENSSL LIBS += -lcrypt LIBS += -lcrypto make adduser popa3d vipw popa3d:*:1002:1002::0:0:Secure POP3:/var/empty:/sbin/nologin mkdir -m 755 /var/empty chown popa3d:popa3d /var/empty make install ee /etc/inetd.conf pop3 stream tcp nowait root /usr/local/sbin/popa3d popa3d pop3s stream tcp nowait root /usr/local/sbin/popa3d popa3d kill -HUP `cat /var/run/inetd.conf` netstat -a | grep pop3 ipfw -q add allow ip from any to any All is OK with POP3 (port 110), but does not work POP3S (port 995). By 'netstat -a' both ports is listened, but then I switch email client (MS Outlook Express) to POP3S, after connection established, no traffic, timeout occured. After 'telnet localhost 995' I see usually POP3 session. Where did I mistake? How to power POPA3D to speak on POP3S? Zaitsev Serg, root@aprcity.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message