diff options
| author | Brahmajit Das <listout@listout.xyz> | 2026-03-10 14:02:49 +0000 |
|---|---|---|
| committer | Brahmajit Das <listout@listout.xyz> | 2026-03-10 14:02:49 +0000 |
| commit | 160ee7c63320519ba71db57b6ed87235646022e9 (patch) | |
| tree | 8a38043171206ccdc21b95fd199a58bc75a480aa | |
| parent | d1ecb00ec2aa049d3fe24252ec52bb99d746b806 (diff) | |
| download | dots-160ee7c63320519ba71db57b6ed87235646022e9.tar.gz | |
neomutt: listout: suse: enable header cache compression and mailbox generation
Signed-off-by: Brahmajit Das <listout@listout.xyz>
| -rw-r--r-- | .config/neomutt/listout | 15 | ||||
| -rw-r--r-- | .config/neomutt/suse_de | 15 |
2 files changed, 28 insertions, 2 deletions
diff --git a/.config/neomutt/listout b/.config/neomutt/listout index 80a3235..176fb55 100644 --- a/.config/neomutt/listout +++ b/.config/neomutt/listout @@ -1,12 +1,16 @@ unmailboxes * # Unset to properly repopulate the variables +unset record +unset spoolfile +unset postponed unset smtp_pass unset smtp_url unset smtp_user unset from unset hostname unset realname +unset implicit_autoview set edit_headers=yes @@ -17,13 +21,22 @@ set signature="$HOME/.config/neomutt/signature" set header_cache = "$XDG_CACHE_HOME/neomutt/headers/" set message_cachedir = "$XDG_CACHE_HOME/neomutt/bodies/" #set certificate_file = "$XDG_CACHE_HOME/neomutt/certificates/" +set header_cache_compress_method = "lz4" +set header_cache_compress_level = 3 set folder=~/.local/share/email/mailbox_org set mbox_type=Maildir set spoolfile=+INBOX set record=~/.local/share/email/mailbox_org/Sent set postponed=+Drafts -mailboxes `find ~/.local/share/email/mailbox_org -type d -name cur | xargs dirname | xargs` + +# Run +# find ~/.local/share/email/mailbox_org -type d -name cur \ +# | xargs dirname \ +# | sed 's/^/mailboxes "/;s/$/"/' | sort \ +# > ~/.cache/neomutt-mailboxes-mailbox +# for generating the mailboxes +source ~/.cache/neomutt-mailboxes-mailbox set sendmail = "msmtp -a mailbox" diff --git a/.config/neomutt/suse_de b/.config/neomutt/suse_de index 191823f..116c806 100644 --- a/.config/neomutt/suse_de +++ b/.config/neomutt/suse_de @@ -1,12 +1,16 @@ unmailboxes * # Unset to properly repopulate the variables +unset record +unset spoolfile +unset postponed unset smtp_pass unset smtp_url unset smtp_user unset from unset hostname unset realname +unset implicit_autoview set edit_headers=yes @@ -16,6 +20,8 @@ set from = bdas@suse.de set header_cache = "$XDG_CACHE_HOME/neomutt/headers/" set message_cachedir = "$XDG_CACHE_HOME/neomutt/bodies/" set certificate_file = "$XDG_CACHE_HOME/neomutt/certificates/" +set header_cache_compress_method = "lz4" +set header_cache_compress_level = 3 set signature="$HOME/.config/neomutt/signature_suse" @@ -24,7 +30,14 @@ set mbox_type=Maildir set spoolfile=+INBOX set record=~/.local/share/email/suse_de/Sent set postponed=+Drafts -mailboxes `find ~/.local/share/email/suse_de -type d -name cur | xargs dirname | xargs` + +# Run +# find ~/.local/share/email/suse_de -type d -name cur \ +# | xargs dirname \ +# | sed 's/^/mailboxes "/;s/$/"/' \ +# > ~/.cache/neomutt-mailboxes-suse +# for generating the mailboxes +source ~/.cache/neomutt-mailboxes-suse set sendmail = "msmtp -a suse" |
