On Sat Oct 19, 2024 at 23:05, Avid Seeker <avidseeker7@protonmail.com> wrote:
> Sending an email from aerc also sends an X-Mailer header with aerc name and> version included.>> Is there an option to disable that?>> -- Avid Seeker
You just need to remote it from the "new_message" template. See TEMPLATES in
man aerc-config.
Best,
Bence
--
bence.ferdinandy.com
On Saturday, October 19th, 2024 at 14:22, Bence Ferdinandy <bence@ferdinandy.com> wrote:
> You just need to remote it from the "new_message" template. See TEMPLATES
Thank you, the following worked for me. In case this to be added as a FAQ in the Wiki...
```sh
rsync -a /usr/share/aerc/templates "$XDG_CONFIG_HOME"/aerc/
sed -i '/^X-Mailer:/d' "$XDG_CONFIG_HOME"/aerc/templates/*
```
-- Avid Seeker
On Sat Oct 19, 2024 at 23:49, Avid Seeker <avidseeker7@protonmail.com> wrote:
> On Saturday, October 19th, 2024 at 14:22, Bence Ferdinandy <bence@ferdinandy.com> wrote:>> You just need to remote it from the "new_message" template. See TEMPLATES>> Thank you, the following worked for me. In case this to be added as a FAQ in the Wiki...>> ```sh> rsync -a /usr/share/aerc/templates "$XDG_CONFIG_HOME"/aerc/> sed -i '/^X-Mailer:/d' "$XDG_CONFIG_HOME"/aerc/templates/*> ```
Patches to the wiki are always welcome :)