summaryrefslogtreecommitdiffstats
path: root/kmail/partmetadata.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-01 00:37:02 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-01 00:37:02 +0000
commitcc29364f06178f8f6b457384f2ec37a042bd9d43 (patch)
tree7c77a3184c698bbf9d98cef09fb1ba8124daceba /kmail/partmetadata.h
parent4f6c584bacc8c3c694228f36ada3de77a76614a6 (diff)
downloadtdepim-cc29364f06178f8f6b457384f2ec37a042bd9d43.tar.gz
tdepim-cc29364f06178f8f6b457384f2ec37a042bd9d43.zip
* Massive set of changes to bring in all fixes and enhancements from the Enterprise PIM branch
* Ensured that the Trinity changes were applied on top of those enhancements, and any redundancy removed * Added journal read support to the CalDAV resource * Fixed CalDAV resource to use events URL for tasks and journals when separate URL checkbox unchecked git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1170461 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmail/partmetadata.h')
-rw-r--r--kmail/partmetadata.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/kmail/partmetadata.h b/kmail/partmetadata.h
index 1bc93d81..ee6f51d3 100644
--- a/kmail/partmetadata.h
+++ b/kmail/partmetadata.h
@@ -18,6 +18,7 @@
#define _KMAIL_PARTMETADATA_H_
#include <gpgmepp/verificationresult.h>
+#include <gpgmepp/context.h>
#include <kpgp.h>
#include <tqstring.h>
@@ -34,6 +35,7 @@ namespace KMail {
isGoodSignature( false ),
isEncrypted( false ),
isDecryptable( false ),
+ inProgress( false ),
technicalProblem( false ),
isEncapsulatedRfc822Message( false )
{
@@ -50,10 +52,12 @@ namespace KMail {
TQDateTime creationTime;
TQString decryptionError;
TQString auditLog;
+ GpgME::Error auditLogError;
bool isSigned : 1;
bool isGoodSignature : 1;
bool isEncrypted : 1;
bool isDecryptable : 1;
+ bool inProgress : 1;
bool technicalProblem : 1;
bool isEncapsulatedRfc822Message : 1;
};