1

I am managing an association's site using typo3 version 4.5.30. The site has the config setup for spam protection

[spamProtectEmailAddresses] = -3 
# config.absRefPrefix = http://www.afj-japon.org/ # Protection contre le spam
[spamProtectEmailAddresses_atSubst] = /-/arobase-//
[spamProtectEmailAddresses_lastDotSubst] = [dot]

Every time content is created that includes an email address, it encrypts it fine. I need to have this functionality disabled for one page only. How should I set it up ?

4

2 回答 2

5

您可以在该特定站点创建扩展模板,然后覆盖那里的 TypoScript 定义。

或者,您在全局模板上使用条件来检查页面的给定 UID,并在条件块内重置垃圾邮件保护。

于 2013-12-13T12:23:00.857 回答
0

要在typo3 项目中添加跨度保护,请将此行添加到模板> 设置中。

配置{

// 保护邮件地址免受垃圾邮件 spamProtectEmailAddresses = -3 spamProtectEmailAddresses_atSubst = @remove-this.

}

我希望这有帮助!

于 2014-06-04T07:28:54.170 回答