summaryrefslogtreecommitdiff
path: root/mail/msmtp
AgeCommit message (Collapse)AuthorFilesLines
2020-09-28msmtp: Update to 1.8.12leot3-8/+9
Changes: 1.8.12 ------ - msmtpd now supports session reuse and improves standards compliance - Automatic account matching now supports subaddresses. For example, user+detail@example.com will match account user@example.com.
2020-06-11msmtp: Update to 1.8.11ryoon2-8/+7
Changelog: Version 1.8.11: - Add a new undisclosed_recipients command and --undisclosed-recipients option to replace To, Cc, Bcc with a single "To: undisclosed-recipients:;" header. - Improved handling of temporary files on Windows systems. - Re-enabled support for systems lacking vasprintf(), such as IBM i PASE.
2020-05-22revbump after updating security/nettleadam1-1/+2
2020-05-09msmtp: Update to 1.8.10leot3-9/+10
Changes: 1.8.10 ------ - The msmtpq script was fixed (it was accidently broken in 1.8.8) [that was partially fixed in 1.8.9, that was omitted in the release notes] - Updated translations. - New serbian translation is included. 1.8.8 ----- - Added a new socket command and --socket option to connect via local sockets. - Added a new tls_host_override command and --tls-host-override option to override the host name used for TLS verification. - Added a new set_from_header command and --set-from-header option with three settings: - on: always set a From header, possibly replacing an existing one - off: never set a From header - auto: add a From header if there is none (this is the default). This replaces the add_missing_from_header option (which remains supported). - Added a new set_date_header command and --set-date-header option with two settings: - off: never set a Date header - auto: add a Date header if there is none (this is the default). This replaces the add_missing_date_header option (which remains supported). - Fixed the handling of empty From headers with --read-recipients/-t. - Fixed the source_ip command for proxies.
2020-03-08*: recursive bump for libffiwiz1-2/+2
2020-01-18*: Recursive revision bump for openssl 1.1.1.jperkin1-1/+2
2019-12-29msmtp: Update to 1.8.7leot2-8/+7
Changes: 1.8.7 ----- - Extend `from' command that sets the envelope from address: the patterns %U, %H, %C, %M are now replaced with user name, host name, canonicalized host name, and the contents of /etc/mailname. This is useful for system-wide installations and is more powerful than the old auto_from and maildomain commands, which are now deprecated (but still supported, of course). 1.8.6 ----- - Aliases are now expanded recursively - Minor bug fixes
2019-07-20*: recursive bump for nettle 3.5.1wiz1-1/+2
2019-07-13msmtp: Update to 1.8.5leot2-7/+7
Changes: 1.8.5 ----- - Fixed OAUTHBEARER. - Support for TLS client certificates via PKCS11 devices, e.g. smart cards. - Various small bug fixes and improvements.
2019-06-18msmtp: Update to 1.8.4leot2-7/+7
Changes: 1.8.4 - Added support for the OAUTHBEARER authentication method. - Several minor bug fixes.
2019-02-11msmtp: Update to 1.8.3leot2-7/+7
Changes: 1.8.3 ----- This version fixes a security problem that affects version 1.8.2 (older versions are not affected): when the new default value system for tls_trust_file is used, the result of certificate verification was not properly checked.
2019-01-17msmtp: Update to 1.8.2leot3-8/+10
Changes: Version 1.8.2: - To simplify TLS setup, the tls_trust_file command has a new default value 'system' that selects the system default trust. Now you just need tls=on to use TLS; the other TLS options are only required in special cases. To make this work without breaking compatibility with older msmtp versions, tls_fingerprint now overrides tls_trust_file, and tls_certcheck=off overrides both (previously, you could not specify contradicting options). - To simplify setup, a new option '--configure <mailaddress>' was added that automatically generates a configuration file for a given mail address. However, this only works if the mail domain publishes appropriate SRV records. Version 1.8.1: - Fixed our TLS code to support TLS 1.3 with GnuTLS.
2018-09-29msmtp: link network libs on SunOSwiedi1-1/+2
2018-09-19msmtp: Update mail/msmtp to 1.8.0leot4-23/+20
pkgsrc changes: - Update HOMEPAGE and MASTER_SITES - Remove inet6 option (it was actually a no-op) - Adjust libidn dependency to libidn2 per 1.8.0 change - Cleanup the options.mk a bit: no need to add pkg-config to USE_TOOLS, it was already needed as tool and remove all --with-*-prefix= because pkg-config is used for that Changes: Version 1.8.0: - A minimal SMTP server called msmtpd was added that listens on the local host and pipes mails to msmtp (or another program). It is intended to be used with system services that cannot be configured to call msmtp directly. You can disable it with the configure option --without-msmtpd. - Using OpenSSL is discouraged and may not be supported in the future. Please use GnuTLS instead. The reasons are explained here: https://marlam.de/msmtp/news/openssl-discouraged/ - As using GNU SASL is most likely unnecessary, it is disabled by default now. Since everything uses TLS nowadays and thus can use PLAIN authentication, you really only need it for GSSAPI. - If your system requires a library for IDN support, libidn2 is now used instead of the older libidn. - The CRAM-MD5 authentication method is marked as obsolete / insecure and will not be chosen automatically anymore. - The passwordeval command does not require the password to be terminated by a new line character anymore. - The new logfile_time_format command allows to customize log file time stamps. - Builtin default port numbers are now used instead of consulting /etc/services. - Support for DJGPP and for systems lacking vasprintf(), mkstemp(), or tmpfile() is removed. Version 1.6.8: - Add --source-ip option and source_ip command to bind the outgoing connection to a specific source IP address. - Enable SNI for TLS Version 1.6.7: - Add support for ~/.config/msmtp/config as configuration file - Add network timeout handling on Windows - Fix command line handling of SHA256 TLS fingerprints - Fix SIGPIPE handling (affects at least Mac OS X) - Add french translation, and update german translation
2018-04-17Add p11-kit to gnutls/bl3.mk and bump dependencies.wiz1-2/+2
2017-08-30Add feature macosx-keyring for msmtp if build on Dawrinwiedi1-1/+3
msmtp provides MacOS X Keychain support by using the configuration option `--with-macosx-keyring`. With this setting enabled passwords for msmtp can be stored in the MacOS X keychain. From Thomas Merkel in NetBSD/pkgsrc#14
2016-11-15Update mail/msmtp to msmtp-1.6.6leot2-8/+7
Changes: 1.6.6 ----- This version fixes a memory leak and a double-free in msmtp_read_headers(). The double-free was triggered by read errors.
2016-09-19Recursive PKGREVISION bump for gnutls shlib major bump.wiz1-1/+2
2016-06-07Update mail/msmtp to 1.6.5leot3-10/+9
pkgsrc changes: - (cosmetic) fix a pkglint warning and proper indent variables in options.mk Changes: Version 1.6.5: - Support SHA256 fingerprints for tls_fingerprint, and mark both SHA1 and MD5 as deprecated.
2016-03-05Bump PKGREVISION for security/openssl ABI bump.jperkin1-1/+2
2016-02-25Use OPSYSVARS.jperkin1-5/+2
2016-02-02Update mail/msmtp to 1.6.4.leot2-7/+7
Changes: Version 1.6.4: - The system default policy is used with GnuTLS instead of a hardcoded one.
2015-11-29Update mail/msmtp to 1.6.3.leot3-24/+7
pkgsrc changes: - Remove patches/patch-src_Makefile.in that seems no more needed Changes: Version 1.6.3: - A bug in SOCKS support was fixed. - Handling non-fatal errors in TLS handshakes was fixed.
2015-11-03Add SHA512 digests for distfiles for mail categoryagc1-1/+2
Problems found locating distfiles: Package mutt: missing distfile patch-1.5.24.rr.compressed.gz Package p5-Email-Valid: missing distfile Email-Valid-1.198.tar.gz Package pine: missing distfile fancy.patch.gz Package postgrey: missing distfile targrey-0.31-postgrey-1.34.patch Package qmail: missing distfile badrcptto.patch Package qmail: missing distfile outgoingip.patch Package qmail: missing distfile qmail-1.03-realrcptto-2006.12.10.patch Package qmail: missing distfile qmail-smtpd-viruscan-1.3.patch Package thunderbird24: missing distfile enigmail-1.7.2.tar.gz Package thunderbird31: missing distfile enigmail-1.7.2.tar.gz Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2015-08-23Bump PKGREVISION for nettle shlib major bump.wiz1-1/+2
2015-04-30Update to 1.6.2, from Leonardo Taccari in PR 49864.wiz2-6/+6
Changes: Version 1.6.2: - A bug was fixed that prevented consecutive Bcc headers from being removed properly.
2015-04-08Update mail/msmtp to version 1.6.1, from Leonardo Taccari in PR 49820.wiz4-20/+16
pkgsrc changes: - gnome-keyring option has changed to secret option to reflect the upstream change. For more information please read the changelog below. Changes: Version 1.6.1: - The new configure option --with-tls replaces --with-ssl. - A new configure option --disable-gai-idn was added. Version 1.6.0: - Support for SOCKS proxies was added. This allows msmtp to be used with Tor. - GNOME Keyring support now uses libsecret instead of libgnome-keyring. It is now documented how to use secret-tool to manage passwords for msmtp; the obsolete msmtp-gnome-tool script is removed. - Configuration file security is now only checked if the file actually contains secrets such as passwords. (If you still store passwords in the configuration file, consider using the passwordeval command or a key ring instead.) - The GSSAPI authentication method is not chosen automatically anymore, you have to request it manually if you really want to use it. - From: and Date: headers are now added to mails if necessary, for compatibility with sendmail, postfix, exim, and other MTAs. This can be disabled with the add_missing_from_header and add_missing_date_header commands. - Libidn is not required for IDN support anymore on systems where getaddrinfo() supports the AI_IDN flag and the GnuTLS version is >= 3.4.0. - The new remove_bcc_headers command replaces the old keepbcc command (but the old command is still supported for compatibility). - SSLv3 is disabled, and the obsolete tls_force_sslv3 command and --tls-force-sslv3 option have no effect anymore.
2014-05-05Recursive revbump from x11/pixmanryoon1-1/+2
Fix PR pkg/48777
2014-03-11Update to 1.4.32ryoon2-7/+6
Changelog: Version 1.4.32: - A recipient list on the command line is now parsed as if it appeared in a mail header.
2014-02-12Recursive PKGREVISION bump for OpenSSL API version bump.tron1-2/+2
2014-01-01Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump.wiz1-2/+2
2013-10-10Recursive revbump from pango-1.36.0ryoon1-2/+2
2013-09-02Revbump after cairo updateadam1-2/+2
2013-06-06Bump PKGREVISION for libXft changes for NetBSD native X support onwiz1-2/+2
NetBSD 6, requested by tron.
2013-06-04Try to fix the fallout caused by the fix for PR pkg/47882. Part 3:tron1-2/+2
Recursively bump package revisions again after the "freetype2" and "fontconfig" handling was fixed.
2013-06-03Bump freetype2 and fontconfig dependencies to current pkgsrc versions,wiz1-1/+2
to address issues with NetBSD-6(and earlier)'s fontconfig not being new enough for pango. While doing that, also bump freetype2 dependency to current pkgsrc version. Suggested by tron in PR 47882
2013-05-10Update to 1.4.31ryoon2-7/+6
Changelog: Version 1.4.31: - Updated the msmtpq script. - Fixed building of the documentation with texinfo >= 5.0.
2013-02-16Recursive bump for png-1.6.wiz1-1/+2
2013-02-07Update to 1.4.30.ryoon2-7/+6
Changelog: Version 1.4.30: - Fix a bug in msmtp_read_addresses() that was introduced in version 1.4.29 by fixing a problem in the wrong way.
2013-02-06PKGREVISION bumps for the security/openssl 1.0.1d update.jperkin1-2/+2
2012-10-08Revbump after updating graphics/pangoadam1-2/+2
2012-10-08Drop PKG_DESTDIR_SUPPORT setting, "user-destdir" is default these days.asau1-3/+1
2012-10-02Mass recursive bump after the dependence fix of the "cairo" packagetron1-1/+2
requested by Thomas Klausner.
2012-09-15Update to 14.29ryoon2-7/+6
Changelog: Version 1.4.29: - The obsolete service name "ssmtp" was replaced with "smtps".
2012-09-15recursive bump from libffi shlib major bumpobache1-2/+2
(additionaly, reset PKGREVISION of qt4-* sub packages from base qt4 update)
2012-09-07Revbump after updating graphics/cairoadam1-1/+2
2012-07-09Update to 1.4.28ryoon2-7/+6
Changelog: Version 1.4.28: - Update autotools files. - Improve error message on connection failures in some IPv6/IPv4 situations. - Improve documentation of EHLO issues. - Bug fix: expand tilde for the aliases command.
2012-06-12Add inet6 to default suggested options. It's 2012.wiz1-2/+2
2012-03-03More pcre PKGREVISION bumps.wiz1-2/+2
2012-02-06Revbump forwiz1-1/+2
a) tiff update to 4.0 (shlib major change) b) glib2 update 2.30.2 (adds libffi dependency to buildlink3.mk) Enjoy.