-
Notifications
You must be signed in to change notification settings - Fork 262
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: add ability to send alternet text (html and plain) #10477
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: SebastianKrupinski <[email protected]>
|
||
$outboxTable = $schema->getTable('mail_local_messages'); | ||
if ($outboxTable->hasColumn('body')) { | ||
$outboxTable->dropColumn('body'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What will be the migration path for production instances?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did that before I realized that we use the same table for drafts, so at the time didn't think a migration was necessary.
Now, going to rename instead of dropping, then execute a sql command postSchemaChange to move the html versions to the body_html column based on the Html flag. Unless there is anything wrong with that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Creating a new column, moving data over and dropping the old column is the correct approach 👍
Signed-off-by: SebastianKrupinski <[email protected]>
Signed-off-by: SebastianKrupinski <[email protected]>
Signed-off-by: SebastianKrupinski <[email protected]>
Signed-off-by: SebastianKrupinski <[email protected]>
Signed-off-by: SebastianKrupinski <[email protected]>
I'm not a fan of this, as it introduces a lot of complexity in the frontend. Our backend could handle plain text and HTML messages before. Leave that unchanged. Only add the option to pass text and html alternatives for the mail provider API. |
Signed-off-by: SebastianKrupinski <[email protected]>
Signed-off-by: SebastianKrupinski <[email protected]>
Had no choice in this, because we Jsonize the database entity, then send it straight to the UI, the UI needs to be able handle the added database fields. |
Simplified algorithm: The client sends this: -> you store bla into the text_html column, set text_plain null and html=true The client sends this: -> you store bla in the text_plain column, set text_html null and html=false. Piping through the frontend is also fine 👍 What I'm against is pushing any kind of conversion to the client. The backend mechanism to convert HTML messages to a text alternative has to stay as-is. |
Signed-off-by: SebastianKrupinski <[email protected]>
Signed-off-by: SebastianKrupinski <[email protected]>
Signed-off-by: SebastianKrupinski <[email protected]>
If I understood Christoph's latest message correctly, the part about creating a text version from the HTML version should remain and is currently missing. As we discussed in chat, it might be worth considering whether Hamaz's fork of html2text should be used instead of Horde's text filter. |
$textPart->setDescription('Plaintext Version of Message'); | ||
|
||
/* | ||
* RFC1341: In general, user agents that compose multipart/alternative entities should place the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let’s keep the comment, it provides useful context.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
$alternativePart[] = $htmlPart; | ||
|
||
/* | ||
* Wrap the multipart/alternative parts in multipart/related when inline images are found. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let’s keep the comment, it provides useful context.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
} | ||
|
||
/* | ||
* For attachments wrap the body (multipart/related, multipart/alternative or text/plain) in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let’s keep the comment, it provides useful context.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
} | ||
|
||
/** | ||
* A callback for Horde_Text_Filter. | ||
* | ||
* The purpose of this callback is to overwrite the default behaviour |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The method is unused?
lib/Service/MimeMessage.php
Outdated
* | ||
* @return Horde_Mime_Part | ||
*/ | ||
public function buildPgpPart(string $content): Horde_Mime_Part { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public function buildPgpPart(string $content): Horde_Mime_Part { | |
private function buildPgpPart(string $content): Horde_Mime_Part { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
lib/Service/MimeMessage.php
Outdated
* | ||
* @return Horde_Mime_Part | ||
*/ | ||
public function buildMessagePart(?string $contentPlain, ?string $contentHtml): Horde_Mime_Part { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public function buildMessagePart(?string $contentPlain, ?string $contentHtml): Horde_Mime_Part { | |
private function buildMessagePart(?string $contentPlain, ?string $contentHtml): Horde_Mime_Part { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
lib/Service/MimeMessage.php
Outdated
$plainPart->setContents($contentPlain); | ||
} | ||
|
||
if (isset($plainPart) && isset($htmlPart)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (isset($plainPart) && isset($htmlPart)) { | |
if (isset($plainPart, $htmlPart)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. Didn't even realize it can be used this way.
@@ -225,6 +225,8 @@ public function testMultipartMixedRelated() { | |||
} | |||
|
|||
public function testMultipartAlternativeGreek() { | |||
$this->markTestSkipped(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's wrong with the test? ;)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was disabled because the forced plain text generation was removed.
lib/Service/MimeMessage.php
Outdated
* @param string $contentPlain | ||
* @param string $contentHtml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* @param string $contentPlain | |
* @param string $contentHtml |
Let’s remove them. They don’t add much value over the type hints and don’t align with them anyway.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
$bodyPart->setType('text/plain'); | ||
$bodyPart->setCharset('UTF-8'); | ||
$bodyPart->setContents($content); | ||
$messagePart = new Horde_Mime_Part(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I’m not a fan of the method accepting an empty contentPlain and contentHtml and then returning an empty MIME part. Conceptually, this feels off, but I don’t have a better alternative in mind yet.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree. But the alternative was to make a separate function for all scenarios, which made it way to complex.
Correct. We can argue about the quality of the Horde text transformation, and change it one day, but definitely not in the scope of this PR. Let's fix one problem at a time. |
So I put it back in, but there are some issues doing it this way, even if we omit how bad the the horde text transformer is. By forcing automatic plain text, this produces unexpected behavior for any automated function that sends a message. |
Signed-off-by: SebastianKrupinski <[email protected]>
Signed-off-by: SebastianKrupinski <[email protected]>
Dear @SebastianKrupinski, I think there is a discrepancy in goals. The mail providers feature has broken emails that were previously sent through the system mailer, where the dav app has provided both HTML and the text alternatives. The mail app only works with one of the two types, and if the user writes an HTML message, it automagically generates a text alternative via Horde. The goal of your fix should be to allow mail provider senders to either send a plain text message, an html message, or an alternative message with plain and html. In all cases the contents will be provided by the caller. I hope this helps. |
Resolves #10415
Summary
This modifies the local_message table and mail transmission service to support alternative text for automated messages.