dovecot-2.0: ssl-params: Don't start it at startup if Dovecot is...

dovecot at dovecot.org dovecot at dovecot.org
Tue Sep 21 18:30:28 EEST 2010


details:   http://hg.dovecot.org/dovecot-2.0/rev/c758655c6270
changeset: 12148:c758655c6270
user:      Timo Sirainen <tss at iki.fi>
date:      Tue Sep 21 16:30:20 2010 +0100
description:
ssl-params: Don't start it at startup if Dovecot is compiled without SSL support.

diffstat:

 src/ssl-params/ssl-params-settings.c |  4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diffs (15 lines):

diff -r 3f04426b00fb -r c758655c6270 src/ssl-params/ssl-params-settings.c
--- a/src/ssl-params/ssl-params-settings.c	Tue Sep 21 15:22:57 2010 +0100
+++ b/src/ssl-params/ssl-params-settings.c	Tue Sep 21 16:30:20 2010 +0100
@@ -26,7 +26,11 @@
 struct service_settings ssl_params_service_settings = {
 	.name = "ssl-params",
 	.protocol = "",
+#ifdef HAVE_SSL
 	.type = "startup",
+#else
+	.type = "",
+#endif
 	.executable = "ssl-params",
 	.user = "",
 	.group = "",


More information about the dovecot-cvs mailing list