Been playing around with the HTML link structure, trying to find a pattern to the redirect problems.
I created a simple test mail (only a and br tags) with a series of simple html links with the urls specifed in a variety of ways.
I then evaluated how OpenEMM processes those links in the main three display targets (Preview, E-mail, and Fullview).
Case 1:
Simple domain URL; single quotes (') in the href.
EXAMPLE: <a href='http://www.mydomain.com'>Link</a>
PREVIEW: Link is original (no redirect by OpenEMM)
E-MAIL: Link is original (no redirect by OpenEMM)
FULLVIEW: Link is original (no redirect by OpenEMM)
Case 2:
Simple domain URL; double quotes (") in the href.
EXAMPLE: <a href="http://www.mydomain.com">Link</a>
PREVIEW: Link is a working OpenEMM redirect
E-MAIL: Link is a working OpenEMM redirect
FULLVIEW: Link is a working OpenEMM redirect
Case 3:
Simple domain URL; trailing slash; single quotes (') in the href.
EXAMPLE: <a href='
http://www.mydomain.com/'>Link</a>
PREVIEW: Link is original (no redirect by OpenEMM)
E-MAIL: Link is original (no redirect by OpenEMM)
FULLVIEW: Link is original (no redirect by OpenEMM)
Case 4:
Simple domain URL; trailing slash; double quotes (") in the href.
EXAMPLE: <a href="
http://www.mydomain.com/">Link</a>
PREVIEW: Link is a non-working double redirect
E-MAIL: Link is a working redirect
FULLVIEW: Link is a non-working double redirect
Case 5:
Specific page URL; single quotes (') in the href.
EXAMPLE: <a href='
http://www.mydomain.com/index.html'>Link</a>
PREVIEW: Link is original (no redirect by OpenEMM)
E-MAIL: Link is original (no redirect by OpenEMM)
FULLVIEW: Link is original (no redirect by OpenEMM)
Case 6:
Specific page URL; double quotes (") in the href.
EXAMPLE: <a href="
http://www.mydomain.com/index.html">Link</a>
PREVIEW: Link is a non-working double redirect
E-MAIL: Link is a working redirect
FULLVIEW: Link is a non-working double redirect
Case 7:
Fullview URL; single quotes (') in the href.
EXAMPLE: <a href='
http://www.mydomain.com:8080/form.do?ag ... ullview</a>
PREVIEW: Link is original (not interpreted; no redirect by OpenEMM; non-functioning)
E-MAIL: Link is original (not interpreted; no redirect by OpenEMM; non-functioning)
FULLVIEW: Link is original (not interpreted; no redirect by OpenEMM; non-functioning)
Case 8:
Fullview URL; double quotes (") in the href.
EXAMPLE: <a href="
http://www.mydomain.com:8080/form.do?ag ... ullview</a>
PREVIEW: Link is a non-working double redirect
E-MAIL: Link is a working OpenEMM redirect
FULLVIEW: Link is a non-working double redirect
Case 9:
Archive URL; single quotes (') in the href.
EXAMPLE: <a href='
http://www.mydomain.com:8080/form.do?ag ... Archive</a>
PREVIEW: Link is original (not interpreted; no redirect by OpenEMM; non-functioning)
E-MAIL: Link is original (not interpreted; no redirect by OpenEMM; non-functioning)
FULLVIEW: Link is original (not interpreted; no redirect by OpenEMM; non-functioning)
Case 10:
Archive URL; using double quotes (") in the href.
EXAMPLE: <a href="
http://www.mydomain.com:8080/form.do?ag ... Archive</a>
PREVIEW: Link is a non-working double redirect
E-MAIL: Link is a working OpenEMM redirect
FULLVIEW: Link is a non-working double redirect[/b]
It appears that only the very simplest url works in all 3 display targets (preview, e-mail, fullview) and that the most common failure is a double re-direct.
Any help?