dovecot-2.2: Several services weren't enforcing their process_li...

dovecot at dovecot.org dovecot at dovecot.org
Wed Aug 20 09:10:14 UTC 2014


details:   http://hg.dovecot.org/dovecot-2.2/rev/0b86058d4e5e
changeset: 17728:0b86058d4e5e
user:      Timo Sirainen <tss at iki.fi>
date:      Wed Aug 20 11:09:27 2014 +0200
description:
Several services weren't enforcing their process_limit=1 requirement.

diffstat:

 src/indexer/indexer-settings.c                   |  4 +++-
 src/ipc/ipc-settings.c                           |  4 +++-
 src/replication/replicator/replicator-settings.c |  4 +++-
 src/stats/stats-settings.c                       |  4 +++-
 4 files changed, 12 insertions(+), 4 deletions(-)

diffs (52 lines):

diff -r d1d4beff99f7 -r 0b86058d4e5e src/indexer/indexer-settings.c
--- a/src/indexer/indexer-settings.c	Tue Aug 19 23:53:18 2014 +0200
+++ b/src/indexer/indexer-settings.c	Wed Aug 20 11:09:27 2014 +0200
@@ -44,5 +44,7 @@
 	.unix_listeners = { { &indexer_unix_listeners_buf,
 			      sizeof(indexer_unix_listeners[0]) } },
 	.fifo_listeners = ARRAY_INIT,
-	.inet_listeners = ARRAY_INIT
+	.inet_listeners = ARRAY_INIT,
+
+	.process_limit_1 = TRUE
 };
diff -r d1d4beff99f7 -r 0b86058d4e5e src/ipc/ipc-settings.c
--- a/src/ipc/ipc-settings.c	Tue Aug 19 23:53:18 2014 +0200
+++ b/src/ipc/ipc-settings.c	Wed Aug 20 11:09:27 2014 +0200
@@ -44,5 +44,7 @@
 	.unix_listeners = { { &ipc_unix_listeners_buf,
 			      sizeof(ipc_unix_listeners[0]) } },
 	.fifo_listeners = ARRAY_INIT,
-	.inet_listeners = ARRAY_INIT
+	.inet_listeners = ARRAY_INIT,
+
+	.process_limit_1 = TRUE
 };
diff -r d1d4beff99f7 -r 0b86058d4e5e src/replication/replicator/replicator-settings.c
--- a/src/replication/replicator/replicator-settings.c	Tue Aug 19 23:53:18 2014 +0200
+++ b/src/replication/replicator/replicator-settings.c	Wed Aug 20 11:09:27 2014 +0200
@@ -43,7 +43,9 @@
 	.unix_listeners = { { &replicator_unix_listeners_buf,
 			      sizeof(replicator_unix_listeners[0]) } },
 	.fifo_listeners = ARRAY_INIT,
-	.inet_listeners = ARRAY_INIT
+	.inet_listeners = ARRAY_INIT,
+
+	.process_limit_1 = TRUE
 };
 
 #undef DEF
diff -r d1d4beff99f7 -r 0b86058d4e5e src/stats/stats-settings.c
--- a/src/stats/stats-settings.c	Tue Aug 19 23:53:18 2014 +0200
+++ b/src/stats/stats-settings.c	Wed Aug 20 11:09:27 2014 +0200
@@ -52,7 +52,9 @@
 			      sizeof(stats_unix_listeners[0]) } },
 	.fifo_listeners = { { &stats_fifo_listeners_buf,
 			      sizeof(stats_fifo_listeners[0]) } },
-	.inet_listeners = ARRAY_INIT
+	.inet_listeners = ARRAY_INIT,
+
+	.process_limit_1 = TRUE
 };
 
 /* we're kind of kludging here to avoid "stats_" prefix in the struct fields */


More information about the dovecot-cvs mailing list