Skip to content

Commit 299b019

Browse files
DeepDiver1975claude
andcommitted
fix: add missing space to mail footer signature delimiter
The signature delimiter on the first line of the mail footer templates was missing the trailing space required by the signature block convention (RFC 3676). Without "-- " (dash-dash-space) followed by a line break, mail clients cannot recognize and collapse the signature. Fixes #41364 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Signed-off-by: Thomas Müller <1005065+DeepDiver1975@users.noreply.github.com>
1 parent 0489d0c commit 299b019

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

changelog/unreleased/41364

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Bugfix: Add missing space to mail footer signature delimiter
2+
3+
We've fixed the signature delimiter in the email footer templates. The delimiter
4+
on the first line was missing the trailing space required by the signature block
5+
convention (RFC 3676), so mail clients were unable to recognize and collapse the
6+
signature. The delimiter is now correctly written as "-- " (dash-dash-space).
7+
8+
https://github.com/owncloud/core/issues/41364

core/templates/html.mail.footer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
--<br>
1+
-- <br>
22
<?php p($theme->getName()); ?> -
33
<?php p($theme->getSlogan()); ?>
44
<br><a href="<?php p($theme->getBaseUrl()); ?>"><?php p($theme->getBaseUrl());?></a>

core/templates/plain.mail.footer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
--
1+
--
22
<?php p($theme->getName() . ' - ' . $theme->getSlogan()); ?>
33
<?php
44
p("\n" . $theme->getBaseUrl());

0 commit comments

Comments
 (0)