web-dev-qa-db-ja.com

dpkg:wordpressをインストールしようとすると、amavisd-new(--configure)パッケージの処理中にエラーが発生しました

私はUbuntuを初めて使用し、Ubuntuサーバー16.04をシステムにインストールしましたが、wordpressをインストールしようとすると、このエラーが表示されます。このエラーとは何ですか?この問題を解決するにはどうすればよいですか:

dpkg: error processing package amavisd-new (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 amavisd-new
E: Sub-process /usr/bin/dpkg returned an error code (1)
1
somu

解決策は、/etc/amavis/conf.d/05-node_idにFQND(完全修飾ドメイン名、例:mail.yourdomainname.com)を設定することです

次のようになります。

use strict;

# $myhostname is used by amavisd-new for node identification, and it is
# important to get it right (e.g. for ESMTP EHLO, loop detection, and so on).

chomp($myhostname = `hostname --fqdn`);

# To manually set $myhostname, edit the following line with the correct Fully
# Qualified Domain Name (FQDN) and remove the # at the beginning of the line.
#
$myhostname = "abc.def.ghi";

1;  # ensure a defined return
1
Turambar