masqmail

diff src/online.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 3b344bf57162
children 3708b655a371
line diff
     1.1 --- a/src/online.c	Thu Jul 08 14:04:39 2010 +0200
     1.2 +++ b/src/online.c	Thu Jul 08 22:01:33 2010 +0200
     1.3 @@ -21,7 +21,6 @@
     1.4  #include <sys/wait.h>
     1.5  
     1.6  #include "masqmail.h"
     1.7 -#include "mserver.h"
     1.8  #include "peopen.h"
     1.9  
    1.10  gchar *connection_name;
    1.11 @@ -117,11 +116,6 @@
    1.12  			return NULL;
    1.13  		}
    1.14  
    1.15 -#ifdef ENABLE_MSERVER
    1.16 -	} else if (strcmp(conf.online_detect, "mserver") == 0) {
    1.17 -		DEBUG(3) debugf("connection method 'mserver'\n");
    1.18 -		return mserver_detect_online(conf.mserver_iface);
    1.19 -#endif
    1.20  	} else if (strcmp(conf.online_detect, "pipe") == 0) {
    1.21  		DEBUG(3) debugf("connection method 'pipe'\n");
    1.22  		if (conf.online_pipe)