Summary | Semantic class to distinct prefix quote and signature from mail content |
Queue | Horde Groupware Webmail Edition |
Queue Version | 5.2.22 |
Type | Enhancement |
State | No Feedback |
Priority | 1. Low |
Owners | |
Requester | guenael.muller (at) algoo (dot) fr |
Created | 11/30/2017 (2769 days ago) |
Due | |
Updated | 03/12/2020 (1936 days ago) |
Assigned | |
Resolved | 03/12/2020 (1936 days ago) |
Milestone | |
Patch | No |
State ⇒ Feedback
from, I doubt anyone would work on this voluntarily. If you have a
need for this, please provide a patch. And please provide some (link
to) discussion why this would be good behaviour.
Priority ⇒ 1. Low
Patch ⇒ No
Milestone ⇒
Queue ⇒ Horde Groupware Webmail Edition
Summary ⇒ Semantic class to distinct prefix quote and signature from mail content
Type ⇒ Enhancement
State ⇒ New
class to distinc prefix-quote part
from mail content and signature from mail content .
Having those may be find to help bot.
An example of hord 5.2.17 body mail :
"""
<p><a href="mailto:machin@bidule.fr">machin@bidule.fr</a> a
écrit :</p>
<blockquote style="border-left:2px solid
blue;margin-left:2px;padding-left:12px;" type="cite">
<p>Test</p>
<div>TEST HTML</div>
</blockquote>
<p><br>
<br>
Test</p>
<div>TEST HTML</div>
<!--a75c305b1c0a6022--></body>
</html>
"""
We should have something like :
"""
<p class="prefix_quote"><a
href="mailto:machin@bidule.fr">machin@bidule.fr</a> a
écrit :</p>
<blockquote style="border-left:2px solid
blue;margin-left:2px;padding-left:12px;" type="cite">
<p>Test</p>
<div>TEST HTML</div>
</blockquote>
<p><br>
<br>
Test</p>
<div class="signature">TEST HTML</div>
<!--a75c305b1c0a6022--></body>
</html>
"""
Instead.