/usr/share/doc/masqmail/examples/example.get is in masqmail 0.2.30-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # example 'mail get' configuration
#
# the protocol, only 'pop3' or 'apop' are supported. apop is
# recommended if the server supports it (password encryption).
# Unfortunately most do not.
protocol=apop
# the server:
server = pop.example.org
# the account name:
user=okurth
# and the password:
pass="keepInMind"
# if you just use this for SMTP after POP, you do not need the settings below:
# the (local) address, where the retrieved mail should be sent to:
address=okurth@localhost
# should we keep the mail on server?
do_keep=false
# if we do keep the mail, you should really set this to true,
# otherwise you will get it again next time you fetch mail.
# masqmail completely ignores any headers (which may mark a mail as read).
do_uidl=false
# optionally, you can set the maximum size of a mail. Setting it to 0
# means get all, disregarding size.
max_size=50000
|