A penetration test has been run on one of my servers that runs Exim for mail and they have this complaint:
Description: The Mailserver on this host answers to VRFY and/or EXPN requests. VRFY and EXPN ask the server for information about an address. They are inherently unusable through firewalls, gateways, mail exchangers for part-time hosts, etc. OpenVAS suggests that, if you really want to publish this type of information, you use a mechanism that legitimate users actually know about, such as Finger or HTTP.
Solution: Disable VRFY and/or EXPN on your Mailserver. For postfix add 'disable_vrfy_command=yes' in 'main.cf'. For Sendmail add the option 'O PrivacyOptions=goaway'.
Unfortunately it's Exim and not Sendmail/postfix. Their output shows that running the EXPN command generates the response "550 Administrative prohibition". I tested this with telnet and it is correct.
Is there a way to stop it from replying at all? Thanks in advance