TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:00 +02:00
commit f9941541b7
1178 changed files with 135377 additions and 0 deletions
@@ -0,0 +1,11 @@
<f:layout name="SystemEmail" />
<f:section name="Subject">TYPO3 Login Failure Warning (at {typo3.sitename})</f:section>
<f:section name="Title">TYPO3 Login Failure Warning at {typo3.sitename}</f:section>
<f:section name="Main">
<strong>There have been some attempts ({lines -> f:count()}) to login at the TYPO3 site "{typo3.sitename}" (<strong>{normalizedParams.remoteAddress}</strong>).</strong>
<br><br>
This is a dump of the failures:<br>
<f:for each="{lines}" as="line">
{f:format.date(date:line.row.tstamp, format:'{typo3.formats.date} {typo3.formats.time}')}: {line.text}<br>
</f:for>
</f:section>
@@ -0,0 +1,9 @@
<f:layout name="SystemEmail" />
<f:section name="Subject">TYPO3 Login Failure Warning (at {typo3.sitename})</f:section>
<f:section name="Title">TYPO3 Login Failure Warning at {typo3.sitename}</f:section>
<f:section name="Main">There have been some attempts ({lines -> f:count()}) to login at the TYPO3 site "{typo3.sitename}" ({normalizedParams.remoteAddress}).
This is a dump of the failures:
<f:for each="{lines}" as="line">{f:format.date(date:line.row.tstamp, format:'{typo3.formats.date} {typo3.formats.time}')}: {line.text -> f:format.raw()}
</f:for>
</f:section>
@@ -0,0 +1,7 @@
<f:layout name="SystemEmail" />
<f:section name="Subject">{prefix} New Login at "{typo3.sitename}"</f:section>
<f:section name="Title">{headline}</f:section>
<f:section name="Main">
<h4>{introduction}</h4>
<p>The user <em>"{user.username}"</em> logged in from the IP address <strong>{normalizedParams.remoteAddress}</strong> at "{typo3.sitename}".</p>
</f:section>
@@ -0,0 +1,6 @@
<f:layout name="SystemEmail" />
<f:section name="Subject">{prefix} New Login at "{typo3.sitename}"</f:section>
<f:section name="Title">{headline}</f:section>
<f:section name="Main">{introduction}
The user "{user.username}" logged in from the IP address "{normalizedParams.remoteAddress}" at the site "{typo3.sitename}".
</f:section>