From owner-svn-ports-all@freebsd.org Thu Mar 5 16:26:23 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 68B6426DC55; Thu, 5 Mar 2020 16:26:23 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48YGMy349hz3HJ3; Thu, 5 Mar 2020 16:26:22 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 211BD9F43; Thu, 5 Mar 2020 16:26:22 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 025GQLgf018756; Thu, 5 Mar 2020 16:26:21 GMT (envelope-from 0mp@FreeBSD.org) Received: (from 0mp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 025GQLJi018753; Thu, 5 Mar 2020 16:26:21 GMT (envelope-from 0mp@FreeBSD.org) Message-Id: <202003051626.025GQLJi018753@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: 0mp set sender to 0mp@FreeBSD.org using -f From: Mateusz Piotrowski <0mp@FreeBSD.org> Date: Thu, 5 Mar 2020 16:26:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r527841 - in head/mail/ssmtp: . files X-SVN-Group: ports-head X-SVN-Commit-Author: 0mp X-SVN-Commit-Paths: in head/mail/ssmtp: . files X-SVN-Commit-Revision: 527841 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Mar 2020 16:26:23 -0000 Author: 0mp Date: Thu Mar 5 16:26:21 2020 New Revision: 527841 URL: https://svnweb.freebsd.org/changeset/ports/527841 Log: Mention AuthUser/Pass in sample configuration file The example file ssmtp.conf.sample does not at all mention either STARTTLS or authentication for target MTAs. This patch fixes that. Also, update WWW. PR: 242602 Submitted by: Jan-Piet Mens Approved by: aragon@phat.za.net (maintainer timeout) Added: head/mail/ssmtp/files/patch-ssmtp.conf (contents, props changed) Modified: head/mail/ssmtp/Makefile head/mail/ssmtp/pkg-descr Modified: head/mail/ssmtp/Makefile ============================================================================== --- head/mail/ssmtp/Makefile Thu Mar 5 16:17:19 2020 (r527840) +++ head/mail/ssmtp/Makefile Thu Mar 5 16:26:21 2020 (r527841) @@ -3,7 +3,7 @@ PORTNAME= ssmtp PORTVERSION= 2.64 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= mail MASTER_SITES= DEBIAN_POOL DISTFILES= ${PORTNAME}_${PORTVERSION}.orig${EXTRACT_SUFX} Added: head/mail/ssmtp/files/patch-ssmtp.conf ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/ssmtp/files/patch-ssmtp.conf Thu Mar 5 16:26:21 2020 (r527841) @@ -0,0 +1,12 @@ +--- ssmtp.conf.orig 2020-03-05 16:17:25 UTC ++++ ssmtp.conf +@@ -41,3 +41,9 @@ hostname=_HOSTNAME_ + # If you want to have debugging of the config file parsing, move this option + # to the top of the config file and uncomment + #Debug=YES ++ ++# Use these parameters for securely authenticating against your ++# mailhub; check ssmtp.conf(5) for further details. ++# UseSTARTTLS=YES ++# AuthUser=you@yourdomain.com ++# AuthPass=your-secret-password Modified: head/mail/ssmtp/pkg-descr ============================================================================== --- head/mail/ssmtp/pkg-descr Thu Mar 5 16:17:19 2020 (r527840) +++ head/mail/ssmtp/pkg-descr Thu Mar 5 16:26:21 2020 (r527841) @@ -7,4 +7,4 @@ WARNING: the above is all it does; it does not receive aliases or manage a queue. That belongs on a mail hub with a system administrator. -WWW: http://packages.debian.org/stable/mail/ssmtp +WWW: https://packages.qa.debian.org/s/ssmtp.html