100e5243d4
The changes between 11.22 and 11.25 are mostly bug fixes. Please see the ChangeLog in the source distribution for more details. Other changes: * The new "maximum-unencoded-line-length" variable allows to configure the limit on the line length that causes an ASCII text message to be sent in quoted-printable if exceeded (on request by Greg Cox). * Since RFC 2595 allows wildcards at other places than RFC 2818 which is implemented by Mozilla NSS, host name verification is now done separately. * The "sort xyz" commands now uncollapse all threads of a previously threaded folder view; messages in collapsed threads were previously not shown when the folder was sorted. * The junk mail filter now also ignores the "X-pstn" header fields generated by "postini" filtering software. * An 'imap-list-depth' variable was introduced to control the maximum depth of the folder traversal for the 'folders' command if the folder separator on the IMAP server is not the slash '/'. * If standard output is not a terminal device, the output of the 'folders' command applied to an IMAP account is no longer arranged into columns. * The new '-R' option causes all folders to be opened read-only. * The output for the '~p' tilde escape was extended to include the fields implied by the 'from', 'replyto', 'sender', and 'ORGANIZATION' variables (Proposed by Bob Tennent). * The 'autocc' and 'autobcc' variables are now evaluated before composition of a message begins. The resulting addresses can thus be edited and viewed using the '~b', '~c', '~h', and '~p' tilde escapes, but changing the values of the 'autocc' and 'autobcc' variables using '~:set' has no effect on the currently composed message anymore. * The values of the 'from' and 'replyto' variables can now contain multiple addresses. * A 'sender' variable was introduced to set the content of the 'Sender:' field for outgoing messages. * The '-r' option now actually disables tilde escapes as documented (Bugreport by Bob Tennent). * The 'undelete' command now also clears the 'saved' flags of messages that have been moved.
43 lines
1 KiB
Makefile
43 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.31 2005/11/20 11:08:39 cjep Exp $
|
|
|
|
DISTNAME= nail-11.25
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=nail/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= cjep@NetBSD.org
|
|
HOMEPAGE= http://nail.sourceforge.net/
|
|
COMMENT= BSD mail utility with MIME extensions
|
|
|
|
USE_PKGINSTALL= yes
|
|
BUILD_DEFS+= USE_INET6
|
|
|
|
MAKE_ENV+= "SYSCONFDIR=${PKG_SYSCONFDIR}"
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# IPv6 support
|
|
#
|
|
.if ${USE_INET6} == "YES"
|
|
MAKE_ENV+= "IPv6=-DHAVE_IPv6_FUNCS"
|
|
.endif
|
|
|
|
.if (${OPSYS} == "SunOS" || ${OPSYS} == "IRIX")
|
|
MAKE_ENV+= "SENDMAIL=/usr/lib/sendmail"
|
|
.endif
|
|
|
|
EGDIR= ${PREFIX}/share/examples/nail
|
|
|
|
CONF_FILES= ${EGDIR}/nail.rc ${PKG_SYSCONFDIR}/nail.rc
|
|
|
|
INSTALLATION_DIRS= bin man/man1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/nail ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/nail.1 ${PREFIX}/man/man1
|
|
${INSTALL_DATA_DIR} ${EGDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/nail.rc ${EGDIR}
|
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|