14 lines
639 B
Text
14 lines
639 B
Text
# Work config
|
|
set mbox_type = Maildir
|
|
set folder = "~/work/mail"
|
|
set my_msmtp_conf = "-C $folder/msmtprc" # Leave empty for default
|
|
set my_mbsync_conf = "-c $folder/mbsyncrc" # Leave empty for default
|
|
source common.rc
|
|
|
|
# Override sidebar_new_mail_only
|
|
# Move back to sidebar.rc once the issue is resolved
|
|
# https://github.com/neomutt/neomutt/issues/2208
|
|
sidebar_whitelist `find ~/work/mail -mindepth 1 -maxdepth 1 -type d ! -name cur ! -name tmp ! -name new ! -name .notmuch -printf '"%p"\0' | xargs -0`
|
|
sidebar_whitelist `find ~/work/mail -mindepth 1 -type d -iname inbox -printf '"%p"\0' | xargs -0`
|
|
|
|
# vim: syntax=neomuttrc
|