Try our conversational search powered by Generative AI!

Mail links are redirected to verification page

Vote:
 

When the email is constructed the links are rewritten to a URL with gomail.aspx with the actual URL written as part of the query string

Clicking on this link then redirects off to checklink.aspx - a link verification page alerting the user that this could be a potentially malicious link. The user can then click through to the actual site

 

We need the link to verify automatically and not redirect off to check link. The user should be taken through to the site.

 

Any ideas of how to acheive this.

 

Thank you

 

#71188
May 13, 2013 14:13
Vote:
 

The verification tries to validate the URL automatically by comparing the link to what was in the original mailing. If it for some reason encounters a problem it will display the link check.

You can bypass the link check by editing the Gomail.aspx file in your site and set SkipLinkValidation="true" in the @Page directive.

#71230
May 14, 2013 15:36
Vote:
 

Thanks for your reply Mangus. That seems like it would work.

I actually go around it by editing the CheckLink.aspx page and adding the following code 

<script runat="server">
   protected void Page_Load(object sender, EventArgs e)
   {
       if (Request.QueryString["url"] != null)
       {
           Response.Redirect(Request.QueryString["url"], true);
       }
   }
</script>

Your solution looks cleaner to me though

 

Thanks

#71271
Edited, May 15, 2013 12:00
This thread is locked and should be used for reference only. Please use the Legacy add-ons forum to open new discussions.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.