home » zplus/freepost.git
ID: 7311c09f9e372ab474ec2d5eb40c0d6d800cad8b
30 lines — 822B — View raw


# This is a bunch of settings useful for the app

defaults:
    # How many posts to show per page
    items_per_page: 50
    search_results_per_page: 50
    # How many topics to allow for a post
    topics_per_post: 10

cookies:
    # A secret key for signing cookies. Must be kept private.
    # Used to verify that cookies haven't been tampered with.
    secret: "secret random string"

sqlite:
    database: ./database.sqlite

# Emails are sent using the local sendmail MTA.
sendmail:
    path: /usr/sbin/sendmail

session:
    # Name to use for the session cookie
    name: freepost
    
    # Timeout in seconds for the "remember me" option.
    # By default, if the user doesn't click "remember me" during login the
    # session will end when the browser is closed.
    # 2592000 = 30 days
    remember_me: 2592000