How would a directory of .eml
files be iterated?
nicholas@mordor:~$
nicholas@mordor:~$ mail -f foomail/foo.eml
"/home/nicholas/foomail/foo.eml": 0 messages
nicholas@mordor:~$
Whereas, I'd like to see a list to select from.
How would a directory of .eml
files be iterated?
nicholas@mordor:~$
nicholas@mordor:~$ mail -f foomail/foo.eml
"/home/nicholas/foomail/foo.eml": 0 messages
nicholas@mordor:~$
Whereas, I'd like to see a list to select from.
You can't, EML format is not one of the supported local mailbox formats by GNU Mailutils ... But, apparently the MBOX format is.
Luckily the conversion from EML to MBOX is easy and that's what you probably should consider.
To demonstrate that, I used this sample EML ... so,
... and try to read them with
mailutils
(Doesn't Work):... Now let's convert those 3 EML messages to one MBOX file:
... and try to read it:
... and it works.