changeset 19959:9d1ca7caf268

Set postmaster_address=%d by default because imap now loads lda settings and it must be non-empty. We don't want imap to suddenly start failing because of the c15e8f33c change. This isn't a perfect solution either, but should be ok enough.
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Fri, 25 Mar 2016 00:45:54 +0900
parents 17c41e72d2d9
children 5f32b22684ee
files src/lib-lda/lda-settings.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/lib-lda/lda-settings.c	Thu Mar 24 10:07:15 2016 +0900
+++ b/src/lib-lda/lda-settings.c	Fri Mar 25 00:45:54 2016 +0900
@@ -35,7 +35,7 @@
 };
 
 static const struct lda_settings lda_default_settings = {
-	.postmaster_address = "",
+	.postmaster_address = "postmaster@%d",
 	.hostname = "",
 	.submission_host = "",
 	.sendmail_path = "/usr/sbin/sendmail",