# HG changeset patch # User meillo@marmaro.de # Date 1279185325 -7200 # Node ID 6b4a101a2455e3aeacca6394607501a3931b84b0 # Parent dc89737b27aa3b5d6828be80edf0e79862cadc4c forgot to remove the pop3_login option in conf.c in the last commit diff -r dc89737b27aa -r 6b4a101a2455 src/conf.c --- a/src/conf.c Thu Jul 15 10:33:53 2010 +0200 +++ b/src/conf.c Thu Jul 15 11:15:25 2010 +0200 @@ -757,13 +757,7 @@ logwrite(LOG_WARNING, "%s ignored: not compiled with auth support.\n", lval); } #endif - else if (strcmp(lval, "pop3_login") == 0) { -#ifdef ENABLE_POP3 - route->pop3_login = g_strdup(rval); -#else - logwrite(LOG_WARNING, "pop3_login ignored: not compiled with pop support.\n"); -#endif - } else if (strcmp(lval, "pipe") == 0) { + else if (strcmp(lval, "pipe") == 0) { route->pipe = g_strdup(rval); } else if (strcmp(lval, "pipe_fromline") == 0) { route->pipe_fromline = parse_boolean(rval); @@ -857,10 +851,6 @@ if (r->auth_secret) g_free(r->auth_secret); #endif -#ifdef ENABLE_POP3 - if (r->pop3_login) - g_free(r->pop3_login); -#endif if (r->pipe) g_free(r->pipe); g_free(r);