I have setup postfix server and set home_mailbox = Mail/
. How to make mail
read mail from ~/Mail/
. I tried ln -s ~/Mail /var/mail/$USER
but mail
complains Cannot open mailbox /var/mail/$USER: Is a directory
Asked
Active
Viewed 4,692 times
1

Necktwi
- 1,026
mail
expects mbox, but you're giving it maildir. For that you need something that can read maildir, likemutt
. – weirdan Aug 24 '18 at 15:50home_mailbox
, and mailbox when there's none. So just drop the slash:home_mailbox = mbox
– weirdan Aug 24 '18 at 16:42