Files
PowerHuntShares/Scripts/SampleConfigs/.fetchmailrc
T
2024-10-07 07:55:43 -05:00

35 lines
880 B
Plaintext

# Global options
set daemon 300
# Default options for all servers
defaults
protocol IMAP
port 993
keep
# Fetch mail from the first server
poll mail.example.com
proto IMAP
user "[email protected]" pass "password1"
ssl
# Fetch mail from another server with custom settings
poll mail.anotherexample.com
proto POP3
user "[email protected]" pass "password2"
port 995
ssl
# Another example with a forwarding SMTP setup
poll mail.forwardexample.com via smtp.example.com
proto IMAP
user "[email protected]" pass "forwardpassword"
smtphost smtp.example.com
esmtpname "[email protected]" esmtppassword "smtppassword"
# Additional account with a different protocol and no SSL
poll plainexample.com
proto POP3
user "[email protected]" pass "plainpassword"
port 110