- if count > 1
- acl = Acl.find(:first, :conditions => {
- :address => address
- })
-
- unless acl
- Acl.create({
- :address => address,
- :k => "no_account_creation",
- :v => "auto_spam_block"
- }, { :without_protection => true })
-
- puts "Blocked #{address}"
- end
- end
+ next unless count > 1
+ next if Acl.exists?(:address => address)
+
+ Acl.create({
+ :address => address,
+ :k => "no_account_creation",
+ :v => "auto_spam_block"
+ }, { :without_protection => true })
+
+ puts "Blocked #{address}"