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

Kayako develops robust helpdesk software, live chat and real-time visitor monitoring software.
Kayako is trusted by more than 30,000 organizations, including a number of Fortune 500 companies and government institutions.
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  (#1) Old
ppimenta Offline
New Member
 
Posts: 17
Join Date: Mar 2008
TIF Format - 13-01-2009, 09:21 AM

Hi,

We're using a service to receive Faxes by email, unfortunately, they can only be saved in .tif format. Kayako doesn't seem to be able to process these correctly and always saves them as an Unknown File Type.

Any suggestions on how we can get Kayako to process the tif files?

Is there a list of all the formats that Kayako can process?

Thanks,

Paula
   
Reply With Quote
  (#2) Old
craigbrass Offline
Senior Member
 
Posts: 7,387
Join Date: Jun 2005
Location: Cumbria, UK
13-01-2009, 09:46 AM

Admin CP -> Tickets -> Attachment Types.


Craig Brass - Kayako Forum Squatter (Note: I am NOT a staff member)

Click here for Kayako Software Development

My Addons: BlackBerry Ticket Client for Kayako - Windows Mobile Live Support Client for Kayako
   
Reply With Quote
  (#3) Old
GoneShootin Offline
Member
 
GoneShootin's Avatar
 
Posts: 268
Join Date: Jan 2008
13-01-2009, 10:46 AM

Is your operating system setup to handle TIF files downloaded via your browser? We had a similar issue and was resolved by adding TIF as an acceptable extension for our TIFF reader.

Last edited by GoneShootin; 13-01-2009 at 10:47 AM.
   
Reply With Quote
  (#4) Old
ppimenta Offline
New Member
 
Posts: 17
Join Date: Mar 2008
13-01-2009, 10:59 AM

Thanks Craig, but I don't restrict incoming attachments so I assume that it will just accept .tif format.

I will check our TIFF reader.
   
Reply With Quote
  (#5) Old
ppimenta Offline
New Member
 
Posts: 17
Join Date: Mar 2008
13-01-2009, 12:04 PM

At the point when the mail box is read and processed in Kayako, the .tif attachment is not recognized (jpeg is recognized and processed correctly), the process stores the attachment as a base64 file instead of .tif file.

Can you confirm if it's possible to read and process a .tif file as attachment in Kayako and if yes, how?

Thanks,

Paula
   
Reply With Quote
  (#6) Old
craigbrass Offline
Senior Member
 
Posts: 7,387
Join Date: Jun 2005
Location: Cumbria, UK
13-01-2009, 01:07 PM

It possibly sounds like a bug but I can't see why other attachments would work fine. I suggest you contact support (http://members.kayako.net -> "Get Support") and if it is confirmed as a bug, it will be passed to the developers for fixing.


Craig Brass - Kayako Forum Squatter (Note: I am NOT a staff member)

Click here for Kayako Software Development

My Addons: BlackBerry Ticket Client for Kayako - Windows Mobile Live Support Client for Kayako
   
Reply With Quote
  (#7) Old
GoneShootin Offline
Member
 
GoneShootin's Avatar
 
Posts: 268
Join Date: Jan 2008
13-01-2009, 01:45 PM

This is actually very similar to problems we faced with EML files, and where PDF docs were being based64'd within the EML file. Are you sure the TIF files are not encapsulated in such an EML format?

The bug I speak of was raised but keeps getting pushed along the fix chain.
   
Reply With Quote
  (#8) Old
ppimenta Offline
New Member
 
Posts: 17
Join Date: Mar 2008
13-01-2009, 02:50 PM

GoneShootin,

You're right the problem is with the reader, thanks. I'll address this to the company that deals with our faxes. In the meantime, do you have the bug id that you raised?

Thanks!

Last edited by ppimenta; 13-01-2009 at 03:20 PM.
   
Reply With Quote
  (#9) Old
GoneShootin Offline
Member
 
GoneShootin's Avatar
 
Posts: 268
Join Date: Jan 2008
13-01-2009, 03:30 PM

Quote:
Originally Posted by ppimenta View Post
GoneShootin,

You're right the problem is with the reader, thanks. I'll address this to the company that deals with our faxes. In the meantime, do you have the bug id that you raised?

Thanks!
Kayako Bug Tracker - Viewing Issue #826 - PDF attachments are corrupted if they are inside some .eml attachment.
   
Reply With Quote
  (#10) Old
ppimenta Offline
New Member
 
Posts: 17
Join Date: Mar 2008
16-01-2009, 02:31 PM

We fixed the problem by updating 2 files in Kayako: includes/MIME/mimeDecode.php and includes/functions_mime.php.

Changes shown below:

1)
file: includes/MIME/mimeDecode.php
in: function _decode($headers, $body, $default_ctype = 'text/plain')
...
if (isset($content_type)) {
switch (strtolower($content_type['value'])) {
...
add:
case 'multipart/fax-message':
if(!isset($content_type['other']['boundary'])){
$this->_error = 'No boundary found for ' . $content_type['value'] . ' part';
return false;
}
$default_ctype = 'multipart/mixed';
$parts = $this->_boundarySplit($body, $content_type['other']['boundary']);
for ($i = 0; $i < count($parts); $i++) {
list($part_header, $part_body) = $this->_splitBodyHeader($parts[$i]);
$part = $this->_decode($part_header, $part_body, $default_ctype);
$return->parts[] = $part;
}
break;

2)
file: includes/functions_mime.php
in: function decodeMail_traverseStructure($structure)
...
switch ($ctype) {
...
add:
case 'multipart/fax-message':

Last edited by ppimenta; 16-01-2009 at 02:31 PM.
   
Reply With Quote
  (#11) Old
craigbrass Offline
Senior Member
 
Posts: 7,387
Join Date: Jun 2005
Location: Cumbria, UK
16-01-2009, 04:49 PM

Thanks for sharing that. Hopefully these changes can be merged into the version control server.


Craig Brass - Kayako Forum Squatter (Note: I am NOT a staff member)

Click here for Kayako Software Development

My Addons: BlackBerry Ticket Client for Kayako - Windows Mobile Live Support Client for Kayako
   
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
Time Format and Date Format not sticking for staff kbuska SupportSuite, eSupport and LiveResponse 13 23-01-2009 10:47 PM
incompatible file format error david.stockford Installation & Upgrading 6 23-01-2009 11:30 AM
Change Time & Date format Dynadata How do I? 1 03-04-2008 02:01 PM
dd/mm/yy format chelsel SupportSuite, eSupport and LiveResponse 3 13-02-2007 06:12 PM
Date format question CalBear SupportSuite, eSupport and LiveResponse 7 11-08-2006 08:09 PM



Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2


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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78