# Name of the CMS Fiona Instance to access RailsConnector::Configuration.instance_name = 'default' # Enable Rails Connector Addons. # Please refer to the Infopark Knowledge Base for more information on addons. RailsConnector::Configuration.enable( # :comments, # :google_analytics, # :crm, # :pdf_generator, # :ratings, # :rss, :search, # :seo_sitemap, :time_machine ) # Search should be configured in config/rails_connector.yml # RSS-Feed: # # Specify which Object should be used for the RSS feed's parent folder # RailsConnector::Configuration::Rss.root = lambda { NamedLink.get_object('news') } # PDF-Generator: # # Set a list of approved hosts which the PdfGenerator is allowed to use RailsConnector::Configuration::PdfGenerator.host_whitelist('localhost') # Google Analytics: # # RailsConnector::Configuration::GoogleAnalytics.domains( # '' => '', # '' => '' # ) # OMC: # # Infopark::Crm.configure do |config| # config.url = "http://:" # config.login = 'webservice' # config.api_key = '' # # config.live_server_groups_callback = lambda {|contact| # # case contact.account.name # # when "My Company" # # %w(internal) # # else # # [] # # end # # } # end # # Re-captcha public/private key pair (used for creating a new user) # You can get those by signing up at http://recaptcha.net/ # RCC_PUB="" # RCC_PRIV=""