public static void OnPostPopImapSetting(string prefix, DataRow inputRow, DataTable dataTable, DataObjectStore store)
        {
            DataRow row        = dataTable.Rows[0];
            object  dataObject = store.GetDataObject(prefix + "AdConfig");

            if (dataObject != null && dataObject is PopImapAdConfiguration)
            {
                PopImapAdConfiguration popImapAdConfiguration = (PopImapAdConfiguration)dataObject;
                if (popImapAdConfiguration.UnencryptedOrTLSBindings != null)
                {
                    ServersService.ConvertIpBinding(prefix + "UnencryptedOrTLSBindings", popImapAdConfiguration.UnencryptedOrTLSBindings, row);
                }
                if (popImapAdConfiguration.SSLBindings != null)
                {
                    ServersService.ConvertIpBinding(prefix + "SSLBindings", popImapAdConfiguration.SSLBindings, row);
                }
            }
        }