Skip to content

xdg-email: Case-insensitive run_thunderbird

Jack Bates requested to merge nottheoilrig/xdg-utils:patch-1 into master

I clicked the "Reply to: john doe (on-list)" link on this page and was surprised that the new message that Thunderbird opened lacked a "Cc: debian-boot@lists.debian.org" header.

The problem is that the <hfname> in the mailto URL is capitalized (Cc=), which xdg-email currently ignores.

I confirmed that a mailto: <hfname> is case-insensitive, so this patch replaces grep with grep --ignore-case and sed s/.../.../ with sed s/.../.../i in the necessary spots.

Merge request reports