You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi!
Thanks for the project!
I'm unable to setup urlscan to exclude mailto links:
macro index,pager \cu "<pipe-message> urlscan -scdE 'http.*'<enter>" "call urlscan to extract URLs out of a message"
macro attach,compose \cu "<pipe-entry> urlscan -scdE 'http.*'<enter>" "call urlscan to extract URLs out of a message"
When run from neomutt it still shows mailto links.
If I run from command line I get it working properly:
The issue appears to be that the regex is only applied to the plain text part of the message, not the HTML part. This will take some digging to solve...
Quite dirty but working… adding a grep -v before urlscan :
macro index,pager \cu "<pipe-message>grep --invert-match '@' | urlscan --compact --dedupe --nohelp<Enter>""call urlscan to extract URLs out of a message"
Hi!
Thanks for the project!
I'm unable to setup urlscan to exclude mailto links:
When run from neomutt it still shows
mailto
links.If I run from command line I get it working properly:
What could be wrong with my setup?
The text was updated successfully, but these errors were encountered: