diff options
author | wiz <wiz@pkgsrc.org> | 2004-09-19 13:02:00 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2004-09-19 13:02:00 +0000 |
commit | 502f2e1a8725dc15071ad1ae9b95378a6bfd7d0a (patch) | |
tree | 1375b8b5bda963a356f3a3893b821fa7682378ef /mail/msmtp/Makefile | |
parent | 6e87eff20c2b0a361bff99ce605d781c604cc5fd (diff) | |
download | pkgsrc-502f2e1a8725dc15071ad1ae9b95378a6bfd7d0a.tar.gz |
Update to 1.2.3, provided by Sergio Jimenez in PR 26975.
Changes since 1.0.0:
Version 1.2.3:
- IPv6 support on Windows systems
- The configuration file supports all commands and arguments related to
TLS and authentication, even if TLS and/or GNU SASL support is not
compiled in
- The GNU SASL library is not required to support DIGEST-MD5 and NTLM
anymore. This means you can now use the packaged versions of the library
from Gentoo or Debian sarge.
- You can use the -v/--version option to find out which authentication
methods are supported.
Version 1.2.2:
- Enhancements to the logfile command:
- All available information is now written to the logfile (new fields:
mailsize=..., smtpmsg='...', errormsg='...').
- Logging to standard output is possible by using "logfile -"
Version 1.2.1:
- No new features.
Version 1.2.0:
- This version can be compiled without TLS/SSL support; use
--disable-ssl if you really want that.
- Read the entries for versions 1.1.x for more changes since the last
stable version 1.0.0.
Version 1.1.3:
- New option -i for compatibility with mail(1).
- New 'logfile' command; see man page for details.
Version 1.1.2:
- No user visible changes.
Version 1.1.1:
- The tls_nostarttls command now sets the default port to 465 (ssmtp).
Version 1.1.0:
- Support for SMTP command pipelining. On high latency networks, this
may increase transmission speed, especially when sending to many
recipients.
- The short option for --file, -f, has changed to -F
- A new option --from/-f is available to set the envelope from address.
- A new option --serverinfo/-S is available to print information
about the capabilities and limitations of an SMTP server
Diffstat (limited to 'mail/msmtp/Makefile')
-rw-r--r-- | mail/msmtp/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/mail/msmtp/Makefile b/mail/msmtp/Makefile index 123bdea70aa..504d840bcca 100644 --- a/mail/msmtp/Makefile +++ b/mail/msmtp/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2004/06/20 21:05:02 xtraeme Exp $ +# $NetBSD: Makefile,v 1.6 2004/09/19 13:02:00 wiz Exp $ # -DISTNAME= msmtp-1.0.0 +DISTNAME= msmtp-1.2.3 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=msmtp/} @@ -9,14 +9,17 @@ MAINTAINER= bcv@hub3.net HOMEPAGE= http://msmtp.sourceforge.net/ COMMENT= SMTP plugin for MUAs +.include "../../mk/bsd.prefs.mk" + USE_BUILDLINK3= YES GNU_CONFIGURE= YES EGDIR= ${PREFIX}/share/examples/msmtp +.include "options.mk" + post-install: ${INSTALL_DATA_DIR} ${EGDIR} ${INSTALL_DATA} ${WRKSRC}/doc/msmtprc.example ${EGDIR} -.include "../../security/openssl/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |