diff options
author | adam <adam@pkgsrc.org> | 2005-01-19 15:30:25 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2005-01-19 15:30:25 +0000 |
commit | d674062b54c3ceaa1f445c2ea340b0854d1db66d (patch) | |
tree | a593ffe14c31e8caac2c9f18d6c5d168fe920a69 | |
parent | be0b638245db7b5506314ecdf0bbc0c63595d28c (diff) | |
download | pkgsrc-d674062b54c3ceaa1f445c2ea340b0854d1db66d.tar.gz |
Changes 1.2.4:
- Changed return code in case of authentication error from EX_DATAERR
to EX_NOPERM
- Changed return code in case of missing/invalid configuration file or
nonexistent account from EX_NOINPUT/EX_DATAERR to EX_CONFIG
- Test return value of localtime(3) in msmtp_log()
- Windows specific code in net.c: moved translation of error code from
WSAStartup() from net_lib_init() to wsa_strerror()
- OpenSSL specific code in tls.c: minor cleanup in openssl_io_error()
- Always keep control of the format string in calls to merror(). (There
were four cases where the result of strerror() was passed as the format
string in smtp.c.)
- Clarified usage instructions of merror() in merror.h
- Check at initialization time whether support for a manually requested
authentication mechanism is compiled, *before* establishing a network
connection.
This required a change from smtp_auth_caps() to the (equally trivial)
smtp_authmech_is_supported() function.
Made the output of both "not compiled in" messages (TLS and auth mech)
consistent.
The return code for these error conditions is EX_UNAVAILABLE now.
- Make the output of -h/--help and -v/--version consistent with the GNU
utilities by including copyright and no-warranty notice (version) and
a short description and the bug report address (--help).
- Add missing declarations of optarg and optind to msmtp.c, needed for
getopt() handling. No compiler complained so far, though.
- Fixed stupid error in smtp.c that prevented the detection of output
errors when sending the RCPT TO command (highly unlikely to occur).
- Cosmetic change in -v/--version output that avoids lines longer than
80 characters
- Fixed some man page typos
- Fixed typos in conffile.c error message
- Fixed typo in tls.c error message (OpenSSL code only)
- Changed error messages: "bla [blub]" -> "bla: blub"
- Improved some TLS error messages
- Corrected short description in man page, README and code comments
- Updated README.dos
-rw-r--r-- | mail/msmtp/Makefile | 21 | ||||
-rw-r--r-- | mail/msmtp/distinfo | 6 |
2 files changed, 12 insertions, 15 deletions
diff --git a/mail/msmtp/Makefile b/mail/msmtp/Makefile index 504d840bcca..eb10dea0213 100644 --- a/mail/msmtp/Makefile +++ b/mail/msmtp/Makefile @@ -1,18 +1,15 @@ -# $NetBSD: Makefile,v 1.6 2004/09/19 13:02:00 wiz Exp $ -# +# $NetBSD: Makefile,v 1.7 2005/01/19 15:30:25 adam Exp $ -DISTNAME= msmtp-1.2.3 -CATEGORIES= mail -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=msmtp/} +DISTNAME= msmtp-1.2.4 +CATEGORIES= mail +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=msmtp/} -MAINTAINER= bcv@hub3.net -HOMEPAGE= http://msmtp.sourceforge.net/ -COMMENT= SMTP plugin for MUAs +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 +USE_BUILDLINK3= yes +GNU_CONFIGURE= yes EGDIR= ${PREFIX}/share/examples/msmtp diff --git a/mail/msmtp/distinfo b/mail/msmtp/distinfo index e062bed1f48..1054d7f9c56 100644 --- a/mail/msmtp/distinfo +++ b/mail/msmtp/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.3 2004/09/19 13:02:00 wiz Exp $ +$NetBSD: distinfo,v 1.4 2005/01/19 15:30:25 adam Exp $ -SHA1 (msmtp-1.2.3.tar.gz) = f95c434feecb963203701ca3f7600752199deb3b -Size (msmtp-1.2.3.tar.gz) = 158574 bytes +SHA1 (msmtp-1.2.4.tar.gz) = d62747d2c38c6dd32f953441f49ee3a8dcf36d53 +Size (msmtp-1.2.4.tar.gz) = 159416 bytes |