tweak(wanderlust): switch to use UTF-8 as default charset

This commit is contained in:
Kirill A. Korinsky 2024-04-25 11:37:58 +02:00 committed by Henrik Lissner
parent bdcf433b04
commit 954748308b

View file

@ -86,6 +86,13 @@
(setq wl-message-id-domain wl-local-domain)) (setq wl-message-id-domain wl-local-domain))
;; We're living in the world where UTF-8 is de facto default charset.
(setq-default mime-charset-for-write 'utf-8)
(setq-default mime-transfer-level 8)
(setq charsets-mime-charset-alist
'(((ascii) . us-ascii)
((unicode) . utf-8)))
;; Use x-face only when compface installed ;; Use x-face only when compface installed
(when (modulep! +xface) (when (modulep! +xface)
(autoload 'x-face-decode-message-header "x-face-e21") (autoload 'x-face-decode-message-header "x-face-e21")