NeoMutt  2023-05-17-56-ga67199
Teaching an old dog new tricks
DOXYGEN
smime_getkeys()

Get the S/MIME keys required to encrypt this email. More...

+ Collaboration diagram for smime_getkeys():

Functions

void smime_class_getkeys (struct Envelope *env)
 Implements CryptModuleSpecs::smime_getkeys() -. More...
 

Detailed Description

Get the S/MIME keys required to encrypt this email.

Parameters
envEnvelope of the email

Function Documentation

◆ smime_class_getkeys()

void smime_class_getkeys ( struct Envelope env)

Implements CryptModuleSpecs::smime_getkeys() -.

Definition at line 813 of file smime.c.

814{
815 const bool c_smime_decrypt_use_default_key = cs_subset_bool(NeoMutt->sub, "smime_decrypt_use_default_key");
816 const char *const c_smime_default_key = cs_subset_string(NeoMutt->sub, "smime_default_key");
817 if (c_smime_decrypt_use_default_key && c_smime_default_key)
818 {
819 const char *const c_smime_keys = cs_subset_path(NeoMutt->sub, "smime_keys");
820 buf_printf(&SmimeKeyToUse, "%s/%s", NONULL(c_smime_keys), c_smime_default_key);
821 const char *const c_smime_certificates = cs_subset_path(NeoMutt->sub, "smime_certificates");
822 buf_printf(&SmimeCertToUse, "%s/%s", NONULL(c_smime_certificates), c_smime_default_key);
823 return;
824 }
825
826 struct Address *a = NULL;
827 TAILQ_FOREACH(a, &env->to, entries)
828 {
829 if (mutt_addr_is_user(a))
830 {
832 return;
833 }
834 }
835
836 TAILQ_FOREACH(a, &env->cc, entries)
837 {
838 if (mutt_addr_is_user(a))
839 {
841 return;
842 }
843 }
844
845 struct Address *f = mutt_default_from(NeoMutt->sub);
847 mutt_addr_free(&f);
848}
void mutt_addr_free(struct Address **ptr)
Free a single Address.
Definition: address.c:454
bool mutt_addr_is_user(const struct Address *addr)
Does the address belong to the user.
Definition: alias.c:569
int buf_printf(struct Buffer *buf, const char *fmt,...)
Format a string overwriting a Buffer.
Definition: buffer.c:173
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
Definition: buffer.h:90
const char * cs_subset_string(const struct ConfigSubset *sub, const char *name)
Get a string config item by name.
Definition: helpers.c:317
const char * cs_subset_path(const struct ConfigSubset *sub, const char *name)
Get a path config item by name.
Definition: helpers.c:194
bool cs_subset_bool(const struct ConfigSubset *sub, const char *name)
Get a boolean config item by name.
Definition: helpers.c:73
#define TAILQ_FOREACH(var, head, field)
Definition: queue.h:725
struct Address * mutt_default_from(struct ConfigSubset *sub)
Get a default 'from' Address.
Definition: send.c:1465
static void getkeys(const char *mailbox)
Get the keys for a mailbox.
Definition: smime.c:778
static struct Buffer SmimeKeyToUse
Smime key to use.
Definition: smime.c:84
static struct Buffer SmimeCertToUse
Smime certificate to use.
Definition: smime.c:86
#define NONULL(x)
Definition: string2.h:37
An email address.
Definition: address.h:36
struct Buffer * mailbox
Mailbox and host address.
Definition: address.h:38
struct AddressList to
Email's 'To' list.
Definition: envelope.h:60
struct AddressList cc
Email's 'Cc' list.
Definition: envelope.h:61
Container for Accounts, Notifications.
Definition: neomutt.h:37
struct ConfigSubset * sub
Inherited config items.
Definition: neomutt.h:39
+ Here is the call graph for this function: