summaryrefslogtreecommitdiff
path: root/Blogsum/Config.pm.dist
blob: 753f8e24f149aea8b2616d4450036b331445c231 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38

# Blogsum
# Copyright (c) 2009 Jason Dixon <jason@dixongroup.net>
# All rights reserved.


###########################
# pragmas                 #
###########################
package Blogsum::Config;
use strict;


###########################
# user options            #
###########################
our $database = 'data/site.db';
our $blog_theme = 'html5';
our $blog_title = 'example.com';
our $blog_subtitle = 'My New Blog';
our $blog_url = 'http://www.example.com/';
our $blog_owner = 'user@example.com';
our $blog_rights = 'Copyright &copy; 2012 Example User';
our $captcha_api_server = 'http://www.google.com/recaptcha/api';
our $captcha_pubkey = '';
our $captcha_seckey = '';
our $comment_max_length = '1000';
our $comments_allowed = 0;
our $smtp_server = 'localhost:25';
our $smtp_sender = 'blogsum@example.com';
our $articles_per_page = '10';
our $google_analytics_id = '';
our $google_webmaster_id = '';
our $max_tags_in_cloud = 20;
our $page_not_found_error = '';

1;