NeoMutt  2023-05-17-56-ga67199
Teaching an old dog new tricks
DOXYGEN
Autocrypt Function API

Prototype for a Autocrypt Function. More...

+ Collaboration diagram for Autocrypt Function API:

Functions

static int op_autocrypt_create_acct (struct AutocryptData *ad, int op)
 Create a new autocrypt account - Implements autocrypt_function_t -. More...
 
static int op_autocrypt_delete_acct (struct AutocryptData *ad, int op)
 Delete the current account - Implements autocrypt_function_t -. More...
 
static int op_autocrypt_toggle_active (struct AutocryptData *ad, int op)
 Toggle the current account active/inactive - Implements autocrypt_function_t -. More...
 
static int op_autocrypt_toggle_prefer (struct AutocryptData *ad, int op)
 Toggle the current account prefer-encrypt flag - Implements autocrypt_function_t -. More...
 
static int op_exit (struct AutocryptData *ad, int op)
 Exit this menu - Implements autocrypt_function_t -. More...
 

Detailed Description

Prototype for a Autocrypt Function.

Parameters
menuMenu
opOperation to perform, e.g. OP_AUTOCRYPT_CREATE_ACCT
Return values
enumFunctionRetval

Function Documentation

◆ op_autocrypt_create_acct()

static int op_autocrypt_create_acct ( struct AutocryptData ad,
int  op 
)
static

Create a new autocrypt account - Implements autocrypt_function_t -.

Definition at line 78 of file functions.c.

79{
80 if (mutt_autocrypt_account_init(false) == 0)
82
83 return FR_SUCCESS;
84}
int mutt_autocrypt_account_init(bool prompt)
Create a new Autocrypt account.
Definition: autocrypt.c:153
@ FR_SUCCESS
Valid function - successfully performed.
Definition: dispatcher.h:39
bool populate_menu(struct Menu *menu)
Add the Autocrypt data to a Menu.
struct Menu * menu
Autocrypt Menu.
Definition: functions.h:36
+ Here is the call graph for this function:

◆ op_autocrypt_delete_acct()

static int op_autocrypt_delete_acct ( struct AutocryptData ad,
int  op 
)
static

Delete the current account - Implements autocrypt_function_t -.

Definition at line 89 of file functions.c.

90{
91 if (!ad->menu->mdata)
92 return FR_ERROR;
93
94 const int index = menu_get_index(ad->menu);
95 struct AccountEntry *entry = ((struct AccountEntry *) ad->menu->mdata) + index;
96 char msg[128] = { 0 };
97 snprintf(msg, sizeof(msg),
98 // L10N: Confirmation message when deleting an autocrypt account
99 _("Really delete account \"%s\"?"), buf_string(entry->addr->mailbox));
100 if (mutt_yesorno(msg, MUTT_NO) != MUTT_YES)
101 return FR_NO_ACTION;
102
104 populate_menu(ad->menu);
105
106 return FR_SUCCESS;
107}
int mutt_autocrypt_db_account_delete(struct AutocryptAccount *acct)
Delete an Account from the Autocrypt database.
Definition: db.c:425
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
Definition: buffer.h:90
@ FR_ERROR
Valid function - error occurred.
Definition: dispatcher.h:38
@ FR_NO_ACTION
Valid function - no action performed.
Definition: dispatcher.h:37
int menu_get_index(struct Menu *menu)
Get the current selection in the Menu.
Definition: menu.c:155
#define _(a)
Definition: message.h:28
@ MUTT_NO
User answered 'No', or assume 'No'.
Definition: quad.h:38
@ MUTT_YES
User answered 'Yes', or assume 'Yes'.
Definition: quad.h:39
enum QuadOption mutt_yesorno(const char *msg, enum QuadOption def)
Ask the user a Yes/No question.
Definition: question.c:194
An entry in the Autocrypt account Menu.
Definition: private.h:44
struct Address * addr
Email address associated with the account.
Definition: private.h:47
struct AutocryptAccount * account
Account details.
Definition: private.h:46
struct Buffer * mailbox
Mailbox and host address.
Definition: address.h:38
void * mdata
Private data.
Definition: lib.h:138
+ Here is the call graph for this function:

◆ op_autocrypt_toggle_active()

static int op_autocrypt_toggle_active ( struct AutocryptData ad,
int  op 
)
static

Toggle the current account active/inactive - Implements autocrypt_function_t -.

Definition at line 112 of file functions.c.

113{
114 if (!ad->menu->mdata)
115 return FR_ERROR;
116
117 const int index = menu_get_index(ad->menu);
118 struct AccountEntry *entry = ((struct AccountEntry *) ad->menu->mdata) + index;
119 toggle_active(entry);
121
122 return FR_SUCCESS;
123}
static void toggle_active(struct AccountEntry *entry)
Toggle whether an Autocrypt account is active.
Definition: functions.c:47
#define MENU_REDRAW_FULL
Redraw everything.
Definition: lib.h:60
void menu_queue_redraw(struct Menu *menu, MenuRedrawFlags redraw)
Queue a request for a redraw.
Definition: menu.c:179
+ Here is the call graph for this function:

◆ op_autocrypt_toggle_prefer()

static int op_autocrypt_toggle_prefer ( struct AutocryptData ad,
int  op 
)
static

Toggle the current account prefer-encrypt flag - Implements autocrypt_function_t -.

Definition at line 128 of file functions.c.

129{
130 if (!ad->menu->mdata)
131 return FR_ERROR;
132
133 const int index = menu_get_index(ad->menu);
134 struct AccountEntry *entry = (struct AccountEntry *) (ad->menu->mdata) + index;
137
138 return FR_SUCCESS;
139}
static void toggle_prefer_encrypt(struct AccountEntry *entry)
Toggle whether an Autocrypt account prefers encryption.
Definition: functions.c:63
+ Here is the call graph for this function:

◆ op_exit()

static int op_exit ( struct AutocryptData ad,
int  op 
)
static

Exit this menu - Implements autocrypt_function_t -.

Definition at line 144 of file functions.c.

145{
146 ad->done = true;
147 return FR_SUCCESS;
148}
bool done
Should we close the Dialog?
Definition: functions.h:35