changeset 190:6b4a101a2455

forgot to remove the pop3_login option in conf.c in the last commit
author meillo@marmaro.de
date Thu, 15 Jul 2010 11:15:25 +0200 (2010-07-15)
parents dc89737b27aa
children f186650135c3
files src/conf.c
diffstat 1 files changed, 1 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- 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);