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
elephant Offline
Member
 
Posts: 37
Join Date: Apr 2005
Am getting "=" in the emails being sent to the user - 17-05-2005, 02:54 AM

Am getting "=" in the emails being sent to the user. Anyone else getting this?



Your ticket has been received, one of the staff members will review it and =eply accordingly. Listed below are details of this ticket, Please make sur= the Ticket ID remains in the subject at all times.

Ticket ID: FFX-759842
Subject: (No Subject)
Department: General
Priority: Low
Status: Open

You can check the status or reply to this ticket online at: http://support.mysamplehost.com/=ayako/

Please do let us know if we can assist you any further,
   
Reply With Quote
  (#2) Old
msmartinwsx Offline
Member
 
Posts: 78
Join Date: Jul 2003
17-05-2005, 03:36 AM

Can you give us some OS details etc

Are they HTML/Plain text emails etc
   
Reply With Quote
  (#3) Old
elephant Offline
Member
 
Posts: 37
Join Date: Apr 2005
17-05-2005, 03:54 AM

Win32.
PHP Version 4.3.11
HTML

I moved to plain text but didnt get any response. Will debug it again tomorrow to get some more details. Must be some sort of parser issue.
   
Reply With Quote
  (#4) Old
Varun Shoor Offline
Chief Executive Officer
 
Varun Shoor's Avatar
 
Posts: 2,829
Join Date: May 2003
19-05-2005, 08:29 AM

"=" can happen if your character set is different than the one the text was written in I believe. Did you change the charset? What happens if you change the charset under locale/en-us/en-us.php to iso-8859-1?

Regards,

Varun Shoor


Varun Shoor (varun.shoor ]at[ kayako.com)
----------------------------------------------------------------
---
   
Reply With Quote
  (#5) Old
elephant Offline
Member
 
Posts: 37
Join Date: Apr 2005
19-05-2005, 04:00 PM

I tried changing it and didnt get an autoresponder back.
Changed it back, no autoresponder.
Played with HTML to TEXT settings in the core.
No responses.

I do get an error when saving:

Warning: unlink(./cache/index.html): Permission denied in C:\home\kayako\supportsuite-3_00_00-cvs-zendclosed\upload\modules\core\admin_settings.php on line 54


But I thnk this is because Windows doesnt support unlink. Might be an issue from Win32 machines.

Will keep playing with it to determine where the pattern is.
   
Reply With Quote
  (#6) Old
elephant Offline
Member
 
Posts: 37
Join Date: Apr 2005
19-05-2005, 04:12 PM

I think the zend optimizer must be caching? It doesnt behave instantly on changes. But then the settings change later.

Could this be what the unlink is doing?
   
Reply With Quote
  (#7) Old
elephant Offline
Member
 
Posts: 37
Join Date: Apr 2005
19-05-2005, 04:23 PM

Its working now back to original changes, go figure:

'charset' => 'UTF-8',
'html_encoding' => 'quoted-printable',
'text_encoding' => '8bit',
'html_charset' => 'UTF-8',
'text_charset' => 'UTF-8',
   
Reply With Quote
  (#8) Old
Varun Shoor Offline
Chief Executive Officer
 
Varun Shoor's Avatar
 
Posts: 2,829
Join Date: May 2003
19-05-2005, 07:58 PM

No Idea, Could be flood protection is kicking in when you create multiple auto responders?

Regards,

Varun Shoor


Varun Shoor (varun.shoor ]at[ kayako.com)
----------------------------------------------------------------
---
   
Reply With Quote
  (#9) Old
Rainmaker Offline
New Member
 
Posts: 3
Join Date: Jan 2005
Exclamation Your support is excellent! - 24-05-2005, 03:40 PM

Hello

I created a new language and made the error when it came to the setting for ISO-code. Stupid as I was I went for the examples and since I live in Sweden I typed "SE" as Iso-code, with the result that the emails looked like ****, both in text-format and HTML.

With this thread I changed it to the correct one: iso-8859-1 and use UTF-8 for charset and NOW the emails looks GR8

Can't wait for the RC1 =)

Keep it up Varun and the rest of your team, we love the work you have put into this version!

//Henrik


----------------------------------------

Henrik Lengstedt
Ballou - Hosting Intelligence
   
Reply With Quote
  (#10) Old
Varun Shoor Offline
Chief Executive Officer
 
Varun Shoor's Avatar
 
Posts: 2,829
Join Date: May 2003
24-05-2005, 07:09 PM

Hi Henrik,
Thanks for updating the thread. Most of malformed email issues are related to character sets.

Thanks for all the feedback, just test it rigorously so we can fix all the bugs asap and get RC1 out

Regards,

Varun Shoor


Varun Shoor (varun.shoor ]at[ kayako.com)
----------------------------------------------------------------
---
   
Reply With Quote
  (#11) Old
elephant Offline
Member
 
Posts: 37
Join Date: Apr 2005
12-07-2005, 10:56 PM

Varun,

Am still having the "=" in the html mail issue. When I go to text email it works fine. I played with the settings as you suggested, cant seem to find a solution.

Is there something in the php.ini file I need to look at?
   
Reply With Quote
  (#12) Old
elephant Offline
Member
 
Posts: 37
Join Date: Apr 2005
13-07-2005, 01:44 AM

Nailed it.

Quote:
E-mail is "supposed" to consist of just 7-bit text because eons ago, it was sent around through a whole variety of machines and some of them might not be able to handle 8-bit text. Base 64, Quoted Printable, and UUEncode are three different techniques for representing 8-bit data with just 7-bit text. The reason that MS offers the "None" option is so that you can send mail that will be the most legible to people using older non-MIME aware mail readers. Quoted printable has a lot of "=" (soft carriage returns) and "=20" (hard carriage returns) throughout the message, and Base64 is completely unintelligible to the naked eye. Even though encoding ensures that your message will not be mangled when it gets sent, relatively few 7-bit machines exist today. As a result, you're reasonably safe sending 8-bit text "as-is", i.e., using "None".
base64 encoding instead of quoted-printable because Microsoft's e-mail clients appear to have trouble with quoted-printable messages.

I chose none, but base64 works too.


'charset' => 'UTF-8',
'html_encoding' => 'none',
'text_encoding' => '8bit',
'html_charset' => 'UTF-8',
'text_charset' => 'UTF-8',
   
Reply With Quote
  (#13) Old
elephant Offline
Member
 
Posts: 37
Join Date: Apr 2005
13-07-2005, 02:18 PM

Ok, moved this back to:

base64

Templates seemed to be not change unless base64.
   
Reply With Quote
  (#14) Old
RanD Offline
New Member
 
Posts: 2
Join Date: Jun 2005
Where - 13-07-2005, 07:03 PM

Where do you make this change?
I'm having the same issue but can't find where to change the HTML Encoding.
   
Reply With Quote
  (#15) Old
elephant Offline
Member
 
Posts: 37
Join Date: Apr 2005
13-07-2005, 08:14 PM

Look at:

upload/locale/en-us/en-us.php

Look for:

'html_encoding' => 'UTF-8',


and change to

'html_encoding' => 'base64',
   
Reply With Quote
Reply

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
User incoming emails get bounced back joggx SupportSuite, eSupport and LiveResponse 1 16-10-2007 12:21 PM
New User Validation Emails mhunt SupportSuite, eSupport and LiveResponse 0 23-02-2006 06:09 PM
Staff Replies, No Emails sent to user chrisbuk112 SupportSuite, eSupport and LiveResponse 1 11-01-2006 05:42 PM



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


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