summaryrefslogtreecommitdiff
path: root/mail/mutt/patches/patch-ac
diff options
context:
space:
mode:
authortron <tron>2002-05-29 12:13:52 +0000
committertron <tron>2002-05-29 12:13:52 +0000
commit9b3cf490031ffbbe615ea75a363a00194791c075 (patch)
treef8658cdfeafc694be5a654f7fdb92efce5b2e09c /mail/mutt/patches/patch-ac
parent81a1718c637875bd16fd6f22f369fc3969863dee (diff)
downloadpkgsrc-9b3cf490031ffbbe615ea75a363a00194791c075.tar.gz
Update "mutt" package to version 1.4. Visible changes since version
1.2.5.1 include: - Better mh support: Mutt now supports .mh_sequences files. Currently, the "unseen", "flagged", and "replied" sequences are used to store mutt flags (the names are configurable using the $mh_seq_unseen, $mh_seq_flagged, and $mh_seq_replied configuration variables). As a side effect, messages in MH folders are no longer rewritten upon status changes. - The "trashed" flag is supported for maildir folders. See $maildir_trash. - POP folder support. You can now access a POP mailbox just like an IMAP folder (with obvious restrictions due to the protocol). - URL syntax for remote folders. You can pass things like pop://account@host and imap://account@host/folder as arguments for the -f command line flag. - STARTTLS support. If $ssl_starttls is set (the default), mutt will attempt to use STARTTLS on servers advertising that capability. - $preconnect. If set, a shell command to be executed if mutt fails to establish a connection to the server. This is useful for setting up secure connections; see the muttrc(5) for details. - $tunnel. Use a pipe to a command instead of a raw socket. See muttrc(5) for details. (Basically, it's another way for setting up secure connections.) - More new IMAP/POP-related variables (see muttrc(5) for details): $connect_timeout, $imap_authenticators, $imap_delim_chars, $imap_peek, $pop_authenticators, $pop_auth_try_all, $pop_checkinterval, $pop_delete, $pop_reconnect, $use_ipv6. - The following IMAP/POP-related variables are gone: $imap_checkinterval, $imap_cramkey, $pop_port. - There's a new imap-fetch-mail function, which forces a check for new messages on an IMAP server. - The new-mailbox function was renamed to create-mailbox, and is bound to C instead of n by default. For a complete overview of all new features look in the "NEWS" file.
Diffstat (limited to 'mail/mutt/patches/patch-ac')
-rw-r--r--mail/mutt/patches/patch-ac39
1 files changed, 11 insertions, 28 deletions
diff --git a/mail/mutt/patches/patch-ac b/mail/mutt/patches/patch-ac
index e463019fa76..7146d4258ab 100644
--- a/mail/mutt/patches/patch-ac
+++ b/mail/mutt/patches/patch-ac
@@ -1,30 +1,13 @@
-$NetBSD: patch-ac,v 1.2 2000/05/20 18:41:41 kim Exp $
+$NetBSD: patch-ac,v 1.3 2002/05/29 12:13:53 tron Exp $
---- init.c 2000/05/17 03:35:49 2.29
-+++ init.c 2000/05/20 07:30:46
-@@ -42,7 +42,6 @@
- #include "init.h"
- #include "mailbox.h"
+--- po/Makefile.in.in.orig Tue Jan 1 21:17:15 2002
++++ po/Makefile.in.in Wed Jan 2 09:54:40 2002
+@@ -23,7 +23,7 @@
+ prefix = @prefix@
+ exec_prefix = @exec_prefix@
+ datadir = @datadir@
+-localedir = $(datadir)/locale
++localedir = $(prefix)/$(PKGLOCALEDIR)/locale
+ gettextsrcdir = $(datadir)/gettext/po
--#include <pwd.h>
- #include <ctype.h>
- #include <stdlib.h>
- #include <unistd.h>
-@@ -1710,13 +1709,13 @@
- /* Get some information about the user */
- if ((pw = getpwuid (getuid ())))
- {
-+ char rnbuf[STRING];
-+
- Username = safe_strdup (pw->pw_name);
- if (!Homedir)
- Homedir = safe_strdup (pw->pw_dir);
-- if ((p = strchr (pw->pw_gecos, ',')))
-- Realname = mutt_substrdup (pw->pw_gecos, p);
-- else
-- Realname = safe_strdup (pw->pw_gecos);
-+
-+ Realname = safe_strdup (mutt_gecos_name (rnbuf, sizeof (rnbuf), pw));
- Shell = safe_strdup (pw->pw_shell);
- }
- else
+ INSTALL = @INSTALL@