#labels Phase-Deploy
Foorum::Manual::Configure - configure Foorum
Generally, run bin/setup.pl
we have built-in FileCache in foorum.yml
cache:
  backends:
    default:
      class: 'Cache::FileCache'
      namespace: 'Foorum'
      default_expires_in: 600
optional: cache_root: '/home/faylandfoorum/cache'
and we can configure Cache::Memcached as backend cache
cache:
  backends:
    default:
      class: 'Cache::Memcached'
      servers:
        - '127.0.0.1:11211'
      compress_threshold: '10_000'
      debug: 0
See Also L<Catalyst::Plugin::Cache>
we have several conf under directory conf/examples/mail for mail.
L<Email::Send>