masqmail
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 |
parents | dc89737b27aa |
children | f186650135c3 |
files | src/conf.c |
diffstat | 1 files changed, 1 insertions(+), 11 deletions(-) [+] |
line diff
1.1 --- a/src/conf.c Thu Jul 15 10:33:53 2010 +0200 1.2 +++ b/src/conf.c Thu Jul 15 11:15:25 2010 +0200 1.3 @@ -757,13 +757,7 @@ 1.4 logwrite(LOG_WARNING, "%s ignored: not compiled with auth support.\n", lval); 1.5 } 1.6 #endif 1.7 - else if (strcmp(lval, "pop3_login") == 0) { 1.8 -#ifdef ENABLE_POP3 1.9 - route->pop3_login = g_strdup(rval); 1.10 -#else 1.11 - logwrite(LOG_WARNING, "pop3_login ignored: not compiled with pop support.\n"); 1.12 -#endif 1.13 - } else if (strcmp(lval, "pipe") == 0) { 1.14 + else if (strcmp(lval, "pipe") == 0) { 1.15 route->pipe = g_strdup(rval); 1.16 } else if (strcmp(lval, "pipe_fromline") == 0) { 1.17 route->pipe_fromline = parse_boolean(rval); 1.18 @@ -857,10 +851,6 @@ 1.19 if (r->auth_secret) 1.20 g_free(r->auth_secret); 1.21 #endif 1.22 -#ifdef ENABLE_POP3 1.23 - if (r->pop3_login) 1.24 - g_free(r->pop3_login); 1.25 -#endif 1.26 if (r->pipe) 1.27 g_free(r->pipe); 1.28 g_free(r);