From owner-freebsd-questions@FreeBSD.ORG Fri Oct 20 11:59:27 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA35D16A40F for ; Fri, 20 Oct 2006 11:59:27 +0000 (UTC) (envelope-from don@lizardhill.com) Received: from kermit.lizardhill.com (kermit.lizardhill.com [64.69.41.217]) by mx1.FreeBSD.org (Postfix) with ESMTP id 810B643D45 for ; Fri, 20 Oct 2006 11:59:27 +0000 (GMT) (envelope-from don@lizardhill.com) Received: from ip72-193-85-114.lv.lv.cox.net ([72.193.85.114] helo=mickey) by kermit.lizardhill.com with esmtp (Exim 4.62) (envelope-from ) id 1GaPrJ-000GzQ-A9 for freebsd-questions@freebsd.org; Wed, 18 Oct 2006 21:50:21 -0700 From: "Don O'Neil" To: Date: Wed, 18 Oct 2006 21:55:58 -0700 Message-ID: <055d01c6f33a$de41ba20$0400020a@mickey> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 11 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 Thread-Index: AcbzAsESoo1SPg7ORPGmEXUt1Xg9YA== Subject: POP before SMTP with TCPSERVER X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Oct 2006 11:59:27 -0000 Hi all... I'm having problems with inet crapping out on the qmail-smtp process, so I've started using tcpserver to launch qmail-smtpd.... However, I'm getting complaints from people that the POP before SMTP authentication patch isn't working when I do this... Here is what I'm launching: #!/bin/sh /usr/local/bin/tcpserver -c 200 -v -u 1009 -g 1003 0 smtp /var/shc/qmail/bin/qmail-smtpd >&1 | /var/shc/qmail/bin/splogger smtpd 3 & Anything wrong with this, or do I need to do something else so that the POP before SMTP authentication works correctly? Thanks!