Jendras,<br><br>A couple things to keep in mind:<br><br><ol><li>Like Mark said, you have to make sure you have a scrip for that Queue (or Globally) that will trigger a notification to CC's for whatever condition you want this to be on.</li>
<li>Beyond that, you haven't specified if these Cc's you mentioned were "Queue Watcher" Cc's or Cc's that were merely on the original email that created the ticket. This is important because those are two different types of Cc's. <b><i>BECAUSE</i></b>:</li>
<ol><li>Cc's from email does NOT automatically become Cc's for a ticket. To do that you need to add them. This can happen 1 of 3 ways:</li><ol><li>Manually. Not a lot of fun, which is why there is the next option.</li>
<li>Create two scrips to add ALL Cc's for "OnCreate" and "OnCorrespond" to an individual ticket. This would be on a "Queue-byQueue" basis, in case some Queue managers didn't want these Cc's to automatically get email.</li>
<li>Use the RT Config setting to "Parse" Cc's for ALL Queues Globally (see you RT_Config.pm file for the details).</li></ol><li>If these Cc's are the people that are ALWAYS interested in what's going on in a Queue, then these Cc's are "Queue Watcher" Cc's and you set them up in "Basics" when you create a Queue.</li>
</ol></ol><br>That's about it. Think hard about how you want to do it. There's code in the wiki that will do the parsing of Cc's on a "Queue-by-Queue" basis.<br><br>Hope this helps.<br><br>Kenn<br>LBNL<br>
<br><br><div class="gmail_quote">On Mon, Aug 2, 2010 at 6:25 AM, jendras <span dir="ltr"><<a href="mailto:jendras@jendras.com">jendras@jendras.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<br>
I have changed  /opt/rt3/lib/RT/Action/Autoreply.pm  file to:<br>
<br>
sub SetRecipients {<br>
    my $self=shift;<br>
    push(@{$self->{'To'}},<br>
$self->TicketObj->Requestors->MemberEmailAddresses);<br>
    push(@{$self->{'Cc'}}, $self->TicketObj->Cc->MemberEmailAddresses);<br>
    push(@{$self->{'Cc'}},<br>
$self->TicketObj->QueueObj->Cc->MemberEmailAddresses);<br>
    return(1);<br>
}<br>
<br>
<br>
But then even normal autoreply is not working.<br>
<br>
Do you have another idea?<br>
<div><div></div><div class="h5"><br>
<br>
Mark Jenks-2 wrote:<br>
><br>
> You need to create a scrip to send to CC's.   Just like the requestor<br>
> one.<br>
><br>
> -----Original Message-----<br>
> From: <a href="mailto:rt-users-bounces@lists.bestpractical.com">rt-users-bounces@lists.bestpractical.com</a><br>
> [mailto:<a href="mailto:rt-users-bounces@lists.bestpractical.com">rt-users-bounces@lists.bestpractical.com</a>] On Behalf Of jendras<br>
> Sent: Monday, August 02, 2010 2:38 AM<br>
> To: <a href="mailto:rt-users@lists.bestpractical.com">rt-users@lists.bestpractical.com</a><br>
> Subject: [rt-users] Autoreply for CC<br>
><br>
><br>
> Hi,<br>
><br>
> I am using RT 3.8.7.<br>
> When RT sends back a acknowledgment to requestor it is not including CC<br>
> addresses from mail.<br>
> How can I make this happen? RT should send a mail to requestor and<br>
> separate<br>
> mail to CC addresses.<br>
> --<br>
> View this message in context:<br>
> <a href="http://old.nabble.com/Autoreply-for-CC-tp29322678p29322678.html" target="_blank">http://old.nabble.com/Autoreply-for-CC-tp29322678p29322678.html</a><br>
> Sent from the Request Tracker - User mailing list archive at Nabble.com.<br>
><br>
><br>
> Discover RT's hidden secrets with RT Essentials from O'Reilly Media.<br>
> Buy a copy at <a href="http://rtbook.bestpractical.com" target="_blank">http://rtbook.bestpractical.com</a><br>
><br>
> CONFIDENTIALITY NOTICE:  The information contained in this email message,<br>
> including any attachments, may be<br>
> privileged, confidential and otherwise protected from disclosure.  If the<br>
> reader of this message is not the<br>
> intended recipient, you are hereby notified that any use, dissemination,<br>
> distribution or copying of this<br>
> message, including any attachments, is strictly prohibited.  If you have<br>
> received this email message in<br>
> error, please notify the sender by reply email and delete/destroy the<br>
> email message, including attachments,<br>
> and any copies thereof.  Although we have taken precautions to minimize<br>
> the risk of transmitting viruses via<br>
> email and attachments thereto, we do not guarantee that either is<br>
> virus-free, and we accept no liability for<br>
> any damages sustained as a result of any such viruses.<br>
><br>
> Discover RT's hidden secrets with RT Essentials from O'Reilly Media.<br>
> Buy a copy at <a href="http://rtbook.bestpractical.com" target="_blank">http://rtbook.bestpractical.com</a><br>
><br>
><br>
<br>
--<br>
</div></div>View this message in context: <a href="http://old.nabble.com/Autoreply-for-CC-tp29322678p29325190.html" target="_blank">http://old.nabble.com/Autoreply-for-CC-tp29322678p29325190.html</a><br>
<div><div></div><div class="h5">Sent from the Request Tracker - User mailing list archive at Nabble.com.<br>
<br>
<br>
Discover RT's hidden secrets with RT Essentials from O'Reilly Media.<br>
Buy a copy at <a href="http://rtbook.bestpractical.com" target="_blank">http://rtbook.bestpractical.com</a><br>
</div></div></blockquote></div><br>