<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Hi Chaim.<br>
<br>
Chaim Rieger wrote:
<blockquote cite="mid4406250E.2070607@gmail.com" type="cite">need to
disable the notification sent to the requester for one queue,
  <br>
  <br>
  <br>
the only way i can accomplish this is if i remove the global scrips
from this queue and add the notify scrip for all the other queues or is
there a better way
  <br>
</blockquote>
I assume you mean when a ticket is created.<br>
You could add a condition to the global scrip that returns 0 for your
particular queue.<br>
<br>
EG. edit the "<small>On Create Autoreply To Requestors with template
Autoreply" <br>
</small>Change the condition to 'User Defined'<br>
<br>
/~~~~~~~~~~~~~~~~~~~~~<br>
Description: whatever<br>
Condition: User Defined<br>
Action: Autoreply To Requestors<br>
Template: Global template: Autoreply<br>
Stage: TransactionCreate<br>
<br>
Custom condition:<br>
if ( $self->TransactionObj->Type eq "Create" ) {<br>
   if ( $self->TicketObj->QueueObj->Name eq 'yourqueue' ) { <br>
      return 0; <br>
   }<br>
   return 1;<br>
}<br>
<br>
Custom action preparation code:<br>
Custom action cleanup code:<br>
<br>
Hope this works for you :-)<br>
Kind regards.<br>
Luke.<br>
<blockquote cite="mid4406250E.2070607@gmail.com" type="cite">_______________________________________________
  <br>
<a class="moz-txt-link-freetext" href="http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users">http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users</a>
  <br>
  <br>
Be sure to check out the RT Wiki at <a class="moz-txt-link-freetext" href="http://wiki.bestpractical.com">http://wiki.bestpractical.com</a>
  <br>
  <br>
Download a free sample chapter of RT Essentials from O'Reilly Media at
<a class="moz-txt-link-freetext" href="http://rtbook.bestpractical.com">http://rtbook.bestpractical.com</a>
  <br>
  <br>
WE'RE COMING TO YOUR TOWN SOON - RT Training in Amsterdam, Boston and
  <br>
San Francisco - Find out more at
<a class="moz-txt-link-freetext" href="http://bestpractical.com/services/training.html">http://bestpractical.com/services/training.html</a>
  <br>
</blockquote>
<br>
<br>
<pre class="moz-signature" cols="72">-- 
Luke
</pre>
</body>
</html>