-
Notifications
You must be signed in to change notification settings - Fork 5
/
INSTALL
61 lines (39 loc) · 1.17 KB
/
INSTALL
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
# $Id: INSTALL,v 1.4 2008/09/01 01:29:47 gilles Exp gilles $
#
# INSTALL file for pop2imap
GETTING
-------
http://www.linux-france.org/prj/pop2imap/dist/
PREREQUISITES
-------------
You need :
- Perl
try : perl -v
try : perl -c pop2imap
- Mail::IMAPClient module
try : perl -mMail::IMAPClient -e ''
- Mail::POP3Client module
try : perl -mMail::POP3Client -e ''
- Email::Simple module
try : perl -mEmail::Simple -e ''
- Date::Manip module
try : perl -mDate::Manip -e ''
- IO::Socket::SSL module (optional needed with --ssl1 or --ssl2)
try : perl -mIO::Socket::SSL -e ''
Any software packager should add all the perl modules dependencies by default
since users can use any option (--ssl*).
INSTALLING
----------
To see what will be done, just run:
make -n install
To install pop2imap, just run:
make install
or copy the file pop2imap where you want it to be.
TESTING
-------
You can change the file tests.sh and run the tests with :
sh -x tests.sh
The tests.sh script break on first failure ("set -e" directive).
Since I added more tests you also need a remote imap server see the
file tests.sh and help yourself. No time to make a universal test
file.