我尝试在已运行 postfix 和 dovecot 的 Ubuntu 服务器上设置垃圾邮件过滤。我发出了以下命令
sudo postconf -e 'content_filter = smtp-amavis:[127.0.0.1]:10024'
现在我想知道如何撤消这个命令?
答案1
postconf -d content_filter
将告诉您该参数的默认值content_filter
。
然后您可以使用postconf -e
将参数重置为其默认值。
我尝试在已运行 postfix 和 dovecot 的 Ubuntu 服务器上设置垃圾邮件过滤。我发出了以下命令
sudo postconf -e 'content_filter = smtp-amavis:[127.0.0.1]:10024'
现在我想知道如何撤消这个命令?
postconf -d content_filter
将告诉您该参数的默认值content_filter
。
然后您可以使用postconf -e
将参数重置为其默认值。