Displaying 2 results from an estimated 2 matches for "auth_reconnect".
2003 Nov 04
1
pop3-login process leakage
Hi,
I've recently deployed dovecot on our servers, to replace
courier-imapd. I'm delighted with its features and performance,
but there's a major problem - it's leaking pop3-login processes.
We have about 60 client machines, each collecting mail once every
two minutes. In this configuration, the number of pop3-login
processes increases by about ten an hour - apparently without
2004 Jun 14
1
vpopmail and open smtp relay
....5-patched/src/login-common/auth-connection.c Mon
Jun 14 13:21:22 2004
@@ -298,6 +298,9 @@
struct auth_connection *conn;
struct auth_request *request;
struct auth_login_request_new auth_request;
+#ifdef PASSDB_VPOPMAIL
+ struct client *_client = context;
+#endif
if (auth_reconnect)
auth_connect_missing();
@@ -325,6 +328,9 @@
auth_request.protocol = protocol;
auth_request.mech = request->mech;
auth_request.id = request->id;
+#ifdef PASSDB_VPOPMAIL
+ auth_request.client_ip = _client->ip;
+#endif
if (o_stream_send(request->conn->ou...