#include "config.h"#include <stdbool.h>#include <stdio.h>#include "private.h"#include "mutt/lib.h"#include "address/lib.h"#include "config/lib.h"#include "email/lib.h"#include "core/lib.h"#include "alias/lib.h"#include "gui/lib.h"#include "mutt.h"#include "functions.h"#include "lib.h"#include "browser/lib.h"#include "editor/lib.h"#include "history/lib.h"#include "ncrypt/lib.h"#include "question/lib.h"#include "hook.h"#include "mutt_logging.h"#include "muttlib.h"#include "wdata.h"#include "autocrypt/lib.h"
Include dependency graph for functions.c:Go to the source code of this file.
Functions | |
| static void | autocrypt_compose_menu (struct Email *e, const struct ConfigSubset *sub) |
| Autocrypt compose settings. | |
| static bool | edit_address_list (enum HeaderField field, struct AddressList *al) |
| Let the user edit the address list. | |
| void | update_crypt_info (struct EnvelopeWindowData *wdata) |
| Update the crypto info. | |
| static int | op_envelope_edit_bcc (struct EnvelopeWindowData *wdata, int op) |
| Edit the BCC list - Implements envelope_function_t -. | |
| static int | op_envelope_edit_cc (struct EnvelopeWindowData *wdata, int op) |
| Edit the CC list - Implements envelope_function_t -. | |
| static int | op_envelope_edit_fcc (struct EnvelopeWindowData *wdata, int op) |
| Enter a file to save a copy of this message in - Implements envelope_function_t -. | |
| static int | op_envelope_edit_from (struct EnvelopeWindowData *wdata, int op) |
| Edit the from field - Implements envelope_function_t -. | |
| static int | op_envelope_edit_reply_to (struct EnvelopeWindowData *wdata, int op) |
| Edit the Reply-To field - Implements envelope_function_t -. | |
| static int | op_envelope_edit_subject (struct EnvelopeWindowData *wdata, int op) |
| Edit the subject of this message - Implements envelope_function_t -. | |
| static int | op_envelope_edit_to (struct EnvelopeWindowData *wdata, int op) |
| Edit the TO list - Implements envelope_function_t -. | |
| static int | op_compose_pgp_menu (struct EnvelopeWindowData *wdata, int op) |
| Show PGP options - Implements envelope_function_t -. | |
| static int | op_compose_smime_menu (struct EnvelopeWindowData *wdata, int op) |
| Show S/MIME options - Implements envelope_function_t -. | |
| static int | op_compose_autocrypt_menu (struct EnvelopeWindowData *wdata, int op) |
| Show autocrypt compose menu options - Implements envelope_function_t -. | |
| static int | op_envelope_edit_followup_to (struct EnvelopeWindowData *wdata, int op) |
| Edit the Followup-To field - Implements envelope_function_t -. | |
| static int | op_envelope_edit_newsgroups (struct EnvelopeWindowData *wdata, int op) |
| Edit the newsgroups list - Implements envelope_function_t -. | |
| static int | op_envelope_edit_x_comment_to (struct EnvelopeWindowData *wdata, int op) |
| Edit the X-Comment-To field - Implements envelope_function_t -. | |
| int | env_function_dispatcher (struct MuttWindow *win, int op) |
| Perform an Envelope function - Implements function_dispatcher_t -. | |
Variables | |
| static const struct EnvelopeFunction | EnvelopeFunctions [] |
| All the NeoMutt functions that the Envelope supports. | |
Envelope functions.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file functions.c.
|
static |
Autocrypt compose settings.
| e | |
| sub | ConfigSubset |
Definition at line 63 of file functions.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Let the user edit the address list.
| [in] | field | Field to edit, e.g. HDR_FROM |
| [in,out] | al | AddressList to edit |
| true | The address list was changed |
Definition at line 106 of file functions.c.
Here is the call graph for this function:
Here is the caller graph for this function:| void update_crypt_info | ( | struct EnvelopeWindowData * | wdata | ) |
Update the crypto info.
| wdata | Envelope Window data |
Definition at line 148 of file functions.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
All the NeoMutt functions that the Envelope supports.
Definition at line 506 of file functions.c.