Gossamer Forum
Home : Products : Gossamer Links : Version 1.x :

weird problem

Quote Reply
weird problem
this is what i have in email-add.txt

--


Thank you for visiting our site. We've added the following link into
our directory:

Title : <%Title%>
URL : <%URL%>
Category : <%Category%>
Description : <%Description%>
Reciprocal link : <%Recip%>
Contact Email: <%Contact_Email%>


You can see your new listing at:


http://www.myurl.com/pages/


Should you have any questions, please don't hesitate to ask.


Sincerely,
Links Manager.


when i validate a link i get email with all text together:

Thank you for visiting our site. We've added the following link into
our directory:
Title : test
URL : http://www.test.com
Category : Babes
Description : test
Reciprocal link : http://www.punkotest.com
Contact Email: myemail@email.com
You can see your new listing at:
http://www.myurl.com/pages/
Should you have any questions, please don't hesitate to ask.
Sincerely,
Links Manager.


i have try viewing message in several email clients ,eudora,outlook,nc messenger always the same.its strange problem ,but doesnt anyone have any idea why this?

regards
Quote Reply
Re: weird problem In reply to
That's a bug, we don't want email messages going through the compress routing. Edit DB_Utils.pm around line 215 and change:

$LINKS{compress} and &compress (\$output);

to:

$LINKS{compress} and ($tpl !~ /^email/) and &compress (\$output);

and you should be fine.

Cheers,

Alex