svn commit: r481366 - head/mail/msmtp
Roman Bogorodskiy
novel at FreeBSD.org
Sat Oct 6 13:50:16 UTC 2018
Author: novel
Date: Sat Oct 6 13:50:14 2018
New Revision: 481366
URL: https://svnweb.freebsd.org/changeset/ports/481366
Log:
mail/msmtp: update to 1.8.0
- Add MSMTPD option that install minimal SMTP server called msmtpd
that listens on the local host and pipes mails to msmtp
(or another program); enabled by default,
- Upstream switched from libidn to libidn2, update dependency
accordingly,
- Enable GNUTLS by default instead of OPENSSL as per upstream
recommendation [1].
1: https://marlam.de/msmtp/news/openssl-discouraged/
Modified:
head/mail/msmtp/Makefile
head/mail/msmtp/distinfo
head/mail/msmtp/pkg-plist
Modified: head/mail/msmtp/Makefile
==============================================================================
--- head/mail/msmtp/Makefile Sat Oct 6 13:06:42 2018 (r481365)
+++ head/mail/msmtp/Makefile Sat Oct 6 13:50:14 2018 (r481366)
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= msmtp
-PORTVERSION= 1.6.8
+PORTVERSION= 1.8.0
CATEGORIES= mail ipv6
MASTER_SITES= https://marlam.de/msmtp/releases/
@@ -17,22 +17,24 @@ CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
INFO= msmtp
-OPTIONS_DEFINE= DOCS GSASL NLS IDN LIBSECRET MSMTPQ
+OPTIONS_DEFINE= DOCS GSASL NLS IDN LIBSECRET MSMTPD MSMTPQ
OPTIONS_RADIO= TLS
OPTIONS_RADIO_TLS= GNUTLS OPENSSL
-OPTIONS_DEFAULT= MSMTPQ OPENSSL
+OPTIONS_DEFAULT= GNUTLS MSMTPD MSMTPQ
OPTIONS_SUB= yes
GSASL_DESC= GSASL support
LIBSECRET_DESC= GNOME password management
+MSMTPD_DESC= Include minimal SMTP server that pipes mails to msmtp
MSMTPQ_DESC= Install offline messaging scripts
GSASL_CONFIGURE_WITH= libgsasl
GSASL_LIB_DEPENDS= libgsasl.so:security/gsasl
IDN_CONFIGURE_WITH= libidn
-IDN_LIB_DEPENDS= libidn.so:dns/libidn
+IDN_LIB_DEPENDS= libidn2.so:dns/libidn2
LIBSECRET_CONFIGURE_WITH= libsecret
LIBSECRET_LIB_DEPENDS= libsecret-1.so:security/libsecret
+MSMTPD_CONFIGURE_WITH= msmtpd
MSMTPQ_PORTDOCS= README.msmtpq
MSMTPQ_RUN_DEPENDS= bash:shells/bash
NLS_CONFIGURE_ENABLE= nls
Modified: head/mail/msmtp/distinfo
==============================================================================
--- head/mail/msmtp/distinfo Sat Oct 6 13:06:42 2018 (r481365)
+++ head/mail/msmtp/distinfo Sat Oct 6 13:50:14 2018 (r481366)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1530293115
-SHA256 (msmtp-1.6.8.tar.xz) = 55ff95a304d888b56d07d9c62327ab9bfe26532c9c2a2ed6aefc43bea1b659fb
-SIZE (msmtp-1.6.8.tar.xz) = 294872
+TIMESTAMP = 1538831806
+SHA256 (msmtp-1.8.0.tar.xz) = bd730cbf000d1b8382849ea21d569a387e63f936be00dc07c569f67915e53ccd
+SIZE (msmtp-1.8.0.tar.xz) = 302680
Modified: head/mail/msmtp/pkg-plist
==============================================================================
--- head/mail/msmtp/pkg-plist Sat Oct 6 13:06:42 2018 (r481365)
+++ head/mail/msmtp/pkg-plist Sat Oct 6 13:50:14 2018 (r481366)
@@ -1,5 +1,7 @@
bin/msmtp
+%%MSMTPD%%bin/msmtpd
man/man1/msmtp.1.gz
+%%MSMTPD%%man/man1/msmtpd.1.gz
%%MSMTPQ%%bin/msmtp-queue
%%MSMTPQ%%bin/msmtpq
%%NLS%%share/locale/de/LC_MESSAGES/msmtp.mo
More information about the svn-ports-all
mailing list