Comment to 'allow only gmail accounts to sign up'
  • How about allowing two or three email domains? Just separate them with a comma?

    • Joseph Capers you need to add separate record, like this:

      INSERT IGNORE INTO `bx_antispam_disposable_email_domains` (`id`, `domain`, `list`) VALUES
      (NULL, 'gmail.com', 'custom_whitelist'),
      (NULL, 'hotmail.com', 'custom_whitelist');
      UPDATE `sys_options` SET `value` = 'whitelist' WHERE `name` = 'bx_antispam_disposable_email_domains_mode';