Thunderbird で、添付ファイルを常に attach base64 で送る方法。

 プロファイルのフォルダの、
prefs.js
あるいは
user.js
に、
user_pref("mail.content_disposition_type", 1);
user_pref("mail.file_attach_binary", true);
を追加する。
 前者が「attach」の指定、後者が添付ファイルをバイナリファイルとして扱う指定、らしい。
試してみたところ、今まで「inline」で「7bit」だったものも、
「attach」「base64」で添付された。
 「user.js」はインストールしただけでは作成されないが、
置いておくと起動時に読み込む、らしい。