]> granicus.if.org Git - neomutt/log
neomutt
8 years agomerge: forgotten-attachment
Richard Russon [Wed, 19 Oct 2016 23:47:14 +0000 (00:47 +0100)]
merge: forgotten-attachment

 * Fix checking logic.
 * Ignore lines matching quote_regexp.
 * Update docs regarding $quote_regexp.

Resolves: #178
Closes: #206
8 years agoforgotten-attachment: Update docs regarding $quote_regexp.
Steven! Ragnarök [Wed, 19 Oct 2016 14:40:46 +0000 (10:40 -0400)]
forgotten-attachment: Update docs regarding $quote_regexp.

8 years agoforgotten-attachment: Ignore lines matching quote_regexp.
Steven! Ragnarök [Wed, 19 Oct 2016 00:05:29 +0000 (20:05 -0400)]
forgotten-attachment: Ignore lines matching quote_regexp.

Ignore quoted text in the email when searching for attachment
indicators.

8 years agoforgotten-attachment: Fix checking logic.
Steven! Ragnarök [Tue, 18 Oct 2016 20:45:26 +0000 (16:45 -0400)]
forgotten-attachment: Fix checking logic.

Don't bother searching the email for attachment keywords, if:
- The feature is disabled
- There's an attachment

8 years agofix: "inbox" sorting function
Pietro Cerutti [Tue, 18 Oct 2016 14:25:31 +0000 (14:25 +0000)]
fix: "inbox" sorting function

Make mutt_is_inbox only consider an "INBOX" string following a '/'

Fixes: #205
8 years agofix crash in hdrline
Richard Russon [Tue, 11 Oct 2016 11:01:00 +0000 (12:01 +0100)]
fix crash in hdrline

This commit should prevent the crash detailed in this bug report.
    http://bugs.debian.org/838064

However, it's just fixing the symptom, not the cause.

8 years agofix: overhaul the index/pager updates
Richard Russon [Tue, 11 Oct 2016 11:01:00 +0000 (12:01 +0100)]
fix: overhaul the index/pager updates

Wherever you are in the index/pager, you will be notified of new mail
when it arrives.

Make sure the last message displayed is the one saying "new mail".

Notes:
    If you have a mail filtering system that marks mail as read, you
    won't get notifications when it arrives in a mailbox.

    When you send an email, the "sent" copy won't trigger a new mail
    notification.

Fixes: #20 - Notification of sent mail
Fixes: #195 - Cursor loses position when leaving pager
8 years agopager: skip to body for skip-quoted
David Sterba [Mon, 17 Oct 2016 11:57:34 +0000 (13:57 +0200)]
pager: skip to body for skip-quoted

In mails with many headers that fill the whole screen, it's convenient
to jump to the body, implemented as a side-efect of the <skip-quoted>
command.

Closes: #201
Signed-off-by: David Sterba <dsterba@suse.cz>
8 years agonntp: fix resource leak
Richard Russon [Tue, 18 Oct 2016 15:40:18 +0000 (16:40 +0100)]
nntp: fix resource leak

Every $nntp_poll seconds, NNTP checks the file $newsrc
Unfortunately, it didn't release the file handle afterwards.

After a day's use, this would leak 1440 file handles leading most users
to the error "Too many open files".

Fixes: #204
8 years agonntp: use safe_{fopen,fclose}
Richard Russon [Tue, 18 Oct 2016 15:40:02 +0000 (16:40 +0100)]
nntp: use safe_{fopen,fclose}

8 years agouse a more expressive coverity scan badge
toogley [Mon, 17 Oct 2016 17:11:23 +0000 (19:11 +0200)]
use a more expressive coverity scan badge

8 years agoreplace the ugly strfcpy() macro with a function
Darshit Shah [Fri, 14 Oct 2016 22:59:42 +0000 (23:59 +0100)]
replace the ugly strfcpy() macro with a function

8 years agoNeoMutt 2016-10-14 (1.7.1) neomutt-20161014
Richard Russon [Fri, 14 Oct 2016 13:26:57 +0000 (14:26 +0100)]
NeoMutt 2016-10-14 (1.7.1)

8 years agobuild: update references to 1.7.1
Richard Russon [Fri, 14 Oct 2016 12:51:21 +0000 (13:51 +0100)]
build: update references to 1.7.1

8 years agodocs: update notmuch references
Richard Russon [Fri, 14 Oct 2016 12:44:42 +0000 (13:44 +0100)]
docs: update notmuch references

8 years agofix updates when pager is open
Richard Russon [Mon, 10 Oct 2016 16:03:39 +0000 (17:03 +0100)]
fix updates when pager is open

This is an update to #19 - new-mail doesn't fire if pager open

Issue #19 changed NeoMutt so that it would notify the user of incoming
mail, even when they were in the pager.  However, there was one case
where it didn't work -- new mail arriving in the current mailbox.

8 years agofix crash when neither $spoolfile, $folder are set
Richard Russon [Sat, 8 Oct 2016 12:54:08 +0000 (13:54 +0100)]
fix crash when neither $spoolfile, $folder are set

When neither $spoolfile, nor $folder are set realpath() is passed a NULL
parameter.  On MacOS, this crashes whereas the glibc version returns
NULL.

Fixing this, revealed other problems in mx_open_mailbox() and the
Sidebar.  These were caused by empty paths.

Fixes: #187
8 years agosidebar: Make sure INBOX appears first in the list.
Pietro Cerutti [Mon, 10 Oct 2016 13:01:36 +0000 (13:01 +0000)]
sidebar: Make sure INBOX appears first in the list.

This affects (and makes consistent) the order of folders in the sidebar
and the folder browser.

Closes: #190
8 years agoforgotten-attachment: fix empty regex expression
Richard Russon [Mon, 10 Oct 2016 08:51:05 +0000 (09:51 +0100)]
forgotten-attachment: fix empty regex expression

The original regex was of the form "abc(|def)" to check for both "abc"
and "abcdef".  Unfortunately, the regex libraries on BSDs/MacOS don't
like this use of an empty sub-expression.

Expanding the regex to: "(abc|abcdef)" fixes the problem.

Fixes: neomutt/homebrew-neomutt#15
8 years agomerge: upstream fixes (mutt/default)
Richard Russon [Sun, 9 Oct 2016 10:39:58 +0000 (11:39 +0100)]
merge: upstream fixes (mutt/default)

 * Preserve forwarded attachment names in d_filename.
 * Updated Czech translation.
 * Mark IMAP fast-trash'ed messages as read before copying. (see #3860)
 * automatic post-release commit for mutt-1.7.1

8 years agoautomatic post-release commit for mutt-1.7.1
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 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 agofix: status-color when pager_index_lines > 0
Richard Russon [Sun, 9 Oct 2016 10:29:46 +0000 (11:29 +0100)]
fix: status-color when pager_index_lines > 0

mutt_pager() was missing a call to mutt_draw_statusline().

Fixes: #189
8 years agofix buffer underrun when no menu item is selected
Richard Russon [Sat, 8 Oct 2016 13:44:47 +0000 (14:44 +0100)]
fix buffer underrun when no menu item is selected

8 years agonotmuch: Synchronise tags to flags
Kevin Velghe [Sun, 14 Aug 2016 22:24:20 +0000 (00:24 +0200)]
notmuch: Synchronise tags to flags

Currently, flags are synced to tags, but the reverse isn't true. If you
mark a mail as unread "the mutt way", you'll be able to find this mail
using tag:unread, however if you remove the tag unread, the flags aren't
adjusted, and it's still marked unread in mutt.

This functionality is provided by notmuch, but means that any mail has
to be synced to disc when the labels are modified, which conflicts with
the way synchronisation to disk works in mutt.

To solve this properly, it's best to just check if the changes performed
in the tags involve some flags handled by mutt, and if so, update the
header in mutt. When mutt syncs to disc, the flags will be adjusted on
disc as well.

Some remarks:

- The parsing code is currently duplicated. I'll fix this.
- The labels are currently hard-coded. It seems like notmuch doesn't
  allow customisation of these labels, but mutt-kz does for unread.
- The draft and passed labels are currently ignored, as they aren't
  handled by mutt.

Closes: karelzak/mutt-kz#148
8 years agofix: crash handling keywords/labels
Richard Russon [Thu, 6 Oct 2016 14:01:20 +0000 (15:01 +0100)]
fix: crash handling keywords/labels

When an email is read by NeoMutt the labels are stored in linked list of
strings.  These strings are used as keys in a hash table of all labels.

If NeoMutt reads another email with the same label, it's given a
reference to the same hash.

Now imagine that the first email is deleted -- the list of labels is
also deleted, so that hash now has invalid keys.

This commit maintains a linked list of all labels and uses that for the
hash table keys.  It's not very efficient, but it avoids having to
change the hash table code.

Note: dgc (the keywords author) has created a new version which will
supplant this one, soon.

Fixes: #164
8 years agofix: strfcpy() improvement
Richard Russon [Tue, 4 Oct 2016 12:19:09 +0000 (13:19 +0100)]
fix: strfcpy() improvement

A quick string copying history.

In the beginning was: strcpy (DST, SRC);
If the SRC was bigger than DST, then bad things happened.

Then came: strncpy (DST, SRC, LEN);
If SRC is longer than LEN, then the string in DST isn't NULL terminated.
Bad things happened.

Next, Mutt created a macro strfcpy() based on the BSD function.  It
guarantees a length limit AND a NULL termination.

    #define strfcpy(DST,SRC,LEN) strncpy(DST,SRC,LEN), *(DST+(LEN)-1)=0

Because of the way it works, it triggers a warning in Coverity (a static
analysis tool).  It fills DST (without NULL), then writes the NULL.

My testing shows it works correctly, but I may missed something.

    #define strfcpy(DST,SRC,LEN) do { if ((LEN) > 0) { *(DST+(LEN)-1)=0; strncpy(DST,SRC,(LEN)-1); } } while (0)

8 years agoNeoMutt 2016-10-03 (1.7.0) neomutt-20161003
Richard Russon [Mon, 3 Oct 2016 11:21:11 +0000 (12:21 +0100)]
NeoMutt 2016-10-03 (1.7.0)

8 years agoMerge pull request #175 from gahr/neomutt
Pietro Cerutti [Mon, 3 Oct 2016 10:41:53 +0000 (11:41 +0100)]
Merge pull request #175 from gahr/neomutt

build: fix "make install"

8 years agobuild: fix "make install" 175/head
Pietro Cerutti [Mon, 3 Oct 2016 10:38:17 +0000 (10:38 +0000)]
build: fix "make install"

8 years agobuild: fix "make dist"
Richard Russon [Sun, 2 Oct 2016 19:52:37 +0000 (20:52 +0100)]
build: fix "make dist"

A renamed file broke the build.

8 years agoNeoMutt 2016-10-02 (1.7.0) neomutt-20161002
Richard Russon [Sun, 2 Oct 2016 15:13:51 +0000 (16:13 +0100)]
NeoMutt 2016-10-02 (1.7.0)

8 years agomerge: upstream fixes (mutt/default)
Richard Russon [Sun, 2 Oct 2016 15:05:55 +0000 (16:05 +0100)]
merge: upstream fixes (mutt/default)

 * Fix gpgme segfault when querying candidates with a '+' in the address. (closes #3873)
 * Use body color for gpgme output. (closes #3872)
 * Check for NULL mx_ops in mx.c
 * Mark some gpgme pgp menu keybinding translations as fuzzy. (closes #3874)
 * Don't abort the menu editor on sigwinch. (closes #3875)
 * Clear pager position when toggling headers.
 * Reset invalid parsed received dates to 0.  (closes #3878)
 * RFC2047-decode mailto header values. (closes #3879)
 * RFC2047-decode mailto url headers after RFC2822 parsing. (closes #3879)
 * Ensure signatures exist when verifying multipart/signed emails. (closes #3881).

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 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 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 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 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 agodocs: fix notmuch vim syntax file
Richard Russon [Sun, 2 Oct 2016 12:04:09 +0000 (13:04 +0100)]
docs: fix notmuch vim syntax file

8 years agobuild fix for strndup / malloc
Richard Russon [Sun, 2 Oct 2016 12:01:06 +0000 (13:01 +0100)]
build fix for strndup / malloc

Some systems don't have strndup() and rely on our version.
I changed it to use Mutt's safe_malloc(), but unfortunately it gets
compiled into some tools which don't have that function.

8 years agotravis: install the kyoto-cabinet dev files
Richard Russon [Fri, 30 Sep 2016 18:51:32 +0000 (19:51 +0100)]
travis: install the kyoto-cabinet dev files

Now, we will be able to test the kyoto build automatically.

8 years agodocs: fix the alignment in a 'nested-if' example
Richard Russon [Fri, 30 Sep 2016 16:03:21 +0000 (17:03 +0100)]
docs: fix the alignment in a 'nested-if' example

8 years agofix a typo in the version string
Richard Russon [Fri, 30 Sep 2016 15:56:24 +0000 (16:56 +0100)]
fix a typo in the version string

8 years agofix: change gcc build options to prevent crashes
Richard Russon [Fri, 30 Sep 2016 14:04:16 +0000 (15:04 +0100)]
fix: change gcc build options to prevent crashes

A GCC optimisation "-O2" enables "-fdelete-null-pointer-checks" which
was causing some pointer checks to be optimised out of the code.
This was causing some crashes, most notably in the pager.

8 years agofix: bulletproof the pager
Richard Russon [Fri, 30 Sep 2016 13:11:18 +0000 (14:11 +0100)]
fix: bulletproof the pager

Put some more checks into the pager, just in case the Context
disappears, e.g. when a network connection goes down.

8 years agobuild source before docs
Richard Russon [Fri, 30 Sep 2016 13:10:45 +0000 (14:10 +0100)]
build source before docs

The Makefile tried to build the docs before the IMAP source.
Change the build order to prioritise the code.

8 years agofixed typo of devel mailinglist name
Tobias Angele [Fri, 30 Sep 2016 14:43:29 +0000 (16:43 +0200)]
fixed typo of devel mailinglist name

8 years agoadded Mailinglist mailto links to "Where is NeoMutt" section
Tobias Angele [Fri, 30 Sep 2016 14:42:18 +0000 (16:42 +0200)]
added Mailinglist mailto links to "Where is NeoMutt" section

8 years agoquasi-delete: check there's a selection
Richard Russon [Fri, 16 Sep 2016 18:51:47 +0000 (19:51 +0100)]
quasi-delete: check there's a selection

If you created a vfolder with no contents, then tried to quasi-delete
something, it would crash.

8 years agodocs: fix the layout of the syntax file
Richard Russon [Sun, 25 Sep 2016 20:57:04 +0000 (21:57 +0100)]
docs: fix the layout of the syntax file

8 years agodocs: make the license clear to github
Richard Russon [Sun, 25 Sep 2016 20:18:54 +0000 (21:18 +0100)]
docs: make the license clear to github

8 years agoFixes repaint problem with $pager_index_lines #159
Christopher John CZETTEL [Sun, 25 Sep 2016 12:48:14 +0000 (14:48 +0200)]
Fixes repaint problem with $pager_index_lines #159

Commit 6b4c4ca changed the behaviour of mutt_pager to build the
pager index even if pager_index_lines was set to 0 to (fixing #143).

The code redrawing the pager status line was relying on the pager index
being NULL to determine if a redraw should take place. Now
index_window->rows is used as an additional safeguard.

Also added a check if pager index is set to the terminal status line
update code as it was unguarded and old default behaviour might be
introduced later.

Fixes #159

8 years agomerge: feature compose-to-sender
Richard Russon [Sat, 24 Sep 2016 10:25:04 +0000 (11:25 +0100)]
merge: feature compose-to-sender

 * add ident to PATCHES
 * feature: compose-to-sender
 * Add compose-to-sender documentation

Closes #30

8 years agoAdd compose-to-sender documentation
Guillaume Brogi [Tue, 20 Sep 2016 20:11:35 +0000 (22:11 +0200)]
Add compose-to-sender documentation

8 years agofeature: compose-to-sender
Guillaume Brogi [Mon, 19 Sep 2016 21:07:59 +0000 (23:07 +0200)]
feature: compose-to-sender

Compose a new email to the sender.
This works on tagged messages too.

8 years agoadd ident to PATCHES
Guillaume Brogi [Mon, 19 Sep 2016 21:07:59 +0000 (23:07 +0200)]
add ident to PATCHES

8 years agoOptimize LMDB's hcache backend.
Pietro Cerutti [Mon, 19 Sep 2016 15:29:24 +0000 (15:29 +0000)]
Optimize LMDB's hcache backend.

Thanks to Clemens Lang for his help with the fix.

See: https://dev.mutt.org/trac/ticket/3691
Closes: #77
8 years agomerge: feature kyoto-cabinet
Richard Russon [Fri, 23 Sep 2016 16:05:16 +0000 (17:05 +0100)]
merge: feature kyoto-cabinet

 * add ident to PATCHES
 * feature: Add Kyoto Cabinet header cache
 * doc: Document the Kyoto cabinet hcache backend

8 years agodoc: Document the Kyoto cabinet hcache backend
Clemens Lang [Sat, 17 Sep 2016 22:37:53 +0000 (23:37 +0100)]
doc: Document the Kyoto cabinet hcache backend

Additionally, fix a couple of references in other parts of the
documentation that now also work with Kyoto Cabinet (and LMDB).

8 years agofeature: Add Kyoto Cabinet header cache
Clemens Lang [Sat, 17 Sep 2016 21:46:19 +0000 (23:46 +0200)]
feature: Add Kyoto Cabinet header cache

Tokyo Cabinet's website now "strongly recommends" using Kyoto Cabinet
instead of Tokyo Cabinet because it claims to be superior. Add Kyoto
Cabinet as an option.

In some preliminary testing, the performance seems to be on-par with
Tokyo Cabinet, but not better. Kyoto Cabinet seems to need a little more
space, but the difference is probably not significant.

Signed-off-by: Clemens Lang <neverpanic@gmail.com>
8 years agoadd ident to PATCHES
Richard Russon [Sat, 17 Sep 2016 22:34:24 +0000 (23:34 +0100)]
add ident to PATCHES

8 years agoChange 'attach_keyword' option from string to regex
Johannes Weißl [Wed, 21 Sep 2016 18:10:15 +0000 (20:10 +0200)]
Change 'attach_keyword' option from string to regex

A regular expression is much more useful than a single word to check for
forgotten attachments, especially when writing in multiple languages.

This is inspired by the muttng patchset abort_noattach [1], which I use
for years, but newly implemented to make minimal changes to the neomutt
source code.

The keyword is no longer mentioned in the error message as regular
expressions tend to be longer.

The option 'attach_keyword' could be renamed 'attach_remind_regex' as in
the muttng patch.

[1] https://github.com/codito/muttng-patchset/blob/master/patches/muttng.abort_noattach.diff

Closes: #138
8 years agodocs: Add badges to README.neomutt
toogley [Sun, 18 Sep 2016 20:05:10 +0000 (22:05 +0200)]
docs: Add badges to README.neomutt

Added travis build status, coverity status and license badges to
README.neomutt

8 years agoSensible-browser behaviour fixes
Pierre-Elliott Bécue [Sun, 18 Sep 2016 17:40:01 +0000 (19:40 +0200)]
Sensible-browser behaviour fixes

 * Feedbacks highlighted issues in menu position when people switch
   between mailboxes mode and browser mode.
 * A preferred behaviour is to have 'c?' display $folder in "local" mode
   if existant on startup. For IMAP, we keep using the current directory
   in any case.
 * A '=' binding have been added:
   When in browser mode, not in mailboxes mode, '=' allows to jump back to
   $folder from anywhere one is. It stores in a variable the place the
   user was. Another hit on '=' will bring him back. When a new directory
   is explored, the variable is purged.
 * Closes #146

8 years agofix build of neomutt-syntax.vim
Elimar Riesebieter [Sat, 17 Sep 2016 11:09:28 +0000 (12:09 +0100)]
fix build of neomutt-syntax.vim

8 years agoNeoMutt 2016-09-16 (1.7.0) neomutt-20160916
Richard Russon [Fri, 16 Sep 2016 21:38:46 +0000 (22:38 +0100)]
NeoMutt 2016-09-16 (1.7.0)

8 years agofix notmuch tag completion
Richard Russon [Wed, 14 Sep 2016 12:56:52 +0000 (13:56 +0100)]
fix notmuch tag completion

Notmuch tags that contained a dash (-) confused the auto-completion.

Given tags of "neo-red", "neo-green", "neo-blue", tests:
    n<tab>      Generates: neo-
    neo-<tab>   Cycles through the three tags

The +/- before the tag are optional.
With neither, notmuch will assume +

Fixes #124

8 years agofix sidebar sort order
Richard Russon [Fri, 16 Sep 2016 11:22:15 +0000 (12:22 +0100)]
fix sidebar sort order

Collate the sidebar mailboxes for a more natural sort order.
A sorted sidebar will now match a sorted browser.

e.g.
    Old Sort    New Sort
    --------    --------
    _apple      Apple
    _Banana     _apple
    _Cherry     banana
    _damson     _Banana
    Apple       Cherry
    banana      _Cherry
    Cherry      damson
    damson      _damson

8 years agofix: make the pager more robust
Richard Russon [Thu, 15 Sep 2016 14:42:26 +0000 (15:42 +0100)]
fix: make the pager more robust

Make sure that the Context is always checked before use.
Zero a HEADER struct allocated on the stack.

8 years agonntp: close message handles
Richard Russon [Tue, 13 Sep 2016 21:29:42 +0000 (22:29 +0100)]
nntp: close message handles

Possible fix for #125

8 years agodoc: Removes bug entry in new-mail docs
Santiago Torres [Tue, 13 Sep 2016 03:13:29 +0000 (23:13 -0400)]
doc: Removes bug entry in new-mail docs

Bug #19 (new-mail doesn't fire if pager) was fixed upstream on commit
(4ed2b6f). We remove their mention of known-bugs in the documents

8 years agoRevert "doc: Removes bug entry in new-mail docs"
Richard Russon [Wed, 14 Sep 2016 17:04:10 +0000 (18:04 +0100)]
Revert "doc: Removes bug entry in new-mail docs"

This reverts commit 49f2effbce887a2d1e7cc88146dd48cfd987a4cb.

This commit accidentally included a stray patch file.

8 years agodoc: Removes bug entry in new-mail docs
Santiago Torres [Tue, 13 Sep 2016 03:13:29 +0000 (23:13 -0400)]
doc: Removes bug entry in new-mail docs

Bug #19 (new-mail doesn't fire if pager) was fixed upstream on commit
(4ed2b6f). We remove their mention of known-bugs in the documents

8 years agofix some translations in crypt-gpgme.c
Richard Russon [Tue, 13 Sep 2016 22:05:16 +0000 (23:05 +0100)]
fix some translations in crypt-gpgme.c

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.

Debian bug: http://bugs.debian.org/837673
Upstream mutt issue: http://bugs.mutt.org/3874

8 years agomerge: upstream fixes (mutt/default)
Richard Russon [Tue, 13 Sep 2016 16:42:33 +0000 (17:42 +0100)]
merge: upstream fixes (mutt/default)

 * Remove the $locale configuration variable.
 * Add $attribution_locale configuration variable.
 * Add missing include <locale.h> to send.c and edit.c.
 * Filter out zero width no-break space (U+FEFF).
 * Update a confusing and obsolete comment.
 * Moves mutt_copy_list to muttlib.c, where it belongs.
 * Redraw screen after an SSL cert prompt
 * Preserve message-id and mft headers for recalled messages. (closes #3081)
 * Fix openssl 1.1 compilation issues. (closes #3870)

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 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 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 agofix another crash in the pager
Richard Russon [Tue, 13 Sep 2016 13:16:26 +0000 (14:16 +0100)]
fix another crash in the pager

This commit prevents the crash.
A better solution will require more thought.

Fixes: #144
8 years agofix crash when exiting the pager
Richard Russon [Mon, 12 Sep 2016 21:47:49 +0000 (22:47 +0100)]
fix crash when exiting the pager

Make sure we've always got a menu pointer.
This is a fix for commit:
    "check for new mail while in pager when idle"

Fixes: #143
8 years agoFix off-by-one in error message
Antonio Radici [Mon, 12 Sep 2016 16:23:12 +0000 (17:23 +0100)]
Fix off-by-one in error message

Closes: #139
8 years agoFix buffer overrun in search for attach keyword
James McCoy [Mon, 12 Sep 2016 00:35:37 +0000 (20:35 -0400)]
Fix buffer overrun in search for attach keyword

Regression introduced by 395911ea4c20e57f121cb169e0f2083ff5e1ae33.

In the process of tidying

    char* lowerKeyword = malloc(strlen(AttachKeyword)+1);
    ...
    for (i=0; i <= strlen(AttachKeyword); i++)

was changed to

    int klen = mutt_strlen (AttachKeyword) + 1;
    ...
    char *lowerKeyword = safe_malloc (klen);
    ...
    for (i = 0; i <= klen; i++)

Now that klen is the actual allocation length, instead of the string
length, the loop comparison needs to be adjusted accordingly.

Closes: #142
8 years agofix AC_INIT tarname parameter
Richard Russon [Mon, 12 Sep 2016 15:37:48 +0000 (16:37 +0100)]
fix AC_INIT tarname parameter

By specifying 'neomutt' as the tarname, the docs and translations were
being installed in wrong places.

Note: distdir is overridden in Makefile.am so that we still get a
neomutt tarfile on "make dist".

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 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 agodocs: mass tidy up
Richard Russon [Mon, 12 Sep 2016 10:25:08 +0000 (11:25 +0100)]
docs: mass tidy up

 - tidy muttrc.*
 - tidy vimrc.*
 - sync muttrc to main manual
 - add better xml escaping
 - fix whitespace in muttrc/vimrc/manual
 - refer to features rather than patches
 - fix lots of spelling mistakes
 - sort manual sections
 - add README.notmuch to dist
 - drop unnecessary sample.colors.attach_headers
 - install sample muttrc files
 - add mutt-1.7.0-syntax.vim from vim repo
 - generate neomutt-syntax.vim from features' vimrc files
 - install neomutt-syntax.vim

8 years agoAvoid segfault when listing mailboxes on startup.
John Swinbank [Sun, 11 Sep 2016 00:15:42 +0000 (20:15 -0400)]
Avoid segfault when listing mailboxes on startup.

When mutt is started with the -y flag, _mutt_select_file() is called while
CurrentFolder is a null pointer. If that's the case, we shouldn't try to use
it.

Closes: #137