wrote
I used this method mentioned. That may be why it is working for me.
I used this method mentioned. That may be why it is working for me.
You can stop them getting through using etc/antivirus.exim.
Find:
if error_message and $header_from: contains "[email protected]"
then
# looks like a real error message - just ignore it
finish
endif
#Than right under it put:
if $header_subject: contains "wrote"
then
seen finish
endif
It should look like this.
if error_message and $header_from: contains "[email protected]"
then
# looks like a real error message - just ignore it
finish
endif
if $header_subject: contains "wrote"
then
seen finish
endif