.then((users) => User.collection.deleteMany({ email: { $in: config.blackListEmails.map((d) => new RegExp(`@${d}*$`)) } })
      .then(() => Vote.collection.deleteMany({ author: { $in: users.map((u) => u._id) } })))