masqmail
diff src/masqmail.c @ 106:1f0d63713a1c
masqmail now *always* removes Bcc: headers
this is the most simple way and taken by other MTAs (courier, postfix) too
author | meillo@marmaro.de |
---|---|
date | Tue, 29 Jun 2010 10:37:18 +0200 |
parents | b76080154aec |
children | 9104234a56a5 |
line diff
1.1 --- a/src/masqmail.c Tue Jun 29 10:20:09 2010 +0200 1.2 +++ b/src/masqmail.c Tue Jun 29 10:37:18 2010 +0200 1.3 @@ -813,7 +813,7 @@ 1.4 1.5 case MODE_ACCEPT: 1.6 { 1.7 - guint accept_flags = (opt_t ? ACC_DEL_RCPTS | ACC_DEL_BCC | ACC_RCPT_FROM_HEAD : ACC_HEAD_FROM_RCPT) 1.8 + guint accept_flags = (opt_t ? ACC_DEL_RCPTS | ACC_RCPT_FROM_HEAD : ACC_HEAD_FROM_RCPT) 1.9 | (opt_i ? ACC_NODOT_TERM : ACC_NODOT_RELAX); 1.10 mode_accept(return_path, full_sender_name, accept_flags, &(argv[arg]), argc - arg); 1.11 exit(exit_failure ? EXIT_FAILURE : EXIT_SUCCESS);