masqmail

view examples/example.get @ 189:dc89737b27aa

removed the pop-before-smtp (smtp-after-pop) function this kind of authentication is superseded by SMTP AUTH today removing it is a step towards removing the POP stuff completely If you still rely on pop-before-smtp, stay with 0.2.x or run an arbitrary pop client before
author meillo@marmaro.de
date Thu, 15 Jul 2010 10:33:53 +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