if (cur->personal)
rfc822_dequote_comment(cur->personal);
- /* angle brackets for return path are mandated by RfC5322,
+ /* angle brackets for return path are mandated by RFC5322,
* so leave Return-Path as-is */
if (rp)
*h = safe_strdup(s);
specifically it does not add the trailing spaces.</para>
<para>After editing the initial message text and before entering the
compose menu, NeoMutt properly space-stuffs the message.
- <emphasis>Space-stuffing</emphasis> is required by RfC3676 defining
+ <emphasis>Space-stuffing</emphasis> is required by RFC3676 defining
<literal>format=flowed</literal> and means to prepend a space
to:</para>
<itemizedlist>
<para>NeoMutt in many places has to rely on external applications or for
convenience supports mechanisms involving external applications.</para>
<para>One of these is the
- <literal>mailcap</literal> mechanism as defined by RfC1524. Details about
+ <literal>mailcap</literal> mechanism as defined by RFC1524. Details about
a secure use of the mailcap mechanisms is given in
<xref linkend="secure-mailcap" />.</para>
<para>Besides the mailcap mechanism, NeoMutt uses a number of other external
png
NTLM
clearsign
-RfC
+RFC
rfc
syntaxes
untag
{
/* neither \r nor \n as part of line-terminating CRLF
* may be qp-encoded, so remove \r and \n-terminate;
- * see RfC2045, sect. 6.7, (1): General 8bit representation */
+ * see RFC2045, sect. 6.7, (1): General 8bit representation */
if (kind == 0 && c == '\r')
*(d - 1) = '\n';
else
(!needpass && ((mutt_strcmp("-----END PGP SIGNATURE-----\n", buf) == 0) ||
(mutt_strcmp("-----END PGP PUBLIC KEY BLOCK-----\n", buf) == 0))))
break;
- /* remember optional Charset: armor header as defined by RfC4880 */
+ /* remember optional Charset: armor header as defined by RFC4880 */
if (mutt_strncmp("Charset: ", buf, 9) == 0)
{
size_t l = 0;
memset(&fst, 0, sizeof(fst));
- /* respect DelSp of RfC3676 only with f=f parts */
+ /* respect DelSp of RFC3676 only with f=f parts */
if ((t = (char *) mutt_get_parameter("delsp", a->parameter)))
{
delsp = mutt_strlen(t) == 3 && (mutt_strncasecmp(t, "yes", 3) == 0);
/* if there's more than entry in In-Reply-To (i.e. message has
multiple parents), don't generate a References: header as it's
- discouraged by RfC2822, sect. 3.6.4 */
+ discouraged by RFC2822, sect. 3.6.4 */
if (ctx->tagged > 0 && !STAILQ_EMPTY(&env->in_reply_to) &&
STAILQ_NEXT(STAILQ_FIRST(&env->in_reply_to), entries))
mutt_list_free(&env->references);
if (fputc(*value, fp) == EOF)
return -1;
/* corner-case: break words longer than 998 chars by force,
- * mandated by RfC5322 */
+ * mandated by RFC5322 */
if (!(flags & CH_DISPLAY) && ++col >= 998)
{
if (fputs("\n ", fp) < 0)