mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
8c29a5da09
When the certificate that signs a message is known to be valid, GMime is capable of reporting on the e-mail address embedded in the certificate. We pass this information along to the caller of "notmuch show", as often only the e-mail address of the certificate has actually been checked/verified. Furthermore, signature verification should probably at some point compare the e-mail address of the caller against the sender address of the message itself. Having to parse what gmime thinks is a "userid" to extract an e-mail address seems clunky and unnecessary if gmime already thinks it knows what the e-mail address is. See id:878s41ax6t.fsf@fifthhorseman.net for more motivation and discussion. Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
81 lines
2.1 KiB
C
81 lines
2.1 KiB
C
#ifndef _GMIME_EXTRA_H
|
|
#define _GMIME_EXTRA_H
|
|
#include <gmime/gmime.h>
|
|
#include <talloc.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
GMimeStream *g_mime_stream_stdout_new (void);
|
|
|
|
/* Return a GMime stream for this open file descriptor, un-gzipping if
|
|
* necessary */
|
|
GMimeStream *g_mime_stream_gzfile_new (int fd);
|
|
|
|
/* Return a GMime stream for this path, un-gzipping if
|
|
* necessary */
|
|
GMimeStream *g_mime_stream_gzfile_open (const char *filename);
|
|
|
|
/**
|
|
* 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
|
|
*/
|
|
char *g_mime_message_get_address_string (GMimeMessage *message, GMimeAddressType type);
|
|
|
|
InternetAddressList *g_mime_message_get_addresses (GMimeMessage *message, GMimeAddressType type);
|
|
|
|
/**
|
|
* return talloc allocated date string
|
|
*/
|
|
|
|
char *g_mime_message_get_date_string (void *ctx, GMimeMessage *message);
|
|
|
|
/**
|
|
* glib allocated list of From: addresses
|
|
*/
|
|
|
|
InternetAddressList *g_mime_message_get_from (GMimeMessage *message);
|
|
|
|
|
|
/**
|
|
* return string for From: address
|
|
* (owned by gmime)
|
|
*/
|
|
const char *g_mime_message_get_from_string (GMimeMessage *message);
|
|
|
|
InternetAddressList *g_mime_message_get_reply_to_list (GMimeMessage *message);
|
|
|
|
/**
|
|
* return talloc allocated reply-to string
|
|
*/
|
|
char *g_mime_message_get_reply_to_string (void *ctx, GMimeMessage *message);
|
|
|
|
void g_mime_parser_set_scan_from (GMimeParser *parser, gboolean flag);
|
|
|
|
gboolean g_mime_signature_status_good (GMimeSignatureStatus status);
|
|
|
|
gboolean g_mime_signature_status_bad (GMimeSignatureStatus status);
|
|
|
|
gboolean g_mime_signature_status_error (GMimeSignatureStatus status);
|
|
|
|
gint64 g_mime_utils_header_decode_date_unix (const char *date);
|
|
|
|
/**
|
|
* Return string for valid User ID (or NULL if no valid User ID exists)
|
|
*/
|
|
const char *g_mime_certificate_get_valid_userid (GMimeCertificate *cert);
|
|
/**
|
|
* Return string for valid e-mail address (or NULL if no valid e-mail address exists)
|
|
*/
|
|
const char *g_mime_certificate_get_valid_email (GMimeCertificate *cert);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|