Actions
Feature #15382
closedUsing a constant as email address is not possible
Status:
Closed
Priority:
Should have
Assignee:
Category:
RTE (rtehtmlarea + ckeditor)
Target version:
-
Start date:
2006-01-09
Due date:
% Done:
0%
Estimated time:
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
I'd like to place e.g. ###MYMAILADDR### as an email address using the link wizard. This results in unusable mailto links like
https://www.osadl.org/typo3/index.php?id=33 (using ###MAIL_INFO###)
mailto:###MAIL_INFO_PURE### (using ###MAIL_INFO_PURE###)
What I want is a mailto link which is managed by TS so that the constant is replaced and the spam protection replacements are done.
constants {
MAIL_INFO = mailto:info@xxxxx.org
MAIL_INFO_PURE = info@xxxxx.org
}
config {
spamProtectEmailAddresses = 3
spamProtectEmailAddresses_atSubst = (at);
spamProtectEmailAddresses_lastDotSubst = (dot);
}
(issue imported from #M2218)
Actions