-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
73 lines (56 loc) · 2.81 KB
/
README
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
=========================================
New README content
=========================================
This is a modified version of Getmail that adds an optional "use_peek" parameter
for IMAP retrievers.
Example usage:
[retriever]
type = SimpleIMAPSSLRetriever
server = imap.local
username = joe
password = hunter2
use_peek = true
=========================================
Original README content follows
=========================================
getmail version 4 -- a flexible, extensible mail retrieval system with
support for POP3, IMAP4, SSL variants of both, maildirs, mboxrd files,
external MDAs, arbitrary message filtering, single-user and domain-mailboxes,
and many other useful features.
getmail is Copyright (C) 1998-2009 Charles Cazabon.
getmail is licensed for use under the GNU General Public License version 2
(only). See docs/COPYING for specific terms and distribution information.
getmail version 4 requires Python version 2.3.3 or later. You can have
several installed versions of Python peacefully co-existing, see
python.org for details.
To install: getmail v.4 uses the standard Python distutils. Do the following
as a regular user:
python setup.py build
Then (probably as root), do:
python setup.py install
This will install the software as follows:
-the four scripts will be installed in <PREFIX>/bin/
-the Python files will be installed under the site-packages directory of
your Python installation (typically /usr/local/lib/pythonXXX or
/usr/lib/pythonXXX, but may be elsewhere -- this is detected automatically)
-the documentation will be installed under <PREFIX>/doc/getmail-<version>/
-the man pages will be installed under <PREFIX>/man/
<PREFIX> is the directory Python was configured to install under (typically
either /usr/local/ or /usr/, but may be another value). See the file
docs/documentation.html or docs/documentation.txt for details on installing
files to directories other than these defaults.
The four scripts included in the package (getmail, getmail_maildir,
getmail_mbox, and getmail_fetch) will have their "#!"-interpreter line
automatically modified to invoke the Python interpreter you run the setup
script with. If you later remove this version of Python, and the newer version
does not provide a link to the interpreter with that name, you will have to
modify the scripts or re-run the setup.py script.
See the HTML documentation for details on setting up and using getmail. It is
included in the docs subdirectory of the distribution tarball, and will be
installed in <PREFIX>/doc/getmail-<version>/ (by default). 10-second summary
for personal use:
1. Install getmail
2. mkdir -m 700 ~/.getmail
3. Create ~/.getmail/getmailrc by following the instructions.
4. Run `getmail`.
See docs/BUGS for instructions on reporting bugs in this software.