|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | 03-May-2022 | - |
| doc/ | H | 03-May-2022 | - | 13,786 | 12,097 |
| jnlib/ | H | 14-Jun-2010 | - | 6,177 | 4,408 |
| m4/ | H | 14-Jun-2010 | - | 4,338 | 3,994 |
| po/ | H | 03-May-2022 | - | 4,504 | 3,594 |
| src/ | H | 03-May-2022 | - | 28,274 | 21,042 |
| tests/ | H | 14-Jun-2010 | - | 2,198 | 1,707 |
| ABOUT-NLS | H A D | 17-Nov-2006 | 78.7 KiB | 1,112 | 1,065 |
| AUTHORS | H A D | 09-Mar-2010 | 1.1 KiB | 39 | 24 |
| COPYING | H A D | 03-Sep-2005 | 17.6 KiB | 341 | 281 |
| ChangeLog | H A D | 14-Jun-2010 | 33.5 KiB | 1,148 | 738 |
| INSTALL | H A D | 31-Jul-2008 | 9.3 KiB | 238 | 179 |
| Makefile.am | H A D | 07-Aug-2007 | 1.2 KiB | 40 | 13 |
| Makefile.in | H A D | 14-Jun-2010 | 21.4 KiB | 684 | 586 |
| NEWS | H A D | 14-Jun-2010 | 6.4 KiB | 239 | 133 |
| README | H A D | 09-Mar-2010 | 1.7 KiB | 57 | 35 |
| THANKS | H A D | 02-Nov-2005 | 237 | 9 | 6 |
| TODO | H A D | 21-Oct-2008 | 1.4 KiB | 38 | 28 |
| VERSION | H A D | 14-Jun-2010 | 6 | 2 | 1 |
| acinclude.m4 | H A D | 07-Aug-2007 | 3.3 KiB | 104 | 98 |
| aclocal.m4 | H A D | 14-Jun-2010 | 34.8 KiB | 969 | 868 |
| autogen.sh | H A D | 31-Jul-2008 | 6.1 KiB | 212 | 155 |
| compile | H A D | 31-Jul-2008 | 3.6 KiB | 143 | 79 |
| config.guess | H A D | 31-Jul-2008 | 43.6 KiB | 1,517 | 1,305 |
| config.h.in | H A D | 14-Jun-2010 | 8.1 KiB | 313 | 218 |
| config.rpath | H A D | 17-Nov-2006 | 15.8 KiB | 615 | 517 |
| config.sub | H A D | 31-Jul-2008 | 32.1 KiB | 1,631 | 1,486 |
| configure | H A D | 03-May-2022 | 319.4 KiB | 11,008 | 9,161 |
| configure.ac | H A D | 14-Jun-2010 | 13.6 KiB | 479 | 406 |
| depcomp | H A D | 31-Jul-2008 | 17.4 KiB | 590 | 375 |
| install-sh | H A D | 31-Jul-2008 | 13.3 KiB | 520 | 344 |
| missing | H A D | 31-Jul-2008 | 10.9 KiB | 368 | 275 |
| mkinstalldirs | H A D | 31-Jul-2008 | 3.4 KiB | 162 | 112 |
README
1
2 DirMngr - X.509 Directory Manager
3 -------------------------------------
4 Version 1.1.0
5
6
7 Intro
8 -----
9
10 DirMngr is a server for managing and downloading certificate
11 revocation lists (CRLs) for X.509 certificates and for downloading
12 the certificates themselves. Dirmngr also handles OCSP requests
13 as an alternative to CRLs. Dirmngr is either invoked internally
14 by gpgsm (GnuPG-2) or when running as a system daemon through the
15 dirmngr-client tool.
16
17 See the file COPYING for copyright and warranty information. See
18 the file AUTHORS for contact addresses and code history.
19
20 On W32 targets, the URL extension of OpenLDAP is included which is
21 provided in src/ldap-url.c. This file has a different copyright
22 from the rest of the package. Please see that file for more
23 details.
24
25
26 Installation
27 ------------
28 Please read the file INSTALL. Here is a quick summary:
29
30 1) Unpack the tarball. With GNU tar you can do it this way:
31 "tar xjvf dirmngr-x.y.z.tar.bz2"
32
33 2) "cd dirmngr-x.y.z"
34
35 3) "./configure --sysconfdir=/etc --localstatedir=/var"
36 The two options make sure that the configuration data will
37 not be search under /usr/local/etc and that variable data will
38 be stored at a standard place too.
39
40 4) "make"
41
42 5) "make install" (you probably need to become root first)
43
44 6) You end up with a a dirmngr and dirmngr-client binary in
45 /usr/local/bin. Some other files are also installed for
46 internal use.
47
48 If you are using dirmngr as part of gnupg 2.0 you are done now.
49 If you want to install it as a system daemon, please see the
50 manual by running the command "info dirmngr"
51
52
53
54
55
56
57