From ea1c6645efaf640cce29a1dcfcc49fa2e38137a6 Mon Sep 17 00:00:00 2001 From: djcb Date: Thu, 14 Jan 2016 22:26:10 +0200 Subject: [PATCH] mu4e: use , to separate Keyword: values Conform with https://tools.ietf.org/html/rfc2822#section-3.6.5 Spotted by andersjohansson --- mu4e/mu4e-actions.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mu4e/mu4e-actions.el b/mu4e/mu4e-actions.el index 70e0bb0b..89f9c040 100644 --- a/mu4e/mu4e-actions.el +++ b/mu4e/mu4e-actions.el @@ -234,7 +234,7 @@ store your org-contacts." (maildir (mu4e-message-field msg :maildir)) (oldtags (mu4e-message-field msg :tags)) (header mu4e-action-tags-header) - (sep (cond ((string= header "Keywords") " ") + (sep (cond ((string= header "Keywords") ", ") ((string= header "X-Label") " ") ((string= header "X-Keywords") ", ") (t ", ")))