instiki
instiki copied to clipboard
DNSBL check disable
Hello!
Can you add field for disabling DNSBL checking in config files or etc
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]