]> Sergey Matveev's repositories - public-inbox.git/blob - INSTALL
INSTALL: Net::Server is not needed for systemd use
[public-inbox.git] / INSTALL
1 public-inbox (server-side) installation
2 ---------------------------------------
3
4 This is for folks who want to setup their own public-inbox instance.
5 Clients should use normal git-clone/git-fetch, or NNTP clients
6 if they want to import mail into their personal inboxes.
7
8 TODO: this still needs to be documented better,
9 also see the scripts/ and sa_config/ directories in the source tree
10
11 Requirements
12 ------------
13
14 public-inbox requires a number of other packages to access its full
15 functionality.  The core tools are, of course:
16
17 * Git
18 * Perl
19 * SQLite (needed for Xapian use)
20
21 To accept incoming mail into a public inbox, you'll likely want:
22
23 * MTA - postfix is recommended (for public-inbox-mda)
24 * SpamAssassin (spamc/spamd)   (for public-inbox-watch/public-inbox-mda)
25
26 Beyond that, there is a long list of Perl modules required, starting with:
27
28 * Date::Parse                   deb: libtimedate-perl
29                                 rpm: perl-Time-ParseDate
30
31 * Email::MIME                   deb: libemail-mime-perl
32                                 rpm: perl-Email-MIME
33
34 * Email::MIME::ContentType      deb: libemail-mime-contenttype-perl
35                                 rpm: perl-Email-MIME-ContentType
36
37 * Encode::MIME::Header          deb: libencode-perl
38                                 rpm: perl-Encode
39
40 * Plack                         deb: libplack-perl
41                                 rpm: perl-Plack, perl-Plack-Test,
42                                 (for HTML/Atom generation)
43
44 * URI::Escape                   deb: liburi-perl
45                                 rpm: perl-URI
46                                 (for HTML/Atom generation)
47
48 Where "deb" indicates package names for Debian-derived distributions and
49 "rpm" is for RPM-based distributions (only known to work on Fedora).
50
51 Numerous optional modules are likely to be useful as well:
52
53   - Search::Xapian             deb: libsearch-xapian-perl
54                                rpm: perl-Search-Xapian
55                                (for NNTP service or gzipped mbox over HTTP)
56
57   - IO::Compress::Gzip         deb: perl-modules (or libio-compress-perl)
58                                rpm: perl-PerlIO-gzip
59                                (for gzipped mbox over HTTP)
60
61   - DBI                        deb: libdbi-perl
62                                rpm: perl-DBI
63                                (for gzipped mbox over HTTP)
64
65   - DBD::SQLite                deb: libdbd-sqlite3-perl
66                                rpm: perl-DBD-SQLite
67                                (for NNTP service or gzipped mbox over HTTP)
68
69   - Danga::Socket              deb: libdanga-socket-perl
70                                rpm: perl-Danga-Socket
71                                (for bundled HTTP and NNTP servers)
72
73   - Net::Server                deb: libnet-server-perl
74                                rpm: perl-Net-Server
75                                (for HTTP/NNTP servers as standalone daemons,
76                                 not needed as systemd services)
77
78   - Filesys::Notify::Simple    deb: libfilesys-notify-simple-perl
79                                rpm: perl-Filesys-Notify-Simple
80                                (for public-inbox-watch)
81
82   - Inline::C[7]               deb: libinline-c-perl
83                                (speeds up spawning of git(1) on Linux
84                                 (see public-inbox-daemon(8))
85
86   - Plack::Middleware::ReverseProxy
87
88                                deb: libplack-middleware-reverseproxy-perl
89                                rpm: perl-Plack-Middleware-ReverseProxy
90                                (ensures redirects are correct when running
91                                 behind nginx or Varnish)
92
93   - Plack::Middleware::Deflater
94
95                                deb: libplack-middleware-deflater-perl
96                                rpm: perl-Plack-Middleware-Deflater
97                                (saves bandwidth on responses)
98
99   - Socket6                    deb: libsocket6-perl
100                                rpm: perl-Socket6
101                                (pulled in by SpamAssassin and Net::Server,
102                                 only necessary if using IPv6 with
103                                 Plack::Middleware::AccessLog or similar)
104
105 On Fedora systems, you'll probably also end up wanting
106 perl-Test-HTTP-Server-Simple, perl-Devel-Peek, and perl-IPC-Run to run the
107 test suite.  On Debian systems, libxml-feed-perl and libipc-run-perl
108 will aid in running the test suite (XML::Feed and IPC::Run respectively,
109 on CPAN).
110
111 standard MakeMaker installation (Perl)
112 --------------------------------------
113
114 Once the dependencies are installed, you should be able to build and
115 install the system (into /usr/local) with:
116
117         perl Makefile.PL
118         make
119         make test
120         make install # root permissions may be needed
121
122 When installing Search::Xapian, make sure the underlying Xapian
123 installation is not affected by an index corruption bug:
124
125         https://bugs.debian.org/808610
126
127 For Debian 8.x (jessie), this means using Debian 8.5 or later.
128
129 public-inbox will never store unregeneratable data in Xapian
130 or any other search database we might use; Xapian corruption
131 will not destroy critical data.
132
133 See the public-inbox-overview(7) man page for the next steps once the
134 installation is complete.
135
136 Copyright
137 ---------
138
139 Copyright 2013-2019 all contributors <meta@public-inbox.org>
140 License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>