ImapServerInfo constructor

ImapServerInfo(
  1. ConnectionInfo info
)

Creates a new server info instance

Implementation

ImapServerInfo(ConnectionInfo info)
  : host = info.host,
    port = info.port,
    isSecure = info.isSecure;