comparison src/conf.c @ 164:5b621742b2e7

removed the mserver feature i.e. the functionality itself in the code the `mserver' value of online_detect and `mserver_iface' config options and the --enable-mserver configure option All functionality, however, is still available through mservdetect
author meillo@marmaro.de
date Thu, 08 Jul 2010 22:01:33 +0200
parents 6dd3a289989b
children 91f8ee6514f5
comparison
equal deleted inserted replaced
163:3914d7cabfbc 164:5b621742b2e7
549 conf.online_detect = g_strdup(rval); 549 conf.online_detect = g_strdup(rval);
550 else if (strcmp(lval, "online_file") == 0) 550 else if (strcmp(lval, "online_file") == 0)
551 conf.online_file = g_strdup(rval); 551 conf.online_file = g_strdup(rval);
552 else if (strcmp(lval, "online_pipe") == 0) 552 else if (strcmp(lval, "online_pipe") == 0)
553 conf.online_pipe = g_strdup(rval); 553 conf.online_pipe = g_strdup(rval);
554 else if (strcmp(lval, "mserver_iface") == 0)
555 conf.mserver_iface = parse_interface(rval, 224);
556 else if (strcmp(lval, "do_queue") == 0) 554 else if (strcmp(lval, "do_queue") == 0)
557 conf.do_queue = parse_boolean(rval); 555 conf.do_queue = parse_boolean(rval);
558 else if (strncmp(lval, "get.", 4) == 0) { 556 else if (strncmp(lval, "get.", 4) == 0) {
559 #ifdef ENABLE_POP3 557 #ifdef ENABLE_POP3
560 table_pair *pair = create_pair_string(&(lval[4]), rval); 558 table_pair *pair = create_pair_string(&(lval[4]), rval);