Computer Tips and Tricks | WordPress Technology Hints » osTicket
OsTicket 1.6 screen dumps as attachments via Outlook
November 23rd, 2010 | 1 Comment
In osTicket the screen shot or screendump feature does not work when a ticket is sent in, so if a user is emailing in and they paste a screenshot into the email, it does not get sent with the ticket. Amending a couple of files will allow them to start working: pipe.php Find: if($filename && $cfg->canUploadFileType($filename)) { $ticket->saveAttachment($filename,$part->body,$msgid,'M'); } Just after add: //Allow embedded images from Outlook } elseif (!($part->disposition) && (!strcasecmp($part->ctype_primary,'image')) ) { $filename=$part->ctype_parameters['name']; if($filename && $cfg->canUploadFileType($filename)) { $ticket->saveAttachment($filename,$part->body,$msgid,'M'); } class.mailfetch.php Find: function saveAttachments($ticket,$mid,$part,$index=0) { … Read entire article »
Filed under: Computer Tips and Tricks, osTicket, Technology Tips
Recent Comments
- Annette on Adsense Plugin
"I am still very new to blogging and Wordpress and I cannot figure out where to p…" - Robert Reynolds on How to add your own custom Flash SWF Banner to your WordPress Blog header in 5 easy steps
"When I pull up your example page the header is not in flash. Do you have any ex…" - Paul Mullins on Earn while posting on forums with Postloop
"That is a great idea that Postloop do, if it works for them, then you can't knoc…" - M. Bennett Freeman on Arfooo – Free directory script
"Just installed my script and I must say that I like the program. Easy to change …" - martinglover on PHPBB Forum – How to add AdSense sky scraper banner ads to either side of your forum
"It just means you need to find the content.css file in your theme. Where it says…"