The VRFY clause is a method of verifying the existence of a user on a mail server.
You can either verify the existence of particular user or use a wildcard verify (VRFY *) to ask the server to return the complete list of users.
To disable VRFY on IMSVA:
- Log in to your IMSVA box using root.
- Go to /opt/trend/imss/postfix/etc/postfix directory.
- Edit the main.cf file.
- Add the following line at the bottom of the file then save the changes:
disable_vrfy_command = yes
- Reload postfix using the following command:
postfix reload
- Verify if configuration is active using the following command:
postconf | grep -i vrfy
The result should be:[root@imsva postfix]# postconf | grep -i vrfy
disable_vrfy_command = yes
[root@imsva postfix]#