Index: encrypt_list.inc =================================================================== RCS file: /repository/imp/templates/compose/encrypt_list.inc,v retrieving revision 2.3 diff -u -r2.3 encrypt_list.inc --- encrypt_list.inc 16 Jul 2003 02:02:59 -0000 2.3 +++ encrypt_list.inc 27 Sep 2005 19:34:54 -0000 @@ -3,7 +3,7 @@ $encryptOpt = $prefs->getValue('default_encrypt'); } $enc_options = array(IMP_ENCRYPT_NONE => _("No Encryption")); - if ($conf['utils']['gnupg'] && $prefs->getValue('use_pgp')) { + if (isset($conf['utils']['gnupg']) && $prefs->getValue('use_pgp')) { $enc_options[IMP_PGP_ENCRYPT] = _("PGP Encrypt Message"); $enc_options[IMP_PGP_SIGN] = _("PGP Sign Message"); $enc_options[IMP_PGP_SIGNENC] = _("PGP Sign/Encrypt Message");