internal static TResult FindOne <TResult>(ITopologyConfigurationSession session, string serverFqdn) where TResult : PopImapAdConfiguration, new()
        {
            Server server = session.FindServerByFqdn(serverFqdn);

            return(PopImapAdConfiguration.FindOne <TResult>(session, server));
        }
        internal static TResult FindOne <TResult>(ITopologyConfigurationSession session) where TResult : PopImapAdConfiguration, new()
        {
            Server server = session.FindLocalServer();

            return(PopImapAdConfiguration.FindOne <TResult>(session, server));
        }