]> Pileus Git - ~andy/fetchmail/blob - sample.rcfile
*** empty log message ***
[~andy/fetchmail] / sample.rcfile
1 # .poprc sample
2 #
3 # This file (or one of your own creation, rather) should be located 
4 # in your home directory with the name .poprc.  Permissions on this
5 # file may be no greater than -rw-------, or popclient will refuse to
6 # use it.
7 #
8 # To see what effect your ~/.poprc file has, do 
9 #
10 #       popclient --version
11 #
12 # This will display the popclient 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 #   server
23 #   protocol (or proto)
24 #   username (or user)
25 #   password (or pass)
26 #   remotefolder (or remote)
27 #   localfolder (or local)
28 #   mda
29 #   keep
30 #   flush
31 #   fetchall
32 #   nokeep
33 #   noflush
34 #   nofetchall
35 #
36 # Legal protocol identifiers are
37 #   pop2 (or POP2)
38 #   pop3 (or POP3)
39 #   imap (or IMAP)
40 #   apop (or APOP)
41 #   rpop (or RPOP)
42 #
43 # Basic format is
44 # server SERVERNAME protocol PROTOCOL username NAME password PASSWORD 
45 # Example:
46 #
47 server pop.provider.net protocol pop3 username jsmith password secret1
48
49 # Or, using some abbreviations:
50 #
51 server pop.provider.net proto pop3 user jsmith password secret1
52
53 # Multiple servers may be listed
54 #
55 server pop.provider.net proto pop3 user jsmith password secret1
56 server other.provider.net proto pop2 user John.Smith password My^Hat
57
58 # Other possibilities (note use of \ to escape newline -- this is all 
59 # one server definition.
60 server pop.provider.net         \
61         proto pop3              \
62         user jsmith             \
63         pass secret1            \
64         localfolder ~/mbox