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
kbuska Offline
New Member
 
Posts: 18
Join Date: Oct 2005
Question Forwarding emails get cut off - 12-10-2005, 02:48 PM

If i get a support email in my personal email and want to forward it to esupport it cuts off everything below my forward. I.E. The customers problem and only inserts my forward message and signature. I can get around this by removing the forwarding part and only forward the customer's support information. I hope this makes sense.

Thank you,
Ken Buska
   
Reply With Quote
  (#2) Old
Neil-UKWSD Offline
Member
 
Neil-UKWSD's Avatar
 
Posts: 868
Join Date: Jun 2003
Location: United Kingdom
12-10-2005, 03:46 PM

Hi Ken,

The breaklines settings eSupport / SupportSuite casue the forwarded message to be cut off as the breakline in the email matches what it is set to cut off at.

If you remove the breaklines in eSupport / SupportSuite it will stop cutting off the message, but the same will apply when a client replies to a ticket.


Neil Wood | UK Web.Solutions Direct Ltd

UK cPanel/WHM hosting accounts
http://ukwebsolutionsdirect.co.uk
   
Reply With Quote
  (#3) Old
ellarr Offline
New Member
 
Posts: 9
Join Date: Feb 2006
03-03-2006, 12:43 PM

Breakline support should not be executed on email messages that are not a reply to an existing ticket. 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:24 PM.
   
Reply With Quote
  (#4) Old
netFusion Offline
Member
 
Posts: 393
Join Date: Sep 2003
Location: My wife calls it the doghouse...
04-03-2006, 01:19 AM

Quote:
Originally Posted by ellarr
Breakline support should not be executed on email messages that are not a reply to an existing ticket. 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.
Nice catch!

Please forward that to Varun so he can fix it in the code.


netFusion Computer and Network Solutions
Web Site: http://www.netFusionKC.com
Web Store: https://www.netfusionkc.com/store/

Anything I say or do is my own opinion and may make absolutely no sense to anyone but me...
   
Reply With Quote
  (#5) Old
eugenevdm Offline
New Member
 
Posts: 23
Join Date: Mar 2005
23-03-2006, 01:50 PM

I have an urgent breakline issue that I would like to solve. Basically I'm using an unstable version of Kayako, version 3.00.45, because I need the XML date function, but now, even though all breaklines are gone, all e-mails are stripped.

However, when I look at my "source code" I only see encrypted information. I am using Zend. How can I view the actual source and make modifications to it?
   
Reply With Quote
  (#6) Old
mmay Offline
Member
 
Posts: 52
Join Date: Oct 2005
23-03-2006, 06:39 PM

What do you mean "all email are stripped"? There was a bug in .45 that cause the parser to create blank tickets. It's been fixed in builds since then, check the change log... If that is not what you mean then just ignore me.
   
Reply With Quote
  (#7) Old
eugenevdm Offline
New Member
 
Posts: 23
Join Date: Mar 2005
31-03-2006, 08:58 AM

What I meant was the when I forward e-mail it gets cut off, even though I have *no* breaklines specified.

I have some questions that you might be able to answer:

1. Should I rather use CVS or UNSTABLE if I want to experiment?

2. Why are some people able to see the source code but I can't (it appears scrambled)?

I am downloading 3.00.80 UNSTABLE now so that I can examine the changelog. I couldn't find anything regarding this on the changelog listed at members.kayako.net.
   
Reply With Quote
  (#8) Old
eugenevdm Offline
New Member
 
Posts: 23
Join Date: Mar 2005
31-03-2006, 09:25 AM

I downloaded 3.00.80 unstable and I find this in the changelog:

07 Mar 2006 10:35 PM - vshoor

Files Affected: 10
- Breaklines no longer run on new tickets, only on replies.

But this not relate to my problem. Even if I forward a new ticket it's "broken."
   
Reply With Quote
  (#9) Old
eugenevdm Offline
New Member
 
Posts: 23
Join Date: Mar 2005
31-03-2006, 09:42 AM

OK I upgraded to 3.00.80 and now the problem is gone! Thank goodness.
   
Reply With Quote
Reply

Tags
cut, forwarding

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
Emails not showing up: Spam? kami SupportSuite, eSupport and LiveResponse 2 21-07-2008 08:49 PM
various problems with piped emails russmichaels E-mail Piping Issues 0 07-08-2007 09:30 AM
URLs Not Coneverted to Links in HTML Emails littlegrasshoppa How do I? 1 08-06-2007 07:43 AM
Forwarding Emails? waytorussia SupportSuite, eSupport and LiveResponse 2 18-02-2006 10:50 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