masqmail

diff src/smtp_in.c @ 204:5745edd5b769

removed the --disable-smtp-server configure option masqmail will now always have the possibility to listen on a port compiled in if you don't want it to listen on a port add this to your masqmail.conf: listen_addresses = "" also, if you don't start it as daemon it will not listen neither
author meillo@marmaro.de
date Fri, 16 Jul 2010 15:38:53 +0200
parents 6b78aaced5e1
children 3708b655a371
line diff
     1.1 --- a/src/smtp_in.c	Fri Jul 16 14:48:17 2010 +0200
     1.2 +++ b/src/smtp_in.c	Fri Jul 16 15:38:53 2010 +0200
     1.3 @@ -29,7 +29,6 @@
     1.4    RFC 2554 (ESMTP AUTH)
     1.5  */
     1.6  
     1.7 -#ifdef ENABLE_SMTP_SERVER
     1.8  
     1.9  smtp_cmd smtp_cmds[] = {
    1.10  	{SMTP_HELO, "HELO",},
    1.11 @@ -418,4 +417,3 @@
    1.12  		break;
    1.13  	}
    1.14  }
    1.15 -#endif