annotate src/util/Makefile.am @ 22656:1789bf2a1e01

director: Make sure HOST-RESET-USERS isn't used with max_moving_users=0 The reset command would just hang in that case. doveadm would never have sent this, so this is just an extra sanity check.
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Sun, 05 Nov 2017 23:51:56 +0200
parents 217fb4ca9b5a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1696
ad5be4c9cf09 Keep rawlog still in libexec/dovecot/ directory.
Timo Sirainen <tss@iki.fi>
parents: 1694
diff changeset
1 pkglibexecdir = $(libexecdir)/dovecot
ad5be4c9cf09 Keep rawlog still in libexec/dovecot/ directory.
Timo Sirainen <tss@iki.fi>
parents: 1694
diff changeset
2
8146
70b53e9b232e Rewrote thread indexing code. It's a lot simpler and takes less disk space.
Timo Sirainen <tss@iki.fi>
parents: 8041
diff changeset
3 pkglibexec_PROGRAMS = \
70b53e9b232e Rewrote thread indexing code. It's a lot simpler and takes less disk space.
Timo Sirainen <tss@iki.fi>
parents: 8041
diff changeset
4 rawlog \
11461
19c661891964 Added "script" service that can be used to easily execute programs via UNIX socket.
Timo Sirainen <tss@iki.fi>
parents: 11457
diff changeset
5 script \
11457
addb2c6c1dfb Renamed "script" binary to "script-login".
Timo Sirainen <tss@iki.fi>
parents: 11298
diff changeset
6 script-login \
10647
51a978045f47 Added support for tcpwrappers and potentially other login access checks.
Timo Sirainen <tss@iki.fi>
parents: 10460
diff changeset
7 $(TCPWRAP_BIN) \
8146
70b53e9b232e Rewrote thread indexing code. It's a lot simpler and takes less disk space.
Timo Sirainen <tss@iki.fi>
parents: 8041
diff changeset
8 gdbhelper \
10007
c862648185b8 util/*view binaries are now accessed via "doveadm dump".
Timo Sirainen <tss@iki.fi>
parents: 10004
diff changeset
9 maildirlock
8146
70b53e9b232e Rewrote thread indexing code. It's a lot simpler and takes less disk space.
Timo Sirainen <tss@iki.fi>
parents: 8041
diff changeset
10
2796
fb7f862194b5 Upgrades to autoconf 2.5 and automake >1.4.
Timo Sirainen <tss@iki.fi>
parents: 2391
diff changeset
11 AM_CPPFLAGS = \
2367
203938a7f45e Added dovecotpw utility. Patch by Joshua Goodall
Timo Sirainen <tss@iki.fi>
parents: 1696
diff changeset
12 -I$(top_srcdir)/src/lib \
9059
94ecf8a8ed68 Added lib-master and mail-storage-service code that makes it easier to build new Dovecot binaries.
Timo Sirainen <tss@iki.fi>
parents: 9030
diff changeset
13 -I$(top_srcdir)/src/lib-auth \
94ecf8a8ed68 Added lib-master and mail-storage-service code that makes it easier to build new Dovecot binaries.
Timo Sirainen <tss@iki.fi>
parents: 9030
diff changeset
14 -I$(top_srcdir)/src/lib-dict \
10460
b07f913040b1 script: Added enough features to get rawlog working again.
Timo Sirainen <tss@iki.fi>
parents: 10459
diff changeset
15 -I$(top_srcdir)/src/lib-settings \
9059
94ecf8a8ed68 Added lib-master and mail-storage-service code that makes it easier to build new Dovecot binaries.
Timo Sirainen <tss@iki.fi>
parents: 9030
diff changeset
16 -I$(top_srcdir)/src/lib-master \
5366
a42014a7d8be Added idxview and logview to dump index/cache/log file contents.
Timo Sirainen <tss@iki.fi>
parents: 4798
diff changeset
17 -I$(top_srcdir)/src/lib-mail \
8383
8815fc1099c8 Added imap_utf7 tool for mUTF-7 <-> UTF-8 conversion.
Timo Sirainen <tss@iki.fi>
parents: 8146
diff changeset
18 -I$(top_srcdir)/src/lib-imap \
5366
a42014a7d8be Added idxview and logview to dump index/cache/log file contents.
Timo Sirainen <tss@iki.fi>
parents: 4798
diff changeset
19 -I$(top_srcdir)/src/lib-index \
9059
94ecf8a8ed68 Added lib-master and mail-storage-service code that makes it easier to build new Dovecot binaries.
Timo Sirainen <tss@iki.fi>
parents: 9030
diff changeset
20 -I$(top_srcdir)/src/lib-storage \
9972
87c40d1d2b6c Added authtest utility for doing passdb and userdb lookups.
Timo Sirainen <tss@iki.fi>
parents: 9735
diff changeset
21 -I$(top_srcdir)/src/auth \
10459
e9cbc461c525 imap, pop3: Added back ability to run post-login scripts.
Timo Sirainen <tss@iki.fi>
parents: 10091
diff changeset
22 -DPKG_LIBEXECDIR=\""$(pkglibexecdir)"\" \
9972
87c40d1d2b6c Added authtest utility for doing passdb and userdb lookups.
Timo Sirainen <tss@iki.fi>
parents: 9735
diff changeset
23 -DPKG_RUNDIR=\""$(rundir)"\"
87c40d1d2b6c Added authtest utility for doing passdb and userdb lookups.
Timo Sirainen <tss@iki.fi>
parents: 9735
diff changeset
24
9104
c6d306772f4e Added configure --without-shared-libs to link built binaries against static libraries.
Timo Sirainen <tss@iki.fi>
parents: 9059
diff changeset
25 rawlog_LDADD = $(LIBDOVECOT)
10091
6a1c96577476 Makefiles: Separated LIBDOVECOT and LIBDOVECOT_DEPS.
Timo Sirainen <tss@iki.fi>
parents: 10007
diff changeset
26 rawlog_DEPENDENCIES = $(LIBDOVECOT_DEPS)
1694
0fae24674a9a Separated rawlog into it's own binary.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
27 rawlog_SOURCES = \
0fae24674a9a Separated rawlog into it's own binary.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
28 rawlog.c
2367
203938a7f45e Added dovecotpw utility. Patch by Joshua Goodall
Timo Sirainen <tss@iki.fi>
parents: 1696
diff changeset
29
14285
e540404debb7 Makefile: Link with SSL_LIBS whenever linking libssl_iostream.la
Timo Sirainen <tss@iki.fi>
parents: 12642
diff changeset
30 script_login_LDADD = \
e540404debb7 Makefile: Link with SSL_LIBS whenever linking libssl_iostream.la
Timo Sirainen <tss@iki.fi>
parents: 12642
diff changeset
31 $(LIBDOVECOT_STORAGE) \
15928
217fb4ca9b5a MODULE_LIBS is now part of LIBDOVECOT. No need to explicitly link it everywhere.
Timo Sirainen <tss@iki.fi>
parents: 14285
diff changeset
32 $(LIBDOVECOT)
14285
e540404debb7 Makefile: Link with SSL_LIBS whenever linking libssl_iostream.la
Timo Sirainen <tss@iki.fi>
parents: 12642
diff changeset
33 script_login_DEPENDENCIES = \
e540404debb7 Makefile: Link with SSL_LIBS whenever linking libssl_iostream.la
Timo Sirainen <tss@iki.fi>
parents: 12642
diff changeset
34 $(LIBDOVECOT_STORAGE_DEPS) \
e540404debb7 Makefile: Link with SSL_LIBS whenever linking libssl_iostream.la
Timo Sirainen <tss@iki.fi>
parents: 12642
diff changeset
35 $(LIBDOVECOT_DEPS)
11457
addb2c6c1dfb Renamed "script" binary to "script-login".
Timo Sirainen <tss@iki.fi>
parents: 11298
diff changeset
36 script_login_SOURCES = \
addb2c6c1dfb Renamed "script" binary to "script-login".
Timo Sirainen <tss@iki.fi>
parents: 11298
diff changeset
37 script-login.c
10459
e9cbc461c525 imap, pop3: Added back ability to run post-login scripts.
Timo Sirainen <tss@iki.fi>
parents: 10091
diff changeset
38
15928
217fb4ca9b5a MODULE_LIBS is now part of LIBDOVECOT. No need to explicitly link it everywhere.
Timo Sirainen <tss@iki.fi>
parents: 14285
diff changeset
39 script_LDADD = $(LIBDOVECOT)
11461
19c661891964 Added "script" service that can be used to easily execute programs via UNIX socket.
Timo Sirainen <tss@iki.fi>
parents: 11457
diff changeset
40 script_DEPENDENCIES = $(LIBDOVECOT_DEPS)
19c661891964 Added "script" service that can be used to easily execute programs via UNIX socket.
Timo Sirainen <tss@iki.fi>
parents: 11457
diff changeset
41 script_SOURCES = \
19c661891964 Added "script" service that can be used to easily execute programs via UNIX socket.
Timo Sirainen <tss@iki.fi>
parents: 11457
diff changeset
42 script.c
19c661891964 Added "script" service that can be used to easily execute programs via UNIX socket.
Timo Sirainen <tss@iki.fi>
parents: 11457
diff changeset
43
10647
51a978045f47 Added support for tcpwrappers and potentially other login access checks.
Timo Sirainen <tss@iki.fi>
parents: 10460
diff changeset
44 if TCPWRAPPERS
51a978045f47 Added support for tcpwrappers and potentially other login access checks.
Timo Sirainen <tss@iki.fi>
parents: 10460
diff changeset
45 TCPWRAP_BIN = tcpwrap
15928
217fb4ca9b5a MODULE_LIBS is now part of LIBDOVECOT. No need to explicitly link it everywhere.
Timo Sirainen <tss@iki.fi>
parents: 14285
diff changeset
46 tcpwrap_LDADD = $(LIBDOVECOT) $(LIBWRAP_LIBS)
10647
51a978045f47 Added support for tcpwrappers and potentially other login access checks.
Timo Sirainen <tss@iki.fi>
parents: 10460
diff changeset
47 tcpwrap_DEPENDENCIES = $(LIBDOVECOT_DEPS)
51a978045f47 Added support for tcpwrappers and potentially other login access checks.
Timo Sirainen <tss@iki.fi>
parents: 10460
diff changeset
48 tcpwrap_SOURCES = \
51a978045f47 Added support for tcpwrappers and potentially other login access checks.
Timo Sirainen <tss@iki.fi>
parents: 10460
diff changeset
49 tcpwrap.c \
51a978045f47 Added support for tcpwrappers and potentially other login access checks.
Timo Sirainen <tss@iki.fi>
parents: 10460
diff changeset
50 tcpwrap-settings.c
51a978045f47 Added support for tcpwrappers and potentially other login access checks.
Timo Sirainen <tss@iki.fi>
parents: 10460
diff changeset
51 endif
51a978045f47 Added support for tcpwrappers and potentially other login access checks.
Timo Sirainen <tss@iki.fi>
parents: 10460
diff changeset
52
9104
c6d306772f4e Added configure --without-shared-libs to link built binaries against static libraries.
Timo Sirainen <tss@iki.fi>
parents: 9059
diff changeset
53 gdbhelper_LDADD = $(LIBDOVECOT)
10091
6a1c96577476 Makefiles: Separated LIBDOVECOT and LIBDOVECOT_DEPS.
Timo Sirainen <tss@iki.fi>
parents: 10007
diff changeset
54 gdbhelper_DEPENDENCIES = $(LIBDOVECOT_DEPS)
3864
6124ca416a6c Added gdbhelper binary.
Timo Sirainen <tss@iki.fi>
parents: 2796
diff changeset
55 gdbhelper_SOURCES = \
6124ca416a6c Added gdbhelper binary.
Timo Sirainen <tss@iki.fi>
parents: 2796
diff changeset
56 gdbhelper.c
6124ca416a6c Added gdbhelper binary.
Timo Sirainen <tss@iki.fi>
parents: 2796
diff changeset
57
9104
c6d306772f4e Added configure --without-shared-libs to link built binaries against static libraries.
Timo Sirainen <tss@iki.fi>
parents: 9059
diff changeset
58 maildirlock_LDADD = $(LIBDOVECOT)
10091
6a1c96577476 Makefiles: Separated LIBDOVECOT and LIBDOVECOT_DEPS.
Timo Sirainen <tss@iki.fi>
parents: 10007
diff changeset
59 maildirlock_DEPENDENCIES = $(LIBDOVECOT_DEPS)
7977
fed87704b48a Added a new maildirlock utility for write-locking Dovecot MMaildir.
Timo Sirainen <tss@iki.fi>
parents: 7844
diff changeset
60 maildirlock_SOURCES = \
fed87704b48a Added a new maildirlock utility for write-locking Dovecot MMaildir.
Timo Sirainen <tss@iki.fi>
parents: 7844
diff changeset
61 maildirlock.c