I was trying to setup spam filtering on Ubuntu server with Postfix and Dovecot already running. I issued the following command:

sudo postconf -e 'content_filter = smtp-amavis:[127.0.0.1]:10024'

Now I want to know that how can I undo this command?

link|improve this question
Please don't cross post – Sathya Sep 9 '11 at 17:33
feedback

closed as off topic by Sathya Sep 9 '11 at 17:31

Questions on Super User are expected to generally relate to computer software or computer hardware, within the scope defined in the faq.

1 Answer

postconf -e makes changes to the postfix main.cf configuration file. You'll probably have to use an editor like emacs or vi to open the main.cf file, locate that line, remove it, then execute postfix reload.

link|improve this answer
postconf only ever edits main.cf. – grawity Sep 9 '11 at 16:28
okay - I've updated the answer.. – vjones Sep 9 '11 at 16:30
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.