diff options
author | Aaditya Dhruv <[email protected]> | 2025-06-14 10:52:39 +0530 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2025-06-14 10:52:39 +0530 |
commit | 35476da777e19e2bcee10beb5ed0ae7362adcd30 (patch) | |
tree | a44bfb642b4dedf7f246a82a6771980604508a55 /src/config/templates/neomutt/neomuttrc.j2 | |
parent | 5f0f24a52d9175ab638b3d1a77454e65fad88248 (diff) |
Update documentation, small fixes to variable namespacing
Diffstat (limited to 'src/config/templates/neomutt/neomuttrc.j2')
-rw-r--r-- | src/config/templates/neomutt/neomuttrc.j2 | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/config/templates/neomutt/neomuttrc.j2 b/src/config/templates/neomutt/neomuttrc.j2 index e6b1fa1..a6dd88c 100644 --- a/src/config/templates/neomutt/neomuttrc.j2 +++ b/src/config/templates/neomutt/neomuttrc.j2 @@ -1,13 +1,13 @@ -set real_name = "{{ mail.name }}" +set real_name = "{{ config.mail.name }}" # Basic settings set folder = "~/.local/share/mail/mailbox" set attach_save_dir = "~/Downloads/" set mbox_type = "Maildir" -set hostname = "{{ mail.domain }}" -set from = "{{ mail.primary }}" -{% for item in mail.aliases %} -alias {{ item.alias }} "{{ mail.name }}" "{{ item.email }}" +set hostname = "{{ config.mail.domain }}" +set from = "{{ config.mail.primary }}" +{% for item in config.mail.aliases %} +alias {{ item.alias }} "{{ config.mail.name }}" "{{ item.email }}" {% endfor %} # Folder settings @@ -60,12 +60,12 @@ set forward_format = "Fwd: %s" set forward_quote set reverse_name set include -alternates {% for item in mail.aliases -%} +alternates {% for item in config.mail.aliases -%} "{{ item.email }}" {%- endfor %} # GPG settings -set pgp_sign_as="{{ mail.gpg }}" +set pgp_sign_as="{{ config.mail.gpg }}" set crypt_auto_sign |