wiki/HowtoFetchmail.md

33 lines
649 B
Markdown
Raw Normal View History

2016-12-29 11:25:39 +01:00
**Cette page a été importée automatiquement de notre ancien wiki mais n'a pas encore été révisée.**
# Howto Fetchmail
~~~
2017-01-14 00:06:38 +01:00
# apt install fetchmail
2016-12-29 11:25:39 +01:00
~~~
Config via /etc/fetchmailrc :
~~~
set postmaster "postmaster"
set no spambounce
set no syslog
set logfile /var/log/fetchmail.log
set properties ""
set daemon 60
set no bouncemail
defaults
# Retrieve only new messages
#no fetchall
# Retrieve all messages
#fetchall
smtpaddress mail.example.com
# on vire le Deliver-To: pour eviter les boucles foireuses
dropdelivered
poll pop.example.com with proto POP3
user 'jdoe@example.com' there with password 'PASS' is 'john@example.org' here
~~~