]> Pileus Git - ~andy/fetchmail/blob - sample.rcfile
Added -U option.
[~andy/fetchmail] / sample.rcfile
1 # fetchmail control file sample
2 #
3 # This file (or one of your own creation, rather) should be located 
4 # in your home directory with the name .fetchmailrc.  Permissions on this
5 # file may be no greater than -rw-------, or fetchmail will refuse to
6 # use it.
7 #
8 # To see what effect your ~/.fetchmailrc file has, do 
9 #
10 #       fetchmail --version
11 #
12 # This will display the fetchmail version number and an explanation
13 # in English of what the currently set options and defaults mean.
14 #
15 # Comments begin with a '#' and extend through the end of the line.
16 # Blank lines between server entries are ignored.
17 # Keywords and identifiers are case sensitive.
18 # When there is a conflict between the command-line arguments and the
19 # arguments in this file, the command-line arguments take precedence.
20 #
21 # Legal keywords are
22 #   poll                      -- must be followed by a mailserver name
23 #   skip                      -- must be followed by a mailserver name
24 #   protocol (or proto)       -- must be followed by a protocol ID
25 #   uidl
26 #   port                      -- must be followed by a TCP/IP port number
27 #   authenticate (or auth)    -- must be followed by an authentication type
28 #   timeout                   -- must be followed by a numeric timeout value
29 #   envelope                  -- must be followed by an envelope header name
30 #   aka                       -- must be followed by one or more server aliases
31 #   localdomains              -- must be followed by one or more domain names
32 #   interface                 -- must be followed by device/IP address/mask
33 #   monitor                   -- must be followed by IP address
34 #
35 #   username (or user)        -- must be followed by a name
36 #   is                        -- must be followed by one or more names
37 #   remotefolder (or remote)  -- must be followed by a filename
38 #   password (or pass)        -- must be followed by a password string
39 #   smtphost (or smtp)        -- must be followed by a host name
40 #   mda                       -- must be followed by an MDA command string
41 #   preconnect (or pre)       -- must be followed by an initialization command
42 #
43 #   keep
44 #   flush
45 #   fetchall
46 #   rewrite
47 #   stripcr
48 #   dns
49 #   no keep
50 #   no flush
51 #   no fetchall
52 #   no rewrite
53 #   no stripcr
54 #   no dns
55 #   no envelope
56 #   limit                     -- must be followed by numeric size limit
57 #   fetchlimit                -- must be followed by numeric msg fetch limit
58 #   batchlimit                -- must be followed by numeric SMTP batch limit
59 #
60 # Legal protocol identifiers are
61 #   pop2 (or POP2)
62 #   pop3 (or POP3)
63 #   imap (or IMAP)
64 #   apop (or APOP)
65 #   rpop (or RPOP)
66 #   kpop (or KPOP)
67 #   etrn (or ETRN)
68 #
69 # Legal authentication types are
70 #   login
71 #   kerberos
72 #
73 # Legal global option statements are
74 #
75 #   set logfile =               -- must be followed by a string
76 #   set daemon =                -- must be followed by a number   
77 #
78 # The noise keywords `and', `with', `has', `wants', and `options' are ignored
79 # anywhere in an entry; they can be used to make it resemble English.  The
80 # punctuation characters `,' `:' `;' are also ignored. 
81 #
82 # The run control file format is fully described (with more examples) on the
83 # fetchmail manual page.
84
85 # This is what the developer's .fetchmailrc looks like:
86
87 set daemon 300  # Poll at 5-minute intervals
88
89 defaults
90         interface "sl0/10.0.2.15"       # SLIRP standard address
91         user esr is esr fetchmail-friends magic-numbers here
92         fetchall
93
94 # Use this for production
95 poll imap.ccil.org protocol IMAP:
96         no dns, aka snark.thyrsus.com thyrsus.com locke.ccil.org ccil.org 
97         password my_remote_password;
98
99 # Use this to test POP3
100 skip pop3.ccil.org with protocol APOP:
101         no dns, aka snark.thyrsus.com thyrsus.com locke.ccil.org ccil.org 
102         password my_apop_secret;
103
104 # Use this to test against a different server
105 skip pop3.netaxs.com:
106         password my_netaxs.password;