masqmail

diff src/deliver.c @ 189:dc89737b27aa

removed the pop-before-smtp (smtp-after-pop) function this kind of authentication is superseded by SMTP AUTH today removing it is a step towards removing the POP stuff completely If you still rely on pop-before-smtp, stay with 0.2.x or run an arbitrary pop client before
author meillo@marmaro.de
date Thu, 15 Jul 2010 10:33:53 +0200
parents 3190e6864452
children 4fd237550525
line diff
     1.1 --- a/src/deliver.c	Thu Jul 15 00:33:09 2010 +0200
     1.2 +++ b/src/deliver.c	Thu Jul 15 10:33:53 2010 +0200
     1.3 @@ -335,13 +335,6 @@
     1.4  		port = route->mail_host->port;
     1.5  	}
     1.6  
     1.7 -#ifdef ENABLE_POP3
     1.8 -	if (route->pop3_login) {
     1.9 -		if (!(pop_before_smtp(route->pop3_login)))
    1.10 -			return FALSE;
    1.11 -	}
    1.12 -#endif
    1.13 -
    1.14  	if ((psb = (route->wrapper ? smtp_out_open_child(route->wrapper) : smtp_out_open(host, port, res_list)))) {
    1.15  
    1.16  		if (route->wrapper) {