~ubuntu-branches/ubuntu/natty/otrs2/natty-updates

« back to all changes in this revision

Viewing changes to Kernel/System/PostMaster/Filter/AgentInterface.pm

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2007-04-14 17:58:55 UTC
  • mto: (20.1.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: package-import@ubuntu.com-20070414175855-9ne0w01yu1q44ch0
Tags: upstream-2.1.7
ImportĀ upstreamĀ versionĀ 2.1.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# --
2
2
# Kernel/System/PostMaster/Filter/AgentInterface.pm - sub part of PostMaster.pm
3
 
# Copyright (C) 2001-2005 Martin Edenhofer <martin+code@otrs.org>
 
3
# Copyright (C) 2001-2006 OTRS GmbH, http://otrs.org/
4
4
# --
5
 
# $Id: AgentInterface.pm,v 1.4 2005/02/25 12:24:20 martin Exp $
 
5
# $Id: AgentInterface.pm,v 1.6 2006/11/02 13:02:04 tr Exp $
6
6
# --
7
7
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
8
8
# the enclosed file COPYING for license information (GPL). If you
18
18
use Kernel::System::CustomerUser;
19
19
 
20
20
use vars qw($VERSION);
21
 
$VERSION = '$Revision: 1.4 $';
 
21
$VERSION = '$Revision: 1.6 $';
22
22
$VERSION =~ s/^.*:\s(\d+\.\d+)\s.*$/$1/;
23
23
 
24
 
 
25
24
# bulk, list
26
25
 
27
 
# --
28
26
sub new {
29
27
    my $Type = shift;
30
28
    my %Param = @_;
47
45
 
48
46
    return $Self;
49
47
}
50
 
# --
 
48
 
51
49
sub Run {
52
50
    my $Self = shift;
53
51
    my %Param = @_;
468
466
 
469
467
    return 1;
470
468
}
471
 
# --
 
469
 
472
470
1;