IMAPS / IMAPTLS Port

Moderator: crythias

Locked
aph
Znuny superhero
Posts: 646
Joined: 20 Jun 2014, 12:11
Znuny Version: 3.3.9, 4.x, 5.x

IMAPS / IMAPTLS Port

Post by aph »

Which ports does OTRS use for IMAPS and IMAPTLS by default? Is there a way to change these ports in configuration
OTRS 3.3.x (private/testing) on Windows Server 2008 with MSSQL database.
OTRS 3.3.x (private/testing) on CentOS with MySQL database and apache
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: IMAPS / IMAPTLS Port

Post by crythias »

they'll use Well Known Port for each by default.
Docs
Note that port=>___ is not a param in IMAPx.pm, though it appears to be easily added.

otrs/Kernel/System/MailAccount/IMAPS.pm

Code: Select all

    # connect to host
    my $IMAPObject = Net::IMAP::Simple->new(
        $Param{Host},
        port => $Param{Port},
        timeout     => $Param{Timeout},
        debug       => $Param{Debug},
        use_ssl     => 1,
        ssl_options => [
            SSL_verify_mode => IO::Socket::SSL::SSL_VERIFY_NONE(),
        ],
    );
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
aph
Znuny superhero
Posts: 646
Joined: 20 Jun 2014, 12:11
Znuny Version: 3.3.9, 4.x, 5.x

Re: IMAPS / IMAPTLS Port

Post by aph »

The only Port the Docs mention is 143 http://search.cpan.org/~jettero/Net-IMA ... Simple.pod
As far as I know it is the IMAP port. Docs don't mention anything about the port used for IMAPS.

Maybe I'm not understanding it correctly. I must admit I can't Perl
OTRS 3.3.x (private/testing) on Windows Server 2008 with MSSQL database.
OTRS 3.3.x (private/testing) on CentOS with MySQL database and apache
Locked