IMAPS / IMAPTLS Port
Moderator: crythias
IMAPS / IMAPTLS Port
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
OTRS 3.3.x (private/testing) on CentOS with MySQL database and apache
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: IMAPS / IMAPTLS Port
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
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
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
Re: IMAPS / IMAPTLS Port
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
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
OTRS 3.3.x (private/testing) on CentOS with MySQL database and apache