]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
director: If we need to send a failure reply to login process, make it a temp failure.
authorTimo Sirainen <tss@iki.fi>
Wed, 19 May 2010 10:45:54 +0000 (12:45 +0200)
committerTimo Sirainen <tss@iki.fi>
Wed, 19 May 2010 10:45:54 +0000 (12:45 +0200)
--HG--
branch : HEAD

src/director/login-connection.c

index 43a782513964d8727da75b1792b07e6bd5299dad..346b672e28ce4bff276fc5a0d58632c4d71461e4 100644 (file)
@@ -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;