Hi All,
I followed the manual at
http://doc.otrs.org/3.0/en/html/configure-pgp.html but it still giving me the same error (gpg: No private key found to decrypt this message!)
I also tried hard coding the below code to Config.pm file of OTRS, but seems not working.
# --------------------------------------------------- #
# PGP settings (supports gpg) #
# --------------------------------------------------- #
$Self->{PGP} = 1;
$Self->{'PGP::Bin'} = '/usr/bin/gpg';
$Self->{'PGP::Options'} = '--homedir /opt/otrs/.gnupg/ --batch --no-tty --yes';
$Self->{'PGP::Key::Password'}->{'E2BEE90D'} = 'password1!';
I have entered correctly the private key and password at Crypt::PGP>PGP::Key::Password
I can see all the public keys at Admin>PGP Keys and able to send encrypted message. My problem is when customer sends encrypted email with my public key, I am getting the above error and they message was not decrypted by OTRS using his private key.
Anyone can help me out?Many Thanks in advance.