[Pkg-kde-bugs-fwd] [Bug 92619] KMail cannot view encrypted emails

David Faure 92619@bugs.kde.org
10 Feb 2005 13:42:32 -0000


------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
You are a voter for the bug, or are watching someone who is.
         
http://bugs.kde.org/show_bug.cgi?id=92619         
faure kde org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED



------- Additional Comments From faure kde org  2005-02-10 14:42 -------
CVS commit by faure: 

Ignore pgpType config key, to fix migration issues, given that the kpgp backend isn't available anymore.
BUG: 92619


  M +5 -2      kpgp.cpp   1.73


--- kdepim/libkpgp/kpgp.cpp  #1.72:1.73
 @ -111,5 +111,8  @ Module::readConfig()
   showEncryptionResult = config->readBoolEntry("showEncryptionResult", true);
   mShowKeyApprovalDlg = config->readBoolEntry( "showKeysForApproval", true );
-  pgpType = (Module::PGPType) config->readNumEntry("pgpType", tAuto);
+  // We have no config GUI for this key anymore, and the KPGP backend isn't ported,
+  // so let's just use Auto all the time.  See #92619.
+  ///pgpType = (Module::PGPType) config->readNumEntry("pgpType", tAuto);
+  pgpType = tAuto;
   flagEncryptToSelf = config->readBoolEntry("encryptToSelf", true);
 }
 @ -121,5 +124,5  @ Module::writeConfig(bool sync)
   config->writeEntry("showEncryptionResult", showEncryptionResult);
   config->writeEntry( "showKeysForApproval", mShowKeyApprovalDlg );
-  config->writeEntry("pgpType", (int) pgpType);
+  //config->writeEntry("pgpType", (int) pgpType);
   config->writeEntry("encryptToSelf", flagEncryptToSelf);