Pierre,<br><br>Have you tried other methods? If all the email is coming into the same Queue, why not just move them to another Queue based on the CustomFiled Value (I'm assuming your using CommandByMail for that). I do this for several Queues. We have a "Triage" Queue that receives the email tickets and based on a CF value, moves the ticket to another Queue and even pre-assigns the owner based on another CF value.<br>
<br>Kenn<br>LBNL<br><br><div class="gmail_quote">On Wed, Jan 19, 2011 at 6:09 AM, Pierre Buhas <span dir="ltr"><<a href="mailto:pierre.buhas@duolog.com">pierre.buhas@duolog.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;">
<div><div>Hello,</div><div><br></div><div>I am trying to customize one Scrip I found (<a href="http://requesttracker.wikia.com/wiki/EmailRouting" target="_blank">http://requesttracker.wikia.com/wiki/EmailRouting</a>) ..</div>
<div><br></div>

<div>Now what I would like to do is automatically routing and creating the ticket in the right queue by looking at a queues customField MailDomain where I store the domain name like: \@gmail\.com below ..</div><div><br></div>


<div>How should I debug my modifications - See Option2 - there (it is not working yet...;-) ? </div><div><br></div><div>Thanks</div><div><br></div><div>#--------------------------</div><div># Domains we want to move</div>


<div>#--------------------------</div><div> </div><div># Option 1 - list the domains here</div><div># my %domain_map = (</div><div>#                    '\@gmail\.com'         => "TESTGmail",</div><div>


#                    '\@free\.fr'        => "TESTFree"</div><div>#                 );</div><div> </div><div><br></div><div># Option 2 - get all domain from queues CF</div><div>my %domain_map = ();</div>


<div>my $queues = new RT::Queues(RT::SystemUser);</div><div>foreach my $queue ($queues->Next) {</div><div>        $domain_map { $queue->FirstCustomFieldValue('MailDomain') } = $queue->Name;</div><div>}</div>


<div><br></div><div>#---------------------------------------------</div><div>#Check each of our defined domains for a match</div><div>#---------------------------------------------</div><div> foreach my $domainKey (keys %domain_map ){</div>


<div> if($self->TicketObj->RequestorAddresses =~ /^.*?${domainKey}/) {</div><div>     # Domain matches - move to the right queue</div><div>     $self->TicketObj->SetQueue($domain_map{$domainKey});</div><div>     }</div>


<div> }</div></div><div><br></div><font color="#888888"><div><br></div><div><br></div><br clear="all">Pierre <br><br>
</font></blockquote></div><br>