marianogedisman
New Member
Hello! I'm trying to get rid of the "+" sign markers on Mutt. I've set the
I've debugged Mutt and it does read muttrc from my local directory, however, there must be something else I'm missing but I cannot find why.
I've googled to no avail but could not find anyone going through the same issue.
Also, the man pages for Mutt tells me that this flag should be enough to get rid of markers, but they're still there.
Any help would be appreciated:
Distro: BSD
Mutt -v 2.2.10 (2023-03-25)
My muttrc:
Mod edit - removed email address
unset markers
and also tried with set markers = no
on muttrc but still can't get it to work.I've debugged Mutt and it does read muttrc from my local directory, however, there must be something else I'm missing but I cannot find why.
I've googled to no avail but could not find anyone going through the same issue.
Also, the man pages for Mutt tells me that this flag should be enough to get rid of markers, but they're still there.
Any help would be appreciated:
Distro: BSD
Mutt -v 2.2.10 (2023-03-25)
My muttrc:
Code:
# Starter muttrc file, with just a few suggestions and settings.
#
# This file purposely doesn't include hooks, keybinding, macros, colors, etc.
# Read the manual, explore, and have fun!
#
###############
# Identity
#
set realname = "Maria Noged"
set from = "<redacted>"
## If you have another address:
#alternates "^[email protected]\.com$"
#
## Or, if you use the entire domain:
#alternates "@example\.com$"
#set reverse_name
#
################
## Example: local mailboxes
##
## Some people use mbsync or getmail to retrieve their mail locally.
##
#set folder = ~/Mail # This has the shortcut '+' or '='
#set spoolfile = "+inbox" # This has the shortcut '!'
#set record = "+sent"
#set trash = "+trash"
#set postponed = "+drafts"
#
#mailboxes ! +mutt +family +work
#
###############
# Example: Gmail over IMAP
#
set imap_user = "<redacted>"
# To avoid storing your password in the .muttrc:
# echo -n 'mypassword' | gpg --encrypt -r 0x1234567890ABCDEF > ~/.mutt/account.gpg
#set imap_pass = "`gpg --batch -q --decrypt ~/.mutt/account.gpg`"
set folder = imaps://imap.gmail.com/
set spoolfile = "+INBOX"
unset record # Gmail auto-stores in "+[Gmail].Sent Mail"
unset trash # Unset, deletion will remove labels
set postponed = "+[Gmail].Drafts"
set timeout = 60
set mail_check = 5
###############
# Pager settings
#
ignore *
unignore From Message-ID Date To Cc Bcc Subject
set pager_stop
unset markers
# Prefer plain text to html.
# However, for brain dead clients that bundle attachments inside a
# multipart/alternative, prefer that alternative.
alternative_order multipart/mixed multipart/related text/plain
# Consult mime.types for determining types of these attachments
mime_lookup application/octet-stream
# This requires a ~/.mailcap entry with the copiousoutput flag, such as:
# text/html; lynx -dump -width ${COLUMNS:-80} %s; nametemplate=%s.html; copiousoutput
auto_view text/html
###############
# Index settings
#
#set quit = ask-yes
set sort = threads
# Remember to `mkdir -p ~/.mutt/hcache` first:
set header_cache= "~/.mutt/hcache"
###############
# Message composition settings
#
set edit_headers
# set editor = "emacsclient -a emacs -t"
set editor = "vim"
set mime_type_query_command = "xdg-mime query filetype"
# msmtp is a solid SMTP client.
# mutt also has built-in SMTP, or you can use an MTA like exim4 or postfix.
#set sendmail = "/usr/bin/msmtp"
# lbdb is a versatile contact query tool.
# Invoke via ctrl-t in an address prompt
set query_command = "/usr/bin/lbdbq"
###############
# GnuPG
#
#unset crypt_use_gpgme
#source /usr/local/share/doc/mutt/samples/gpg.rc
#set pgp_default_key = "0x1234567890ABCDEF"
#set crypt_opportunistic_encrypt
#set postpone_encrypt
Mod edit - removed email address
Last edited by a moderator: