diff options
author | cjep <cjep> | 2004-08-02 13:05:13 +0000 |
---|---|---|
committer | cjep <cjep> | 2004-08-02 13:05:13 +0000 |
commit | 02359a85930f907a4d6c80268c016f7a1e57a662 (patch) | |
tree | b02b383686b73dd7939759ca88f641fd0732f494 /mail/nail/patches | |
parent | 89194fcf3a3abb70589a3334f197d4e33478f610 (diff) | |
download | pkgsrc-02359a85930f907a4d6c80268c016f7a1e57a662.tar.gz |
Update of mail/nail to version 11.0
Changes:
[11.0] released 7/30/04
* IMAP support has been added. It should considered to be in beta state
now, but should not have any disturbing effects on other code unless
it is actually used. (So the version jump does not require vendors to
continue to ship older releases.)
To get started with IMAP, see the manual page for the 'account',
'folder', and 'imap' commands, and for the 'folder' variable, as
well as the EXAMPLES and NOTES sections.
* Support for SMTP AUTH LOGIN was added (contributed by John Fawcett).
* It is now possible to encrypt SMTP with SSL/TLS, using the STARTTLS
method as well as with the SMTPS variant.
* New 'account' command to set groups of variables.
* Line and column limits (used e.g. for the header summary) are updated
when the size of the terminal is changed (handling SIGWINCH).
* If saving an outgoing message to the folder given in the 'record'
variable fails, the message is not sent but put in 'dead.letter'
instead. This rarely happens with local record folders, but is of
concern if 'record' refers to an IMAP mailbox.
* For addresses specified with the ~b, ~c, ~h, and ~t tilde escapes
or by the 'editheaders' method, if a comma, parenthesis, angle bracket,
or quoting character appears, only the comma is accepted as an address
separator. Otherwise, whitespace separates addresses as elsewhere. This
allows the insertion of comments in recipient addresses and more closely
matches the behavior of System V mailx. (Thanks to Ryan Lovett and Hilko
Bengen.)
* An internal version of getopt() is now used to properly work around
system defects such as the option reordering on GNU libc based
systems. If you really prefer the libc version, remove getopt.o from
the list of objects in the Makefile. (Note that nail already worked
around the glibc problem, so unless _your_ patches changed its
behavior, use the new internal getopt() to remain compatible.)
* The undocumented facility to pass sendmail options on the command
line of nail has been removed because it was not compatible with
POSIX and System V. If you need to pass options to sendmail, create
a shell script which invokes it appropriately and let the nail
variable 'sendmail' point to its location.
* Fixed the text of some usage messages (thanks to Christian Reiber).
Diffstat (limited to 'mail/nail/patches')
-rw-r--r-- | mail/nail/patches/patch-aa | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mail/nail/patches/patch-aa b/mail/nail/patches/patch-aa index a08e2c7df15..0ede32e1738 100644 --- a/mail/nail/patches/patch-aa +++ b/mail/nail/patches/patch-aa @@ -1,17 +1,17 @@ -$NetBSD: patch-aa,v 1.3 2004/06/29 13:42:19 cjep Exp $ +$NetBSD: patch-aa,v 1.4 2004/08/02 13:05:13 cjep Exp $ ---- Makefile.orig 2004-06-28 18:57:40.000000000 +0100 -+++ Makefile +--- Makefile.orig 2004-07-30 10:52:49.000000000 +0100 ++++ Makefile 2004-08-02 14:00:53.000000000 +0100 @@ -6,14 +6,14 @@ # See the file INSTALL if you need help. # -PREFIX = /usr/local -+PREFIX?= /usr/local ++PREFIX?= /usr/local BINDIR = $(PREFIX)/bin MANDIR = $(PREFIX)/share/man -SYSCONFDIR = /etc -+SYSCONFDIR?=/etc ++SYSCONFDIR?= /etc MAILRC = $(SYSCONFDIR)/nail.rc -MAILSPOOL = /var/mail @@ -21,7 +21,7 @@ $NetBSD: patch-aa,v 1.3 2004/06/29 13:42:19 cjep Exp $ DESTDIR = -@@ -41,7 +41,8 @@ SHELL = /bin/sh +@@ -41,7 +41,8 @@ ########################################################################### FEATURES = -DMAILRC='"$(MAILRC)"' -DMAILSPOOL='"$(MAILSPOOL)"' \ @@ -30,4 +30,4 @@ $NetBSD: patch-aa,v 1.3 2004/06/29 13:42:19 cjep Exp $ + -DMIMEPATH='"$(SYSCONFDIR)/mime.types"' $(IPv6) OBJ = aux.o base64.o cmd1.o cmd2.o cmd3.o cmdtab.o collect.o \ - dotlock.o edit.o fio.o getname.o head.o lex.o list.o \ + dotlock.o edit.o fio.o getname.o getopt.o head.o imap.o lex.o list.o \ |