From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 14:26:52 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43CA216A504 for ; Tue, 30 Sep 2003 14:26:52 -0700 (PDT) Received: from mail.dada.it (mail4.dada.it [195.110.100.4]) by mx1.FreeBSD.org (Postfix) with SMTP id C7F904400B for ; Tue, 30 Sep 2003 14:26:47 -0700 (PDT) (envelope-from ale@unixmania.net) Received: (qmail 20912 invoked from network); 30 Sep 2003 21:26:40 -0000 Received: from unknown (HELO libero.sunshine.ale) (195.110.114.252) by mail.dada.it with SMTP; 30 Sep 2003 21:26:40 -0000 Received: by libero.sunshine.ale (Postfix, from userid 1001) id 143695F7D; Tue, 30 Sep 2003 23:26:40 +0200 (CEST) Date: Tue, 30 Sep 2003 23:26:40 +0200 From: Alessandro de Manzano To: lioux@freebsd.org Message-ID: <20030930232640.A6704@libero.sunshine.ale> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="h31gzZEtNLTqOjlF" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i X-Operating-System: FreeBSD 4.7-STABLE cc: ports@freebsd.org Subject: a little qpopper port's patch X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Alessandro de Manzano List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Sep 2003 21:26:53 -0000 --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello, I'ld just submit you a tiny patch for QPopper 4.x's port I think would be useful for other sysadmins ;) Feel free to commit it if you think it's valuable :-) Many thanks anyway! -- bye! Ale ale@unixmania.net --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=shypatch --- Makefile Thu May 1 04:01:14 2003 +++ Makefile.ale Tue Sep 30 23:22:25 2003 @@ -90,6 +90,8 @@ @${ECHO_MSG} "WITH_Y_OPTION=yes enables daemon command line option" @${ECHO_MSG} " -y which allows the user to specify a different" @${ECHO_MSG} " logging facility" + @${ECHO_MSG} "WITH_SHY_ENABLED=yes enables shy mode, don't present" + @${ECHO_MSG} " version number in banner" # If WITH_APOP_ONLY variable present in the environment, qpopper builds # with APOP authentication only. @@ -143,6 +145,12 @@ # different logging facility .if defined(WITH_Y_OPTION) EXTRA_PATCHES+= ${FILESDIR}/extra-patch-popper::pop_init.c +.endif + +# If WITH_SHY_ENABLED variable present in the enviornment, qpopper builds +# with shy mode enabled, without presenting its version in the POP3 session +.if defined(WITH_SHY_ENABLED) +CONFIGURE_ARGS+= --enable-shy .endif .if exists(/usr/lib/libssl.a) && exists(/usr/lib/libcrypto.a) --h31gzZEtNLTqOjlF--