Elias Probst schrieb:
Hallo,

evtl. Syntax-Fehler in Config.pm ?? Nimm mal sensible Daten wie Passwörter/User aus deiner Config.pm raus und hänge sie an.

Ist eigentlich nichts besonderes drin, aber hier:

-----

package Kernel::Config;

sub Load {
    my $Self = shift;

    $Self->{Debug} = 2;

    # ---------------------------------------------------- #
    # database settings                                    #
    # ---------------------------------------------------- #
    # DatabaseHost
    # (The database host.)
    $Self->{DatabaseHost} = '***';
    # Database
    # (The database name.)
    $Self->{Database} = 'otrs';
    # DatabaseUser
    # (The database user.)
    $Self->{DatabaseUser} = '***';
    # DatabasePw
    # (The password of database user. You also can use bin/CryptPassword.pl
    # for crypted passwords.)
    $Self->{DatabasePw} = '***';
    # DatabaseDSN
    # (The database DSN for MySQL ==> more: "man DBD::mysql")
$Self->{DatabaseDSN} = "DBI:mysql:database=$Self->{Database};host=$Self->{DatabaseHost};";

    # ---------------------------------------------------- #
    # fs root directory
    # ---------------------------------------------------- #
    $Self->{Home} = '/home/otrs';

    # CheckEmailAddresses
    # (Check syntax of used email addresses)
    $Self->{CheckEmailAddresses} = 0;

    $Self->{'LogModule'} = 'Kernel::System::Log::File';
    $Self->{'LogModule::LogFile'} = '/home/otrs/var/log/otrs.log';

    # **************************************************** #
    # insert your own config settings "here"               #
    # config settings taken from Kernel/Config/Defaults.pm #
    # **************************************************** #
    # $Self->{SessionUseCookie} = 0;
    # $Self->{CheckMXRecord} = 0;

    $Self->{SessionName} = 'sid';

    $Self->{SessionModule} = 'Kernel::System::AuthSession::DB';

    # SessionCheckRemoteIP
    # (If the application is used via a proxy-farm then the
    # remote ip address is mostly different. In this case,
    # turn of the CheckRemoteID. ) [1|0]
    $Self->{SessionCheckRemoteIP} = 0;

    # SessionDeleteIfNotRemoteID
    # (Delete session if the session id is used with an
    # invalied remote IP?) [0|1]
    $Self->{SessionDeleteIfNotRemoteID} = 0;

    $Self->{SessionMaxTime} = 60 * 60 * 24 * 5;
    $Self->{SessionMaxIdleTime} = 60 * 60 * 24 * 5;

    $Self->{SessionUseCookie} = 0;
    $Self->{SessionUseCookieAfterBrowserClose} = 0;

    $Self->{ShowCustomerInfoCompose} = 1;
    $Self->{ShowCustomerInfoZoom} = 1;
    $Self->{ShowCustomerInfoQueue} = 1;

$Self->{'Ticket::StorageModule'} = 'Kernel::System::Ticket::ArticleStorageFS';

$Self->{'Ticket::NumberGenerator'} = 'Kernel::System::Ticket::Number::AutoIncrement';
    $Self->{'Ticket::NumberGenerator::MinCounterSize'} = 6;

    $Self->{'Ticket::Frontend::CustomerInfoZoomMaxSize'} = 1000;
    $Self->{'Ticket::Frontend::CustomerInfoQueueMaxSize'} = 511;
    $Self->{'Ticket::Frontend::CustomerInfoComposeMaxSize'} = 255;

    $Self->{'Ticket::Frontend::BulkFeatureJavaScriptAlert'} = 0;

$Self->{'ProductName'} =  'TTS 2.2.0 b4';
$Self->{'SystemID'}  =  '35';
$Self->{'FQDN'}      =  '***';
$Self->{'AdminEmail'} =       '[EMAIL PROTECTED]';
$Self->{'Organization'}      =  'Bigpoint';
$Self->{'DefaultLanguage'} =  'de';
$Self->{'LostPassword'}      =  '0';
$Self->{'SpellCheckerBin'} =  '/usr/bin/aspell';
$Self->{'SpellCheckerDictDefault'} =  'deutsch';
$Self->{'SpellCheckerIgnore'} =       [
                  'html',
                  'http',
                  'https',
                  'rfc',
                  'webmail',
                  'www'
                ];
$Self->{'Package::RepositoryList'} =  {};
$Self->{'NotificationSenderName'} =   'Bigpoint TTS';
$Self->{'System::Permission'} =       [
                  'create',
                  'move_into',
                  'owner',
                  'priority',
                  'ro',
                  'rw'
                ];
$Self->{'Frontend::NavBarStyle::ShowSelectedArea'} =  '1';
$Self->{'Ticket::NumberGenerator'} = 'Kernel::System::Ticket::Number::AutoIncrement';
$Self->{'Ticket::NumberGenerator::MinCounterSize'} =  6;
$Self->{'Ticket::StorageModule'} = 'Kernel::System::Ticket::ArticleStorageFS';
$Self->{'Ticket::Frontend::CustomerInfoComposeMaxSize'}      =  255;
$Self->{'Ticket::Frontend::CustomerInfoZoomMaxSize'} =       1000;
$Self->{'Ticket::Frontend::CustomerInfoQueueMaxSize'} =       511;
$Self->{'Ticket::Frontend::BulkFeatureJavaScriptAlert'}      =  0;
$Self->{'Ticket::ViewableLocks'} =   [
                  '\'tmp_lock\'',
                  '\'unlock\''
                ];
$Self->{'Ticket::ViewableStateType'} =       [
                  'new',
                  'open',
                  'pending auto',
                  'pending reminder'
                ];
$Self->{'1'} = 1;

$Self->{'TicketIndexModule'} = 'Kernel::System::Ticket::IndexAccelerator::RuntimeDB';

    # Ticket::Frontend::AccountTime
    # (add time accounting)
    $Self->{'Ticket::Frontend::AccountTime'} = 0;

    # SwitchToUser
    # (Allow the admin to switch into a selected user session.)
    $Self->{SwitchToUser} = 1;

    # ms_style
    $Self->{'Ticket::Frontend::ResponseFormat'} = '$Data{"Salutation"}

$Data{"StdResponse"}

$Data{"Signature"}

$Data{"OrigFrom"} $Text{"wrote"}:
$Data{"Body"}
';

# ---------------------------------------------------- #
# needed system stuff (don't edit this)                #
# ---------------------------------------------------- #
use strict;
use vars qw(@ISA $VERSION);
use Kernel::Config::Defaults;
push (@ISA, 'Kernel::Config::Defaults');
$VERSION = '$Revision: 1.18 $';
$VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/;
# -----------------------------------------------------#

1;


------

_______________________________________________
OTRS-de Mailingliste: otrs-de - Webpage: http://otrs.org/
Archiv: http://lists.otrs.org/pipermail/otrs-de/
Listenabo verwalten: http://lists.otrs.org/cgi-bin/listinfo/otrs-de/
Support oder Consulting fuer Ihr OTRS System?
=> http://www.otrs.com/

Antwort per Email an