NeoMutt  2024-03-23-147-g885fbc
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
handler.h File Reference

Decide how to display email content. More...

#include <iconv.h>
#include <stdbool.h>
+ Include dependency graph for handler.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

int mutt_body_handler (struct Body *b, struct State *state)
 Handler for the Body of an email.
 
bool mutt_can_decode (struct Body *b)
 Will decoding the attachment produce any output.
 
void mutt_decode_attachment (const struct Body *b, struct State *state)
 Decode an email's attachment.
 
void mutt_decode_base64 (struct State *state, size_t len, bool istext, iconv_t cd)
 Decode base64-encoded text.
 
bool mutt_prefer_as_attachment (struct Body *b)
 Do we want this part as an attachment?
 

Detailed Description

Decide how to display email content.

Authors
  • Richard Russon
  • Pietro Cerutti

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 handler.h.

Function Documentation

◆ mutt_body_handler()

int mutt_body_handler ( struct Body b,
struct State state 
)

Handler for the Body of an email.

Parameters
bBody of the email
stateState to work with
Return values
0Success
-1Error

Definition at line 1631 of file handler.c.

1632{
1633 if (!b || !state)
1634 return -1;
1635
1636 bool plaintext = false;
1637 handler_t handler = NULL;
1638 handler_t encrypted_handler = NULL;
1639 int rc = 0;
1640 static unsigned short recurse_level = 0;
1641
1642 const int oflags = state->flags;
1643 const bool is_attachment_display = (oflags & STATE_DISPLAY_ATTACH);
1644
1645 if (recurse_level >= MUTT_MIME_MAX_DEPTH)
1646 {
1647 mutt_debug(LL_DEBUG1, "recurse level too deep. giving up\n");
1648 return 1;
1649 }
1650 recurse_level++;
1651
1652 /* first determine which handler to use to process this part */
1653
1654 if (is_autoview(b))
1655 {
1656 handler = autoview_handler;
1657 state->flags &= ~STATE_CHARCONV;
1658 }
1659 else if (b->type == TYPE_TEXT)
1660 {
1661 if (mutt_istr_equal("plain", b->subtype))
1662 {
1663 const bool c_reflow_text = cs_subset_bool(NeoMutt->sub, "reflow_text");
1664 /* avoid copying this part twice since removing the transfer-encoding is
1665 * the only operation needed. */
1667 {
1668 encrypted_handler = crypt_pgp_application_handler;
1669 handler = encrypted_handler;
1670 }
1671 else if (c_reflow_text &&
1672 mutt_istr_equal("flowed", mutt_param_get(&b->parameter, "format")))
1673 {
1674 handler = rfc3676_handler;
1675 }
1676 else
1677 {
1678 handler = text_plain_handler;
1679 }
1680 }
1681 else if (mutt_istr_equal("enriched", b->subtype))
1682 {
1683 handler = text_enriched_handler;
1684 }
1685 else /* text body type without a handler */
1686 {
1687 plaintext = false;
1688 }
1689 }
1690 else if (b->type == TYPE_MESSAGE)
1691 {
1692 if (mutt_is_message_type(b->type, b->subtype))
1693 handler = message_handler;
1694 else if (mutt_istr_equal("delivery-status", b->subtype))
1695 plaintext = true;
1696 else if (mutt_istr_equal("external-body", b->subtype))
1697 handler = external_body_handler;
1698 }
1699 else if (b->type == TYPE_MULTIPART)
1700 {
1701 const char *const c_show_multipart_alternative = cs_subset_string(NeoMutt->sub, "show_multipart_alternative");
1702 if (!mutt_str_equal("inline", c_show_multipart_alternative) &&
1703 mutt_istr_equal("alternative", b->subtype))
1704 {
1705 handler = alternative_handler;
1706 }
1707 else if (!mutt_str_equal("inline", c_show_multipart_alternative) &&
1708 mutt_istr_equal("multilingual", b->subtype))
1709 {
1710 handler = multilingual_handler;
1711 }
1712 else if ((WithCrypto != 0) && mutt_istr_equal("signed", b->subtype))
1713 {
1714 if (!mutt_param_get(&b->parameter, "protocol"))
1715 mutt_error(_("Error: multipart/signed has no protocol"));
1716 else if (state->flags & STATE_VERIFY)
1717 handler = mutt_signed_handler;
1718 }
1720 {
1721 encrypted_handler = valid_pgp_encrypted_handler;
1722 handler = encrypted_handler;
1723 }
1725 {
1726 encrypted_handler = malformed_pgp_encrypted_handler;
1727 handler = encrypted_handler;
1728 }
1729
1730 if (!handler)
1731 handler = multipart_handler;
1732
1733 if ((b->encoding != ENC_7BIT) && (b->encoding != ENC_8BIT) && (b->encoding != ENC_BINARY))
1734 {
1735 mutt_debug(LL_DEBUG1, "Bad encoding type %d for multipart entity, assuming 7 bit\n",
1736 b->encoding);
1737 b->encoding = ENC_7BIT;
1738 }
1739 }
1740 else if ((WithCrypto != 0) && (b->type == TYPE_APPLICATION))
1741 {
1742 if (OptDontHandlePgpKeys && mutt_istr_equal("pgp-keys", b->subtype))
1743 {
1744 /* pass raw part through for key extraction */
1745 plaintext = true;
1746 }
1747 else if (((WithCrypto & APPLICATION_PGP) != 0) && mutt_is_application_pgp(b))
1748 {
1749 encrypted_handler = crypt_pgp_application_handler;
1750 handler = encrypted_handler;
1751 }
1752 else if (((WithCrypto & APPLICATION_SMIME) != 0) && mutt_is_application_smime(b))
1753 {
1754 encrypted_handler = crypt_smime_application_handler;
1755 handler = encrypted_handler;
1756 }
1757 }
1758
1759 if ((plaintext || handler) && (is_attachment_display || !mutt_prefer_as_attachment(b)))
1760 {
1761 /* only respect disposition == attachment if we're not
1762 * displaying from the attachment menu (i.e. pager) */
1763 /* Prevent encrypted attachments from being included in replies
1764 * unless $include_encrypted is set. */
1765 const bool c_include_encrypted = cs_subset_bool(NeoMutt->sub, "include_encrypted");
1766 if ((state->flags & STATE_REPLYING) && (state->flags & STATE_FIRSTDONE) &&
1767 encrypted_handler && !c_include_encrypted)
1768 {
1769 goto cleanup;
1770 }
1771
1772 rc = run_decode_and_handler(b, state, handler, plaintext);
1773 }
1774 else if (state->flags & STATE_DISPLAY)
1775 {
1776 /* print hint to use attachment menu for disposition == attachment
1777 * if we're not already being called from there */
1778 const bool c_honor_disposition = cs_subset_bool(NeoMutt->sub, "honor_disposition");
1779 struct Buffer *msg = buf_pool_get();
1780
1781 if (is_attachment_display)
1782 {
1783 if (c_honor_disposition && (b->disposition == DISP_ATTACH))
1784 {
1785 buf_strcpy(msg, _("[-- This is an attachment --]\n"));
1786 }
1787 else
1788 {
1789 /* L10N: %s/%s is a MIME type, e.g. "text/plain". */
1790 buf_printf(msg, _("[-- %s/%s is unsupported --]\n"), TYPE(b), b->subtype);
1791 }
1792 }
1793 else
1794 {
1795 char keystroke[128] = { 0 };
1796 if (km_expand_key(keystroke, sizeof(keystroke),
1797 km_find_func(MENU_PAGER, OP_VIEW_ATTACHMENTS)))
1798 {
1799 if (c_honor_disposition && (b->disposition == DISP_ATTACH))
1800 {
1801 /* L10N: %s expands to a keystroke/key binding, e.g. 'v'. */
1802 buf_printf(msg, _("[-- This is an attachment (use '%s' to view this part) --]\n"),
1803 keystroke);
1804 }
1805 else
1806 {
1807 /* L10N: %s/%s is a MIME type, e.g. "text/plain".
1808 The last %s expands to a keystroke/key binding, e.g. 'v'. */
1809 buf_printf(msg, _("[-- %s/%s is unsupported (use '%s' to view this part) --]\n"),
1810 TYPE(b), b->subtype, keystroke);
1811 }
1812 }
1813 else
1814 {
1815 if (c_honor_disposition && (b->disposition == DISP_ATTACH))
1816 {
1817 buf_strcpy(msg, _("[-- This is an attachment (need 'view-attachments' bound to key) --]\n"));
1818 }
1819 else
1820 {
1821 /* L10N: %s/%s is a MIME type, e.g. "text/plain". */
1822 buf_printf(msg, _("[-- %s/%s is unsupported (need 'view-attachments' bound to key) --]\n"),
1823 TYPE(b), b->subtype);
1824 }
1825 }
1826 }
1827 state_mark_attach(state);
1828 state_printf(state, "%s", buf_string(msg));
1829 buf_pool_release(&msg);
1830 }
1831
1832cleanup:
1833 recurse_level--;
1834 state->flags = oflags | (state->flags & STATE_FIRSTDONE);
1835 if (rc != 0)
1836 {
1837 mutt_debug(LL_DEBUG1, "Bailing on attachment of type %s/%s\n", TYPE(b),
1838 NONULL(b->subtype));
1839 }
1840
1841 return rc;
1842}
int buf_printf(struct Buffer *buf, const char *fmt,...)
Format a string overwriting a Buffer.
Definition: buffer.c:160
size_t buf_strcpy(struct Buffer *buf, const char *s)
Copy a string into a Buffer.
Definition: buffer.c:394
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:292
bool cs_subset_bool(const struct ConfigSubset *sub, const char *name)
Get a boolean config item by name.
Definition: helpers.c:48
SecurityFlags mutt_is_application_smime(struct Body *b)
Does the message use S/MIME?
Definition: crypt.c:595
int mutt_is_valid_multipart_pgp_encrypted(struct Body *b)
Is this a valid multi-part encrypted message?
Definition: crypt.c:453
SecurityFlags mutt_is_malformed_multipart_pgp_encrypted(struct Body *b)
Check for malformed layout.
Definition: crypt.c:490
SecurityFlags mutt_is_application_pgp(const struct Body *b)
Does the message use PGP?
Definition: crypt.c:534
bool mutt_is_message_type(int type, const char *subtype)
Determine if a mime type matches a message or not.
Definition: parse.c:1493
bool OptDontHandlePgpKeys
(pseudo) used to extract PGP keys
Definition: globals.c:64
int crypt_pgp_application_handler(struct Body *b_email, struct State *state)
Wrapper for CryptModuleSpecs::application_handler() - Implements handler_t -.
Definition: cryptglue.c:236
static int alternative_handler(struct Body *b_email, struct State *state)
Handler for multipart alternative emails - Implements handler_t -.
Definition: handler.c:941
int text_enriched_handler(struct Body *b_email, struct State *state)
Handler for enriched text - Implements handler_t -.
Definition: enriched.c:466
static int text_plain_handler(struct Body *b_email, struct State *state)
Handler for plain text - Implements handler_t -.
Definition: handler.c:684
int crypt_smime_application_handler(struct Body *b_email, struct State *state)
Wrapper for CryptModuleSpecs::application_handler() - Implements handler_t -.
Definition: cryptglue.c:443
static int autoview_handler(struct Body *b_email, struct State *state)
Handler for autoviewable attachments - Implements handler_t -.
Definition: handler.c:531
static int external_body_handler(struct Body *b_email, struct State *state)
Handler for external-body emails - Implements handler_t -.
Definition: handler.c:769
int rfc3676_handler(struct Body *b_email, struct State *state)
Handler for format=flowed - Implements handler_t -.
Definition: rfc3676.c:323
static int malformed_pgp_encrypted_handler(struct Body *b_email, struct State *state)
Handler for invalid pgp-encrypted emails - Implements handler_t -.
Definition: handler.c:1500
static int valid_pgp_encrypted_handler(struct Body *b_email, struct State *state)
Handler for valid pgp-encrypted emails - Implements handler_t -.
Definition: handler.c:1471
static int message_handler(struct Body *b_email, struct State *state)
Handler for message/rfc822 body parts - Implements handler_t -.
Definition: handler.c:711
static int multipart_handler(struct Body *b_email, struct State *state)
Handler for multipart emails - Implements handler_t -.
Definition: handler.c:1237
static int multilingual_handler(struct Body *b_email, struct State *state)
Handler for multi-lingual emails - Implements handler_t -.
Definition: handler.c:1129
int mutt_signed_handler(struct Body *b_email, struct State *state)
Handler for "multipart/signed" - Implements handler_t -.
Definition: crypt.c:1133
#define mutt_error(...)
Definition: logging2.h:92
#define mutt_debug(LEVEL,...)
Definition: logging2.h:89
static bool is_autoview(struct Body *b)
Should email body be filtered by mailcap.
Definition: handler.c:485
bool mutt_prefer_as_attachment(struct Body *b)
Do we want this part as an attachment?
Definition: handler.c:1849
int(* handler_t)(struct Body *b_email, struct State *state)
Definition: handler.c:85
static int run_decode_and_handler(struct Body *b, struct State *state, handler_t handler, bool plaintext)
Run an appropriate decoder for an email.
Definition: handler.c:1326
struct Keymap * km_find_func(enum MenuType mtype, int func)
Find a function's mapping in a Menu.
Definition: lib.c:512
int km_expand_key(char *s, size_t len, struct Keymap *map)
Get the key string bound to a Keymap.
Definition: lib.c:460
@ LL_DEBUG1
Log at debug level 1.
Definition: logging2.h:43
@ ENC_7BIT
7-bit text
Definition: mime.h:49
@ ENC_BINARY
Binary.
Definition: mime.h:53
@ ENC_8BIT
8-bit text
Definition: mime.h:50
#define MUTT_MIME_MAX_DEPTH
Definition: mime.h:69
@ TYPE_MESSAGE
Type: 'message/*'.
Definition: mime.h:35
@ TYPE_MULTIPART
Type: 'multipart/*'.
Definition: mime.h:37
@ TYPE_APPLICATION
Type: 'application/*'.
Definition: mime.h:33
@ TYPE_TEXT
Type: 'text/*'.
Definition: mime.h:38
@ DISP_ATTACH
Content is attached.
Definition: mime.h:63
#define TYPE(body)
Definition: mime.h:89
#define _(a)
Definition: message.h:28
void state_mark_attach(struct State *state)
Write a unique marker around content.
Definition: state.c:72
int state_printf(struct State *state, const char *fmt,...)
Write a formatted string to the State.
Definition: state.c:186
#define STATE_DISPLAY
Output is displayed to the user.
Definition: state.h:33
#define STATE_DISPLAY_ATTACH
We are displaying an attachment.
Definition: state.h:41
#define STATE_FIRSTDONE
The first attachment has been done.
Definition: state.h:40
#define STATE_REPLYING
Are we replying?
Definition: state.h:39
#define STATE_VERIFY
Perform signature verification.
Definition: state.h:34
bool mutt_istr_equal(const char *a, const char *b)
Compare two strings, ignoring case.
Definition: string.c:721
bool mutt_str_equal(const char *a, const char *b)
Compare two strings.
Definition: string.c:709
#define APPLICATION_PGP
Use PGP to encrypt/sign.
Definition: lib.h:90
#define APPLICATION_SMIME
Use SMIME to encrypt/sign.
Definition: lib.h:91
#define WithCrypto
Definition: lib.h:116
char * mutt_param_get(const struct ParameterList *pl, const char *s)
Find a matching Parameter.
Definition: parameter.c:85
struct Buffer * buf_pool_get(void)
Get a Buffer from the pool.
Definition: pool.c:81
void buf_pool_release(struct Buffer **ptr)
Return a Buffer to the pool.
Definition: pool.c:94
#define NONULL(x)
Definition: string2.h:37
struct ParameterList parameter
Parameters of the content-type.
Definition: body.h:62
unsigned int disposition
content-disposition, ContentDisposition
Definition: body.h:42
char * subtype
content-type subtype
Definition: body.h:60
unsigned int encoding
content-transfer-encoding, ContentEncoding
Definition: body.h:41
unsigned int type
content-type primary type, ContentType
Definition: body.h:40
String manipulation buffer.
Definition: buffer.h:36
Container for Accounts, Notifications.
Definition: neomutt.h:41
struct ConfigSubset * sub
Inherited config items.
Definition: neomutt.h:45
StateFlags flags
Flags, e.g. STATE_DISPLAY.
Definition: state.h:52
@ MENU_PAGER
Pager pager (email viewer)
Definition: type.h:55
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ mutt_can_decode()

bool mutt_can_decode ( struct Body b)

Will decoding the attachment produce any output.

Parameters
bBody of email to test
Return values
trueDecoding the attachment will produce output

Definition at line 1865 of file handler.c.

1866{
1867 if (is_autoview(b))
1868 return true;
1869 if (b->type == TYPE_TEXT)
1870 return true;
1871 if (b->type == TYPE_MESSAGE)
1872 return true;
1873 if (b->type == TYPE_MULTIPART)
1874 {
1875 if (WithCrypto)
1876 {
1877 if (mutt_istr_equal(b->subtype, "signed") || mutt_istr_equal(b->subtype, "encrypted"))
1878 {
1879 return true;
1880 }
1881 }
1882
1883 for (struct Body *part = b->parts; part; part = part->next)
1884 {
1885 if (mutt_can_decode(part))
1886 return true;
1887 }
1888 }
1889 else if ((WithCrypto != 0) && (b->type == TYPE_APPLICATION))
1890 {
1892 return true;
1894 return true;
1895 }
1896
1897 return false;
1898}
bool mutt_can_decode(struct Body *b)
Will decoding the attachment produce any output.
Definition: handler.c:1865
The body of an email.
Definition: body.h:36
struct Body * parts
parts of a multipart or message/rfc822
Definition: body.h:72
struct Body * next
next attachment in the list
Definition: body.h:71
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ mutt_decode_attachment()

void mutt_decode_attachment ( const struct Body b,
struct State state 
)

Decode an email's attachment.

Parameters
bBody of the email
stateState of text being processed

Definition at line 1905 of file handler.c.

1906{
1907 int istext = mutt_is_text_part(b) && (b->disposition == DISP_INLINE);
1908 iconv_t cd = ICONV_T_INVALID;
1909
1910 if (!mutt_file_seek(state->fp_in, b->offset, SEEK_SET))
1911 {
1912 return;
1913 }
1914
1915 if (istext && (b->charset || (state->flags & STATE_CHARCONV)))
1916 {
1917 const char *charset = b->charset;
1918 if (!charset)
1919 {
1920 charset = mutt_param_get(&b->parameter, "charset");
1921 if (!charset && !slist_is_empty(cc_assumed_charset()))
1923 }
1924 if (charset && cc_charset())
1926 }
1927
1928 switch (b->encoding)
1929 {
1931 decode_quoted(state, b->length,
1932 istext || (((WithCrypto & APPLICATION_PGP) != 0) &&
1934 cd);
1935 break;
1936 case ENC_BASE64:
1937 mutt_decode_base64(state, b->length,
1938 istext || (((WithCrypto & APPLICATION_PGP) != 0) &&
1940 cd);
1941 break;
1942 case ENC_UUENCODED:
1943 decode_uuencoded(state, b->length,
1944 istext || (((WithCrypto & APPLICATION_PGP) != 0) &&
1946 cd);
1947 break;
1948 default:
1949 decode_xbit(state, b->length,
1950 istext || (((WithCrypto & APPLICATION_PGP) != 0) &&
1952 cd);
1953 break;
1954 }
1955}
const char * cc_charset(void)
Get the cached value of $charset.
Definition: config_cache.c:116
const struct Slist * cc_assumed_charset(void)
Get the cached value of $assumed_charset.
Definition: config_cache.c:101
bool mutt_file_seek(FILE *fp, LOFF_T offset, int whence)
Wrapper for fseeko with error handling.
Definition: file.c:775
static void decode_uuencoded(struct State *state, long len, bool istext, iconv_t cd)
Decode uuencoded text.
Definition: handler.c:372
void mutt_decode_base64(struct State *state, size_t len, bool istext, iconv_t cd)
Decode base64-encoded text.
Definition: handler.c:1532
static void decode_quoted(struct State *state, long len, bool istext, iconv_t cd)
Decode an attachment encoded with quoted-printable.
Definition: handler.c:308
static void decode_xbit(struct State *state, long len, bool istext, iconv_t cd)
Decode xbit-encoded text.
Definition: handler.c:169
@ ENC_UUENCODED
UUEncoded text.
Definition: mime.h:54
@ ENC_BASE64
Base-64 encoded text.
Definition: mime.h:52
@ ENC_QUOTED_PRINTABLE
Quoted-printable text.
Definition: mime.h:51
@ DISP_INLINE
Content is inline.
Definition: mime.h:62
iconv_t mutt_ch_iconv_open(const char *tocode, const char *fromcode, uint8_t flags)
Set up iconv for conversions.
Definition: charset.c:593
const char * mutt_ch_get_default_charset(const struct Slist *const assumed_charset)
Get the default character set.
Definition: charset.c:464
#define MUTT_ICONV_HOOK_FROM
apply charset-hooks to fromcode
Definition: charset.h:73
#define ICONV_T_INVALID
Error value for iconv functions.
Definition: charset.h:101
bool slist_is_empty(const struct Slist *list)
Is the slist empty?
Definition: slist.c:142
#define STATE_CHARCONV
Do character set conversions.
Definition: state.h:37
bool mutt_is_text_part(const struct Body *b)
Is this part of an email in plain text?
Definition: muttlib.c:442
LOFF_T offset
offset where the actual data begins
Definition: body.h:52
LOFF_T length
length (in bytes) of attachment
Definition: body.h:53
char * charset
Send mode: charset of attached file as stored on disk.
Definition: body.h:78
FILE * fp_in
File to read from.
Definition: state.h:49
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ mutt_decode_base64()

void mutt_decode_base64 ( struct State state,
size_t  len,
bool  istext,
iconv_t  cd 
)

Decode base64-encoded text.

Parameters
stateState to work with
lenLength of text to decode
istextMime part is plain text
cdIconv conversion descriptor

Definition at line 1532 of file handler.c.

1533{
1534 char buf[5] = { 0 };
1535 int ch, i;
1536 bool cr = false;
1537 char bufi[BUFI_SIZE] = { 0 };
1538 size_t l = 0;
1539
1540 buf[4] = '\0';
1541
1542 if (istext)
1543 state_set_prefix(state);
1544
1545 while (len > 0)
1546 {
1547 for (i = 0; (i < 4) && (len > 0); len--)
1548 {
1549 ch = fgetc(state->fp_in);
1550 if (ch == EOF)
1551 break;
1552 if ((ch >= 0) && (ch < 128) && ((base64val(ch) != -1) || (ch == '=')))
1553 buf[i++] = ch;
1554 }
1555 if (i != 4)
1556 {
1557 /* "i" may be zero if there is trailing whitespace, which is not an error */
1558 if (i != 0)
1559 mutt_debug(LL_DEBUG2, "didn't get a multiple of 4 chars\n");
1560 break;
1561 }
1562
1563 const int c1 = base64val(buf[0]);
1564 const int c2 = base64val(buf[1]);
1565
1566 /* first char */
1567 ch = (c1 << 2) | (c2 >> 4);
1568
1569 if (cr && (ch != '\n'))
1570 bufi[l++] = '\r';
1571
1572 cr = false;
1573
1574 if (istext && (ch == '\r'))
1575 cr = true;
1576 else
1577 bufi[l++] = ch;
1578
1579 /* second char */
1580 if (buf[2] == '=')
1581 break;
1582 const int c3 = base64val(buf[2]);
1583 ch = ((c2 & 0xf) << 4) | (c3 >> 2);
1584
1585 if (cr && (ch != '\n'))
1586 bufi[l++] = '\r';
1587
1588 cr = false;
1589
1590 if (istext && (ch == '\r'))
1591 cr = true;
1592 else
1593 bufi[l++] = ch;
1594
1595 /* third char */
1596 if (buf[3] == '=')
1597 break;
1598 const int c4 = base64val(buf[3]);
1599 ch = ((c3 & 0x3) << 6) | c4;
1600
1601 if (cr && (ch != '\n'))
1602 bufi[l++] = '\r';
1603
1604 cr = false;
1605
1606 if (istext && (ch == '\r'))
1607 cr = true;
1608 else
1609 bufi[l++] = ch;
1610
1611 if ((l + 8) >= sizeof(bufi))
1612 convert_to_state(cd, bufi, &l, state);
1613 }
1614
1615 if (cr)
1616 bufi[l++] = '\r';
1617
1618 convert_to_state(cd, bufi, &l, state);
1619 convert_to_state(cd, 0, 0, state);
1620
1621 state_reset_prefix(state);
1622}
#define base64val(ch)
Definition: base64.h:31
#define BUFI_SIZE
Definition: handler.c:68
static void convert_to_state(iconv_t cd, char *bufi, size_t *l, struct State *state)
Convert text and write it to a file.
Definition: handler.c:120
@ LL_DEBUG2
Log at debug level 2.
Definition: logging2.h:44
#define state_set_prefix(state)
Definition: state.h:56
#define state_reset_prefix(state)
Definition: state.h:57
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ mutt_prefer_as_attachment()

bool mutt_prefer_as_attachment ( struct Body b)

Do we want this part as an attachment?

Parameters
bBody of email to test
Return values
trueWe want this part as an attachment

Definition at line 1849 of file handler.c.

1850{
1851 if (!mutt_can_decode(b))
1852 return true;
1853
1854 if (b->disposition != DISP_ATTACH)
1855 return false;
1856
1857 return cs_subset_bool(NeoMutt->sub, "honor_disposition");
1858}
+ Here is the call graph for this function:
+ Here is the caller graph for this function: