From: Timo Sirainen Date: Mon, 12 Jun 2017 09:44:37 +0000 (+0300) Subject: welcome: Fix sending parameters to welcome script. X-Git-Tag: 2.2.31.rc1~63 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f5870a09bc1ca6561a094d1a2df0fb40197ced49;p=thirdparty%2Fdovecot%2Fcore.git welcome: Fix sending parameters to welcome script. Broken by f38b0dafbffa9d79542e36b4b3e598ed4115e5a3 --- diff --git a/src/plugins/welcome/welcome-plugin.c b/src/plugins/welcome/welcome-plugin.c index 6165a6e484..6f9dd93473 100644 --- a/src/plugins/welcome/welcome-plugin.c +++ b/src/plugins/welcome/welcome-plugin.c @@ -60,7 +60,7 @@ static void script_execute(struct mail_user *user, const char *cmd, bool wait) str_append(str, "-\n"); for (; *args != NULL; args++) { str_append_tabescaped(str, *args); - str_append_c(str, '\t'); + str_append_c(str, '\n'); } str_append_c(str, '\n');