How to disable postgrey from a postfix server?

Viewed 2335

I have postgrey installed on a postfix mail server, but I don't want it anymore. I see no option to disable/enable postgrey in postfix. When I uninstall it, the server stops receiving mail.

Do I need to re-install my entire mail server without postgrey or is there a way to simply turn it off?

1 Answers

I turned it off with this:

in the file: /etc/postfix/main.cf...

  • on the line starting with: smtpd_recipient_restrictions =
  • removed check_policy_service inet:127.0.0.1:10023

Yeah! No reinstall!

Related