Hello cripperz, I resolve this problem by activate smtp authentification for my virtual domain.
In my exim.conf I add this:
At the end of deny.
And modify this:
with this:
Now every user want send mail to my user's mail (or same mail that send it) or to external mail need to activate smtp authentification and need a valid login pass.
In my exim.conf I add this:
deny
! authenticated = *
condition = ${if match_domain{${domain:${address:$h_from:}}}{+local_domains}}
message = authentication required
At the end of deny.
And modify this:
accept hosts = +relay_hosts
with this:
accept hosts = +relay_hosts
endpass
message = authentication required
authenticated = *
Now every user want send mail to my user's mail (or same mail that send it) or to external mail need to activate smtp authentification and need a valid login pass.