Added signatureIdentifyByHtml to detect signatures and blockquotes through HTML nodes.
This commit is contained in:
parent
e31d2751cf
commit
9c02d2e02b
5 changed files with 337 additions and 44 deletions
|
@ -296,6 +296,7 @@ class EmailReply extends App.Controller
|
||||||
App.Utils.htmlStrip(signature)
|
App.Utils.htmlStrip(signature)
|
||||||
if signaturePosition is 'top'
|
if signaturePosition is 'top'
|
||||||
body.prepend(signature)
|
body.prepend(signature)
|
||||||
|
body.prepend('<br>')
|
||||||
else
|
else
|
||||||
body.append(signature)
|
body.append(signature)
|
||||||
ui.$('[data-name=body]').replaceWith(body)
|
ui.$('[data-name=body]').replaceWith(body)
|
||||||
|
|
|
@ -148,13 +148,13 @@ class ArticleViewItem extends App.ObserverController
|
||||||
body.splice(article.preferences.signature_detection, 0, signatureDetected)
|
body.splice(article.preferences.signature_detection, 0, signatureDetected)
|
||||||
body = body.join('<br>')
|
body = body.join('<br>')
|
||||||
else
|
else
|
||||||
body = App.Utils.signatureIdentify(body)
|
body = App.Utils.signatureIdentifyByHtml(body)
|
||||||
article['html'] = body
|
article['html'] = body
|
||||||
else
|
else
|
||||||
|
|
||||||
# client signature detection
|
# client signature detection
|
||||||
bodyHtml = App.Utils.text2html(article.body)
|
bodyHtml = App.Utils.text2html(article.body)
|
||||||
article['html'] = App.Utils.signatureIdentify(bodyHtml)
|
article['html'] = App.Utils.signatureIdentifyByPlaintext(bodyHtml)
|
||||||
|
|
||||||
# if no signature detected or within frist 25 lines, check if signature got detected in backend
|
# if no signature detected or within frist 25 lines, check if signature got detected in backend
|
||||||
if article['html'] is bodyHtml || (article.preferences && article.preferences.signature_detection < 25)
|
if article['html'] is bodyHtml || (article.preferences && article.preferences.signature_detection < 25)
|
||||||
|
|
|
@ -425,8 +425,8 @@ class App.Utils
|
||||||
else
|
else
|
||||||
true
|
true
|
||||||
|
|
||||||
# messageWithMarker = App.Utils.signatureIdentify(message, false)
|
# messageWithMarker = App.Utils.signatureIdentifyByPlaintext(message, false)
|
||||||
@signatureIdentify: (message, test = false, internal = false) ->
|
@signatureIdentifyByPlaintext: (message, test = false, internal = false) ->
|
||||||
textToSearch = @html2text(message)
|
textToSearch = @html2text(message)
|
||||||
|
|
||||||
# if we do have less then 10 lines and less then 300 chars ignore this
|
# if we do have less then 10 lines and less then 300 chars ignore this
|
||||||
|
@ -645,6 +645,64 @@ class App.Utils
|
||||||
regex = new RegExp("\>(\s{0,10}#{quote(App.Utils.htmlEscape(markers[0].line))})")
|
regex = new RegExp("\>(\s{0,10}#{quote(App.Utils.htmlEscape(markers[0].line))})")
|
||||||
message.replace(regex, ">#{markerTemplate}\$1")
|
message.replace(regex, ">#{markerTemplate}\$1")
|
||||||
|
|
||||||
|
@isMicrosoftOffice: (message) ->
|
||||||
|
regex = new RegExp('-----(Ursprüngliche Nachricht|Original Message|Mensaje original|Message d\'origine|Messaggio originale|邮件原件|原始郵件)-----')
|
||||||
|
message.match(regex)
|
||||||
|
|
||||||
|
# messageWithMarker = App.Utils.signatureIdentifyByHtml(message)
|
||||||
|
@signatureIdentifyByHtml: (message) ->
|
||||||
|
# use the plaintext fallback method if message is composed by Microsoft Office
|
||||||
|
if @isMicrosoftOffice message
|
||||||
|
return @signatureIdentifyByPlaintext message
|
||||||
|
|
||||||
|
message_element = $($.parseHTML(message))
|
||||||
|
if message_element.length == 1 && $(message_element[0])?.children()?.length
|
||||||
|
message_element[0].innerHTML = @signatureIdentifyByHtmlHelper(message_element[0].innerHTML)
|
||||||
|
return message_element[0].outerHTML
|
||||||
|
|
||||||
|
@signatureIdentifyByHtmlHelper(message)
|
||||||
|
|
||||||
|
@signatureIdentifyByHtmlHelper: (message, internal = false) ->
|
||||||
|
# blockquotes and signature blocks are considered "dismiss nodes" and their indice will be stored
|
||||||
|
dismissNodes = []
|
||||||
|
contentNodes = []
|
||||||
|
res = []
|
||||||
|
|
||||||
|
isQuoteOrSignature = (el) ->
|
||||||
|
el = $(el)
|
||||||
|
tag = el.prop("tagName")
|
||||||
|
return true if tag is 'BLOCKQUOTE'
|
||||||
|
# detect Zammad's own <div data-signature='true'> marker
|
||||||
|
return true if tag is 'DIV' && (el.data('signature') || el.prop('class') is 'yahoo_quoted')
|
||||||
|
_.some el.children(), (el) -> isQuoteOrSignature el
|
||||||
|
|
||||||
|
$('<div/>').html(message).contents().each (index, node) ->
|
||||||
|
text = $(node).text()
|
||||||
|
if node.nodeType == Node.TEXT_NODE
|
||||||
|
res.push text
|
||||||
|
if text.trim().length
|
||||||
|
contentNodes.push index
|
||||||
|
else if node.nodeType == Node.ELEMENT_NODE
|
||||||
|
res.push node.outerHTML
|
||||||
|
if isQuoteOrSignature node
|
||||||
|
dismissNodes.push index
|
||||||
|
else if text.trim().length
|
||||||
|
contentNodes.push index
|
||||||
|
|
||||||
|
# filter out all dismiss nodes smaller than the largest content node
|
||||||
|
max_content = _.max contentNodes || 0
|
||||||
|
dismissNodes = _.filter dismissNodes, (x) -> x >= max_content
|
||||||
|
|
||||||
|
# return the message unchanged if there are no nodes to dismiss
|
||||||
|
return message if !dismissNodes.length
|
||||||
|
|
||||||
|
# insert marker template at the earliest valid location
|
||||||
|
markerIndex = _.min dismissNodes
|
||||||
|
markerTemplate = '<span class="js-signatureMarker"></span>'
|
||||||
|
|
||||||
|
res.splice(markerIndex, 0, markerTemplate)
|
||||||
|
res.join('')
|
||||||
|
|
||||||
# textReplaced = App.Utils.replaceTags( template, { user: { firstname: 'Bob', lastname: 'Smith' } } )
|
# textReplaced = App.Utils.replaceTags( template, { user: { firstname: 'Bob', lastname: 'Smith' } } )
|
||||||
@replaceTags: (template, objects) ->
|
@replaceTags: (template, objects) ->
|
||||||
template = template.replace( /#\{\s{0,2}(.+?)\s{0,2}\}/g, (index, key) ->
|
template = template.replace( /#\{\s{0,2}(.+?)\s{0,2}\}/g, (index, key) ->
|
||||||
|
|
|
@ -18,7 +18,10 @@ satinize html string based on whiltelist
|
||||||
attributes_whitelist = Rails.configuration.html_sanitizer_attributes_whitelist
|
attributes_whitelist = Rails.configuration.html_sanitizer_attributes_whitelist
|
||||||
css_properties_whitelist = Rails.configuration.html_sanitizer_css_properties_whitelist
|
css_properties_whitelist = Rails.configuration.html_sanitizer_css_properties_whitelist
|
||||||
css_values_blacklist = Rails.application.config.html_sanitizer_css_values_backlist
|
css_values_blacklist = Rails.application.config.html_sanitizer_css_values_backlist
|
||||||
classes_whitelist = ['js-signatureMarker']
|
|
||||||
|
# We whitelist yahoo_quoted because Yahoo Mail marks quoted email content using
|
||||||
|
# <div class='yahoo_quoted'> and we rely on this class to identify quoted messages
|
||||||
|
classes_whitelist = ['js-signatureMarker', 'yahoo_quoted']
|
||||||
attributes_2_css = %w[width height]
|
attributes_2_css = %w[width height]
|
||||||
|
|
||||||
# remove html comments
|
# remove html comments
|
||||||
|
|
|
@ -800,220 +800,451 @@ test("check signature", function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
// identify signature
|
// identify signature
|
||||||
test("identify signature", function() {
|
test("identify signature by plaintext", function() {
|
||||||
|
|
||||||
var message = "<div>test 123 </div>"
|
var message = "<div>test 123 </div>"
|
||||||
var should = '<div>test 123 </div>'
|
var should = '<div>test 123 </div>'
|
||||||
var result = App.Utils.signatureIdentify(message)
|
var result = App.Utils.signatureIdentifyByPlaintext(message)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "<div>test 123 <br/>--<br/>Bob Smith</div>"
|
message = "<div>test 123 <br/>--<br/>Bob Smith</div>"
|
||||||
should = '<div>test 123 <br/>--<br/>Bob Smith</div>'
|
should = '<div>test 123 <br/>--<br/>Bob Smith</div>'
|
||||||
result = App.Utils.signatureIdentify(message)
|
result = App.Utils.signatureIdentifyByPlaintext(message)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "<div>test 123 <br/>1<br/>2<br/>3<br/>4<br/>5<br/>6<br/>7<br/>8<br/>9<br/><br/>--<br/>Bob Smith</div>"
|
message = "<div>test 123 <br/>1<br/>2<br/>3<br/>4<br/>5<br/>6<br/>7<br/>8<br/>9<br/><br/>--<br/>Bob Smith</div>"
|
||||||
should = '<div>test 123 <br/>1<br/>2<br/>3<br/>4<br/>5<br/>6<br/>7<br/>8<br/>9<br/><br/><span class="js-signatureMarker"></span>--<br/>Bob Smith</div>'
|
should = '<div>test 123 <br/>1<br/>2<br/>3<br/>4<br/>5<br/>6<br/>7<br/>8<br/>9<br/><br/><span class="js-signatureMarker"></span>--<br/>Bob Smith</div>'
|
||||||
result = App.Utils.signatureIdentify(message)
|
result = App.Utils.signatureIdentifyByPlaintext(message)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "<div>test 123 <br/><br/>--no not match--<br/>--<br/>Bob Smith</div>"
|
message = "<div>test 123 <br/><br/>--no not match--<br/>--<br/>Bob Smith</div>"
|
||||||
should = '<div>test 123 <br/><br/>--no not match--<br/><span class="js-signatureMarker"></span>--<br/>Bob Smith</div>'
|
should = '<div>test 123 <br/><br/>--no not match--<br/><span class="js-signatureMarker"></span>--<br/>Bob Smith</div>'
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "<div>test 123 <br/><br/>--no not match--<br/> -- <br/>Bob Smith</div>"
|
message = "<div>test 123 <br/><br/>--no not match--<br/> -- <br/>Bob Smith</div>"
|
||||||
should = '<div>test 123 <br/><br/>--no not match--<br/><span class="js-signatureMarker"></span> -- <br/>Bob Smith</div>'
|
should = '<div>test 123 <br/><br/>--no not match--<br/><span class="js-signatureMarker"></span> -- <br/>Bob Smith</div>'
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "<div>test 123 <br/><br/>--<br/>Bob Smith<br/><br/><br/><br/><br/>--<br/>Bob Smith</div>"
|
message = "<div>test 123 <br/><br/>--<br/>Bob Smith<br/><br/><br/><br/><br/>--<br/>Bob Smith</div>"
|
||||||
should = '<div>test 123 <br/><br/><span class="js-signatureMarker"></span>--<br/>Bob Smith<br/><br/><br/><br/><br/>--<br/>Bob Smith</div>'
|
should = '<div>test 123 <br/><br/><span class="js-signatureMarker"></span>--<br/>Bob Smith<br/><br/><br/><br/><br/>--<br/>Bob Smith</div>'
|
||||||
//should = '<div>test 123 <br><br><br><br><br><br><br><br><br><br><br><span class="js-signatureMarker"></span>--<br>Bob Smith<br/><br/><br/><br/><br/>--<br/>Bob Smith</div>'
|
//should = '<div>test 123 <br><br><br><br><br><br><br><br><br><br><br><span class="js-signatureMarker"></span>--<br>Bob Smith<br/><br/><br/><br/><br/>--<br/>Bob Smith</div>'
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "<div>test 123</div><div>test 123</div><div>--</div><div>Bob Smith</div>"
|
message = "<div>test 123</div><div>test 123</div><div>--</div><div>Bob Smith</div>"
|
||||||
should = "<div>test 123</div><div>test 123</div><div><span class=\"js-signatureMarker\"></span>--</div><div>Bob Smith</div>"
|
should = "<div>test 123</div><div>test 123</div><div><span class=\"js-signatureMarker\"></span>--</div><div>Bob Smith</div>"
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "<p><span>test 123</span></p><p><span>test 123</span></p><p><span>--</span></p><p><span>Bob Smith</span></p><div></div>"
|
message = "<p><span>test 123</span></p><p><span>test 123</span></p><p><span>--</span></p><p><span>Bob Smith</span></p><div></div>"
|
||||||
should = "<p><span>test 123</span></p><p><span>test 123</span></p><p><span><span class=\"js-signatureMarker\"></span>--</span></p><p><span>Bob Smith</span></p><div></div>"
|
should = "<p><span>test 123</span></p><p><span>test 123</span></p><p><span><span class=\"js-signatureMarker\"></span>--</span></p><p><span>Bob Smith</span></p><div></div>"
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "Test reply to zammad<br><br>Am 24.10.2016 18:55 schrieb "Android Support" <android-support@example.com>:<br><br>> <u></u><br>> Sehr geehrte Damen"
|
message = "Test reply to zammad<br><br>Am 24.10.2016 18:55 schrieb "Android Support" <android-support@example.com>:<br><br>> <u></u><br>> Sehr geehrte Damen"
|
||||||
should = "Test reply to zammad<br><br><span class=\"js-signatureMarker\"></span>Am 24.10.2016 18:55 schrieb "Android Support" <android-support@example.com>:<br><br>> <u></u><br>> Sehr geehrte Damen"
|
should = "Test reply to zammad<br><br><span class=\"js-signatureMarker\"></span>Am 24.10.2016 18:55 schrieb "Android Support" <android-support@example.com>:<br><br>> <u></u><br>> Sehr geehrte Damen"
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "<br>< On 20 Oct 2016, at 12:23, Martin Edenhofer via Zammad Helpdesk wrote:<br>"
|
message = "<br>< On 20 Oct 2016, at 12:23, Martin Edenhofer via Zammad Helpdesk wrote:<br>"
|
||||||
should = "<br><span class=\"js-signatureMarker\"></span>< On 20 Oct 2016, at 12:23, Martin Edenhofer via Zammad Helpdesk wrote:<br>"
|
should = "<br><span class=\"js-signatureMarker\"></span>< On 20 Oct 2016, at 12:23, Martin Edenhofer via Zammad Helpdesk wrote:<br>"
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
// apple
|
// apple
|
||||||
// en
|
// en
|
||||||
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>On 01/04/15 10:55, Bob Smith wrote:<br/>lalala<p>--</p>some test</div>"
|
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>On 01/04/15 10:55, Bob Smith wrote:<br/>lalala<p>--</p>some test</div>"
|
||||||
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class="js-signatureMarker"></span>On 01/04/15 10:55, Bob Smith wrote:<br/>lalala<p>--</p>some test</div>'
|
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class="js-signatureMarker"></span>On 01/04/15 10:55, Bob Smith wrote:<br/>lalala<p>--</p>some test</div>'
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
// de
|
// de
|
||||||
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>Am 03.04.2015 um 20:58 schrieb Bob Smith <bob@example.com>:<br/>lalala</div>"
|
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>Am 03.04.2015 um 20:58 schrieb Bob Smith <bob@example.com>:<br/>lalala</div>"
|
||||||
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class="js-signatureMarker"></span>Am 03.04.2015 um 20:58 schrieb Bob Smith <bob@example.com>:<br/>lalala</div>'
|
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class="js-signatureMarker"></span>Am 03.04.2015 um 20:58 schrieb Bob Smith <bob@example.com>:<br/>lalala</div>'
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
// ms
|
// ms
|
||||||
// en
|
// en
|
||||||
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>From: Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Sent: Donnerstag, 2. April 2015 10:00<br/>lalala</div>"
|
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>From: Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Sent: Donnerstag, 2. April 2015 10:00<br/>lalala</div>"
|
||||||
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>From: Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Sent: Donnerstag, 2. April 2015 10:00<br/>lalala</div>'
|
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>From: Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Sent: Donnerstag, 2. April 2015 10:00<br/>lalala</div>'
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>From: Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Sent: Donnerstag, 2. April 2015 10:00<br/>Subject: lalala</div>"
|
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>From: Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Sent: Donnerstag, 2. April 2015 10:00<br/>Subject: lalala</div>"
|
||||||
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class="js-signatureMarker"></span>From: Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Sent: Donnerstag, 2. April 2015 10:00<br/>Subject: lalala</div>'
|
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class="js-signatureMarker"></span>From: Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Sent: Donnerstag, 2. April 2015 10:00<br/>Subject: lalala</div>'
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>From: Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Sent: Donnerstag, 2. April 2015 10:00<br/>1<br/>2<br/>3<br/>4<br/>4<br/>Subject: lalala</div>"
|
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>From: Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Sent: Donnerstag, 2. April 2015 10:00<br/>1<br/>2<br/>3<br/>4<br/>4<br/>Subject: lalala</div>"
|
||||||
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>From: Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Sent: Donnerstag, 2. April 2015 10:00<br/>1<br/>2<br/>3<br/>4<br/>4<br/>Subject: lalala</div>'
|
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>From: Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Sent: Donnerstag, 2. April 2015 10:00<br/>1<br/>2<br/>3<br/>4<br/>4<br/>Subject: lalala</div>'
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
// de
|
// de
|
||||||
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>Von: Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Gesendet: Donnerstag, 2. April 2015 10:00<br/>Betreff: lalala</div>"
|
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>Von: Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Gesendet: Donnerstag, 2. April 2015 10:00<br/>Betreff: lalala</div>"
|
||||||
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class="js-signatureMarker"></span>Von: Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Gesendet: Donnerstag, 2. April 2015 10:00<br/>Betreff: lalala</div>'
|
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class="js-signatureMarker"></span>Von: Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Gesendet: Donnerstag, 2. April 2015 10:00<br/>Betreff: lalala</div>'
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "<div>1<br><br></div><div>Von: Martin Edenhofer via Znuny Support [<a href=\"mailto:support@znuny.inc\" title=\"mailto:support@znuny.inc\" target=\"_blank\">mailto:support@znuny.inc</a>]</div>\n<div>Gesendet: Donnerstag, 2. April 2015 11:32</div>"
|
message = "<div>1<br><br></div><div>Von: Martin Edenhofer via Znuny Support [<a href=\"mailto:support@znuny.inc\" title=\"mailto:support@znuny.inc\" target=\"_blank\">mailto:support@znuny.inc</a>]</div>\n<div>Gesendet: Donnerstag, 2. April 2015 11:32</div>"
|
||||||
should = "<div>1<br><br></div><div>Von: Martin Edenhofer via Znuny Support [<a href=\"mailto:support@znuny.inc\" title=\"mailto:support@znuny.inc\" target=\"_blank\">mailto:support@znuny.inc</a>]</div>\n<div>Gesendet: Donnerstag, 2. April 2015 11:32</div>"
|
should = "<div>1<br><br></div><div>Von: Martin Edenhofer via Znuny Support [<a href=\"mailto:support@znuny.inc\" title=\"mailto:support@znuny.inc\" target=\"_blank\">mailto:support@znuny.inc</a>]</div>\n<div>Gesendet: Donnerstag, 2. April 2015 11:32</div>"
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "<div>1<br><br></div><div>Von: Martin Edenhofer via Znuny Support [<a href=\"mailto:support@znuny.inc\" title=\"mailto:support@znuny.inc\" target=\"_blank\">mailto:support@znuny.inc</a>]</div>\n<div>Gesendet: Donnerstag, 2. April 2015 11:32</div><div>Betreff: lalala</div>"
|
message = "<div>1<br><br></div><div>Von: Martin Edenhofer via Znuny Support [<a href=\"mailto:support@znuny.inc\" title=\"mailto:support@znuny.inc\" target=\"_blank\">mailto:support@znuny.inc</a>]</div>\n<div>Gesendet: Donnerstag, 2. April 2015 11:32</div><div>Betreff: lalala</div>"
|
||||||
should = "<div>1<br><br></div><div><span class=\"js-signatureMarker\"></span>Von: Martin Edenhofer via Znuny Support [<a href=\"mailto:support@znuny.inc\" title=\"mailto:support@znuny.inc\" target=\"_blank\">mailto:support@znuny.inc</a>]</div>\n<div>Gesendet: Donnerstag, 2. April 2015 11:32</div><div>Betreff: lalala</div>"
|
should = "<div>1<br><br></div><div><span class=\"js-signatureMarker\"></span>Von: Martin Edenhofer via Znuny Support [<a href=\"mailto:support@znuny.inc\" title=\"mailto:support@znuny.inc\" target=\"_blank\">mailto:support@znuny.inc</a>]</div>\n<div>Gesendet: Donnerstag, 2. April 2015 11:32</div><div>Betreff: lalala</div>"
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "<div>1<br><br></div><div>Von: Martin Edenhofer via Znuny Support <<a href=\"mailto:support@znuny.inc\" title=\"mailto:support@znuny.inc\" target=\"_blank\">mailto:support@znuny.inc</a>></div>\n<div>An: somebody</div><div>Datum: Donnerstag, 2. April 2015 11:32</div><div>Betreff: lalala</div>"
|
message = "<div>1<br><br></div><div>Von: Martin Edenhofer via Znuny Support <<a href=\"mailto:support@znuny.inc\" title=\"mailto:support@znuny.inc\" target=\"_blank\">mailto:support@znuny.inc</a>></div>\n<div>An: somebody</div><div>Datum: Donnerstag, 2. April 2015 11:32</div><div>Betreff: lalala</div>"
|
||||||
should = "<div>1<br><br></div><div><span class=\"js-signatureMarker\"></span>Von: Martin Edenhofer via Znuny Support <<a href=\"mailto:support@znuny.inc\" title=\"mailto:support@znuny.inc\" target=\"_blank\">mailto:support@znuny.inc</a>></div>\n<div>An: somebody</div><div>Datum: Donnerstag, 2. April 2015 11:32</div><div>Betreff: lalala</div>"
|
should = "<div>1<br><br></div><div><span class=\"js-signatureMarker\"></span>Von: Martin Edenhofer via Znuny Support <<a href=\"mailto:support@znuny.inc\" title=\"mailto:support@znuny.inc\" target=\"_blank\">mailto:support@znuny.inc</a>></div>\n<div>An: somebody</div><div>Datum: Donnerstag, 2. April 2015 11:32</div><div>Betreff: lalala</div>"
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "<div>Von: "Johannes Nickel via Znuny Projects" <<a href=\"mailto:projects@znuny.inc\" title=\"mailto:projects@znuny.inc\">projects@znuny.inc</a>></div><div>An: \"Lisa Smith\" <<a href=\"mailto:lisa.smith@example.com\" title=\"mailto:lisa.smith@example.com\">lisa.smith@example.com</a>></div><div>Gesendet: Donnerstag, 2. April 2015 10:11:12</div><div>Betreff: Angebot Redundanz / Paket mit Silver Subscription [Ticket#424242]</div><div><br></div><div>Hallo Frau Smith,</div>"
|
message = "<div>Von: "Johannes Nickel via Znuny Projects" <<a href=\"mailto:projects@znuny.inc\" title=\"mailto:projects@znuny.inc\">projects@znuny.inc</a>></div><div>An: \"Lisa Smith\" <<a href=\"mailto:lisa.smith@example.com\" title=\"mailto:lisa.smith@example.com\">lisa.smith@example.com</a>></div><div>Gesendet: Donnerstag, 2. April 2015 10:11:12</div><div>Betreff: Angebot Redundanz / Paket mit Silver Subscription [Ticket#424242]</div><div><br></div><div>Hallo Frau Smith,</div>"
|
||||||
should = "<div><span class=\"js-signatureMarker\"></span>Von: "Johannes Nickel via Znuny Projects" <<a href=\"mailto:projects@znuny.inc\" title=\"mailto:projects@znuny.inc\">projects@znuny.inc</a>></div><div>An: \"Lisa Smith\" <<a href=\"mailto:lisa.smith@example.com\" title=\"mailto:lisa.smith@example.com\">lisa.smith@example.com</a>></div><div>Gesendet: Donnerstag, 2. April 2015 10:11:12</div><div>Betreff: Angebot Redundanz / Paket mit Silver Subscription [Ticket#424242]</div><div><br></div><div>Hallo Frau Smith,</div>"
|
should = "<div><span class=\"js-signatureMarker\"></span>Von: "Johannes Nickel via Znuny Projects" <<a href=\"mailto:projects@znuny.inc\" title=\"mailto:projects@znuny.inc\">projects@znuny.inc</a>></div><div>An: \"Lisa Smith\" <<a href=\"mailto:lisa.smith@example.com\" title=\"mailto:lisa.smith@example.com\">lisa.smith@example.com</a>></div><div>Gesendet: Donnerstag, 2. April 2015 10:11:12</div><div>Betreff: Angebot Redundanz / Paket mit Silver Subscription [Ticket#424242]</div><div><br></div><div>Hallo Frau Smith,</div>"
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "<div>Hi Johannes,</div><div><br></div><div>das Angebot für den halben Tag bitte an uns.</div><div>Der Termin hat sich jetzt auf 10-12 Uhr verschoben, hab ich dir weitergeleitet.</div><div><br></div><div>Viele Grüße</div><div>Max</div><div><br></div><div>> On 07 Oct 2015, at 11:55, Johannes Smith <<a href=mailto:smith@example.com title=mailto:smith@example.com target=_blank>smith@example.com</a> <<a href=mailto:smith@example.com title=mailto:smith@example.com target=_blank>mailto:smith@example.com</a>>> wrote:</div><div>></div><div>> Hi,</div><div>></div><div>> OK. Wer kriegt das Angebot? Ist das wirklich nur ein halber Tag?</div></div>"
|
message = "<div>Hi Johannes,</div><div><br></div><div>das Angebot für den halben Tag bitte an uns.</div><div>Der Termin hat sich jetzt auf 10-12 Uhr verschoben, hab ich dir weitergeleitet.</div><div><br></div><div>Viele Grüße</div><div>Max</div><div><br></div><div>> On 07 Oct 2015, at 11:55, Johannes Smith <<a href=mailto:smith@example.com title=mailto:smith@example.com target=_blank>smith@example.com</a> <<a href=mailto:smith@example.com title=mailto:smith@example.com target=_blank>mailto:smith@example.com</a>>> wrote:</div><div>></div><div>> Hi,</div><div>></div><div>> OK. Wer kriegt das Angebot? Ist das wirklich nur ein halber Tag?</div></div>"
|
||||||
should = "<div>Hi Johannes,</div><div><br></div><div>das Angebot für den halben Tag bitte an uns.</div><div>Der Termin hat sich jetzt auf 10-12 Uhr verschoben, hab ich dir weitergeleitet.</div><div><br></div><div>Viele Grüße</div><div>Max</div><div><br></div><div><span class=\"js-signatureMarker\"></span>> On 07 Oct 2015, at 11:55, Johannes Smith <<a href=mailto:smith@example.com title=mailto:smith@example.com target=_blank>smith@example.com</a> <<a href=mailto:smith@example.com title=mailto:smith@example.com target=_blank>mailto:smith@example.com</a>>> wrote:</div><div>></div><div>> Hi,</div><div>></div><div>> OK. Wer kriegt das Angebot? Ist das wirklich nur ein halber Tag?</div></div>"
|
should = "<div>Hi Johannes,</div><div><br></div><div>das Angebot für den halben Tag bitte an uns.</div><div>Der Termin hat sich jetzt auf 10-12 Uhr verschoben, hab ich dir weitergeleitet.</div><div><br></div><div>Viele Grüße</div><div>Max</div><div><br></div><div><span class=\"js-signatureMarker\"></span>> On 07 Oct 2015, at 11:55, Johannes Smith <<a href=mailto:smith@example.com title=mailto:smith@example.com target=_blank>smith@example.com</a> <<a href=mailto:smith@example.com title=mailto:smith@example.com target=_blank>mailto:smith@example.com</a>>> wrote:</div><div>></div><div>> Hi,</div><div>></div><div>> OK. Wer kriegt das Angebot? Ist das wirklich nur ein halber Tag?</div></div>"
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "Dear Mr. Smith,<div><br></div><div>it seems to be, dass Sie den AutoIncrement Nummerngenerator für Ihre ITSMChangeManagement Installation verwenden. Seit ABC 3.2 wird führend vor der sich in der Datei <span style=\"line-height: 1.45; background-color: initial;\"><ABC_CONFIG_Home>/war/log/ITSMChangeCounter.log befindenden Zahl die SystemID (SysConfig) geschrieben. Dies ist ein Standardverhalten, dass auch bei der Ticketnummer verwendet wird.<br><br>Please ask me if you have questions.</span></div><div><span style=\"line-height: 1.45; background-color: initial;\"><br></span></div><div><span style=\"line-height: 1.45; background-color: initial;\">Viele Grüße,</span></div><div><div data-signature=\"true\" data-signature-id=\"1\"> Thorsten Smith\n<br>\n<br>--\n<br>Enterprise Services for ABC\n<br>\n<br>Znuny GmbH // Marienstraße 11 // 10117 Berlin // Germany\n<br>\n<br>P: +49 (0) 30 111 111 111-0\n<br>F: +49 (0) 30 111 111 111-8\n<br>W: http://znuny.com \n<br>\n<br>Location: Berlin - HRB 12345678 B Amtsgericht Berlin-Charlottenburg\n<br>Managing Director: Martin Edenhofer\n<br></div></div>"
|
message = "Dear Mr. Smith,<div><br></div><div>it seems to be, dass Sie den AutoIncrement Nummerngenerator für Ihre ITSMChangeManagement Installation verwenden. Seit ABC 3.2 wird führend vor der sich in der Datei <span style=\"line-height: 1.45; background-color: initial;\"><ABC_CONFIG_Home>/war/log/ITSMChangeCounter.log befindenden Zahl die SystemID (SysConfig) geschrieben. Dies ist ein Standardverhalten, dass auch bei der Ticketnummer verwendet wird.<br><br>Please ask me if you have questions.</span></div><div><span style=\"line-height: 1.45; background-color: initial;\"><br></span></div><div><span style=\"line-height: 1.45; background-color: initial;\">Viele Grüße,</span></div><div><div data-signature=\"true\" data-signature-id=\"1\"> Thorsten Smith\n<br>\n<br>--\n<br>Enterprise Services for ABC\n<br>\n<br>Znuny GmbH // Marienstraße 11 // 10117 Berlin // Germany\n<br>\n<br>P: +49 (0) 30 111 111 111-0\n<br>F: +49 (0) 30 111 111 111-8\n<br>W: http://znuny.com \n<br>\n<br>Location: Berlin - HRB 12345678 B Amtsgericht Berlin-Charlottenburg\n<br>Managing Director: Martin Edenhofer\n<br></div></div>"
|
||||||
should = "Dear Mr. Smith,<div><br></div><div>it seems to be, dass Sie den AutoIncrement Nummerngenerator für Ihre ITSMChangeManagement Installation verwenden. Seit ABC 3.2 wird führend vor der sich in der Datei <span style=\"line-height: 1.45; background-color: initial;\"><ABC_CONFIG_Home>/war/log/ITSMChangeCounter.log befindenden Zahl die SystemID (SysConfig) geschrieben. Dies ist ein Standardverhalten, dass auch bei der Ticketnummer verwendet wird.<br><br>Please ask me if you have questions.</span></div><div><span style=\"line-height: 1.45; background-color: initial;\"><br></span></div><div><span style=\"line-height: 1.45; background-color: initial;\">Viele Grüße,</span></div><div><span class=\"js-signatureMarker\"></span><div data-signature=\"true\" data-signature-id=\"1\"> Thorsten Smith\n<br>\n<br>--\n<br>Enterprise Services for ABC\n<br>\n<br>Znuny GmbH // Marienstraße 11 // 10117 Berlin // Germany\n<br>\n<br>P: +49 (0) 30 111 111 111-0\n<br>F: +49 (0) 30 111 111 111-8\n<br>W: http://znuny.com \n<br>\n<br>Location: Berlin - HRB 12345678 B Amtsgericht Berlin-Charlottenburg\n<br>Managing Director: Martin Edenhofer\n<br></div></div>"
|
should = "Dear Mr. Smith,<div><br></div><div>it seems to be, dass Sie den AutoIncrement Nummerngenerator für Ihre ITSMChangeManagement Installation verwenden. Seit ABC 3.2 wird führend vor der sich in der Datei <span style=\"line-height: 1.45; background-color: initial;\"><ABC_CONFIG_Home>/war/log/ITSMChangeCounter.log befindenden Zahl die SystemID (SysConfig) geschrieben. Dies ist ein Standardverhalten, dass auch bei der Ticketnummer verwendet wird.<br><br>Please ask me if you have questions.</span></div><div><span style=\"line-height: 1.45; background-color: initial;\"><br></span></div><div><span style=\"line-height: 1.45; background-color: initial;\">Viele Grüße,</span></div><div><span class=\"js-signatureMarker\"></span><div data-signature=\"true\" data-signature-id=\"1\"> Thorsten Smith\n<br>\n<br>--\n<br>Enterprise Services for ABC\n<br>\n<br>Znuny GmbH // Marienstraße 11 // 10117 Berlin // Germany\n<br>\n<br>P: +49 (0) 30 111 111 111-0\n<br>F: +49 (0) 30 111 111 111-8\n<br>W: http://znuny.com \n<br>\n<br>Location: Berlin - HRB 12345678 B Amtsgericht Berlin-Charlottenburg\n<br>Managing Director: Martin Edenhofer\n<br></div></div>"
|
||||||
result = App.Utils.signatureIdentify(message, true, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "Dear Mr. Smith, nice to read you,<div><div data-signature=\"true\" data-signature-id=\"1\"> Thorsten Smith\n<br>\n<br>--\n</div></div>"
|
message = "Dear Mr. Smith, nice to read you,<div><div data-signature=\"true\" data-signature-id=\"1\"> Thorsten Smith\n<br>\n<br>--\n</div></div>"
|
||||||
should = "Dear Mr. Smith, nice to read you,<div><span class=\"js-signatureMarker\"></span><div data-signature=\"true\" data-signature-id=\"1\"> Thorsten Smith\n<br>\n<br>--\n</div></div>"
|
should = "Dear Mr. Smith, nice to read you,<div><span class=\"js-signatureMarker\"></span><div data-signature=\"true\" data-signature-id=\"1\"> Thorsten Smith\n<br>\n<br>--\n</div></div>"
|
||||||
result = App.Utils.signatureIdentify(message, true, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "Dear Mr. Smith, nice to read you,<div><div data-signature=\"true\" data-signature-id=\"9999\"> Thorsten Smith\n<br>\n<br>--\n</div></div>"
|
message = "Dear Mr. Smith, nice to read you,<div><div data-signature=\"true\" data-signature-id=\"9999\"> Thorsten Smith\n<br>\n<br>--\n</div></div>"
|
||||||
should = "Dear Mr. Smith, nice to read you,<div><div data-signature=\"true\" data-signature-id=\"9999\"> Thorsten Smith\n<br>\n<br>--\n</div></div>"
|
should = "Dear Mr. Smith, nice to read you,<div><div data-signature=\"true\" data-signature-id=\"9999\"> Thorsten Smith\n<br>\n<br>--\n</div></div>"
|
||||||
result = App.Utils.signatureIdentify(message, false, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, false, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
// fr
|
// fr
|
||||||
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>De : Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Envoyé : mercredi 29 avril 2015 17:31<br/>Objet : lalala</div>"
|
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>De : Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Envoyé : mercredi 29 avril 2015 17:31<br/>Objet : lalala</div>"
|
||||||
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class="js-signatureMarker"></span>De : Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Envoyé : mercredi 29 avril 2015 17:31<br/>Objet : lalala</div>'
|
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class="js-signatureMarker"></span>De : Martin Edenhofer via Znuny Support [mailto:support@znuny.inc]<br/>Envoyé : mercredi 29 avril 2015 17:31<br/>Objet : lalala</div>'
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
// thunderbird
|
// thunderbird
|
||||||
// de
|
// de
|
||||||
message = "<div><br></div><div>Viele Grüße,</div><div>Christian</div><div><br></div><div>Am 04.03.2015 um 12:47 schrieb Martin Edenhofer via Znuny Sales:</div><div>> Hallo Christian,</div>"
|
message = "<div><br></div><div>Viele Grüße,</div><div>Christian</div><div><br></div><div>Am 04.03.2015 um 12:47 schrieb Martin Edenhofer via Znuny Sales:</div><div>> Hallo Christian,</div>"
|
||||||
should = "<div><br></div><div>Viele Grüße,</div><div>Christian</div><div><br></div><div><span class=\"js-signatureMarker\"></span>Am 04.03.2015 um 12:47 schrieb Martin Edenhofer via Znuny Sales:</div><div>> Hallo Christian,</div>"
|
should = "<div><br></div><div>Viele Grüße,</div><div>Christian</div><div><br></div><div><span class=\"js-signatureMarker\"></span>Am 04.03.2015 um 12:47 schrieb Martin Edenhofer via Znuny Sales:</div><div>> Hallo Christian,</div>"
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
// en - Thunderbird default - http://kb.mozillazine.org/Reply_header_settings
|
// en - Thunderbird default - http://kb.mozillazine.org/Reply_header_settings
|
||||||
message = "<div><br></div><div>Viele Grüße,</div><div>Christian</div><div><br></div><div>On 01-01-2007 11:00 AM, Alf Aardvark wrote:</div><div>> Hallo Christian,</div>"
|
message = "<div><br></div><div>Viele Grüße,</div><div>Christian</div><div><br></div><div>On 01-01-2007 11:00 AM, Alf Aardvark wrote:</div><div>> Hallo Christian,</div>"
|
||||||
should = "<div><br></div><div>Viele Grüße,</div><div>Christian</div><div><br></div><div><span class=\"js-signatureMarker\"></span>On 01-01-2007 11:00 AM, Alf Aardvark wrote:</div><div>> Hallo Christian,</div>"
|
should = "<div><br></div><div>Viele Grüße,</div><div>Christian</div><div><br></div><div><span class=\"js-signatureMarker\"></span>On 01-01-2007 11:00 AM, Alf Aardvark wrote:</div><div>> Hallo Christian,</div>"
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
// en - http://kb.mozillazine.org/Reply_header_settings
|
// en - http://kb.mozillazine.org/Reply_header_settings
|
||||||
message = "<div><br></div><div>Viele Grüße,</div><div>Christian</div><div><br></div><div>Alf Aardvark wrote, on 01-01-2007 11:00 AM:</div><div>> Hallo Christian,</div>"
|
message = "<div><br></div><div>Viele Grüße,</div><div>Christian</div><div><br></div><div>Alf Aardvark wrote, on 01-01-2007 11:00 AM:</div><div>> Hallo Christian,</div>"
|
||||||
should = "<div><br></div><div>Viele Grüße,</div><div>Christian</div><div><br></div><div><span class=\"js-signatureMarker\"></span>Alf Aardvark wrote, on 01-01-2007 11:00 AM:</div><div>> Hallo Christian,</div>"
|
should = "<div><br></div><div>Viele Grüße,</div><div>Christian</div><div><br></div><div><span class=\"js-signatureMarker\"></span>Alf Aardvark wrote, on 01-01-2007 11:00 AM:</div><div>> Hallo Christian,</div>"
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
// otrs
|
// otrs
|
||||||
// en
|
// en
|
||||||
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>01/04/15 10:55 - Bob Smith wrote:<br/>lalala</div>"
|
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>01/04/15 10:55 - Bob Smith wrote:<br/>lalala</div>"
|
||||||
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class="js-signatureMarker"></span>01/04/15 10:55 - Bob Smith wrote:<br/>lalala</div>'
|
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class="js-signatureMarker"></span>01/04/15 10:55 - Bob Smith wrote:<br/>lalala</div>'
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
// de
|
// de
|
||||||
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>01/04/15 10:55 - Bob Smith schrieb:<br/>lalala</div>"
|
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>01/04/15 10:55 - Bob Smith schrieb:<br/>lalala</div>"
|
||||||
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class="js-signatureMarker"></span>01/04/15 10:55 - Bob Smith schrieb:<br/>lalala</div>'
|
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class="js-signatureMarker"></span>01/04/15 10:55 - Bob Smith schrieb:<br/>lalala</div>'
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "<div>test 123 <br/><br/></div><div>24.02.2015 14:20 - Roy Kaldung via Znuny Sales schrieb: </div>"
|
message = "<div>test 123 <br/><br/></div><div>24.02.2015 14:20 - Roy Kaldung via Znuny Sales schrieb: </div>"
|
||||||
should = "<div>test 123 <br/><br/></div><div><span class=\"js-signatureMarker\"></span>24.02.2015 14:20 - Roy Kaldung via Znuny Sales schrieb: </div>"
|
should = "<div>test 123 <br/><br/></div><div><span class=\"js-signatureMarker\"></span>24.02.2015 14:20 - Roy Kaldung via Znuny Sales schrieb: </div>"
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
// zammad
|
// zammad
|
||||||
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><div data-signature=\"true\" data-signature-id=\"5\">lalala</div></div>"
|
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><div data-signature=\"true\" data-signature-id=\"5\">lalala</div></div>"
|
||||||
should = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class=\"js-signatureMarker\"></span><div data-signature=\"true\" data-signature-id=\"5\">lalala</div></div>"
|
should = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class=\"js-signatureMarker\"></span><div data-signature=\"true\" data-signature-id=\"5\">lalala</div></div>"
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><blockquote type=\"cite\">lalala</blockquote></div>"
|
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><blockquote type=\"cite\">lalala</blockquote></div>"
|
||||||
should = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class=\"js-signatureMarker\"></span><blockquote type=\"cite\">lalala</blockquote></div>"
|
should = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class=\"js-signatureMarker\"></span><blockquote type=\"cite\">lalala</blockquote></div>"
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
// gmail
|
// gmail
|
||||||
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><blockquote class=\"ecxgmail_quote\">lalala</blockquote></div>"
|
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><blockquote class=\"ecxgmail_quote\">lalala</blockquote></div>"
|
||||||
should = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class=\"js-signatureMarker\"></span><blockquote class=\"ecxgmail_quote\">lalala</blockquote></div>"
|
should = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class=\"js-signatureMarker\"></span><blockquote class=\"ecxgmail_quote\">lalala</blockquote></div>"
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><blockquote class=\"gmail_quote\">lalala</blockquote></div>"
|
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><blockquote class=\"gmail_quote\">lalala</blockquote></div>"
|
||||||
should = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class=\"js-signatureMarker\"></span><blockquote class=\"gmail_quote\">lalala</blockquote></div>"
|
should = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class=\"js-signatureMarker\"></span><blockquote class=\"gmail_quote\">lalala</blockquote></div>"
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>Am 24. Dezember 2015 um 07:45 schrieb kathrine <kathrine@example.com>:<br/>lalala</div>"
|
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>Am 24. Dezember 2015 um 07:45 schrieb kathrine <kathrine@example.com>:<br/>lalala</div>"
|
||||||
should = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class=\"js-signatureMarker\"></span>Am 24. Dezember 2015 um 07:45 schrieb kathrine <kathrine@example.com>:<br/>lalala</div>"
|
should = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class=\"js-signatureMarker\"></span>Am 24. Dezember 2015 um 07:45 schrieb kathrine <kathrine@example.com>:<br/>lalala</div>"
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
// word 14
|
// word 14
|
||||||
// en
|
// en
|
||||||
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>Bob Smith wrote:<br/>lalala</div>"
|
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>Bob Smith wrote:<br/>lalala</div>"
|
||||||
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class="js-signatureMarker"></span>Bob Smith wrote:<br/>lalala</div>'
|
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class="js-signatureMarker"></span>Bob Smith wrote:<br/>lalala</div>'
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
// de
|
// de
|
||||||
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>Bob Smith schrieb:<br/>lalala</div>"
|
message = "<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/>Bob Smith schrieb:<br/>lalala</div>"
|
||||||
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class="js-signatureMarker"></span>Bob Smith schrieb:<br/>lalala</div>'
|
should = '<div>test 123 <br/><br/>--no not match--<br/><br/>Bob Smith<br/><span class="js-signatureMarker"></span>Bob Smith schrieb:<br/>lalala</div>'
|
||||||
result = App.Utils.signatureIdentify(message, true)
|
result = App.Utils.signatureIdentifyByPlaintext(message, true)
|
||||||
equal(result, should)
|
equal(result, should)
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
test("identify signature by HTML", function() {
|
||||||
|
|
||||||
|
var message = "<div>test 123 </div>"
|
||||||
|
var should = message
|
||||||
|
var result = App.Utils.signatureIdentifyByHtml(message)
|
||||||
|
equal(result, should)
|
||||||
|
|
||||||
|
// simple case 1
|
||||||
|
message = '<div>actual content</div><blockquote>quoted content</blockquote>'
|
||||||
|
should = '<div>actual content</div><span class="js-signatureMarker"></span><blockquote>quoted content</blockquote>'
|
||||||
|
result = App.Utils.signatureIdentifyByHtml(message)
|
||||||
|
equal(result, should)
|
||||||
|
|
||||||
|
// simple case 2
|
||||||
|
message = '<div>actual content</div><blockquote>quoted content</blockquote><br><div><br></div><div><br> </div>'
|
||||||
|
should = '<div>actual content</div><span class="js-signatureMarker"></span><blockquote>quoted content</blockquote><br><div><br></div><div><br> </div>'
|
||||||
|
result = App.Utils.signatureIdentifyByHtml(message)
|
||||||
|
equal(result, should)
|
||||||
|
|
||||||
|
// simple case 3
|
||||||
|
message = '<div>actual content</div><blockquote>quoted content</blockquote><br><div>actual content 2</div>'
|
||||||
|
should = message
|
||||||
|
result = App.Utils.signatureIdentifyByHtml(message)
|
||||||
|
equal(result, should)
|
||||||
|
|
||||||
|
// simple case 4
|
||||||
|
message = ' content 0 <div>content 1</div> content 2 <blockquote>quoted content</blockquote><br><div><br></div><div><br> </div>'
|
||||||
|
should = ' content 0 <div>content 1</div> content 2 <span class="js-signatureMarker"></span><blockquote>quoted content</blockquote><br><div><br></div><div><br> </div>'
|
||||||
|
result = App.Utils.signatureIdentifyByHtml(message)
|
||||||
|
equal(result, should)
|
||||||
|
|
||||||
|
// Gmail via Safari on MacOS 10.12
|
||||||
|
message = '<div dir="ltr">Reply with <b>gmail</b> via Safari on MacOS 10.12</div><br>\
|
||||||
|
<div>\
|
||||||
|
<div dir="ltr">Am Mi., 5. Sep. 2018 um 09:22 Uhr schrieb Billy Zhou <bz@zammad.com>:<br>\
|
||||||
|
</div>\
|
||||||
|
<blockquote>test email content<br>\
|
||||||
|
<br>\
|
||||||
|
</blockquote>\
|
||||||
|
</div>'
|
||||||
|
should = '<div dir="ltr">Reply with <b>gmail</b> via Safari on MacOS 10.12</div><br>\
|
||||||
|
<span class=\"js-signatureMarker\"></span><div>\
|
||||||
|
<div dir="ltr">Am Mi., 5. Sep. 2018 um 09:22 Uhr schrieb Billy Zhou <bz@zammad.com>:<br>\
|
||||||
|
</div>\
|
||||||
|
<blockquote>test email content<br>\
|
||||||
|
<br>\
|
||||||
|
</blockquote>\
|
||||||
|
</div>'
|
||||||
|
result = App.Utils.signatureIdentifyByHtml(message)
|
||||||
|
equal(result, should)
|
||||||
|
|
||||||
|
// Yahoo Mail via Safari on MacOS 10.12
|
||||||
|
message = '<div style="color:#000; background-color:#fff; font-family:Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:16px"><div id="yui_3_16_0_ym19_1_1536132243868_2594"><span id="yui_3_16_0_ym19_1_1536132243868_2593">Reply with <b id="yui_3_16_0_ym19_1_1536132243868_2597">Yahoo Mail</b> via Safari on MacOS 10.12</span></div> <div class="qtdSeparateBR"><br><br></div><div class="yahoo_quoted" style="display: block;"> <div style="font-family: Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif; font-size: 16px;"> <div style="font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif; font-size: 16px;"> <div dir="ltr"><font size="2" face="Arial"> Billy Zhou <bz@zammad.com> schrieb am 9:08 Mittwoch, 5.September 2018:<br></font></div> <br><br> <div class="y_msg_container"><div dir="ltr">test email content<br></div><div dir="ltr"><br></div><br><br></div> </div> </div> </div></div>'
|
||||||
|
should = '<div style="color:#000; background-color:#fff; font-family:Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:16px"><div id="yui_3_16_0_ym19_1_1536132243868_2594"><span id="yui_3_16_0_ym19_1_1536132243868_2593">Reply with <b id="yui_3_16_0_ym19_1_1536132243868_2597">Yahoo Mail</b> via Safari on MacOS 10.12</span></div> <div class="qtdSeparateBR"><br><br></div><span class="js-signatureMarker"></span><div class="yahoo_quoted" style="display: block;"> <div style="font-family: Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif; font-size: 16px;"> <div style="font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif; font-size: 16px;"> <div dir="ltr"><font size="2" face="Arial"> Billy Zhou <bz@zammad.com> schrieb am 9:08 Mittwoch, 5.September 2018:<br></font></div> <br><br> <div class="y_msg_container"><div dir="ltr">test email content<br></div><div dir="ltr"><br></div><br><br></div> </div> </div> </div></div>'
|
||||||
|
result = App.Utils.signatureIdentifyByHtml(message)
|
||||||
|
equal(result, should)
|
||||||
|
|
||||||
|
// Thunderbird 52 on MacOS 10.12
|
||||||
|
message = 'Reply with <b>Thunderbird 52</b> on MacOS 10.12<br>\
|
||||||
|
<br>\
|
||||||
|
<div class="moz-cite-prefix">Am 04.09.18 um 15:32 schrieb Billy\
|
||||||
|
Zhou:<br>\
|
||||||
|
</div>\
|
||||||
|
<blockquote type="cite"\
|
||||||
|
cite="mid:da18ed01-b187-a383-bfe7-72663cf82a83@zammad.com">test\
|
||||||
|
email content\
|
||||||
|
<br>\
|
||||||
|
<br>\
|
||||||
|
</blockquote>\
|
||||||
|
<br>'
|
||||||
|
should = 'Reply with <b>Thunderbird 52</b> on MacOS 10.12<br>\
|
||||||
|
<br>\
|
||||||
|
<div class="moz-cite-prefix">Am 04.09.18 um 15:32 schrieb Billy\
|
||||||
|
Zhou:<br>\
|
||||||
|
</div>\
|
||||||
|
<span class=\"js-signatureMarker\"></span><blockquote type="cite" cite="mid:da18ed01-b187-a383-bfe7-72663cf82a83@zammad.com">test\
|
||||||
|
email content\
|
||||||
|
<br>\
|
||||||
|
<br>\
|
||||||
|
</blockquote>\
|
||||||
|
<br>'
|
||||||
|
result = App.Utils.signatureIdentifyByHtml(message)
|
||||||
|
equal(result, should)
|
||||||
|
|
||||||
|
// Apple Mail on MacOS 10
|
||||||
|
message = '<div class="">Reply by <b class="">Apple Mail</b> on MacOS 10.</div><div class=""><br class=""></div><br class=""><div><blockquote type="cite" class=""><div class="">On 4. Sep 2018, at 15:32, Billy Zhou <<a href="mailto:bz@zammad.com" class="">bz@zammad.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="">test email content<br class=""><br class=""></div></div></blockquote></div><br class="">'
|
||||||
|
should = '<div class="">Reply by <b class="">Apple Mail</b> on MacOS 10.</div><div class=""><br class=""></div><br class=""><span class=\"js-signatureMarker\"></span><div><blockquote type="cite" class=""><div class="">On 4. Sep 2018, at 15:32, Billy Zhou <<a href="mailto:bz@zammad.com" class="">bz@zammad.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="">test email content<br class=""><br class=""></div></div></blockquote></div><br class="">'
|
||||||
|
result = App.Utils.signatureIdentifyByHtml(message)
|
||||||
|
equal(result, should)
|
||||||
|
|
||||||
|
// Office 365 (10325.20118) on Windows 10 Build 1803
|
||||||
|
// With German marker: -----Ursprüngliche Nachricht-----
|
||||||
|
// Using fallback to signatureIdentifyByPlaintext
|
||||||
|
message = '<div>\
|
||||||
|
<p>Reply with Office 365 (10325.20118) on Windows 10 Build 1803</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p><b>fett</b></p>\
|
||||||
|
<p> </p>\
|
||||||
|
<span class="js-signatureMarker"></span><p>--</p>\
|
||||||
|
<p>Zammad GmbH // Marienstraße 11 // 10117 Berlin // Germany</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>P: +49 (0) 30 55 57 160-0</p>\
|
||||||
|
<p>F: +49 (0) 30 55 57 160-99</p>\
|
||||||
|
<p>W: <a href="https://zammad.com" rel="nofollow noreferrer noopener" target="_blank">https://zammad.com</a></p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>Location: Berlin - HRB 163946 B Amtsgericht Berlin-Charlottenburg</p>\
|
||||||
|
<p>Managing Director: Martin Edenhofer</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>-----Ursprüngliche Nachricht-----<br>Von: Billy Zhou <bz@zammad.com> <br>Gesendet: Dienstag, 4. September 2018 15:33<br>An: me@zammad.com<br>Betreff: test email title</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>test email content</p>\
|
||||||
|
<p> </p>\
|
||||||
|
</div>'
|
||||||
|
should = '<div>\
|
||||||
|
<p>Reply with Office 365 (10325.20118) on Windows 10 Build 1803</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p><b>fett</b></p>\
|
||||||
|
<p> </p>\
|
||||||
|
<span class="js-signatureMarker"></span><p><span class=\"js-signatureMarker\"></span>--</p>\
|
||||||
|
<p>Zammad GmbH // Marienstraße 11 // 10117 Berlin // Germany</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>P: +49 (0) 30 55 57 160-0</p>\
|
||||||
|
<p>F: +49 (0) 30 55 57 160-99</p>\
|
||||||
|
<p>W: <a href="https://zammad.com" rel="nofollow noreferrer noopener" target="_blank">https://zammad.com</a></p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>Location: Berlin - HRB 163946 B Amtsgericht Berlin-Charlottenburg</p>\
|
||||||
|
<p>Managing Director: Martin Edenhofer</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>-----Ursprüngliche Nachricht-----<br>Von: Billy Zhou <bz@zammad.com> <br>Gesendet: Dienstag, 4. September 2018 15:33<br>An: me@zammad.com<br>Betreff: test email title</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>test email content</p>\
|
||||||
|
<p> </p>\
|
||||||
|
</div>'
|
||||||
|
result = App.Utils.signatureIdentifyByHtml(message)
|
||||||
|
equal(result, should)
|
||||||
|
|
||||||
|
// Office 365 (10325.20118) on Windows 10 Build 1803
|
||||||
|
// With English marker: -----Original Message-----
|
||||||
|
// Using fallback to signatureIdentifyByPlaintext
|
||||||
|
message = '<div>\
|
||||||
|
<p>Reply with Office 365 (10325.20118) on Windows 10 Build 1803</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p><b>fett</b></p>\
|
||||||
|
<p> </p>\
|
||||||
|
<span class="js-signatureMarker"></span><p>--</p>\
|
||||||
|
<p>Zammad GmbH // Marienstraße 11 // 10117 Berlin // Germany</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>P: +49 (0) 30 55 57 160-0</p>\
|
||||||
|
<p>F: +49 (0) 30 55 57 160-99</p>\
|
||||||
|
<p>W: <a href="https://zammad.com" rel="nofollow noreferrer noopener" target="_blank">https://zammad.com</a></p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>Location: Berlin - HRB 163946 B Amtsgericht Berlin-Charlottenburg</p>\
|
||||||
|
<p>Managing Director: Martin Edenhofer</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>-----Original Message-----<br>Von: Billy Zhou <bz@zammad.com> <br>Gesendet: Dienstag, 4. September 2018 15:33<br>An: me@zammad.com<br>Betreff: test email title</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>test email content</p>\
|
||||||
|
<p> </p>\
|
||||||
|
</div>'
|
||||||
|
should = '<div>\
|
||||||
|
<p>Reply with Office 365 (10325.20118) on Windows 10 Build 1803</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p><b>fett</b></p>\
|
||||||
|
<p> </p>\
|
||||||
|
<span class="js-signatureMarker"></span><p><span class=\"js-signatureMarker\"></span>--</p>\
|
||||||
|
<p>Zammad GmbH // Marienstraße 11 // 10117 Berlin // Germany</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>P: +49 (0) 30 55 57 160-0</p>\
|
||||||
|
<p>F: +49 (0) 30 55 57 160-99</p>\
|
||||||
|
<p>W: <a href="https://zammad.com" rel="nofollow noreferrer noopener" target="_blank">https://zammad.com</a></p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>Location: Berlin - HRB 163946 B Amtsgericht Berlin-Charlottenburg</p>\
|
||||||
|
<p>Managing Director: Martin Edenhofer</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>-----Original Message-----<br>Von: Billy Zhou <bz@zammad.com> <br>Gesendet: Dienstag, 4. September 2018 15:33<br>An: me@zammad.com<br>Betreff: test email title</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>test email content</p>\
|
||||||
|
<p> </p>\
|
||||||
|
</div>'
|
||||||
|
result = App.Utils.signatureIdentifyByHtml(message)
|
||||||
|
equal(result, should)
|
||||||
|
|
||||||
|
// Office 365 (10325.20118) on Windows 10 Build 1803
|
||||||
|
// With German marker: -----Ursprüngliche Nachricht-----
|
||||||
|
// Without any existing <span class="js-signatureMarker"></span>
|
||||||
|
// Using fallback to signatureIdentifyByPlaintext
|
||||||
|
message = '<div>\
|
||||||
|
<p>Reply with Office 365 (10325.20118) on Windows 10 Build 1803</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p><b>fett</b></p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>--</p>\
|
||||||
|
<p>Zammad GmbH // Marienstraße 11 // 10117 Berlin // Germany</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>P: +49 (0) 30 55 57 160-0</p>\
|
||||||
|
<p>F: +49 (0) 30 55 57 160-99</p>\
|
||||||
|
<p>W: <a href="https://zammad.com" rel="nofollow noreferrer noopener" target="_blank">https://zammad.com</a></p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>Location: Berlin - HRB 163946 B Amtsgericht Berlin-Charlottenburg</p>\
|
||||||
|
<p>Managing Director: Martin Edenhofer</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>-----Ursprüngliche Nachricht-----<br>Von: Billy Zhou <bz@zammad.com> <br>Gesendet: Dienstag, 4. September 2018 15:33<br>An: me@zammad.com<br>Betreff: test email title</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>test email content</p>\
|
||||||
|
<p> </p>\
|
||||||
|
</div>'
|
||||||
|
should = '<div>\
|
||||||
|
<p>Reply with Office 365 (10325.20118) on Windows 10 Build 1803</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p><b>fett</b></p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p><span class=\"js-signatureMarker\"></span>--</p>\
|
||||||
|
<p>Zammad GmbH // Marienstraße 11 // 10117 Berlin // Germany</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>P: +49 (0) 30 55 57 160-0</p>\
|
||||||
|
<p>F: +49 (0) 30 55 57 160-99</p>\
|
||||||
|
<p>W: <a href="https://zammad.com" rel="nofollow noreferrer noopener" target="_blank">https://zammad.com</a></p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>Location: Berlin - HRB 163946 B Amtsgericht Berlin-Charlottenburg</p>\
|
||||||
|
<p>Managing Director: Martin Edenhofer</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>-----Ursprüngliche Nachricht-----<br>Von: Billy Zhou <bz@zammad.com> <br>Gesendet: Dienstag, 4. September 2018 15:33<br>An: me@zammad.com<br>Betreff: test email title</p>\
|
||||||
|
<p> </p>\
|
||||||
|
<p>test email content</p>\
|
||||||
|
<p> </p>\
|
||||||
|
</div>'
|
||||||
|
result = App.Utils.signatureIdentifyByHtml(message)
|
||||||
|
equal(result, should)
|
||||||
|
});
|
||||||
|
|
||||||
// check attachment references
|
// check attachment references
|
||||||
test("check replace tags", function() {
|
test("check replace tags", function() {
|
||||||
var message = 'some not existing'
|
var message = 'some not existing'
|
||||||
|
|
Loading…
Reference in a new issue