<div dir="ltr">I'm working on switching from individual per Queue custom scrips in Perl to using ExtractCustomFields for populating ticket data on creation via incoming email.  So far I've gotten the basics working, but I'm running into a brick wall changing the ticket owner.<div><br></div><div>What we had as a scrip, pruned down to just setting the owner:</div><div><br></div><div><div>my $Ticket = $self->TicketObj;</div><div>my $Transaction = $self->TransactionObj;</div><div>my $Attachment = $Transaction->Attachments;</div><div>my $AttFirst = $Attachment->First;</div><div><br></div><div>my $NewRTOwner = $AttFirst->GetHeader('X-NEW-RT-OWNER');</div><div><br></div><div>$Ticket->SetOwner($NewRTOwner);</div></div><div><br></div><div>With ExtractCustomFields I've setup the standard scrip with the following template:</div><div><br></div><div>|X-NEW-RT-OWNER|.*|$RT::Ticket->SetOwner($value)|</div><div><br></div><div>With debug logging lit, the post command is failing saying method SetOwner can't be called on an undefined value.  I can see that $value is getting correct set from the debug leading up to that failure, so I suspect this is a scope error on my part?</div><div><br></div><div>Any guidance would be greatly appreciated.</div><div><br></div><div>Josh C</div></div>