-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmpoprc.example
33 lines (25 loc) · 1016 Bytes
/
mpoprc.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Example for a user configuration file ~/.mpoprc
# With modern mail services that publish autoconfiguration information,
# you can simply run 'mpop --configure [email protected]' to get
# a basic working configuration.
# This file focusses on TLS, authentication, and the mail delivery method.
# Features not used here include mail filtering, timeouts, SOCKS proxies,
# TLS parameters, and more.
# Set default values: always use TLS, and chose a delivery method.
defaults
tls on
# Deliver mail to a maildir folder:
delivery mbox $GITHUB_WORKSPACE/mbox
# Define a mail account at a freemail service
account posteo
# Host name of the POP3 server
host posteo.de
port 110
# Authentication
user [email protected]
password mypass
# The company runs SpamAssassin, so test each mail for the "X-Spam-Status: Yes"
# header, and skip all mails with this header instead of downloading them.
# filter if [ "`grep "^X-Spam-Status: Yes"`" ]; then exit 2; else exit 0; fi
# Set a default account
account default : posteo