
Try this - the lines got wrapped: package Kernel::Config::GenericAgent; use strict; use vars qw($VERSION @ISA @EXPORT %Jobs); require Exporter; @ISA = qw(Exporter); @EXPORT = qw(%Jobs); $VERSION = '$Revision: 1.4 $'; $VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/; %Jobs = ( 'delete' => { Queue => 'delete', States => ['new', 'open'], Locks => ['unlock'], New => { Delete => 1, }, }, ); 1; Additionally, you find some examples in /opt/otrs/Kernel/Config/GenericAgent.pm.examples: less /opt/otrs/Kernel/Config/GenericAgent.pm.examples A skeleton for the script can also be found in /opt/otrs/Kernel/Config/GenericAgent.pm.dist: cd /opt/otrs/Kernel/Config mv GenericAgent.pm GenericAgent.pm.old cp GenericAgent.pm.dist GenericAgent.pm hth, Robert Kehl -- ((otrs.de)) :: OTRS GmbH :: Norsk-Data-Str. 1 :: 61352 Bad Homburg http://www.otrs.de/ :: Tel. +49 (0)6172 4832388