IMAPS Problem nach Perl module updates.

Hilfe zu Znuny Problemen aller Art
Locked
StefanS
Znuny newbie
Posts: 28
Joined: 20 May 2010, 15:41
Znuny Version: 3.0.10

IMAPS Problem nach Perl module updates.

Post by StefanS »

Hallo zusammen,
habe nach perl module Updates diese Fehlermeldung:

Message: IMAPS: Can't connect to 192.168.1.48

Traceback (2330):
Module: Kernel::System::MailAccount::IMAPS::_Fetch (v1.12) Line: 127
Module: Kernel::System::MailAccount::IMAPS::Fetch (v1.12) Line: 79
Module: Kernel::System::MailAccount::MailAccountFetch (v1.17) Line: 424
Module: main::Fetch (v1.4) Line: 180
Module: /usr/local/otrs/bin/otrs.PostMasterMailbox.pl (v1.4) Line: 93

Im Logfile fom Exchange finde ich das:
2013-08-23T10:30:05.595Z,00000000000003AB,0,192.168.1.48:993,192.168.100.112:42374,,0,0,0,OpenSession,,

Also die Verbindung wird aufgebaut.

Diese perl module wurden erneuert:

p5-BerkeleyDB-0.52 < needs updating (index has 0.53)
p5-CPAN-Meta-2.131560 < needs updating (index has 2.132140)
p5-Compress-Raw-Bzip2-2.061 < needs updating (index has 2.062)
p5-Compress-Raw-Zlib-2.061 < needs updating (index has 2.062)
p5-Email-Address-1.89.8 < needs updating (index has 1.90.0)
p5-Email-MIME-1.911 < needs updating (index has 1.922)
p5-Email-MIME-Encodings-1.313 < needs updating (index has 1.314)
p5-GD-2.49 < needs updating (index has 2.50)
p5-GD-Graph-1.44.01_5 < needs updating (index has 1.48)
p5-IO-Compress-2.061 < needs updating (index has 2.062)
p5-IO-Socket-SSL-1.94 < needs updating (index has 1.953)
p5-Module-CoreList-2.94 < needs updating (index has 2.97)
p5-Module-Metadata-1.000011 < needs updating (index has 1.000014)
p5-Net-IMAP-Simple-1.2200 < needs updating (index has 1.2201)
p5-Text-CSV_XS-0.97 < needs updating (index has 1.01)
p5-perl-ldap-0.5600 < needs updating (index has 0.5700)
p5-version-0.99.02 < needs updating (index has 0.99.03)

Irgend eine Idee ?
Danke für jede Hilfe.
Stefan
OTRS: 3.3.7, OTRS::ITSM 3.3.7
OS: FreeBSD-10
Apache2/MySQL 5
StefanS
Znuny newbie
Posts: 28
Joined: 20 May 2010, 15:41
Znuny Version: 3.0.10

Re: IMAPS Problem nach Perl module updates.

Post by StefanS »

Hallo, ich noch mal.
Wegen der Dringlichkeit, besteht die Chance in OTRS für IMAPS das Debug ein zu schalten ?

Gruß
Stefan
OTRS: 3.3.7, OTRS::ITSM 3.3.7
OS: FreeBSD-10
Apache2/MySQL 5
reneeb
Znuny guru
Posts: 5018
Joined: 13 Mar 2011, 09:54
Znuny Version: 6.0.x
Real Name: Renée Bäcker
Company: Perl-Services.de
Contact:

Re: IMAPS Problem nach Perl module updates.

Post by reneeb »

Du könntest in Kernel/System/MailAccount/IMAPS.pm folgendes anpassen:

Code: Select all

    my $IMAPObject = Net::IMAP::Simple->new(
        $Param{Host},
        timeout     => $Param{Timeout},
        debug       => $Param{Debug},
        use_ssl     => 1,
        ssl_options => [
            SSL_verify_mode => IO::Socket::SSL::SSL_VERIFY_NONE(),
        ],
    );
Bei "debug =>" einfach aus dem $Param{Debug} einfach ne 1 machen, also

Code: Select all

    my $IMAPObject = Net::IMAP::Simple->new(
        $Param{Host},
        timeout     => $Param{Timeout},
        debug       => 1,
        use_ssl     => 1,
        ssl_options => [
            SSL_verify_mode => IO::Socket::SSL::SSL_VERIFY_NONE(),
        ],
    );
Perl / Znuny development: http://perl-services.de
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de
StefanS
Znuny newbie
Posts: 28
Joined: 20 May 2010, 15:41
Znuny Version: 3.0.10

Re: IMAPS Problem nach Perl module updates.

Post by StefanS »

danke für den Tip, aber die Ausgabe an Informationen ist leider die selbe :(
Irgend eine andere Idee ?

Danke und Gruß
Stefan
OTRS: 3.3.7, OTRS::ITSM 3.3.7
OS: FreeBSD-10
Apache2/MySQL 5
Locked