From 20fe6507142cda00c0adedd1c0c66d93a912c237 Mon Sep 17 00:00:00 2001 From: Stephen Eglen Date: Sat, 14 Jan 2023 22:41:31 +0000 Subject: [PATCH] When replying to self, use :from field of original message Simple patch to fix #2403 --- mu4e/mu4e-draft.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mu4e/mu4e-draft.el b/mu4e/mu4e-draft.el index 1454d32e..c7b2ab55 100644 --- a/mu4e/mu4e-draft.el +++ b/mu4e/mu4e-draft.el @@ -553,7 +553,7 @@ You can append flags." ;; When we're replying to ourselves, simply keep the same headers. (concat (mu4e~draft-header "To" (mu4e~draft-recipients-list-to-string - (mu4e-message-field origmsg :to))) + (mu4e-message-field origmsg :from))) (mu4e~draft-header "Cc" (mu4e~draft-recipients-list-to-string (mu4e-message-field origmsg :cc))))