# This is a sample fetchmail configuration file. # Copy it to ~/.fetchmailrc for personal use, # or to /etc/fetchmailrc for system-wide deployment. # # For extended details and advanced options, # refer to the fetchmail(1) manual page. # # There is a graphical tool for simplified configuration of # .fetchmailrc files, called fetchmailconf. It is provided # in the fetchmailconf package. # The interval in seconds between polling cycles in the daemon mode. # Set this option to run fetchmail persistently in the background. # The fetchmail-daemon package provides 'fetchmail' service # that starts fetchmail at the system startup if this option # is set in the configuration file. # set daemon 1200 # Defaults for all accounts can be specified after the `defaults' keyword. # #defaults proto POP3 user "user" mda "/usr/sbin/sendmail -i -f %F %T" # Sample configuration to poll a POP3 account named `user1' # on the host popserver.isp.example.net, using password `Your Pass 1' # for authentication. The retrieved mail will be delivered to # the local user named `youracct'. # poll popserver.isp.example.net with proto POP3 user "user1" is "youracct" here password "Your Pass 1" # Uncomment the line below to use sendmail executable for local delivery #mda "/usr/sbin/sendmail -i -f %F %T" # Sample configuration to poll an IMAP account named `user2' # on the host imapserver.isp.example.net, using password `Your Pass 2' # for authentication. The retrieved mail will be delivered to # the local user named `youracct'. # poll imapserver.isp.example.net with proto IMAP user "user2" is "youracct" here password "Your Pass 2" # Uncomment the line below to use procmail for local delivery #mda "/usr/bin/procmail -d %T"