I configured fetchmail to fetch my mails per IMAP. After I start fetchmail
everything is fine (see in debug-mode that mails are successfully downloaded).
The Problem is: I expect so find my mails in $HOME/Mails
, but these folder does not exists afterwards.
I have two questions:
- Where are the mails (fetched by
fetchmail
) stored? (Ubuntu 16.04) - How can I configure this folder?
Here is my .fetchmailrc
:
set postmaster "defel"
set bouncemail
set no spambounce
set softbounce
set properties ""
set daemon 60
poll $imapserver with proto IMAP
user 'username' there with password 'password' is 'username@imapserver.com' here ssl sslcertck
username@imapserver.com
should be your local user name. The mail will be delivered to your local SMTP server. Personally I prefer to deliver toprocmail
which sorts the mail into folders. – Kusalananda May 07 '17 at 19:52~/Mail
still does not exists. – alwe May 08 '17 at 22:03exim
or whatever you're running), I'd expect the mails to be stored in/var/mail/username
or/var/spool/mail/username
unless you have reconfigured it to deliver elsewhere. – Kusalananda May 08 '17 at 22:06getmail
which worked perfectly for my usecase (getting mails to $HOME) – alwe May 15 '17 at 10:10