雷鸟的自签名证书

我想在thunderbird中设置自签名证书,但在尝试发送消息时收到了一些警告:

Unable to put a digital signature. Make sure that the certificates specified in the account settings are valid and reliable. 

我已经做了下一步:
1.创buildCA证书:

 openssl req -new -x509 -extensions v3_ca -keyout private/cakey.pem -out cacert.pem -days 365 -config ./openssl.conf 

2.为用户制作pkcs#12容器:

 openssl req -new -nodes -out $name-req.pem -keyout private/$name-key.pem -days 365 -config ./openssl.conf openssl ca -out $name-cert.pem -days 365 -config ./openssl.conf -infiles $name-req.pem openssl pkcs12 -export -in $name-cert.pem -inkey private/$name-key.pem -certfile cacert.pem -name "description" -out $name-cert.p12 

另外,我已经添加* .p12文件和CA证书给雷鸟。 我该怎么修复? 非常感谢。

为了在Thunderbrid中使用证书签名邮件,使用相应的CA证书

  1. 必须添加到thunderbird中的证书存储区(首选项 – >高级 – >证书)
  2. 必须设置电子邮件签名信任位(右键单击证书)。