32

When I press S in mutt, it saves the mail to a mail folder format (cur/ tmp/ new/), but I want a single file to be saved, just like how attachments are saved.

Is that configurable?

Matthias Braun
  • 7,797
  • 7
  • 45
  • 54
daisy
  • 53,527
  • 78
  • 236
  • 383

5 Answers5

36

The s command saves to a mailbox, which for you is in maildir format. Unfortunately, there is no save-to-file command, perhaps because in the historical mbox format, a mailbox that contains a single mail is just a file containing that mail.

The mutt command pipe-message (default shortcut |) can be used for this. It opens a command line and you write cat > DESIRED-FILE-PATH.

The "pipe-decode" option controls what happens to headers and mime parts when you save a message this way.

One could probably write a macro for this functionality.

Gilles 'SO- stop being evil'
  • 807,993
  • 194
  • 1,674
  • 2,175
Kai von Fintel
  • 461
  • 3
  • 3
  • Cool, this can save the headers as well, but for now, I'd use Michael's way, thanks! – daisy Jan 11 '13 at 01:56
  • 1
    This works well and provides an efficient manner of saving 50+ emails (using pattern-matching tagging) to file. I had to dig a little to find that by adding `set pipe_decode=yes` to my muttrc was what Kai von Fintel was writing about. – Screenack May 01 '15 at 13:36
  • also, this saves the attachments in the exported email file, as well. – sdaau May 19 '15 at 10:55
  • this is fine, but i see un-processed line breaks with `=` doing this. – Jack Wasey Aug 23 '19 at 11:18
  • Awesome. This worked great for me. I just wanted to extract some 20+ emails from an obsolete Maildir. Cheers! – retromuz Sep 03 '19 at 00:46
30

The actual message shows up as an attachment as well, so you can save it from the attachment list. From either the index or the message itself, hit v to open the attachments and s to save

Michael Mrozek
  • 91,316
  • 38
  • 238
  • 232
  • Just a note: if your email message contains attachments, then saving just the first entry from the attachments list will save the message - but without the attachments included inside. – sdaau May 19 '15 at 10:02
  • 7
    Another note: this doesn't save any headers, including sender, recipient and subject. – Sparhawk Oct 11 '15 at 03:35
13

If you touch a file and then try to save or copy a message to it mutt will use it as a mbox.

Also you might want to use copy instead of save. Mutt assumes that a mail should only exist in one copy and saving a message to another mailbox will delete it from the first one, while copying will do a proper copy.

remmy
  • 4,955
  • 1
  • 23
  • 30
5

Kai von Fintel's answer works perfectly, but I just thought I'd share a macro to streamline this process.

Firstly, in muttrc:

macro index,pager S "| ~/.local/bin/file_email /tmp<enter>"

This pipes the full email (including headers and attachments) to the following script. Create an executable file at ~/.local/bin/file_email.

#!/usr/bin/env bash
# Save piped email to "$1/YYMMDD SUBJECT.eml"

# Don't overwrite existing file
set -o noclobber

message=$(cat)

mail_date=$(<<<"$message" grep -oPm 1 '^Date: ?\K.*')
formatted_date=$(date -d"$mail_date" +%y%m%d)
# Get the first line of the subject, and change / to ∕ so it's not a subdirectory
subject=$(<<<"$message" grep -oPm 1 '^Subject: ?\K.*' | sed 's,/,∕,g')

if [[ $formatted_date == '' ]]; then
  echo Error: no date parsed
  exit 1
elif [[ $subject == '' ]]; then
  echo Warning: no subject found
fi

echo "${message}" > "$1/$formatted_date $subject.eml" && echo Email saved to "$1/$formatted_date $subject.eml"

This script saves the file to the first argument (i.e. in the muttrc example above, the email will save to /tmp). The format of the file name is YYMMDD SUBJECT.eml. It also converts / to to prevent creating subdirectories.

dessert
  • 1,687
  • 14
  • 29
Sparhawk
  • 19,561
  • 18
  • 86
  • 152
  • Wouldn't be easier to use `formail` in the script? – 0andriy Jan 11 '19 at 14:05
  • @0andriy I'm not familiar with `formail`, so I had a read. However, I'm not entirely sure which part of my script you were referring to? Using `formail` to extract subject and date? If so, probably a nice idea. I'd urge you to write an answer; I'd definitely upvote it. – Sparhawk Jan 14 '19 at 00:30
2

I have tried all the suggested answers but could not get the raw, multipart (text/plain + text/html) e-mail to be saved to a file, including it's headers and everything. I needed this to feed my spam-filter with the e-mail to teach it, that a specific mail is spam or not...

The solution I came up with is pressing e (i.e. "edit message") on the open message, which opens the raw message in your editor of choice. Raw here means, that you get the message exactly as it arrived in mutt, so you have all the headers and all the bytes that comprise the message.

After hitting e, I just write the buffer (I set editor to vim) to a file with :w <path_to_file>/<file_name> and that's it.

P.S: I would have added this as comment but you need a certain level of reputation to do this. Also, I know the question is very old but as neomutt is still used by many people, I thought this might help someone.

Update: I overlooked the pipe-decode option that Kai was talking about. With that option set correctly it would have worked via |, too. Still my solution is working, too ;-)

m4110c
  • 183
  • 1
  • 6