<!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">
There's actually an example of how to do just this in the book.<br>
<br>
Here's mine:<br>
<br>
<blockquote><tt>  my $email =
($self->TicketObj->RequestorAddresses)[0];</tt><br>
  <tt>     </tt><br>
  <tt>    my $ldap = Net::LDAP->new( 'ldap.somewhere.com' );</tt><br>
  <tt>    $ldap->bind;</tt><br>
  <tt>     </tt><br>
  <tt>    my $msg = $ldap->search( base   => 'o=XXXXXXXXXX,c=YY',</tt><br>
  <tt>                             filter => "(mail=$email)",</tt><br>
  <tt>                           );</tt><br>
  <tt>     </tt><br>
  <tt>    my $entry = $msg->entry(0);</tt><br>
  <tt>     </tt><br>
  <tt>    my $phone= $entry->get_value('telephoneNumber');</tt><br>
  <tt>    my $cf = RT::CustomField->new( $RT::SystemUser );</tt><br>
  <tt>    </tt><br>
  <tt>    $cf->LoadByName( Name => 'RequestorPhone' );</tt><br>
  <tt>    </tt><br>
  <tt>    $self->TicketObj->AddCustomFieldValue( Field => $cf,
Value => $phone, RecordTransaction => 0);</tt><br>
  <br>
  <tt>    return 1;</tt><br>
</blockquote>
<br>
-Mike<br>
<br>
Mike Peachey wrote:
<blockquote cite="mid:4B99FE9B.902@jennic.com" type="cite">
  <pre wrap="">Jeff Blaine wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">I'm looking to fill in custom fields with data retrieved
from an LDAP server.

That is, someone with permission to modify an existing
ticket will enter some data into a custom field, then
save the modification.  At save time, the code will
use that custom field to populate another custom field
with LDAP query results.

Would this best be done as a plugin?  A Scrip?  Other?
    </pre>
  </blockquote>
  <pre wrap=""><!---->
You will need a scrip to do it. I'm not aware of any plugin currently
available that could do it for you.

The basics of the scrip shouldn't be too hard, but you're going to need
to set up an LDAP connection, do a valid search, parse the results save
the results etc. There is LDAP code for RT in the ExternalAuth plugin
that may be useful for copying and pasting, but I don't envy you your task.

  </pre>
</blockquote>
<br>
</body>
</html>