This file is indexed.

/usr/share/otrs/Kernel/Config/GenericAgent.pm.dist is in otrs2 3.3.5-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# --
# Kernel/Config/GenericAgent.pm - config file of generic agent
# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (AGPL). If you
# did not receive this file, see http://www.gnu.org/licenses/agpl.txt.
# --

package Kernel::Config::GenericAgent;

use strict;
use warnings;
use utf8;

use vars qw(@ISA @EXPORT %Jobs);
use Exporter;
@ISA     = qw(Exporter);
@EXPORT  = qw(%Jobs);

# -----------------------------------------------------------------------
# config options
# -----------------------------------------------------------------------
%Jobs = (

    # GenericAgent job that sends escalation notifications.
    #   Activate this if you want to use these notifications in your system.
    'send escalation notifications' => {
        Escalation => 1,
        # new ticket properties
        New => {
            Module => 'Kernel::System::GenericAgent::NotifyAgentGroupOfCustomQueue',
        },
    },


    # GenericAgent job that triggers escalation forewarn and escalation start events.
    #   Activate this if you want to use these events in your system.
    'trigger escalation events' => {
        Escalation => 1,
        # new ticket properties
        New => {
            Module => 'Kernel::System::GenericAgent::TriggerEscalationStartEvents',
        },
    },
   # insert your jobs (see Kernel/Config/GenericAgent.pm.examples)
);
# -----------------------------------------------------------------------
# end of config options
# -----------------------------------------------------------------------
1;