Kayako logo
SupportSuite, eSupport and LiveResponse Discussion, troubleshooting and feedback related to Kayako's flagship support desk products SupportSuite, eSupport and LiveResponse.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  (#1) Old
caz Offline
New Member
 
Posts: 18
Join Date: Feb 2005
forwarded text - 17-02-2006, 03:06 AM

i work with 2 installs of kayako ..

supportsuite-3_00_32-stable-zendopen
and
esupport-3_00_32-stable-zendopen

Both of these refuse to parse the forwared portion of an email.

ie: my customer gets an email and forwards that to support@mydomain.tld

we only get the text above the forwarded message content

We constantly have to ask our clients to resend by copy/pasting the part they want to forward into the body of a new mail instead of forwarding inline

I haven't seen anyone else report this issue and find that strange since it is happening for 2 companies I work with using 2 different installs.


Help
   
Reply With Quote
  (#2) Old
caz Offline
New Member
 
Posts: 18
Join Date: Feb 2005
18-02-2006, 01:13 PM

I can't imagine that I am the only one having this issue ..
   
Reply With Quote
  (#3) Old
ellarr Offline
New Member
 
Posts: 9
Join Date: Feb 2006
03-03-2006, 12:41 PM

The breakline feature shouldn't be happening on new tickets. Here's how I fixed it...

Open modules\parser\functions_parsercore.php and search for '// Process the final content'. You should see a couple lines that look like.

Code:
$_email["finalContent"] = processBreakLines($emailcontent);
parserDebug("PARSER: Final Content Is: ".$_email["finalContent"]);
replace those two lines with

Code:
	if (!$_email["isticketreply"])
	{
  	   $_email["finalContent"] = $emailcontent;
		parserDebug("PARSER: New Ticket. Skipping breakline processing Final Content Is: ".$_email["finalContent"]);
	}
	else
	{
  	   $_email["finalContent"] = processBreakLines($emailcontent);
  	   parserDebug("PARSER: Final Content Is: ".$_email["finalContent"]);
	}

Last edited by ellarr; 03-03-2006 at 01:25 PM.
   
Reply With Quote
  (#4) Old
caz Offline
New Member
 
Posts: 18
Join Date: Feb 2005
09-03-2006, 04:34 AM

ellarr .. you are a live saver !

I truly hope Kayako applies this in their next release.

I had a ticket in for the issue and they delayed their reply until this thread appeared and referred me to it for the solution :-\

..at least they did follow up I guess

Thanks again !
   
Reply With Quote
  (#5) Old
Varun Shoor Offline
Chief Executive Officer
 
Varun Shoor's Avatar
 
Posts: 2,829
Join Date: May 2003
13-03-2006, 03:20 PM

Its already fixed in last CVS build.

Regards,

Varun Shoor


Varun Shoor (varun.shoor ]at[ kayako.com)
----------------------------------------------------------------
---
   
Reply With Quote
Reply

Tags
forwarded

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Change submit ticket text based on department handsonweb Developers & Code 1 01-05-2008 12:05 AM
Where do you change the actual text that is not shown in templates? christinasc SupportSuite, eSupport and LiveResponse 1 01-11-2006 11:52 PM
How do you edit the text in email templates? chris8lunch SupportSuite, eSupport and LiveResponse 11 15-08-2006 07:02 PM



Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47