NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
set_sender()

Set the sender of the email. More...

+ Collaboration diagram for set_sender():

Functions

void pgp_gpgme_set_sender (const char *sender)
 Set the sender of the email - Implements CryptModuleSpecs::set_sender() -.
 

Detailed Description

Set the sender of the email.

Parameters
senderEmail address

Function Documentation

◆ pgp_gpgme_set_sender()

void pgp_gpgme_set_sender ( const char *  sender)

Set the sender of the email - Implements CryptModuleSpecs::set_sender() -.

Definition at line 4110 of file crypt_gpgme.c.

4111{
4112 mutt_debug(LL_DEBUG2, "setting to: %s\n", sender);
4114 CurrentSender = mutt_str_dup(sender);
4115}
static char * CurrentSender
Email address of the sender.
Definition: crypt_gpgme.c:96
#define mutt_debug(LEVEL,...)
Definition: logging2.h:89
@ LL_DEBUG2
Log at debug level 2.
Definition: logging2.h:44
#define FREE(x)
Definition: memory.h:45
char * mutt_str_dup(const char *str)
Copy a string, safely.
Definition: string.c:253
+ Here is the call graph for this function: