https://github.com/JsBergbau/nullmailer-Rewrite-Wrapper/blob/bba0c825464c70b679521e1b7f25ab924128c350/sendmail#L62 `\w` only covers `[a-zA-Z0-9_]`, but linux user names can also contains `-`. I added it to this: ```bash localRecipient=$(echo "$@" | grep -Po '\s(\w|-)+$') ```
nullmailer-Rewrite-Wrapper/sendmail
Line 62 in bba0c82
\wonly covers[a-zA-Z0-9_], but linux user names can also contains-. I added it to this:localRecipient=$(echo "$@" | grep -Po '\s(\w|-)+$')