struct Buffer *prompt = mutt_buffer_pool_get();
/* L10N:
- %s is a directory. Mutt is looking for a directory it needs
+ %s is a directory. NeoMutt is looking for a directory it needs
for some reason (e.g. autocrypt, header cache, bcache), but it
doesn't exist. The prompt is asking whether to create the directory
*/
if (prompt)
{
/* L10N:
- The first time mutt is started with $autocrypt set, it will
+ The first time NeoMutt is started with $autocrypt set, it will
create $autocrypt_dir and then prompt to create an autocrypt
account with this message.
*/
struct Buffer *folderbuf = mutt_buffer_pool_get();
/* L10N:
- The first time autocrypt is enabled, Mutt will ask to scan
+ The first time autocrypt is enabled, NeoMutt will ask to scan
through one or more mailboxes for Autocrypt: headers.
Those headers are then captured in the database as peer records
and used for encryption.
/* L10N:
The autocrypt database keeps track of schema version numbers.
This error occurs if the version number is too high.
- Presumably because this is an old version of mutt and the
+ Presumably because this is an old version of NeoMutt and the
database was upgraded by a future version.
*/
mutt_error(_("Autocrypt database version is too new"));
struct Mailbox *m = (struct Mailbox *) data;
/* NOTE the compressed file config vars expect %f and %t to be
- * surrounded by '' (unlike other Mutt config vars, which add the
+ * surrounded by '' (unlike other NeoMutt config vars, which add the
* outer quotes for the user). This is why we use the
* mutt_buffer_quote_filename() form with add_outer of false. */
struct Buffer *quoted = mutt_buffer_pool_get();
/**
* ICommandList - All available informational commands
*
- * @note These commands take precedence over conventional mutt rc-lines
+ * @note These commands take precedence over conventional NeoMutt rc-lines
*/
const struct ICommand ICommandList[] = {
{ "bind", icmd_bind, 0 },
imap_set_flags(adata->mailbox, e, flags, &server_changes);
if (server_changes)
{
- /* If server flags could conflict with mutt's flags, reopen the mailbox. */
+ /* If server flags could conflict with NeoMutt's flags, reopen the mailbox. */
if (e->changed)
mdata->reopen |= IMAP_EXPUNGE_PENDING;
else
* sync_helper - Sync flag changes to the server
* @param m Selected Imap Mailbox
* @param right ACL, see #AclFlags
- * @param flag Mutt flag, e.g. #MUTT_DELETED
+ * @param flag NeoMutt flag, e.g. #MUTT_DELETED
* @param name Name of server flag
* @retval >=0 Success, number of messages
* @retval -1 Failure
if ((adata->capabilities & IMAP_CAP_CONDSTORE) && C_ImapCondstore)
has_condstore = true;
- /* If IMAP_CAP_QRESYNC and ImapQResync then Mutt sends ENABLE QRESYNC.
+ /* If IMAP_CAP_QRESYNC and ImapQResync then NeoMutt sends ENABLE QRESYNC.
* If we receive an ENABLED response back, then adata->qresync is set. */
if (adata->qresync)
has_qresync = true;
/**
* @file
- * Mutt Logging
+ * NeoMutt Logging
*
* @authors
* Copyright (C) 2018 Richard Russon <rich@flatcap.org>
*/
/**
- * @page mutt_logging Mutt Logging
+ * @page mutt_logging NeoMutt Logging
*
- * Mutt Logging
+ * NeoMutt Logging
*/
#include "config.h"
/**
* @file
- * Mutt Logging
+ * NeoMutt Logging
*
* @authors
* Copyright (C) 2018 Richard Russon <rich@flatcap.org>