On Wed, Dec 15, 2021 at 01:07:54PM +0100, "j...@dodin.org" <j...@dodin.org> wrote:
> Le 15/12/2021 à 12:42, Wietse Venema a écrit : > > j...@dodin.org: > > > > jdd: "| /usr/lib/news/bin/mailpost test" > > > > Which file is that, and how is Postfix configured to use that file? > > /etc/aliases > > https://paste.opensuse.org/50454178 # postconf -n # alias_maps = [...] I think the problem is that your alias_maps parameter is empty. That means you've instructed Postfix not to use the /etc/aliases file. If you delete the line in /etc/postfix/main.cf that sets the alias_maps parameter to be empty, then it'll have a better chance of working. The default is: alias_maps = hash:/etc/aliases, nis:mail.aliases But if you don't have NIS, you might want to set it to: alias_maps = hash:/etc/aliases cheers, raf