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
Salman Offline
Member
 
Posts: 118
Join Date: May 2004
Pre-selected From Address - 01-04-2008, 02:25 PM

Hi,

I have setup a number of different queues and from addresses in Kayako. The last one I setup was an address and queue for ABUSE report.

Whenever I try to create a new ticket, the pre-selected FROM address is the ABUSE one. SO I have to change to the SALES queue from the drop menu each time.

How can I change that so that the SALES queue address is pre-selected?

Thanks


Cheap Reseller Hosting, Business Hosting & Personal Hosting
cPanel & WHM - PHP4 & PHP5 - SiteBuilder - Free Domain For Life
Serving Thousands of Customers Since 2001
www.QualityHostOnline.com
   
Reply With Quote
  (#2) Old
GoneShootin Offline
Member
 
GoneShootin's Avatar
 
Posts: 190
Join Date: Jan 2008
02-04-2008, 11:51 AM

I have the exact same problem, but it doesnt happen for all users, only some. And I can't seem to find any obvious difference between them...
   
Reply With Quote
  (#3) Old
Matthew Offline
Member
 
Matthew's Avatar
 
Posts: 193
Join Date: Oct 2007
Location: Jakarta, Indonesia
02-04-2008, 03:56 PM

Quote:
Originally Posted by Salman View Post
Hi,
Whenever I try to create a new ticket, the pre-selected FROM address is the ABUSE one. SO I have to change to the SALES queue from the drop menu each time.

How can I change that so that the SALES queue address is pre-selected?
I would also like to know how to set the default FROM address, as my staff are not always picking up on the need to change it from the pull-down in the staff CP when creating a new ticket.


Matthew Arciniega
+ Free: Ticket List & Search Mods
| Dept. Display Names
+ Free: (Almost) Perfect Outlook/HTML Tickets
+ Tutorials: SLA System Explained
| Using Template Groups
Kayako v3.20.02 | PHP: 5.2.6 | MySQL: 5.0.58 | CentOS 4
   
Reply With Quote
  (#4) Old
Jamie Edwards Online
Operations Manager
 
Jamie Edwards's Avatar
 
Posts: 5,429
Join Date: Jan 2006
Location: United Kingdom
03-04-2008, 09:26 AM

Hi there,

Is this changed functionality since an upgrade? If so, between which versions?


Jamie Edwards (jamie.edwards ]at[ kayako.com)
----------------------------------------------------------------
---
   
Reply With Quote
  (#5) Old
Matthew Offline
Member
 
Matthew's Avatar
 
Posts: 193
Join Date: Oct 2007
Location: Jakarta, Indonesia
03-04-2008, 09:46 AM

Quote:
Originally Posted by Jamie Edwards View Post
Hi there,

Is this changed functionality since an upgrade? If so, between which versions?
Doesn't seem to be a change since an upgrade. What happened was that I created a secondary email queue for a department, and the program decided that this new queue would be the default one. However, that's definitely not what I want.


Matthew Arciniega
+ Free: Ticket List & Search Mods
| Dept. Display Names
+ Free: (Almost) Perfect Outlook/HTML Tickets
+ Tutorials: SLA System Explained
| Using Template Groups
Kayako v3.20.02 | PHP: 5.2.6 | MySQL: 5.0.58 | CentOS 4
   
Reply With Quote
  (#6) Old
Jamie Edwards Online
Operations Manager
 
Jamie Edwards's Avatar
 
Posts: 5,429
Join Date: Jan 2006
Location: United Kingdom
03-04-2008, 09:52 AM

I agree that this is a design issue, and have added it to the tracker: Kayako Bug Tracker - Viewing Issue #519 - When using two e-mail queues with one department, it is not possible to select a default


Jamie Edwards (jamie.edwards ]at[ kayako.com)
----------------------------------------------------------------
---
   
Reply With Quote
  (#7) Old
Salman Offline
Member
 
Posts: 118
Join Date: May 2004
04-04-2008, 07:58 AM

Thank you Jamie.


Cheap Reseller Hosting, Business Hosting & Personal Hosting
cPanel & WHM - PHP4 & PHP5 - SiteBuilder - Free Domain For Life
Serving Thousands of Customers Since 2001
www.QualityHostOnline.com
   
Reply With Quote
  (#8) Old
GoneShootin Offline
Member
 
GoneShootin's Avatar
 
Posts: 190
Join Date: Jan 2008
26-05-2008, 03:38 PM

Possible hack for this

Take this code block from modules/ticket/staff_newticket.php

Code:
<select name="opt_emailqueueid" class="swiftselect">';
    // 1st - Queue Emails
    //$firston = true;
    
    foreach ($_SWIFT["queuecache"]["list"] as $key=>$val)
    {
        if ($val["departmentid"] == $_department["departmentid"])
        {
          $seltext="";
            //if ($firston)
            //{
            //    $seltext = " selected";
            //    $firston = false;
            //}
            $fromname = iif(empty($val["customfromname"]), $_SWIFT["staff"]["fullname"], $val["customfromname"]);
            $fromemail = iif(empty($val["customfromemail"]), $val["email"], $val["customfromemail"]);
            
            if($val["email"]==$val["customfromemail"])
             echo '<option selected value="'. intval($val["emailqueueid"]) .'"'. $seltext .'>'. htmlspecialchars($fromname) .' &lt;'. htmlspecialchars($fromemail) .'&gt;</option>'.SWIFT_CRLF;
        }
    }
    // 2nd - Personal Email
    echo '<option value="0" selected>'. htmlspecialchars($_SWIFT["staff"]["fullname"]) .' &lt;'. htmlspecialchars($_SWIFT["staff"]["email"]) .'&gt;</option>'.SWIFT_CRLF;
    echo '</select>
Notice where I commented out the "$seltext". Then I added if($val["email"]==$val["customfromemail"]) such that it only prints a dropdown option if the email address of the queues is the same as the customfrom address from the available queues.

Then I set the staff users email address to be the default selected option.

It may not suit all people depending on their queue setup, but it suited me! Now instead of having all staff users assigned to that department showing up as "send from" options, only those email queues that have the same email address as the custom reply address will show, and of course the users own email account.

Last edited by GoneShootin; 26-05-2008 at 03:45 PM.
   
Reply With Quote
  (#9) Old
Salman Offline
Member
 
Posts: 118
Join Date: May 2004
09-09-2008, 08:32 PM

Jamie, this issue was originally due on 3.30.01 then on 3.30.02. Now its been pushed back to 3.30.05 ......

Heaven knows when 3.30.05 will be out!

The status was also changed to "feature request" when actually this is basically functionality.

PLEASE HELP!!!


Cheap Reseller Hosting, Business Hosting & Personal Hosting
cPanel & WHM - PHP4 & PHP5 - SiteBuilder - Free Domain For Life
Serving Thousands of Customers Since 2001
www.QualityHostOnline.com
   
Reply With Quote
  (#10) Old
Salman Offline
Member
 
Posts: 118
Join Date: May 2004
19-09-2008, 01:20 AM

OK, a new bug has come in since I upgraded to 3.30.02

When a client tries to create a ticket for the Sales Department, the ticket gets created under the ABUSE queue instead of the sales queue. Both queues are assigned to the sales dept.

I believe this is happening since no default reply address is available for any specific dept.

This reported issue has now become a BUG ....... Jamie?


Cheap Reseller Hosting, Business Hosting & Personal Hosting
cPanel & WHM - PHP4 & PHP5 - SiteBuilder - Free Domain For Life
Serving Thousands of Customers Since 2001
www.QualityHostOnline.com

Last edited by Salman; 19-09-2008 at 01:21 AM.
   
Reply With Quote
  (#11) Old
GoneShootin Offline
Member
 
GoneShootin's Avatar
 
Posts: 190
Join Date: Jan 2008
19-09-2008, 12:59 PM

Quote:
Originally Posted by Salman View Post
This reported issue has now become a BUG .......
If you believe it to be a BUG then you should really create a support ticket.

Last edited by GoneShootin; 19-09-2008 at 01:00 PM.
   
Reply With Quote
  (#12) Old
Salman Offline
Member
 
Posts: 118
Join Date: May 2004
19-09-2008, 01:55 PM

Already done so ....... waiting for a reply.


Cheap Reseller Hosting, Business Hosting & Personal Hosting
cPanel & WHM - PHP4 & PHP5 - SiteBuilder - Free Domain For Life
Serving Thousands of Customers Since 2001
www.QualityHostOnline.com
   
Reply With Quote
  (#13) Old
Salman Offline
Member
 
Posts: 118
Join Date: May 2004
20-09-2008, 12:37 AM

Jamie and John, I dont think your support team understands what I am trying to tell them so I will explain here

I have 2 departments setup:

Sales & Billing Dept.
Email Queues Assigned:
>> Sales@
>> Billing@
>> Abuse@

Support Dept
Email Queues Assigned:
>> Support@

Issue:
A client tries to create a ticket for the SALES & BILLING DEPT from the kayako web interface at this URL: https://www.qualityhostonline.com/support/

The ticket is created under the Sales & Billing Dept but the autoresponder uses the ABUSE@ address to send out the confirmation email. Why is that so and why cant we choose which address should be used by the autoresponder.

Temp Fix:
I edited the ABUSE@ queue and changed it to SALES@ queues and vice versa for the SALES@ queue.

This is a temporary fix but needs to be dealt with by your developers since this is a genuine BUG and not FEATURE REQUEST.


Cheap Reseller Hosting, Business Hosting & Personal Hosting
cPanel & WHM - PHP4 & PHP5 - SiteBuilder - Free Domain For Life
Serving Thousands of Customers Since 2001
www.QualityHostOnline.com
   
Reply With Quote
  (#14) Old
Jamie Edwards Online
Operations Manager
 
Jamie Edwards's Avatar
 
Posts: 5,429
Join Date: Jan 2006
Location: United Kingdom
20-09-2008, 12:38 AM

Hi Salman,

What is your ticket ID?


Jamie Edwards (jamie.edwards ]at[ kayako.com)
----------------------------------------------------------------
---
   
Reply With Quote
  (#15) Old
Salman Offline
Member
 
Posts: 118
Join Date: May 2004
20-09-2008, 12:39 AM

Gfp-657134


Cheap Reseller Hosting, Business Hosting & Personal Hosting
cPanel & WHM - PHP4 & PHP5 - SiteBuilder - Free Domain For Life
Serving Thousands of Customers Since 2001
www.QualityHostOnline.com
   
Reply With Quote
Reply

Tags
address, preselected

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
Support Offline Email Address OLS_DLV How do I? 0 20-03-2008 07:31 PM
Slow response, loss of formatting when accessing from public IP address jkingsland Technical Chat 5 01-10-2007 03:21 PM
Parsing: "Outlook address book" Parse log failure netrunr SupportSuite, eSupport and LiveResponse 1 06-06-2007 10:53 AM
Mass reply, email queues & default reply from address richm SupportSuite, eSupport and LiveResponse 0 25-04-2007 03:16 PM
Solving problem: eSupport sends emails to staff addres instead of Email Queue address tonila Developers & Code 0 16-05-2006 01:03 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