view src/stats/Makefile.am @ 22715:20415dd0b85a

dsync: Add per-mailbox sync lock that is always used. Both importing and exporting gets the lock before they even sync the mailbox. The lock is kept until the import/export finishes. This guarantees that no matter how dsync is run, two dsyncs can't be working on the same mailbox at the same time. This lock is in addition to the optional per-user lock enabled by the -l parameter. If the -l parameter is used, the same lock timeout is used for the per-mailbox lock. Otherwise 30s timeout is used. This should help to avoid email duplication when replication is enabled for public namespaces, and maybe in some other rare situations as well.
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Thu, 28 Dec 2017 14:10:23 +0200
parents 968da3b58769
children
line wrap: on
line source

stats_moduledir = $(moduledir)/stats
pkglibexecdir = $(libexecdir)/dovecot

pkglibexec_PROGRAMS = stats

AM_CPPFLAGS = \
	-DSTATS_MODULE_DIR=\""$(stats_moduledir)"\" \
	-I$(top_srcdir)/src/lib \
	-I$(top_srcdir)/src/lib-settings \
	-I$(top_srcdir)/src/lib-master \
	-I$(top_srcdir)/src/lib-stats

stats_LDADD = $(LIBDOVECOT) 
stats_DEPENDENCIES = $(LIBDOVECOT_DEPS)

stats_SOURCES = \
	client.c \
	client-export.c \
	client-reset.c \
	fifo-input-connection.c \
	global-memory.c \
	mail-command.c \
	mail-domain.c \
	mail-ip.c \
	mail-session.c \
	mail-stats.c \
	mail-user.c \
	main.c \
	stats-carbon.c \
	stats-settings.c

noinst_HEADERS = \
	client.h \
	client-export.h \
	client-reset.h \
	fifo-input-connection.h \
	global-memory.h \
	mail-command.h \
	mail-domain.h \
	mail-ip.h \
	mail-session.h \
	mail-stats.h \
	mail-user.h \
	stats-carbon.h \
	stats-settings.h