Skip to Content.
Sympa Menu

en - Re: Re: [sympa-users] hyperlinks on list homepage stripped out by wwsympa?

Subject: The mailing list for listmasters using Sympa

List archive

Chronological Thread  
  • From: <address@concealed>
  • To: address@concealed
  • Subject: Re: Re: [sympa-users] hyperlinks on list homepage stripped out by wwsympa?

I was searching through the archives as I am having the same issue that Adam
raised back last April... most HTML is being stripped from my list homepages.
However, when I look at my my tools.pm file, as David suggested, it already
appears to have the correction suggested. I'm running 6.0.1 and in tools.pm I
have:

sub _create_xss_parser {
my %parameters = @_;
&do_log('debug3','tools::_create_xss_parser(%s)',$parameters{'robot'});
my $hss = HTML::StripScripts::Parser->new({ Context => 'Document',
AllowSrc => 1,
AllowHref => 1,
AllowRelURL => 1,
EscapeFiltered => 1,
Rules => {
'*' => {
src =>
'^http://'.&Conf::get_robot_conf($parameters{'robot'},'http_host'),
},
},
});
return $hss;
}


When I go into Sympa Admin and tell it to Dump Vars I notice that towards the
bottom there is this value:

htmlToFilter=
homepage_content=1
info_content=1

It seems like if I could change those values to 0 that might fix my problem,
but I can't find where those variables are set.

Any guidance is appreciated.

-Brendan







Archive powered by MHonArc 2.6.19+.

Top of Page