mutt: Updated French translation.

2016-06-15 Thread Brendan Cully
changeset: 6680:c29c521eec0a user: Vincent Lefevre date: Wed Jun 15 11:09:58 2016 +0200 link: http://dev.mutt.org/hg/mutt/rev/c29c521eec0a Updated French translation. diffs (352 lines): diff -r 5ad82360c6ea -r c29c521eec0a po/fr.po --- a/po/fr.po Tue Jun 14 13:11:56 2016 -0700 +

Re: [SPAM?] trash folder patch (was Re: [PATCH] Combine the basic and extended buffy functions.)

2016-06-15 Thread Vincent Lefevre
On 2016-06-14 15:19:18 -0700, Will Yardley wrote: > On Tue, Jun 14, 2016 at 02:46:53PM -0700, Kevin J. McCarthy wrote: > > * Change trashed maildir messages to not be counted in msg_count > > Has anyone updated the trash folder patch for the various recent changes > (function rename as well as mai

Re: [PATCH 0 of 3] add close_msg to mailbox operations

2016-06-15 Thread Damien Riegel
> If you're going to submit a revised openmsg patch soon, I'll wait to > push this series since it depends on that. But if you need more time to > revise that patch, let me know and I'll just go ahead and push this with > the needed adjustments. I'll send the revised patch by tomorrow or Friday.

[PATCH 5/5] fix bug 2421: show number of new mails in Maildir mailboxes

2016-06-15 Thread Olaf Hering
Show number of new mails in Maildir mailboxes. Reuse the st_size value for this purpose. This fixes bug 2421. v2: - fix stale values in local new variable Signed-off-by: Olaf Hering --- browser.c | 35 ++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --g

[PATCH 4/5] mutt_pretty_size: show real number for small files

2016-06-15 Thread Olaf Hering
With the upcoming change for bug #2421 to show the number of mails in a maildir, update the format of small files. If a file is smaller than a certain size it is user unfriendly to print 0K or 0,1K as number of mails or as file size. Instead use the real number. Signed-off-by: Olaf Hering --- mu

[PATCH 3/5] examine_directory: set directory/symlink size to zero

2016-06-15 Thread Olaf Hering
The size of a directory or symlink in the folder browser is not meaningful. For directories it means just how many blocks were allocated to hold all entries. It does not mean that the entries are still present in the directory. For symlinks its the size of the target. Set both to zero to simplify t

[PATCH 1/5] add real prototype for re_match_2_internal in regex.c

2016-06-15 Thread Olaf Hering
regex.c: In function 're_search_2': regex.c:3584:6: warning: call to function 're_match_2_internal' without a real prototype [-Wunprototyped-calls] regex.c:384:12: note: 're_match_2_internal' was declared here regex.c: In function 're_match': regex.c:3706:9: warning: call to function 're_match_2_i

[PATCH 2/5] folder_file: remove struct stat

2016-06-15 Thread Olaf Hering
Add and use new flag to indicate the folder is on local filesystem. Add and use new gid, uid and nlink member. Use existing ->mode member instead of stat->st_mode. Use existing ->size member instead of stat->st_size. Use existing ->mtime member instead of stat->st_mtime. Remove struct stat, the use

Re: [PATCH 6 of 7] add mmdf_commit_message function

2016-06-15 Thread Kevin J. McCarthy
On Thu, Jun 09, 2016 at 08:09:36PM -0400, Damien Riegel wrote: > diff -r f81e8aa12041 -r 9556f8bbb5a9 mx.c > --- a/mx.cTue Jun 07 18:32:31 2016 -0400 > +++ b/mx.cTue Jun 07 18:34:14 2016 -0400 > @@ -1345,9 +1345,7 @@ >{ > case MUTT_MMDF: > { > - if (fputs (MMDF_SEP, msg->

Re: [PATCH 7 of 7] add commit_msg to struct mx_ops

2016-06-15 Thread Kevin J. McCarthy
On Thu, Jun 09, 2016 at 08:09:37PM -0400, Damien Riegel wrote: > diff -r 9556f8bbb5a9 -r 9eebf8f22c4d mx.c > --- a/mx.cTue Jun 07 18:34:14 2016 -0400 > +++ b/mx.cTue Jun 07 18:41:40 2016 -0400 > @@ -1332,8 +1332,12 @@ > > int mx_commit_message (MESSAGE *msg, CONTEXT *ctx) > + r = ops->

Re: [PATCH 2 of 3] add imap_sync_expunge_mailbox function

2016-06-15 Thread Kevin J. McCarthy
On Thu, Jun 09, 2016 at 08:12:34PM -0400, Damien Riegel wrote: > add imap_sync_expunge_mailbox function > > Add a function that is a simple wrapper around imap_sync_mailbox with > the expunge parameter set. This allows to have mailbox sync operations > with the same prototype in 'sync_mailbox'. I

Re: [PATCH 1 of 3] move mutt_update_mailbox in mbox_sync_mailbox

2016-06-15 Thread Kevin J. McCarthy
On Thu, Jun 09, 2016 at 08:12:33PM -0400, Damien Riegel wrote: > move mutt_update_mailbox in mbox_sync_mailbox > > mutt_update_mailbox is executed only when we call mbox_sync_mailbox. > Moving it inside this function makes 'sync_mailbox' code simpler and > easier to factorize. One small behavior