NeoMutt  2025-09-05-55-g97fc89
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
message.c
Go to the documentation of this file.
1
23
29
30#include "config.h"
31#include <errno.h>
32#include <stdbool.h>
33#include <stdio.h>
34#include <sys/types.h>
35#include <unistd.h>
36#include "mutt/lib.h"
37#include "config/lib.h"
38#include "email/lib.h"
39#include "core/lib.h"
40#include "gui/lib.h"
41#include "mutt.h"
42#include "lib.h"
43#include "attach/lib.h"
44#include "expando/lib.h"
45#include "index/lib.h"
46#include "key/lib.h"
47#include "menu/lib.h"
48#include "ncrypt/lib.h"
49#include "question/lib.h"
50#include "copy.h"
51#include "globals.h"
52#include "mview.h"
53#include "mx.h"
54#include "protos.h"
55#ifdef USE_AUTOCRYPT
56#include "autocrypt/lib.h"
57#endif
58
60static const char *ExtPagerProgress = N_("all");
61
67static void process_protected_headers(struct Mailbox *m, struct Email *e)
68{
69 struct Envelope *prot_headers = NULL;
70
71 const bool c_crypt_protected_headers_read = cs_subset_bool(NeoMutt->sub, "crypt_protected_headers_read");
72#ifdef USE_AUTOCRYPT
73 const bool c_autocrypt = cs_subset_bool(NeoMutt->sub, "autocrypt");
74 if (!c_crypt_protected_headers_read && !c_autocrypt)
75 return;
76#else
77 if (!c_crypt_protected_headers_read)
78 return;
79#endif
80
81 /* Grab protected headers to update in the index */
82 if (e->security & SEC_SIGN)
83 {
84 /* Don't update on a bad signature.
85 *
86 * This is a simplification. It's possible the headers are in the
87 * encrypted part of a nested encrypt/signed. But properly handling that
88 * case would require more complexity in the decryption handlers, which
89 * I'm not sure is worth it. */
90 if (!(e->security & SEC_GOODSIGN))
91 return;
92
94 {
95 prot_headers = e->body->parts->mime_headers;
96 }
98 {
99 prot_headers = e->body->mime_headers;
100 }
101 }
102 if (!prot_headers && (e->security & SEC_ENCRYPT))
103 {
104 if (((WithCrypto & APPLICATION_PGP) != 0) &&
107 {
108 prot_headers = e->body->mime_headers;
109 }
111 {
112 prot_headers = e->body->mime_headers;
113 }
114 }
115
116 /* Update protected headers in the index and header cache. */
117 if (c_crypt_protected_headers_read && prot_headers && prot_headers->subject &&
118 !mutt_str_equal(e->env->subject, prot_headers->subject))
119 {
120 if (m->subj_hash && e->env->real_subj)
122
123 mutt_env_set_subject(e->env, prot_headers->subject);
124 FREE(&e->env->disp_subj);
125
126 if (m->subj_hash)
128
129 mx_save_hcache(m, e);
130
131 /* Also persist back to the message headers if this is set */
132 const bool c_crypt_protected_headers_save = cs_subset_bool(NeoMutt->sub, "crypt_protected_headers_save");
133 if (c_crypt_protected_headers_save)
134 {
136 e->changed = true;
137 m->changed = true;
138 }
139 }
140
141#ifdef USE_AUTOCRYPT
142 if (c_autocrypt && (e->security & SEC_ENCRYPT) && prot_headers && prot_headers->autocrypt_gossip)
143 {
145 }
146#endif
147}
148
163static int email_to_file(struct Message *msg, struct Buffer *tempfile,
164 struct Mailbox *m, struct Email *e, const char *header,
165 int wrap_len, CopyMessageFlags *cmflags)
166{
167 int rc = 0;
168 pid_t filterpid = -1;
169
171
172 char columns[16] = { 0 };
173 // win_pager might not be visible and have a size yet, so use win_index
174 snprintf(columns, sizeof(columns), "%d", wrap_len);
175 envlist_set(&NeoMutt->env, "COLUMNS", columns, true);
176
177 /* see if crypto is needed for this message. if so, we should exit curses */
178 if ((WithCrypto != 0) && e->security)
179 {
180 if (e->security & SEC_ENCRYPT)
181 {
185 goto cleanup;
186
187 *cmflags |= MUTT_CM_VERIFY;
188 }
189 else if (e->security & SEC_SIGN)
190 {
191 /* find out whether or not the verify signature */
192 /* L10N: Used for the $crypt_verify_sig prompt */
193 if (query_quadoption(_("Verify signature?"), NeoMutt->sub, "crypt_verify_sig") == MUTT_YES)
194 {
195 *cmflags |= MUTT_CM_VERIFY;
196 }
197 }
198 }
199
200 if (*cmflags & MUTT_CM_VERIFY || e->security & SEC_ENCRYPT)
201 {
202 if (e->security & APPLICATION_PGP)
203 {
204 if (!TAILQ_EMPTY(&e->env->from))
206
208 }
209
212 }
213
214 FILE *fp_filter_out = NULL;
215 buf_mktemp(tempfile);
216 FILE *fp_out = mutt_file_fopen(buf_string(tempfile), "w");
217 if (!fp_out)
218 {
219 mutt_error(_("Could not create temporary file"));
220 goto cleanup;
221 }
222
223 const char *const c_display_filter = cs_subset_string(NeoMutt->sub, "display_filter");
224 if (c_display_filter)
225 {
226 fp_filter_out = fp_out;
227 fp_out = NULL;
228 filterpid = filter_create_fd(c_display_filter, &fp_out, NULL, NULL, -1,
229 fileno(fp_filter_out), -1, NeoMutt->env);
230 if (filterpid < 0)
231 {
232 mutt_error(_("Can't create display filter"));
233 mutt_file_fclose(&fp_filter_out);
234 unlink(buf_string(tempfile));
235 goto cleanup;
236 }
237 }
238
239 if (header)
240 {
241 fputs(header, fp_out);
242 fputs("\n\n", fp_out);
243 }
244
245 const bool c_weed = cs_subset_bool(NeoMutt->sub, "weed");
246 CopyHeaderFlags chflags = (c_weed ? (CH_WEED | CH_REORDER) : CH_NO_FLAGS) |
248#ifdef USE_NOTMUCH
249 if (m->type == MUTT_NOTMUCH)
250 chflags |= CH_VIRTUAL;
251#endif
252 rc = mutt_copy_message(fp_out, e, msg, *cmflags, chflags, wrap_len);
253
254 if (((mutt_file_fclose(&fp_out) != 0) && (errno != EPIPE)) || (rc < 0))
255 {
256 mutt_error(_("Could not copy message"));
257 if (fp_filter_out)
258 {
259 filter_wait(filterpid);
260 mutt_file_fclose(&fp_filter_out);
261 }
262 mutt_file_unlink(buf_string(tempfile));
263 goto cleanup;
264 }
265
266 if (fp_filter_out && (filter_wait(filterpid) != 0))
268
269 mutt_file_fclose(&fp_filter_out); /* XXX - check result? */
270
271 if (WithCrypto)
272 {
273 /* update crypto information for this message */
275 e->security |= crypt_query(e->body);
276
277 /* Remove color cache for this message, in case there
278 * are color patterns for both ~g and ~V */
279 e->attr_color = NULL;
280
281 /* Process protected headers and autocrypt gossip headers */
283 }
284
285cleanup:
286 envlist_unset(&NeoMutt->env, "COLUMNS");
287 return rc;
288}
289
298int external_pager(struct MailboxView *mv, struct Email *e, const char *command)
299{
300 if (!mv || !mv->mailbox)
301 return -1;
302
303 struct Mailbox *m = mv->mailbox;
304 struct Message *msg = mx_msg_open(m, e);
305 if (!msg)
306 return -1;
307
308 struct Buffer *buf = buf_pool_get();
309 const struct Expando *c_pager_format = cs_subset_expando(NeoMutt->sub, "pager_format");
310 const int screen_width = RootWindow->state.cols;
311 mutt_make_string(buf, screen_width, c_pager_format, m, -1, e,
313
314 struct Buffer *tempfile = buf_pool_get();
315
317 int rc = email_to_file(msg, tempfile, m, e, buf_string(buf), screen_width, &cmflags);
318 if (rc < 0)
319 goto cleanup;
320
321 mutt_endwin();
322
323 struct Buffer *cmd = buf_pool_get();
324 buf_printf(cmd, "%s %s", command, buf_string(tempfile));
325 int r = mutt_system(buf_string(cmd));
326 if (r == -1)
327 mutt_error(_("Error running \"%s\""), buf_string(cmd));
328 unlink(buf_string(tempfile));
329 buf_pool_release(&cmd);
330
331 if (OptGui)
332 keypad(stdscr, true);
333 if (r != -1)
334 mutt_set_flag(m, e, MUTT_READ, true, true);
335 const bool c_prompt_after = cs_subset_bool(NeoMutt->sub, "prompt_after");
336 if ((r != -1) && c_prompt_after)
337 {
340 }
341 else
342 {
343 rc = 0;
344 }
345
346cleanup:
347 buf_pool_release(&buf);
348 mx_msg_close(m, &msg);
349 buf_pool_release(&tempfile);
350 return rc;
351}
352
359static void notify_crypto(struct Email *e, struct Message *msg, CopyMessageFlags cmflags)
360{
361 if ((WithCrypto != 0) && (e->security & APPLICATION_SMIME) && (cmflags & MUTT_CM_VERIFY))
362 {
363 if (e->security & SEC_GOODSIGN)
364 {
365 if (crypt_smime_verify_sender(e, msg) == 0)
366 mutt_message(_("S/MIME signature successfully verified"));
367 else
368 mutt_error(_("S/MIME certificate owner does not match sender"));
369 }
370 else if (e->security & SEC_PARTSIGN)
371 {
372 mutt_message(_("Warning: Part of this message has not been signed"));
373 }
374 else if (e->security & SEC_SIGN || e->security & SEC_BADSIGN)
375 {
376 mutt_error(_("S/MIME signature could NOT be verified"));
377 }
378 }
379
380 if ((WithCrypto != 0) && (e->security & APPLICATION_PGP) && (cmflags & MUTT_CM_VERIFY))
381 {
382 if (e->security & SEC_GOODSIGN)
383 mutt_message(_("PGP signature successfully verified"));
384 else if (e->security & SEC_PARTSIGN)
385 mutt_message(_("Warning: Part of this message has not been signed"));
386 else if (e->security & SEC_SIGN)
387 mutt_message(_("PGP signature could NOT be verified"));
388 }
389}
390
397static void squash_index_panel(struct Mailbox *m, struct MuttWindow *win_index,
398 struct MuttWindow *win_pager)
399{
400 const short c_pager_index_lines = cs_subset_number(NeoMutt->sub, "pager_index_lines");
401 if (c_pager_index_lines > 0)
402 {
403 win_index->size = MUTT_WIN_SIZE_FIXED;
404 win_index->req_rows = c_pager_index_lines;
405 win_index->parent->size = MUTT_WIN_SIZE_MINIMISE;
406 }
407 window_set_visible(win_index->parent, (c_pager_index_lines > 0));
408
409 window_set_visible(win_pager->parent, true);
410
411 struct MuttWindow *dlg = dialog_find(win_index);
413
414 // Force the menu to reframe itself
415 struct Menu *menu = win_index->wdata;
416 menu_set_index(menu, menu_get_index(menu));
417}
418
424static void expand_index_panel(struct MuttWindow *win_index, struct MuttWindow *win_pager)
425{
426 win_index->size = MUTT_WIN_SIZE_MAXIMISE;
428 win_index->parent->size = MUTT_WIN_SIZE_MAXIMISE;
430 window_set_visible(win_index->parent, true);
431
432 window_set_visible(win_pager->parent, false);
433
434 struct MuttWindow *dlg = dialog_find(win_index);
436}
437
445int mutt_display_message(struct MuttWindow *win_index, struct IndexSharedData *shared)
446{
447 struct MuttWindow *dlg = dialog_find(win_index);
448 struct MuttWindow *win_pager = window_find_child(dlg, WT_CUSTOM);
449 struct MuttWindow *win_pbar = window_find_child(dlg, WT_STATUS_BAR);
450 struct Buffer *tempfile = buf_pool_get();
451 struct Message *msg = NULL;
452
453 squash_index_panel(shared->mailbox, win_index, win_pager);
454
455 int rc = PAGER_LOOP_QUIT;
456 do
457 {
458 msg = mx_msg_open(shared->mailbox, shared->email);
459 if (!msg)
460 break;
461
463
464 buf_reset(tempfile);
465 // win_pager might not be visible and have a size yet, so use win_index
466 rc = email_to_file(msg, tempfile, shared->mailbox, shared->email, NULL,
467 win_index->state.cols, &cmflags);
468 if (rc < 0)
469 break;
470
471 notify_crypto(shared->email, msg, cmflags);
472
473 /* Invoke the built-in pager */
474 struct PagerData pdata = { 0 };
475 struct PagerView pview = { &pdata };
476
477 pdata.fp = msg->fp;
478 pdata.fname = buf_string(tempfile);
479
480 pview.mode = PAGER_MODE_EMAIL;
481 pview.banner = NULL;
482 pview.flags = MUTT_PAGER_MESSAGE |
483 (shared->email->body->nowrap ? MUTT_PAGER_NOWRAP : 0);
484 pview.win_index = win_index;
485 pview.win_pbar = win_pbar;
486 pview.win_pager = win_pager;
487
488 rc = dlg_pager(&pview);
489 mx_msg_close(shared->mailbox, &msg);
490 } while (rc == PAGER_LOOP_RELOAD);
491
493
494 mx_msg_close(shared->mailbox, &msg);
495 buf_pool_release(&tempfile);
496 return rc;
497}
void mutt_parse_mime_message(struct Email *e, FILE *fp)
Parse a MIME email.
Definition commands.c:596
GUI display the mailboxes in a side panel.
Autocrypt end-to-end encryption.
int mutt_autocrypt_process_gossip_header(struct Email *e, struct Envelope *prot_headers)
Parse an Autocrypt email gossip header.
Definition autocrypt.c:404
int buf_printf(struct Buffer *buf, const char *fmt,...)
Format a string overwriting a Buffer.
Definition buffer.c:161
void buf_reset(struct Buffer *buf)
Reset an existing Buffer.
Definition buffer.c:76
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
Definition buffer.h:96
const char * cs_subset_string(const struct ConfigSubset *sub, const char *name)
Get a string config item by name.
Definition helpers.c:291
short cs_subset_number(const struct ConfigSubset *sub, const char *name)
Get a number config item by name.
Definition helpers.c:143
bool cs_subset_bool(const struct ConfigSubset *sub, const char *name)
Get a boolean config item by name.
Definition helpers.c:47
const struct Expando * cs_subset_expando(const struct ConfigSubset *sub, const char *name)
Get an Expando config item by name.
Convenience wrapper for the config headers.
int mutt_copy_message(FILE *fp_out, struct Email *e, struct Message *msg, CopyMessageFlags cmflags, CopyHeaderFlags chflags, int wraplen)
Copy a message from a Mailbox.
Definition copy.c:908
Duplicate the structure of an entire email.
#define CH_DECODE
Do RFC2047 header decoding.
Definition copy.h:56
#define MUTT_CM_VERIFY
Do signature verification.
Definition copy.h:49
#define CH_FROM
Retain the "From " message separator?
Definition copy.h:58
#define MUTT_CM_DECODE
Decode the message body into text/plain.
Definition copy.h:40
#define CH_WEED
Weed the headers?
Definition copy.h:55
#define CH_REORDER
Re-order output of headers (specified by 'hdr_order')
Definition copy.h:61
#define MUTT_CM_CHARCONV
Perform character set conversions.
Definition copy.h:44
#define CH_DISPLAY
Display result to user.
Definition copy.h:72
uint32_t CopyHeaderFlags
Flags for mutt_copy_header(), e.g. CH_UPDATE.
Definition copy.h:52
uint16_t CopyMessageFlags
Flags for mutt_copy_message(), e.g. MUTT_CM_NOHEADER.
Definition copy.h:36
#define CH_VIRTUAL
Write virtual header lines too.
Definition copy.h:75
#define CH_NO_FLAGS
No flags are set.
Definition copy.h:53
#define MUTT_CM_DISPLAY
Output is displayed to the user.
Definition copy.h:41
Convenience wrapper for the core headers.
@ MUTT_NOTMUCH
'Notmuch' (virtual) Mailbox type
Definition mailbox.h:51
SecurityFlags mutt_is_multipart_signed(struct Body *b)
Is a message signed?
Definition crypt.c:408
SecurityFlags mutt_is_application_smime(struct Body *b)
Does the message use S/MIME?
Definition crypt.c:609
bool crypt_valid_passphrase(SecurityFlags flags)
Check that we have a usable passphrase, ask if not.
Definition crypt.c:131
int mutt_is_valid_multipart_pgp_encrypted(struct Body *b)
Is this a valid multi-part encrypted message?
Definition crypt.c:467
SecurityFlags mutt_is_malformed_multipart_pgp_encrypted(struct Body *b)
Check for malformed layout.
Definition crypt.c:504
SecurityFlags crypt_query(struct Body *b)
Check out the type of encryption used.
Definition crypt.c:687
void crypt_invoke_message(SecurityFlags type)
Display an informative message.
Definition cryptglue.c:156
void crypt_smime_getkeys(struct Envelope *env)
Wrapper for CryptModuleSpecs::smime_getkeys()
Definition cryptglue.c:454
void crypt_pgp_invoke_getkeys(struct Address *addr)
Wrapper for CryptModuleSpecs::pgp_invoke_getkeys()
Definition cryptglue.c:273
int crypt_smime_verify_sender(struct Email *e, struct Message *msg)
Wrapper for CryptModuleSpecs::smime_verify_sender()
Definition cryptglue.c:463
int mutt_any_key_to_continue(const char *s)
Prompt the user to 'press any key' and wait.
Definition curs_lib.c:174
void mutt_endwin(void)
Shutdown curses.
Definition curs_lib.c:152
struct MuttWindow * dialog_find(struct MuttWindow *win)
Find the parent Dialog of a Window.
Definition dialog.c:89
int mutt_make_string(struct Buffer *buf, size_t max_cols, const struct Expando *exp, struct Mailbox *m, int inpgr, struct Email *e, MuttFormatFlags flags, const char *progress)
Create formatted strings using mailbox expandos.
Definition dlg_index.c:802
Structs that make up an email.
void mutt_env_set_subject(struct Envelope *env, const char *subj)
Set both subject and real_subj to subj.
Definition envelope.c:68
#define MUTT_ENV_CHANGED_SUBJECT
Protected header update.
Definition envelope.h:37
bool envlist_set(char ***envp, const char *name, const char *value, bool overwrite)
Set an environment variable.
Definition envlist.c:88
bool envlist_unset(char ***envp, const char *name)
Unset an environment variable.
Definition envlist.c:136
Parse Expando string.
void mutt_file_unlink(const char *s)
Delete a file, carefully.
Definition file.c:159
#define mutt_file_fclose(FP)
Definition file.h:139
#define mutt_file_fopen(PATH, MODE)
Definition file.h:138
void mutt_set_flag(struct Mailbox *m, struct Email *e, enum MessageType flag, bool bf, bool upd_mbox)
Set a flag on an email.
Definition flags.c:56
int km_dokey(enum MenuType mtype, GetChFlags flags)
Determine what a keypress should do.
Definition get.c:537
void mutt_unget_ch(int ch)
Return a keystroke to the input buffer.
Definition get.c:115
bool OptGui
(pseudo) when the gui (and curses) are started
Definition globals.c:59
int dlg_pager(struct PagerView *pview)
Display an email, attachment, or help, in a window -.
Definition dlg_pager.c:218
#define mutt_error(...)
Definition logging2.h:93
#define mutt_message(...)
Definition logging2.h:92
Convenience wrapper for the gui headers.
struct HashElem * mutt_hash_insert(struct HashTable *table, const char *strkey, void *data)
Add a new element to the Hash Table (with string keys)
Definition hash.c:335
void mutt_hash_delete(struct HashTable *table, const char *strkey, const void *data)
Remove an element from a Hash Table.
Definition hash.c:427
GUI manage the main index (list of emails)
Manage keymappings.
#define GETCH_NO_FLAGS
No flags are set.
Definition lib.h:53
#define FREE(x)
Definition memory.h:62
GUI present the user with a selectable list.
int menu_get_index(struct Menu *menu)
Get the current selection in the Menu.
Definition menu.c:160
MenuRedrawFlags menu_set_index(struct Menu *menu, int index)
Set the current selection in the Menu.
Definition menu.c:174
int filter_wait(pid_t pid)
Wait for the exit of a process and return its status.
Definition filter.c:220
pid_t filter_create_fd(const char *cmd, FILE **fp_in, FILE **fp_out, FILE **fp_err, int fdin, int fdout, int fderr, char **envlist)
Run a command on a pipe (optionally connect stdin/stdout)
Definition filter.c:62
Convenience wrapper for the library headers.
#define N_(a)
Definition message.h:32
#define _(a)
Definition message.h:28
bool mutt_str_equal(const char *a, const char *b)
Compare two strings.
Definition string.c:660
Many unsorted constants and some structs.
@ MUTT_READ
Messages that have been read.
Definition mutt.h:73
void mutt_window_reflow(struct MuttWindow *win)
Resize a Window and its children.
void window_set_visible(struct MuttWindow *win, bool visible)
Set a Window visible or hidden.
struct MuttWindow * window_find_child(struct MuttWindow *win, enum WindowType type)
Recursively find a child Window of a given type.
@ WT_CUSTOM
Window with a custom drawing function.
Definition mutt_window.h:95
@ WT_STATUS_BAR
Status Bar containing extra info about the Index/Pager/etc.
#define MUTT_WIN_SIZE_UNLIMITED
Use as much space as possible.
Definition mutt_window.h:53
@ MUTT_WIN_SIZE_FIXED
Window has a fixed size.
Definition mutt_window.h:48
@ MUTT_WIN_SIZE_MINIMISE
Window size depends on its children.
Definition mutt_window.h:50
@ MUTT_WIN_SIZE_MAXIMISE
Window wants as much space as possible.
Definition mutt_window.h:49
View of a Mailbox.
int mx_msg_close(struct Mailbox *m, struct Message **ptr)
Close a message.
Definition mx.c:1185
struct Message * mx_msg_open(struct Mailbox *m, struct Email *e)
Return a stream pointer for a message.
Definition mx.c:1139
int mx_save_hcache(struct Mailbox *m, struct Email *e)
Save message to the header cache - Wrapper for MxOps::msg_save_hcache()
Definition mx.c:1788
API for mailboxes.
API for encryption/signing of emails.
#define SEC_GOODSIGN
Email has a valid signature.
Definition lib.h:86
#define APPLICATION_PGP
Use PGP to encrypt/sign.
Definition lib.h:96
#define SEC_BADSIGN
Email has a bad signature.
Definition lib.h:87
#define APPLICATION_SMIME
Use SMIME to encrypt/sign.
Definition lib.h:97
#define SEC_PARTSIGN
Not all parts of the email is signed.
Definition lib.h:88
#define SEC_ENCRYPT
Email is encrypted.
Definition lib.h:84
#define WithCrypto
Definition lib.h:122
#define SEC_SIGN
Email is signed.
Definition lib.h:85
GUI display a file/email/help in a viewport with paging.
@ PAGER_LOOP_RELOAD
Reload the Pager from scratch.
Definition lib.h:152
@ PAGER_LOOP_QUIT
Quit the Pager.
Definition lib.h:151
#define MUTT_PAGER_NOWRAP
Format for term width, ignore $wrap.
Definition lib.h:71
@ PAGER_MODE_EMAIL
Pager is invoked via 1st path. The mime part is selected automatically.
Definition lib.h:136
#define MUTT_PAGER_MESSAGE
Definition lib.h:75
static int email_to_file(struct Message *msg, struct Buffer *tempfile, struct Mailbox *m, struct Email *e, const char *header, int wrap_len, CopyMessageFlags *cmflags)
Decrypt, decode and weed an Email into a file.
Definition message.c:163
static void expand_index_panel(struct MuttWindow *win_index, struct MuttWindow *win_pager)
Restore the Index Panel.
Definition message.c:424
static const char * ExtPagerProgress
Status bar message when entire message is visible in the Pager.
Definition message.c:60
static void process_protected_headers(struct Mailbox *m, struct Email *e)
Get the protected header and update the index.
Definition message.c:67
int mutt_display_message(struct MuttWindow *win_index, struct IndexSharedData *shared)
Display a message in the pager.
Definition message.c:445
static void notify_crypto(struct Email *e, struct Message *msg, CopyMessageFlags cmflags)
Notify the user about the crypto status of the Email.
Definition message.c:359
static void squash_index_panel(struct Mailbox *m, struct MuttWindow *win_index, struct MuttWindow *win_pager)
Shrink or hide the Index Panel.
Definition message.c:397
int external_pager(struct MailboxView *mv, struct Email *e, const char *command)
Display a message in an external program.
Definition message.c:298
struct Buffer * buf_pool_get(void)
Get a Buffer from the pool.
Definition pool.c:82
void buf_pool_release(struct Buffer **ptr)
Return a Buffer to the pool.
Definition pool.c:96
Prototypes for many functions.
int mutt_system(const char *cmd)
Run an external command.
Definition system.c:52
@ MUTT_YES
User answered 'Yes', or assume 'Yes'.
Definition quad.h:39
Ask the user a question.
enum QuadOption query_quadoption(const char *prompt, struct ConfigSubset *sub, const char *name)
Ask the user a quad-question.
Definition question.c:377
#define TAILQ_FIRST(head)
Definition queue.h:780
#define TAILQ_EMPTY(head)
Definition queue.h:778
#define MUTT_FORMAT_NO_FLAGS
No flags are set.
Definition render.h:33
struct MuttWindow * RootWindow
Parent of all Windows.
Definition rootwin.c:106
struct Body * parts
parts of a multipart or message/rfc822
Definition body.h:73
struct Envelope * mime_headers
Memory hole protected headers.
Definition body.h:76
bool nowrap
Do not wrap the output in the pager.
Definition body.h:89
String manipulation buffer.
Definition buffer.h:36
The envelope/body of an email.
Definition email.h:39
struct Envelope * env
Envelope information.
Definition email.h:68
SecurityFlags security
bit 0-10: flags, bit 11,12: application, bit 13: traditional pgp See: ncrypt/lib.h pgplib....
Definition email.h:43
struct Body * body
List of MIME parts.
Definition email.h:69
bool changed
Email has been edited.
Definition email.h:77
const struct AttrColor * attr_color
Color-pair to use when displaying in the index.
Definition email.h:112
The header of an Email.
Definition envelope.h:57
char *const subject
Email's subject.
Definition envelope.h:70
unsigned char changed
Changed fields, e.g. MUTT_ENV_CHANGED_SUBJECT.
Definition envelope.h:90
struct AutocryptHeader * autocrypt_gossip
Autocrypt Gossip header.
Definition envelope.h:88
char *const real_subj
Offset of the real subject.
Definition envelope.h:71
char * disp_subj
Display subject (modified copy of subject)
Definition envelope.h:72
struct AddressList from
Email's 'From' list.
Definition envelope.h:59
Parsed Expando trees.
Definition expando.h:41
Data shared between Index, Pager and Sidebar.
Definition shared_data.h:37
struct Email * email
Currently selected Email.
Definition shared_data.h:42
struct Mailbox * mailbox
Current Mailbox.
Definition shared_data.h:41
View of a Mailbox.
Definition mview.h:40
struct Mailbox * mailbox
Current Mailbox.
Definition mview.h:51
A mailbox.
Definition mailbox.h:79
bool changed
Mailbox has been modified.
Definition mailbox.h:110
enum MailboxType type
Mailbox type.
Definition mailbox.h:102
struct HashTable * subj_hash
Hash Table: "subject" -> Email.
Definition mailbox.h:124
Definition lib.h:79
A local copy of an email.
Definition message.h:34
FILE * fp
pointer to the message data
Definition message.h:35
struct WindowState state
Current state of the Window.
void * wdata
Private data.
short req_rows
Number of rows required.
struct MuttWindow * parent
Parent Window.
enum MuttWindowSize size
Type of Window, e.g. MUTT_WIN_SIZE_FIXED.
Container for Accounts, Notifications.
Definition neomutt.h:43
char ** env
Private copy of the environment variables.
Definition neomutt.h:55
struct ConfigSubset * sub
Inherited config items.
Definition neomutt.h:47
Data to be displayed by PagerView.
Definition lib.h:159
const char * fname
Name of the file to read.
Definition lib.h:163
FILE * fp
Source stream.
Definition lib.h:161
Paged view into some data.
Definition lib.h:170
struct MuttWindow * win_index
Index Window.
Definition lib.h:176
struct PagerData * pdata
Data that pager displays. NOTNULL.
Definition lib.h:171
enum PagerMode mode
Pager mode.
Definition lib.h:172
PagerFlags flags
Additional settings to tweak pager's function.
Definition lib.h:173
const char * banner
Title to display in status bar.
Definition lib.h:174
struct MuttWindow * win_pbar
Pager Bar Window.
Definition lib.h:177
struct MuttWindow * win_pager
Pager Window.
Definition lib.h:178
short cols
Number of columns, can be MUTT_WIN_SIZE_UNLIMITED.
Definition mutt_window.h:61
#define buf_mktemp(buf)
Definition tmp.h:33
@ MENU_PAGER
Pager pager (email viewer)
Definition type.h:47