From: Timo Sirainen Date: Wed, 19 May 2010 10:45:54 +0000 (+0200) Subject: director: If we need to send a failure reply to login process, make it a temp failure. X-Git-Tag: 2.0.beta6~204 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=156fc0eeccbe855ccc487c673528d21aa440191e;p=thirdparty%2Fdovecot%2Fcore.git director: If we need to send a failure reply to login process, make it a temp failure. --HG-- branch : HEAD --- diff --git a/src/director/login-connection.c b/src/director/login-connection.c index 43a7825139..346b672e28 100644 --- a/src/director/login-connection.c +++ b/src/director/login-connection.c @@ -85,7 +85,7 @@ static void login_host_callback(const struct ip_addr *ip, void *context) i_assert(strncmp(request->line, "OK\t", 3) == 0); line = t_strconcat("FAIL\t", t_strcut(request->line + 3, '\t'), - NULL); + "\ttemp", NULL); } login_connection_send_line(request->conn, line); } T_END;