Apache with mod-auth-kerb

I am new to RT and have set up a working system on fedora 6 with
population of the database from LDAP when email is received. I now want
to move to web authentication. Have apache working with kerberos but
when I turn on WebExternalAuth, RT comes up with a mainly blank screen.
After reveiwing some logs I believe that REMOTE_USER is returning with
username@domain.name and RT needs only username. After some poking
around found that this is handled in RT/Interface/Web.pm

Has anyone come accross this and have a fix or can point me in the right
direction? I have very little perl (read almost none) experience.

Thanks,

David.

DISCLAIMER:
This email and any files transmitted with it are confidential and intended solely for the use of the individual to whom they are addressed.

If you have received this email in error, please notify the sender immediately by return email and then delete this message.

Any views expressed in this email are those of the individual sender and may not necessarily reflect the views of Yarra Valley Grammar.

Was able to fix myself with the following line added in the Web.pm to
“sub WebcanonicalizeInfo”

$user =~ s/@.*//;

after $user = lc ( … etc.

Has anyone come accross this and have a fix or can point me in the right
direction? I have very little perl (read almost none) experience.

DISCLAIMER:
This email and any files transmitted with it are confidential and intended solely for the use of the individual to whom they are addressed.

If you have received this email in error, please notify the sender immediately by return email and then delete this message.

Any views expressed in this email are those of the individual sender and may not necessarily reflect the views of Yarra Valley Grammar.