문제

I'm trying to debug some emails that are getting sent to the Spam Folder by SpamAssassin and I encountered an error that I'm having trouble fixing. The problem seems to be that there's an invalid URI somewhere in the email, but I'm not sure how to find it. Maybe if I could figure out what the error is matching, it would help.

This is the actual error I'm getting back:

0.6      SARE_OBFU_AMP          invalid character within URI host/domain

Did some digging on Google and it looks like this is the REGEX that the rule is based on (Source)

m{(?!(?:mailto:|\#).*)^(?:https?://)?[^/\?]{4,40}\&}i

So the actual question is: What does the error I'm getting actually mean and how can I actually identify the bad URI?

도움이 되었습니까?

해결책

Such email contains some url/link address that contains & character with no leading / or ? character before the &. For example http://www.domain.com&something-else

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top