X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=util%2Fgmime-extra.h;h=4407be3358a3576e49316386c5d5ebdc72cff99d;hp=6b74724e48f9aaa957b6291208e32e690c65e33d;hb=2b3224a6c4be6b6c038a9956448187e0a402687b;hpb=fd6e4a99535cb5142381803bc4ea4f4f79d8d459 diff --git a/util/gmime-extra.h b/util/gmime-extra.h index 6b74724e..4407be33 100644 --- a/util/gmime-extra.h +++ b/util/gmime-extra.h @@ -13,6 +13,9 @@ GMimeStream *g_mime_stream_stdout_new(void); #define GMIME_ADDRESS_TYPE_CC GMIME_RECIPIENT_TYPE_CC #define GMIME_ADDRESS_TYPE_BCC GMIME_RECIPIENT_TYPE_BCC +#define g_mime_2_6_unref(obj) g_object_unref (obj) +#define g_mime_certificate_get_fpr16(cert) g_mime_certificate_get_key_id (cert) + #else /* GMime >= 3.0 */ typedef GMimeAddressType GMimeRecipientType; @@ -51,8 +54,13 @@ typedef GMimeTrust GMimeCertificateTrust; #define GMIME_CERTIFICATE_TRUST_FULLY GMIME_TRUST_FULL #define GMIME_CERTIFICATE_TRUST_ULTIMATE GMIME_TRUST_ULTIMATE +#define g_mime_2_6_unref(obj) /*ignore*/ #endif +/** + * Get last 16 hex digits of fingerprint ("keyid") + */ +const char *g_mime_certificate_get_fpr16 (GMimeCertificate *cert); /** * Return the contents of the appropriate address header as a string * Should be freed using g_free @@ -94,4 +102,6 @@ gboolean g_mime_signature_status_good (GMimeSignatureStatus status); gboolean g_mime_signature_status_bad (GMimeSignatureStatus status); gboolean g_mime_signature_status_error (GMimeSignatureError status); + +gint64 g_mime_utils_header_decode_date_unix (const char *date); #endif