summaryrefslogtreecommitdiffstats
path: root/Kernel/System
diff options
context:
space:
mode:
authorAlexander Sulfrian <alex@spline.inf.fu-berlin.de>2015-01-19 00:50:43 +0100
committerAlexander Sulfrian <alex@spline.inf.fu-berlin.de>2015-01-19 00:50:43 +0100
commit80e9d9da6ec5a16d222910a97ca5b79d30a1da8f (patch)
tree8ee8f5378e17bb2bca4fa02729126ef55f205b75 /Kernel/System
downloadDefaultRecipient-80e9d9da6ec5a16d222910a97ca5b79d30a1da8f.tar.gz
DefaultRecipient-80e9d9da6ec5a16d222910a97ca5b79d30a1da8f.tar.bz2
DefaultRecipient-80e9d9da6ec5a16d222910a97ca5b79d30a1da8f.zip
Inital commit
Diffstat (limited to 'Kernel/System')
-rw-r--r--Kernel/System/ResponseChangeDefaultTo.pm25
1 files changed, 25 insertions, 0 deletions
diff --git a/Kernel/System/ResponseChangeDefaultTo.pm b/Kernel/System/ResponseChangeDefaultTo.pm
new file mode 100644
index 0000000..7ba02a9
--- /dev/null
+++ b/Kernel/System/ResponseChangeDefaultTo.pm
@@ -0,0 +1,25 @@
+# --
+# Kernel/System/ResponseChangeDefaultTo.pm - core module
+# Copyright (C) 2015 Alexander Sulfrian <alex@spline.inf.fu-berlin.de>
+# --
+# 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::System::ResponseChangeDefaultTo;
+
+use strict;
+use warnings;
+
+sub new {
+ my ( $Type, %Param ) = @_;
+
+ # allocate new hash for object
+ my $Self = {};
+ bless ($Self, $Type);
+
+ return $Self;
+}
+
+1;