From e7dfd5bb38d31918ee086aea4a18d3c97330ef99 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Thu, 14 Apr 2016 16:41:12 +0100 Subject: [PATCH] dot/emacs: Don't try to save mail to `~/Mail/sent'. Organization: Straylight/Edgeware From: Mark Wooding It doesn't exist anywhere. --- dot/emacs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dot/emacs b/dot/emacs index c32d836..34146b1 100644 --- a/dot/emacs +++ b/dot/emacs @@ -158,7 +158,9 @@ (setq mail-from-style 'angles mail-signature t mail-yank-prefix "> " - mail-archive-file-name "~/Mail/sent" + mail-archive-file-name nil + message-default-mail-headers "" + message-default-news-headers "" compose-mail-user-agent-warnings nil) (setq rmail-display-summary t) -- [mdw]