logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

imap_ssl_cert - connects to an IMAP server using SSL and saves the server certificate into a .pem file

Author

       Jonathan Buhacoff <jonathan@buhacoff.net>

Changes

        Fri Nov 11 03:38:13 AST 2011
        + version 0.1

Dependencies

       This utility requires the following perl modules to be installed:

       Getopt::Long Mail::IMAPClient IO::Socket::SSL Net::SSLeay

Examples

Printtheserver'sSSLcertificatechain
        $ perl imap_ssl_cert.pl -H imap.server.com > ca_file.pem
        $ cat ca_file.pem

        -----BEGIN CERTIFICATE-----
        MIID1zCCAr+gAwIBAgIQPr3bVk0SkuXygjxgA7EVGDANBgkqhkiG9w0BAQUFADA8
        [...snip...]
        0FF4warjskrfqaVtWeIV58LJheaM4cPJkc2M

        -----END CERTIFICATE-----
        $ openssl x509 -in ca_file.pem -text

Name

       imap_ssl_cert - connects to an IMAP server using SSL and saves the server certificate into a .pem file

Options

       --timeout <seconds>
           Abort  with  critical status if it takes longer than <seconds> to connect to the IMAP server. Default
           is 60 seconds.  The difference between timeout and critical is that, with the default settings, if it
           takes 45 seconds to connect to the server then the connection will succeed but the plugin will return
           CRITICAL because it took longer than 30 seconds.  Also known as: -t <seconds>

       --hostname <server>
           Address or name of the IMAP server. Examples: mail.server.com, localhost,  192.168.1.100  Also  known
           as: -H <server>

       --port <number>
           Service  port  on the IMAP server. Default is 143. If you use SSL, default is 993.  Also known as: -p
           <number>

       --verbose
           Display additional information. Useful for troubleshooting.

           Also known as: -v

       --version
           Display plugin version and exit.  Also known as: -V

       --help
           Display this documentation and exit.  Also known as: -h

       --usage
           Display a short usage instruction and exit.

See Also

Synopsis

        imap_ssl_cert -H imap.server.com > server_ca_file.pem
        imap_ssl_cert -?
        imap_ssl_cert --help

See Also