instiki icon indicating copy to clipboard operation
instiki copied to clipboard

DNSBL check disable

Open SL-RU opened this issue 8 years ago • 1 comments

Hello!

Can you add field for disabling DNSBL checking in config files or etc

SL-RU avatar Jul 12 '16 12:07 SL-RU

comment the three files with the code ":dnsbl_check".

class AdminController < ApplicationController

  layout 'default'
  cache_sweeper :web_sweeper
  # before_filter :dnsbl_check

class FileController < ApplicationController

  layout 'default'
  
  before_filter :check_authorized
  #before_filter :check_allow_uploads, :dnsbl_check, :except => [:file, :blahtex_png]
  before_filter :check_allow_uploads, :except => [:file, :blahtex_png]

class WikiController < ApplicationController

  before_filter :load_page
  # before_filter :dnsbl_check, :only => [:edit, :new, :save, :export_html, :export_markup]

cnruby avatar Mar 03 '17 06:03 cnruby