]> granicus.if.org Git - mutt/log
mutt
8 years agoAdd a few explanatory comments to pop_auth_sasl(). (see #3862)
Kevin McCarthy [Tue, 11 Oct 2016 01:09:00 +0000 (18:09 -0700)]
Add a few explanatory comments to pop_auth_sasl().  (see #3862)

8 years agoFix POP3 SASL authentication mechanism DIGEST-MD5. (closes #3862)
<g1pi@libero.it> [Mon, 10 Oct 2016 23:33:13 +0000 (16:33 -0700)]
Fix POP3 SASL authentication mechanism DIGEST-MD5. (closes #3862)

sasl_client_step() returns SASL_OK after the fourth step: server auth
confirmation.  However, the protocol requires the client send one more
blank line to the server, to which the server then replies with "+OK".
See https://tools.ietf.org/html/rfc5034#section-6.

The code currently only sends a final response if sasl_client_step
returns data to send.  Change it to always send a final client message
after the SASL_OK.

8 years agomerge stable
Kevin McCarthy [Sat, 8 Oct 2016 20:24:00 +0000 (13:24 -0700)]
merge stable

8 years agomutt-1.7.1 signed
Kevin McCarthy [Sat, 8 Oct 2016 19:57:57 +0000 (12:57 -0700)]
mutt-1.7.1 signed

8 years agoAdded tag mutt-1-7-1-rel for changeset 0ce5f9bff1fd
Kevin McCarthy [Sat, 8 Oct 2016 19:56:33 +0000 (12:56 -0700)]
Added tag mutt-1-7-1-rel for changeset 0ce5f9bff1fd

8 years agoautomatic post-release commit for mutt-1.7.1 mutt-1-7-1-rel
Kevin McCarthy [Sat, 8 Oct 2016 19:56:22 +0000 (12:56 -0700)]
automatic post-release commit for mutt-1.7.1

8 years agoMark IMAP fast-trash'ed messages as read before copying. (see #3860)
Kevin McCarthy [Thu, 6 Oct 2016 19:35:38 +0000 (12:35 -0700)]
Mark IMAP fast-trash'ed messages as read before copying. (see #3860)

Regular copying/saving messages in mutt via a UID COPY first calls
imap_sync_message().  However that function is designed to sync all
flags (including deleted), and so isn't useful for the fast-trash
code.

As an easier solution, instead add a UID STORE to set \\Seen for the
same msgset as the trashed messages.

8 years agoUpdated Czech translation.
Petr Pisar [Wed, 5 Oct 2016 22:04:57 +0000 (15:04 -0700)]
Updated Czech translation.

8 years agomerge stable
Kevin McCarthy [Tue, 4 Oct 2016 18:18:09 +0000 (11:18 -0700)]
merge stable

8 years agoPreserve forwarded attachment names in d_filename.
Kevin McCarthy [Tue, 4 Oct 2016 18:13:24 +0000 (11:13 -0700)]
Preserve forwarded attachment names in d_filename.

When forwarding an attachment with an non-ascii name, mutt_copy_body()
mangles the filename when calling mutt_adv_mktemp.  Preserve
the original attachment filename in d_filename.

Remove the double copy of b->filename, which is a memory leak.

8 years agoEnsure signatures exist when verifying multipart/signed emails. (closes #3881).
Kevin McCarthy [Sat, 1 Oct 2016 23:21:59 +0000 (16:21 -0700)]
Ensure signatures exist when verifying multipart/signed emails. (closes #3881).

TAKAHASHI Tamotsu reported that when gpg2 isn't in PATH, the
gpgme_op_verify() won't return an error, but instead will return a
result with no signatures.

verify_one() was only returning an error if a signature actually
failed, so in this case the function was defaulting to returning
success.

Other callers of gpgme_op_verify() check to make sure the
result->signatures exist before processing signatures.  Add a check
for verify_one() too.

8 years agoRFC2047-decode mailto url headers after RFC2822 parsing. (closes #3879)
Kevin McCarthy [Sat, 1 Oct 2016 20:58:35 +0000 (13:58 -0700)]
RFC2047-decode mailto url headers after RFC2822 parsing. (closes #3879)

Commit 55819a7e6169 performed the RFC2047 decode before the parsing.
This works okay for headers such as subject, but for others such as
address fields could lead to parsing errors.

Change to perform a decode on envelope headers after all the calls to
mutt_parse_rfc822_line(), using the same list of fields as
mutt_read_rfc822_header().

Change the do_2047 parameter of mutt_read_rfc822_line() to true, so
that user headers are decoded if needed.

8 years agoRFC2047-decode mailto header values. (closes #3879)
Kevin McCarthy [Wed, 28 Sep 2016 01:15:25 +0000 (18:15 -0700)]
RFC2047-decode mailto header values. (closes #3879)

RFC 6068 specifies that the header values (with the exception of body)
may contain RFC 2047-encoded values.

8 years agomerge stable
Kevin McCarthy [Sun, 25 Sep 2016 20:26:58 +0000 (13:26 -0700)]
merge stable

8 years agoReset invalid parsed received dates to 0. (closes #3878)
Kevin McCarthy [Sun, 25 Sep 2016 20:11:03 +0000 (13:11 -0700)]
Reset invalid parsed received dates to 0.  (closes #3878)

The actual problem in the ticket would be solved by d3f31cf9239e (see
#3798).  However there is still the bug that Mutt considers a
(hdr->received != 0) to be set and usable, despite not checking the
return value of mutt_parse_date().

Change mutt_read_rfc822_header() to unset an invalid received value
back to 0.  We don't do this inside mutt_read_rfc822_line() because
that would cause the next received line to be parsed.

8 years agoClear pager position when toggling headers.
Kevin McCarthy [Fri, 23 Sep 2016 23:07:36 +0000 (16:07 -0700)]
Clear pager position when toggling headers.

It doesn't make sense to try to preserve the pager position when
toggling headers: the purpose of toggling headers is to see the
headers in full or weeded state.  So, reset the position back to the
top.

8 years agoDon't abort the menu editor on sigwinch. (closes #3875)
Kevin McCarthy [Thu, 22 Sep 2016 21:07:18 +0000 (14:07 -0700)]
Don't abort the menu editor on sigwinch. (closes #3875)

getch() will return ERR on sigwinch when timeout() is called with a
positive value.  mutt_getch() will therefore return ch==-2 for both a
timeout and a sigwinch in this case.

The imap code in km_dokey() exits out of the ImapKeepalive loop for a
SigWinch, and was skipping past the check for MENU_EDITOR and
tmp.ch==-2.  Move this check below the gotkey: label so the
ImapKeepalive loop behaves the same as the Timeout code.

Thanks to nicop for reporting the problem and for the initial patch!

8 years agomerge stable
Kevin McCarthy [Thu, 22 Sep 2016 01:11:27 +0000 (18:11 -0700)]
merge stable

8 years agoMark some gpgme pgp menu keybinding translations as fuzzy. (closes #3874)
Antonio Radici [Thu, 22 Sep 2016 01:10:33 +0000 (18:10 -0700)]
Mark some gpgme pgp menu keybinding translations as fuzzy. (closes #3874)

Some translations for crypt-gpgme.c are marked as fuzzy but the keybindings
attached to these translations are not, this creates confusions for the users
who see the english message but have the keybindings for a message in their own
language available.

As long as the translations are fuzzy, the keybindings should stay fuzzy.

8 years agomerge stable
Kevin McCarthy [Thu, 22 Sep 2016 00:52:45 +0000 (17:52 -0700)]
merge stable

8 years agoCheck for NULL mx_ops in mx.c
Kevin McCarthy [Wed, 21 Sep 2016 20:51:01 +0000 (22:51 +0200)]
Check for NULL mx_ops in mx.c

Eike Rathke reported this happening when in an IMAP index view the
underlying connection was terminated, ctx->mx_ops was NULL and thus
accessing ctx->mx_ops->check segfaulted.

Thanks also to Eike Rathke for the initial patch, for which I expanded
the checks to other functions.

8 years agoUse body color for gpgme output. (closes #3872)
Antonio Radici [Tue, 20 Sep 2016 22:51:13 +0000 (15:51 -0700)]
Use body color for gpgme output. (closes #3872)

When switching from pgp_* commands to crypt_use_gpgme=yes, Peter
Colberg noticed that the output was colored 'brightyellow'.

The issue is that crypt-gpgme.c uses state_attach_puts in various
places where it should use state_puts to maintain compatibility with
the previous behavior in pgp.c.

8 years agomerge stable
Kevin McCarthy [Tue, 20 Sep 2016 21:01:09 +0000 (14:01 -0700)]
merge stable

8 years agoFix gpgme segfault when querying candidates with a '+' in the address. (closes #3873)
Antonio Radici [Tue, 20 Sep 2016 20:58:47 +0000 (13:58 -0700)]
Fix gpgme segfault when querying candidates with a '+' in the address. (closes #3873)

list_to_pattern() was not allocating enough space for the '+' to '%2B'
transformation.

8 years agoFix openssl 1.1 compilation issues. (closes #3870)
TAKAHASHI Tamotsu [Thu, 8 Sep 2016 03:00:04 +0000 (20:00 -0700)]
Fix openssl 1.1 compilation issues. (closes #3870)

With these changes, Mutt will no longer compile for versions less than
0.9.6.

8 years agoAdd unsidebar_whitelist command.
Kevin McCarthy [Thu, 8 Sep 2016 02:12:26 +0000 (19:12 -0700)]
Add unsidebar_whitelist command.

This pairs with the sidebar_whitelist command, and operates like the
other "un..." list commands.

8 years agomerge stable
Kevin McCarthy [Thu, 8 Sep 2016 01:56:50 +0000 (18:56 -0700)]
merge stable

8 years agoFix sidebar documentation a bit. (closes #3859)
Kevin McCarthy [Thu, 8 Sep 2016 01:54:54 +0000 (18:54 -0700)]
Fix sidebar documentation a bit. (closes #3859)

Sidebar_whitelist is a command, not a variable.  Also add a blurb about what it does.

Fix the sort order for $sidebar_divider_char and $sidebar_delim_chars.

8 years agomerge stable
Kevin McCarthy [Tue, 6 Sep 2016 02:04:43 +0000 (19:04 -0700)]
merge stable

8 years agoAdd missing sidebar contrib sample files to dist tarball.
Kevin McCarthy [Tue, 6 Sep 2016 01:50:33 +0000 (18:50 -0700)]
Add missing sidebar contrib sample files to dist tarball.

I previously added the files, but neglected to add them to the
contrib/Makefile.am file.

Thanks to isdtor for pointing out the problem and for the original
patch.

8 years agomerge stable
Kevin McCarthy [Mon, 5 Sep 2016 19:44:15 +0000 (12:44 -0700)]
merge stable

8 years agoStub out getdnsdomainname() unless HAVE_GETADDRINFO.
Kevin McCarthy [Mon, 5 Sep 2016 19:35:19 +0000 (12:35 -0700)]
Stub out getdnsdomainname() unless HAVE_GETADDRINFO.

It seems unlikely there are systems without it (given that this
mistake has been in since 1.6.0), but for correctness we should stub
out the function for those without it.

8 years agoAutoconf: always check for getaddrinfo().
Kevin McCarthy [Mon, 5 Sep 2016 19:22:58 +0000 (12:22 -0700)]
Autoconf: always check for getaddrinfo().

The getdnsdomainname() function introduced in 1.6.0 uses
getaddrinfo().

Pull the dependency checks for libnsl, libsocket, and getaddrinfo()
outside of the "need_socket" block, so they are always checked for.

8 years agomerge stable
Kevin McCarthy [Mon, 5 Sep 2016 01:57:08 +0000 (18:57 -0700)]
merge stable

8 years agoFix pgpring reporting of DSA and Elgamal key lengths. (closes #3867)
Guilhem Moulin [Mon, 5 Sep 2016 01:50:28 +0000 (18:50 -0700)]
Fix pgpring reporting of DSA and Elgamal key lengths.  (closes #3867)

Patch provided by Guilhem Moulin from an original idea of Fabrizio
Tarizzo.

The key length is always the length of the first MPI for RSA, DSA, and
Elgamal.

8 years agoPreserve message-id and mft headers for recalled messages. (closes #3081)
Kevin McCarthy [Sat, 3 Sep 2016 23:19:38 +0000 (16:19 -0700)]
Preserve message-id and mft headers for recalled messages. (closes #3081)

Git patch creates a patch series mailbox, including the Message-ID.
Using this as draft files was removing the Message-ID, and thus
breaking the threaded structure.

The second part of the ticket has already been addressed by
95a2230ef889 (for ticket 3653).

Thanks to Chris Webb for the original patch.

8 years agomerge stable
Kevin McCarthy [Sat, 3 Sep 2016 02:33:35 +0000 (19:33 -0700)]
merge stable

8 years agoDisable ~X when message scoring. (closes #3861)
Kevin McCarthy [Sat, 3 Sep 2016 02:32:39 +0000 (19:32 -0700)]
Disable ~X when message scoring.  (closes #3861)

mutt_score_message() purposely passes a NULL context to
mutt_pattern_exec().  The idea was to block slow patterns, and the
scoring documentation notes this by saying:

  "For efficiency reasons, patterns which scan information not
  available in the index, such as ~b, ~B or ~h, may not be used"

~X needs the context to parse the messages (during message scoring at
least), and thus isn't suitable for message scoring either.

Block ~X from being used when the context is NULL.  Add ~X to the list
of patterns noted as unusable in the message scoring documentation.

8 years agomerge stable
Kevin McCarthy [Fri, 2 Sep 2016 23:24:28 +0000 (16:24 -0700)]
merge stable

8 years agoIncrease date buffer size for $folder_format. (closes #3863)
Kevin McCarthy [Fri, 2 Sep 2016 23:20:37 +0000 (16:20 -0700)]
Increase date buffer size for $folder_format.  (closes #3863)

The buffer size of 16 was sufficient to hold the %d format, but not
for using %D.  Change to use a SHORT_STRING.

Thanks to Ian Zimmerman for the original patch, and to Antonio Radici
for forwarding it on to us.

8 years agoRedraw screen after an SSL cert prompt
David Champion [Wed, 31 Aug 2016 01:43:02 +0000 (18:43 -0700)]
Redraw screen after an SSL cert prompt

8 years agoMoves mutt_copy_list to muttlib.c, where it belongs.
David Champion [Tue, 30 Aug 2016 23:30:06 +0000 (16:30 -0700)]
Moves mutt_copy_list to muttlib.c, where it belongs.

8 years agoUpdate a confusing and obsolete comment.
David Champion [Tue, 30 Aug 2016 23:11:45 +0000 (16:11 -0700)]
Update a confusing and obsolete comment.

This 2004 comment in sort.h predicted what has recently come to pass, so
I'm reframing it just to document for future devs what's going on with
this oddball flag.

8 years agoFilter out zero width no-break space (U+FEFF).
Vincent Lefevre [Tue, 23 Aug 2016 11:32:31 +0000 (13:32 +0200)]
Filter out zero width no-break space (U+FEFF).

8 years agoAdd missing include <locale.h> to send.c and edit.c.
Kevin McCarthy [Tue, 23 Aug 2016 03:34:05 +0000 (20:34 -0700)]
Add missing include <locale.h> to send.c and edit.c.

8 years agoAdd $attribution_locale configuration variable.
Kevin McCarthy [Tue, 23 Aug 2016 03:04:59 +0000 (20:04 -0700)]
Add $attribution_locale configuration variable.

$attribution_locale replaces the just removed $locale, but is only
used for customizing the LC_TIME locale used for dates in
$attribution.

This could be useful in conjunction with folder or send-hooks for
recipients in different locales.

8 years agoRemove the $locale configuration variable.
Kevin McCarthy [Tue, 23 Aug 2016 03:04:52 +0000 (20:04 -0700)]
Remove the $locale configuration variable.

$locale was only used to set the LC_TIME locale.  Unfortunately, Mutt
previously defaulted to using "C".  This overrode the user's locale
setting and forced them to re-specify their locale inside their
.muttrc.

Remove $locale and instead use the locale specified by the
environment.  Mutt still allows "C locale" dates by using a leading
"!" in $date_format, ${}, etc.

Another use of $locale was to customize attribution dates using hooks.
The next commit will introduce $attribution_locale, which can be used
for this instead.

Thanks to Derek Martin for the original patch!

8 years agomerge default into stable
Kevin McCarthy [Thu, 18 Aug 2016 03:17:50 +0000 (20:17 -0700)]
merge default into stable

8 years agomutt-1.7.0 signed
Kevin McCarthy [Thu, 18 Aug 2016 03:14:07 +0000 (20:14 -0700)]
mutt-1.7.0 signed

8 years agoAdded tag mutt-1-7-rel for changeset a4e83f60e42f
Kevin McCarthy [Thu, 18 Aug 2016 03:12:41 +0000 (20:12 -0700)]
Added tag mutt-1-7-rel for changeset a4e83f60e42f

8 years agoautomatic post-release commit for mutt-1.7.0 mutt-1-7-rel
Kevin McCarthy [Thu, 18 Aug 2016 03:12:28 +0000 (20:12 -0700)]
automatic post-release commit for mutt-1.7.0

8 years agoUpdated Japanese translation.
TAKAHASHI Tamotsu [Thu, 18 Aug 2016 01:07:59 +0000 (18:07 -0700)]
Updated Japanese translation.

8 years agoUpdated Danish translation.
Morten Bo Johansen [Mon, 15 Aug 2016 17:17:47 +0000 (10:17 -0700)]
Updated Danish translation.

8 years agoUpdated Esperanto translation.
Benno Schulenberg [Mon, 15 Aug 2016 16:15:43 +0000 (09:15 -0700)]
Updated Esperanto translation.

8 years agoUpdated Dutch translation.
Benno Schulenberg [Mon, 15 Aug 2016 16:09:44 +0000 (09:09 -0700)]
Updated Dutch translation.

8 years agoUpdated Catalan translation.
Ivan Vilata i Balaguer [Wed, 10 Aug 2016 16:29:58 +0000 (09:29 -0700)]
Updated Catalan translation.

8 years agoUpdated French translation.
Vincent Lefevre [Wed, 10 Aug 2016 00:20:11 +0000 (02:20 +0200)]
Updated French translation.

8 years agoUpdated Russian translation.
Vsevolod Volkov [Tue, 9 Aug 2016 21:34:55 +0000 (14:34 -0700)]
Updated Russian translation.

8 years agoUpdated Ukrainian translation.
Vsevolod Volkov [Tue, 9 Aug 2016 21:32:21 +0000 (14:32 -0700)]
Updated Ukrainian translation.

8 years agoClear pager position upon returning to the index menu.
Kevin McCarthy [Mon, 8 Aug 2016 20:13:30 +0000 (13:13 -0700)]
Clear pager position upon returning to the index menu.

This fixes a bug where opening a message sometimes shows it scrolled
down.

The easiest way to trigger this is to open a long message in a mailbox
with no new messages, scroll down, hit <next-new-then-unread> and then
reopen the message.  The pager will "remember" the position and scroll
down.  If you simply exit the message and re-enter it, the position is
not saved.

More annoyingly, once in a very great while I will open a new message
and have the message scrolled down partway.  I believe this is due to
OldHdr happening to point to the same address as the Header of the new
message.

This is somewhat easily triggered on a mailbox with one message, which
you open, scroll down in, hit <next-new-then-unread> to exit, and then
delete/sync.  In another mutt instance, copy the same messsage back to
the mailbox, then open the message in the original mutt instance.  At
least some of the time, the OldHdr pointer matches the new message,
and so it opens scrolled down.

This patch solves the problem by clearing the pager position once all
redirections through the index menu are done.

8 years agoUpdated French translation.
Vincent Lefevre [Sat, 6 Aug 2016 21:35:16 +0000 (23:35 +0200)]
Updated French translation.

8 years agoRemove nonsensical size check in mutt_choose_charset()
Kevin McCarthy [Fri, 5 Aug 2016 21:33:39 +0000 (14:33 -0700)]
Remove nonsensical size check in mutt_choose_charset()

The charsets parameter is being tokenized by the : delimeter.

The checks against ENCWORD_LEN_MAX and ENCWORD_LEN_MIN make no sense,
and appear to be the result of a large merge a very long time ago
(changeset cb27682966d5).

I can only guess where this check was supposed to be, but it certainly
doesn't belong here.

8 years agoFix memory leak in mutt_choose_charset().
Kevin McCarthy [Fri, 5 Aug 2016 20:43:04 +0000 (13:43 -0700)]
Fix memory leak in mutt_choose_charset().

8 years agoFix memleak in mh_read_dir() when sequence parsing fails.
Kevin McCarthy [Fri, 5 Aug 2016 20:43:00 +0000 (13:43 -0700)]
Fix memleak in mh_read_dir() when sequence parsing fails.

8 years agoUpdate copyright notices.
Kevin McCarthy [Fri, 5 Aug 2016 18:02:44 +0000 (11:02 -0700)]
Update copyright notices.

8 years agoExplicitly NULL unimplemented pop mx_ops functions.
Kevin McCarthy [Wed, 3 Aug 2016 02:18:53 +0000 (19:18 -0700)]
Explicitly NULL unimplemented pop mx_ops functions.

The struct initialization already does this for unlisted fields, but
I'd rather be explicit about unimplemented operations.

8 years agoUse the ctx->mx_ops instead of calling mx_get_ops()
Kevin McCarthy [Wed, 3 Aug 2016 02:18:46 +0000 (19:18 -0700)]
Use the ctx->mx_ops instead of calling mx_get_ops()

With mx_open_mailbox_append() setting the ctx->mx_ops, all contexts
should have mx_ops set.

Remove calls to mx_get_ops() and instead directly use ctx->mx_ops.

8 years agoUse a different flag in mx_open_mailbox_append() when mailbox doesn't exist.
Kevin McCarthy [Tue, 2 Aug 2016 01:25:28 +0000 (18:25 -0700)]
Use a different flag in mx_open_mailbox_append() when mailbox doesn't exist.

The previous commit re-used MUTT_NEWFOLDER, but the meaning of that
flag is slightly different: it causes mbox to use fopen with mode "w",
and is used only for the case of a brand-new mktemp-generated mbox.

Setting it for other non-existing mbox files leads to a race condition
between the stat and the fopen/lock, and so could end up truncating an
existing mailbox created in-between!

Create a different flag, MUTT_APPENDNEW to notify the open_append()
functions that the mailbox doesn't exist.  Change maildir and mh to
check for that flag to create their directory structures.

8 years agoConvert mx_open_mailbox_append() to use ctx->mx_ops.
Kevin McCarthy [Mon, 1 Aug 2016 22:04:45 +0000 (15:04 -0700)]
Convert mx_open_mailbox_append() to use ctx->mx_ops.

Set the flag MUTT_NEWFOLDER to signal Maildir and MH to create the directory structure.

Distribute the "open append" code to mbox, mh, and imap/imap.c.

Set pop's mx_ops handler to NULL to signal it is not supported.

8 years agoMove fflush and fsync to the mbox and mmdf commit_msg functions.
Kevin McCarthy [Mon, 1 Aug 2016 01:42:07 +0000 (18:42 -0700)]
Move fflush and fsync to the mbox and mmdf commit_msg functions.

The case statement in mx_commit_message() was previously distributed
to the various ops->commit_msg() handlers, but the fflush and fsync were
not.

8 years agoAdd unread and total message count format strings to $folder_format.
Kevin McCarthy [Sat, 30 Jul 2016 18:11:07 +0000 (11:11 -0700)]
Add unread and total message count format strings to $folder_format.

%n will show the unread message count in the mailbox.  %m will show
total message count.  Except for %n with IMAP, these both require
$mail_check_stats to be set, which puts these counts inside BUFFY.

Since the imap_mboxcache is never fresher than the value in BUFFY,
remove the special imap_mailbox_state() call.  Instead, just update
from the current Context for all mailboxes.

Remove the logic that overrode the %N format string to show unread
count for IMAP mailboxes.  If they want to see unread count, they will
have to change the $folder_format.

Although it doesn't look possible to reuse browser_state.entry slots,
change the OP_DELETE_MAILBOX to memset(0) the deleted slot.  Then, we
can change to logic in add_folder() so it doesn't need to zero-out
unset values.

8 years agoFix imap buffy msg_count overwrite issue.
Richard Russon [Mon, 25 Jul 2016 19:25:23 +0000 (12:25 -0700)]
Fix imap buffy msg_count overwrite issue.

The sidebar updates the buffy->msg_count with the context.  This can
cause it to become out of sync with the imap_mboxcache.

If the imap_buffy doesn't request MESSAGES, don't overwrite the
buffy->msg_count with a stale value.

8 years agoConvert buffy_mbox_check() and trash_append() to use local context.
Kevin McCarthy [Fri, 22 Jul 2016 21:55:01 +0000 (14:55 -0700)]
Convert buffy_mbox_check() and trash_append() to use local context.

buffy_mbox_check() was leaking the dynamically allocated context.
Rather than add a call to free, just convert it to use a local
variable.

Make the same change to trash_append(), which doesn't need the
dynamically allocated context either.

8 years agoFix memleak in the new trash folder code.
Kevin McCarthy [Thu, 21 Jul 2016 21:00:24 +0000 (14:00 -0700)]
Fix memleak in the new trash folder code.

Free the context in opened in trash_append()

8 years agoUpdated French translation.
Vincent Lefevre [Thu, 21 Jul 2016 10:49:19 +0000 (12:49 +0200)]
Updated French translation.

8 years agoFilter directional markers that corrupt the screen. (closes #3854)
Kevin McCarthy [Wed, 20 Jul 2016 23:29:55 +0000 (16:29 -0700)]
Filter directional markers that corrupt the screen. (closes #3854)

Thanks to Vincent Lefèvre for working on these utf-8 screen display issues.

8 years agoFix arithmetic exception due to menu->pagelen being negative.
Anton Lindqvist [Wed, 20 Jul 2016 01:56:13 +0000 (18:56 -0700)]
Fix arithmetic exception due to menu->pagelen being negative.

Resizing the terminal window down to two lines when in an empty
mailbox causes mutt to crash due to division by zero since menu->max
equals 0 and menu->pagelen < 0 in status.c:205.

Fixing the problem at this specific line felt wrong since I did notice
menu->pagelen being negative. The pagelen is inherited from the rows
calculation in mutt_reflow_windows. Since the number of lines can
potentially be smaller than the accumulated number of rows acquired by
the status, help and message window, make sure the calculation does
not turn negative.

8 years agoAdd imap-fast-trash patch.
Kevin McCarthy [Mon, 18 Jul 2016 02:31:16 +0000 (19:31 -0700)]
Add imap-fast-trash patch.

This is based on the patch by Paul Miller.

Modifications are:

* Create a new flag, MUTT_TRASH for imap_make_msg_set(), rather than
  use MUTT_EXPIRED.

* Change imap_make_msg_set(MUTT_TRASH) to only look at
  hdrs[n]->deleted && !hdrs[n]->purge, behaving like MUTT_TAG, rather
  than looking at the HEADER_DATA.

* Reimplement imap_fast_trash() based on imap_copy_message().
  It looks the old version was too, but it lacked handling of TRYCREATE
  and also queued the UID COPY but didn't exec it.  (Presumably this
  happened in the subsequent sync).

* Move the Context magic and mx_is_imap() checks outside of
  imap_fast_trash()

8 years agoAdd purge-message patch.
Kevin McCarthy [Mon, 18 Jul 2016 02:31:13 +0000 (19:31 -0700)]
Add purge-message patch.

This is based on the patch by Cedric Duval.
Modifications are:

* Use the exising M_PURGE flag from the trash folder patch, rather
  than adding a separate flag.

* Undelete operations are already handled by the trash folder patch.

8 years agoAdd the trash folder patch.
Kevin McCarthy [Mon, 18 Jul 2016 02:31:09 +0000 (19:31 -0700)]
Add the trash folder patch.

This is based on the trash folder patch by Cedric Duval.
Modifications to the original patch are:

* Use a flag called M_PURGE instead of M_APPENDED.  The same flag is
  then used in the following "purge" patch instead of adding a
  different flag.

* Removed the counter in context.  The existing context->deleted
  is all that's needed.

* Removed the "auto unset M_PURGE" when M_DELETED is unset inside
  _mutt_set_flag(), although this is convenient, it easily leads to
  header->purge not being reset in a few situations.

* Reset purge flag along with the deleted flag if $delete is answered
  no.

* Set M_PURGE on an edited message. (edit_one_message())

* Preserve purge flag in mutt_reopen_mailbox()

* Turn off OPTCONFIRMAPPEND when saving to the trash, rather than
  hardcoding it off in mutt_save_confirm().  That way, normal save to the
  folder will respect the option.

8 years agoFix memory leak in mutt_sasl_cb_pass.
Will Fiveash [Sat, 16 Jul 2016 21:04:29 +0000 (14:04 -0700)]
Fix memory leak in mutt_sasl_cb_pass.

SASL doesn't free the sasl_secret_t, so this was leaking.  Instead,
keep our own pointer to it, and safe_realloc() each time.

sasl_secret_t doesn't need the data field null terminated, so memcpy
the password over.

8 years agoFix BODY->d_filename memory leaks.
Kevin McCarthy [Wed, 13 Jul 2016 01:04:28 +0000 (18:04 -0700)]
Fix BODY->d_filename memory leaks.

mutt_message_to_7bit() and transform_to_7bit() were overwriting
d_filename without freeing the previous value.

mutt_free_body() was not freeing the d_filename pointer.

8 years agoFix BODY->charset memory leaks.
Kevin McCarthy [Wed, 13 Jul 2016 00:46:09 +0000 (17:46 -0700)]
Fix BODY->charset memory leaks.

mutt_get_content_info() was directly setting charset without freeing the previous value.

mutt_free_body() was not freeing the charset.

8 years agoInitialize mutt windows even in batch mode. (closes #3853)
Kevin McCarthy [Tue, 12 Jul 2016 01:36:21 +0000 (18:36 -0700)]
Initialize mutt windows even in batch mode. (closes #3853)

mutt_select_fcc() calls mutt_addr_hook() -> mutt_make_string() which
refers to MuttIndexWindow->cols when calling mutt_FormatString().  In
batch mode, MuttIndexWindow hasn't been initialized, leading to a
segfault.

This might be the only overlap, but it seems wiser to just initialize
the mutt windows in case there are other references (now or in the
future) when processing format strings in batch mode.

8 years agoFix conststrings compiler version string generation. (closes #3852)
rich burridge [Sat, 9 Jul 2016 02:08:45 +0000 (19:08 -0700)]
Fix conststrings compiler version string generation. (closes #3852)

The Makefile.am tries compiler flags -v, --version, and -V but
neglected to filter error messages if these flags aren't recognized.

8 years agoChange sidebar highlighted mailbox behavior.
Kevin McCarthy [Sat, 9 Jul 2016 01:52:56 +0000 (18:52 -0700)]
Change sidebar highlighted mailbox behavior.

Delay selecting the highlighted mailbox until prepare_mailbox(), to
avoid a hidden mailbox being selected during the Buffy list population
(in mutt_sb_notify_mailbox()).

Change update_entries_visibility() to not automatically make the
highlighted mailbox visible.

Change prepare_sidebar() to (re)set the highlighted mailbox when the
current highlighted mailbox is hidden.

8 years agoFix sidebar pagedown/up when mailboxes on the end are hidden.
Kevin McCarthy [Sat, 9 Jul 2016 01:52:51 +0000 (18:52 -0700)]
Fix sidebar pagedown/up when mailboxes on the end are hidden.

The pageup/pagedown code was setting the highlighted mailbox to the
top and bottom index without checking if those were hidden.

8 years agoDon't overwrite imap_status->uidnext with a lower value. (closes #3771)
Kevin McCarthy [Sat, 9 Jul 2016 01:47:57 +0000 (18:47 -0700)]
Don't overwrite imap_status->uidnext with a lower value.  (closes #3771)

imap_read_headers() updates the idata and imap_status uidnext after
reading through all the new headers.

The idata is updated properly (only if its uidnext is below maxuid+1),
but the imap_status was always being set to maxuid.

This causes a problem with new mail checking if the most recent
messages are deleted.  Then the uidnext will be greater than maxuid+1
in the mailbox, and if there are any other unread messages it will
*always* report new mail even if $mail_check_recent is set.

8 years agoFix the sidebar TopIndex and BotIndex when $sidebar_new_mail_only is set.
Kevin McCarthy [Thu, 7 Jul 2016 19:00:37 +0000 (12:00 -0700)]
Fix the sidebar TopIndex and BotIndex when $sidebar_new_mail_only is set.

When set, some of the entries can be hidden, so a simple division by
page_size to find the correct top/bottom isn't correct.

Instead, manually partition into groups of page_size visible entries
and set top and bottom based on the interval around the highlighted
entry.

8 years agoFilter soft hypen from pager and headers. (closes #3848)
Kevin McCarthy [Thu, 7 Jul 2016 16:21:04 +0000 (09:21 -0700)]
Filter soft hypen from pager and headers.  (closes #3848)

Add U+00AD SOFT HYPHEN to the filtered characters in headers and the
pager.  In some terminals and situations it causes major display problems.

8 years agoFix sidebar crash for non-existent mailbox
Richard Russon [Wed, 6 Jul 2016 19:31:02 +0000 (12:31 -0700)]
Fix sidebar crash for non-existent mailbox

If you <change-folder> to a non-existent mailbox, there will be no
Context.

8 years agomerge stable
Kevin McCarthy [Wed, 6 Jul 2016 17:43:56 +0000 (10:43 -0700)]
merge stable

8 years agomutt-1.6.2 signed
Kevin McCarthy [Wed, 6 Jul 2016 17:41:54 +0000 (10:41 -0700)]
mutt-1.6.2 signed

8 years agoAdded tag mutt-1-6-2-rel for changeset 7ccd4417bd70
Kevin McCarthy [Wed, 6 Jul 2016 17:40:35 +0000 (10:40 -0700)]
Added tag mutt-1-6-2-rel for changeset 7ccd4417bd70

8 years agoautomatic post-release commit for mutt-1.6.2 mutt-1-6-2-rel
Kevin McCarthy [Wed, 6 Jul 2016 17:40:26 +0000 (10:40 -0700)]
automatic post-release commit for mutt-1.6.2

8 years agoFix the documented sort methods for sidebar_sort_method.
Kevin McCarthy [Sat, 2 Jul 2016 19:32:55 +0000 (12:32 -0700)]
Fix the documented sort methods for sidebar_sort_method.

Remove references to unused "date" and "size", and add "flagged".

8 years agoAdd R_SIDEBAR to redraw sidebar when its settings change.
Kevin McCarthy [Sat, 2 Jul 2016 19:25:59 +0000 (12:25 -0700)]
Add R_SIDEBAR to redraw sidebar when its settings change.

Add to the sidebar settings that control formatting of the sidebar.

8 years agoFix sidebar "unsorted" order to match Buffy list order.
Kevin McCarthy [Sat, 2 Jul 2016 19:24:25 +0000 (12:24 -0700)]
Fix sidebar "unsorted" order to match Buffy list order.

Since the previous commit decoupled the sidebar from the Buffy list,
we can now restore the order to match the buffy list when
sidebar_sort_method is set (back) to "unsorted".

8 years agoDecouple the sidebar from the Buffy list.
Kevin McCarthy [Sat, 2 Jul 2016 19:22:51 +0000 (12:22 -0700)]
Decouple the sidebar from the Buffy list.

Change the sidebar to use an array of SBENTRY* instead.  Move the
"is_hidden" into SBENTRY.  Remove the added "prev" pointer from BUFFY.

This way, sorting the sidebar doesn't affect the BUFFY list order, and
we don't need elements inside BUFFY just for the sidebar presentation.

Fix sidebar-next for the case where the mailboxes are unsorted and
$sidebar_new_mail_only is set.  Change sorting not to clump hidden
mailboxes at the bottom, instead simply skip over hidden mailboxes in
sidebar-next/prev.

8 years agomerge stable
Kevin McCarthy [Fri, 1 Jul 2016 20:39:51 +0000 (13:39 -0700)]
merge stable