Chris Dos a écrit : >[snip] > > Well, the simple fact is that they want me to process the bounce backs and > not send the bounce back to the > user, but process it internally. Is there a way to do this without using > VERP? >
you can use smtp_generic_maps to rewrite the sender address when outbound mail is being relayed. /(.*)@(myclient\.example)$/ bounces+$1...@bounces.example.com then you can use whatever program to process any bounces to such addresses. but this won't tell you which email address caused the bounce. if you need to detect which address caused the bounce, then you need VERP. you can implement that by setting up a local list manager, and have your clients post to this list manager instead of posting directly... etc.