masqmail-0.2

diff src/masqmail.c @ 110:c678d0342451

changed name ACC_NODOT_TERM to ACC_DOT_IGNORE for better understanding this is only a cosmetic change
author meillo@marmaro.de
date Tue, 29 Jun 2010 11:40:37 +0200
parents 9104234a56a5
children 5ec5e6637049
line diff
     1.1 --- a/src/masqmail.c	Tue Jun 29 11:34:53 2010 +0200
     1.2 +++ b/src/masqmail.c	Tue Jun 29 11:40:37 2010 +0200
     1.3 @@ -814,7 +814,7 @@
     1.4  	case MODE_ACCEPT:
     1.5  		{
     1.6  			guint accept_flags = (opt_t ? ACC_DEL_RCPTS | ACC_RCPT_FROM_HEAD : 0)
     1.7 -			                     | (opt_i ? ACC_NODOT_TERM : ACC_NODOT_RELAX);
     1.8 +			                     | (opt_i ? ACC_DOT_IGNORE : ACC_NODOT_RELAX);
     1.9  			mode_accept(return_path, full_sender_name, accept_flags, &(argv[arg]), argc - arg);
    1.10  			exit(exit_failure ? EXIT_FAILURE : EXIT_SUCCESS);
    1.11  		}