comparison development.ini @ 474:a3d9d24acbec celery

Implemented password reset(forms/models/ tasks) and mailing tasks. Added smtp mailer, configurations, cleaned user model
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 13 Sep 2010 01:27:41 +0200
parents ac559565c6b8
children 1e757ac98988
comparison
equal deleted inserted replaced
473:6b934c9607e7 474:a3d9d24acbec
1 ################################################################################ 1 ################################################################################
2 ################################################################################ 2 ################################################################################
3 # pylons_app - Pylons environment configuration # 3 # hg-app - Pylons environment configuration #
4 # # 4 # #
5 # The %(here)s variable will be replaced with the parent directory of this file# 5 # The %(here)s variable will be replaced with the parent directory of this file#
6 ################################################################################ 6 ################################################################################
7 7
8 [DEFAULT] 8 [DEFAULT]
9 debug = true 9 debug = true
10 ############################################ 10 ################################################################################
11 ## Uncomment and replace with the address ## 11 ## Uncomment and replace with the address which should receive ##
12 ## which should receive any error reports ## 12 ## any error reports after application crash ##
13 ############################################ 13 ## Additionally those settings will be used by hg-app mailing system ##
14 ################################################################################
14 #email_to = admin@localhost 15 #email_to = admin@localhost
16 #error_email_from = paste_error@localhost
17 #app_email_from = hg-app-noreply@localhost
18 #error_message =
19
15 #smtp_server = mail.server.com 20 #smtp_server = mail.server.com
16 #error_email_from = paste_error@localhost
17 #smtp_username = 21 #smtp_username =
18 #smtp_password = 22 #smtp_password =
19 #error_message = 'mercurial crash !' 23 #smtp_port =
24 #smtp_use_tls =
20 25
21 [server:main] 26 [server:main]
22 ##nr of threads to spawn 27 ##nr of threads to spawn
23 threadpool_workers = 5 28 threadpool_workers = 5
24 29
25 ##max request before 30 ##max request before
26 threadpool_max_requests = 2 31 threadpool_max_requests = 6
27 32
28 ##option to use threads of process 33 ##option to use threads of process
29 use_threadpool = true 34 use_threadpool = false
30 35
31 use = egg:Paste#http 36 use = egg:Paste#http
32 host = 127.0.0.1 37 host = 127.0.0.1
33 port = 5000 38 port = 5000
34 39