Add files via upload

This commit is contained in:
Scott Sutherland 2024-10-07 07:55:43 -05:00 committed by GitHub
parent d20fd638dc
commit 6669da1d3b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,34 @@
# 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 "user1@example.com" pass "password1"
ssl
# Fetch mail from another server with custom settings
poll mail.anotherexample.com
proto POP3
user "user2@anotherexample.com" pass "password2"
port 995
ssl
# Another example with a forwarding SMTP setup
poll mail.forwardexample.com via smtp.example.com
proto IMAP
user "forwarduser@forwardexample.com" pass "forwardpassword"
smtphost smtp.example.com
esmtpname "smtpuser@example.com" esmtppassword "smtppassword"
# Additional account with a different protocol and no SSL
poll plainexample.com
proto POP3
user "plainuser@plainexample.com" pass "plainpassword"
port 110