On 21.08.2013 20:35, jose.salvi...@accenture.com wrote:
> That's got to be it! We are using Office365 for email which certainly would 
> require SSL. So, I can shut off email and get OTRS to work, but I guess the 
> bigger question then is what steps do I need to take to get email to work 
> when SSL is required by IMAPS?
>

This is from the current sources:

    # connect to host
    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(),
        ],
    );


The "ssl_options" are the important part... Please check your OTRS sources.

- Renée

-- 
Perl / OTRS development: http://perl-services.de
OTRS AddOn repository: http://opar.perl-services.de

---------------------------------------------------------------------
OTRS mailing list: otrs - Webpage: http://otrs.org/
Archive: http://lists.otrs.org/pipermail/otrs
To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs

Reply via email to