masqmail

view examples/example.get @ 190:6b4a101a2455

forgot to remove the pop3_login option in conf.c in the last commit
author meillo@marmaro.de
date Thu, 15 Jul 2010 11:15:25 +0200
parents 08114f7dcc23
children
line source
1 # example 'mail get' configuration
2 #
3 # the protocol, only 'pop3' or 'apop' are supported. apop is
4 # recommended if the server supports it (password encryption).
5 # Unfortunately most do not.
6 protocol=apop
8 # the server:
9 server = pop.example.org
11 # the account name:
12 user=okurth
14 # and the password:
15 pass="keepInMind"
17 # the (local) address, where the retrieved mail should be sent to:
18 address=okurth@localhost
20 # should we keep the mail on server?
21 do_keep=false
23 # if we do keep the mail, you should really set this to true,
24 # otherwise you will get it again next time you fetch mail.
25 # masqmail completely ignores any headers (which may mark a mail as read).
26 do_uidl=false
28 # optionally, you can set the maximum size of a mail. Setting it to 0
29 # means get all, disregarding size.
30 max_size=50000