Hi,
When I talk with my users via the osTicket, the quotings in conversations are collected by exponent! User quotes me, I quote full the thread, users quotes full the thread (with quoted subthreads inside of quoted subsubthreads - they duplicate in one message!) and now I need to run this JS query in web in order to see at list something!
[...document.querySelectorAll("blockquote")].map(el => el.parentElement).forEach(el => el.setAttribute("style", "display: none"));
The client also receives truncated messages into his mail client.
The option to stripe message does not work at all.
Is there any way to send a user not a quoting TREE, but a PLAIN LIST like:
User:
Question
Support:
Answer
User:
Reply
...
I wish to achieve the same behavior in osTicket that ZenDesk has.
Without this, there is chaos instead of conversations!
Everyone, how do you deal with this problem?