|
@@ -63,3 +63,70 @@ email.notification.smtp.server = 127.0.0.1
|
63
|
63
|
email.notification.smtp.port = 1025
|
64
|
64
|
email.notification.smtp.user = test_user
|
65
|
65
|
email.notification.smtp.password = just_a_password
|
|
66
|
+
|
|
67
|
+[functional_test]
|
|
68
|
+sqlalchemy.url = sqlite:///tracim_test.sqlite
|
|
69
|
+depot_storage_name = test
|
|
70
|
+depot_storage_dir = /tmp/test/depot
|
|
71
|
+user.auth_token.validity = 604800
|
|
72
|
+preview_cache_dir = /tmp/test/preview_cache
|
|
73
|
+preview.jpg.restricted_dims = True
|
|
74
|
+email.notification.activated = false
|
|
75
|
+
|
|
76
|
+[functional_test_no_db]
|
|
77
|
+sqlalchemy.url = sqlite://
|
|
78
|
+depot_storage_name = test
|
|
79
|
+depot_storage_dir = /tmp/test/depot
|
|
80
|
+user.auth_token.validity = 604800
|
|
81
|
+preview_cache_dir = /tmp/test/preview_cache
|
|
82
|
+preview.jpg.restricted_dims = True
|
|
83
|
+email.notification.activated = false
|
|
84
|
+
|
|
85
|
+[functional_test_with_mail_test_sync]
|
|
86
|
+sqlalchemy.url = sqlite:///tracim_test.sqlite
|
|
87
|
+depot_storage_name = test
|
|
88
|
+depot_storage_dir = /tmp/test/depot
|
|
89
|
+user.auth_token.validity = 604800
|
|
90
|
+preview_cache_dir = /tmp/test/preview_cache
|
|
91
|
+preview.jpg.restricted_dims = True
|
|
92
|
+email.notification.activated = true
|
|
93
|
+email.notification.from.email = test_user_from+{user_id}@localhost
|
|
94
|
+email.notification.from.default_label = Tracim Notifications
|
|
95
|
+email.notification.reply_to.email = test_user_reply+{content_id}@localhost
|
|
96
|
+email.notification.references.email = test_user_refs+{content_id}@localhost
|
|
97
|
+email.notification.content_update.template.html = %(here)s/tracim_backend/templates/mail/content_update_body_html.mak
|
|
98
|
+email.notification.content_update.template.text = %(here)s/tracim_backend/templates/mail/content_update_body_text.mak
|
|
99
|
+email.notification.created_account.template.html = %(here)s/tracim_backend/templates/mail/created_account_body_html.mak
|
|
100
|
+email.notification.created_account.template.text = %(here)s/tracim_backend/templates/mail/created_account_body_text.mak
|
|
101
|
+email.notification.content_update.subject = [{website_title}] [{workspace_label}] {content_label} ({content_status_label})
|
|
102
|
+email.notification.created_account.subject = [{website_title}] Created account
|
|
103
|
+email.notification.processing_mode = sync
|
|
104
|
+email.notification.smtp.server = 127.0.0.1
|
|
105
|
+email.notification.smtp.port = 1025
|
|
106
|
+email.notification.smtp.user = test_user
|
|
107
|
+email.notification.smtp.password = just_a_password
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+[functional_test_with_mail_test_async]
|
|
111
|
+sqlalchemy.url = sqlite:///tracim_test.sqlite
|
|
112
|
+depot_storage_name = test
|
|
113
|
+depot_storage_dir = /tmp/test/depot
|
|
114
|
+user.auth_token.validity = 604800
|
|
115
|
+preview_cache_dir = /tmp/test/preview_cache
|
|
116
|
+preview.jpg.restricted_dims = True
|
|
117
|
+email.notification.activated = true
|
|
118
|
+email.notification.from.email = test_user_from+{user_id}@localhost
|
|
119
|
+email.notification.from.default_label = Tracim Notifications
|
|
120
|
+email.notification.reply_to.email = test_user_reply+{content_id}@localhost
|
|
121
|
+email.notification.references.email = test_user_refs+{content_id}@localhost
|
|
122
|
+email.notification.content_update.template.html = %(here)s/tracim_backend/templates/mail/content_update_body_html.mak
|
|
123
|
+email.notification.content_update.template.text = %(here)s/tracim_backend/templates/mail/content_update_body_text.mak
|
|
124
|
+email.notification.created_account.template.html = %(here)s/tracim_backend/templates/mail/created_account_body_html.mak
|
|
125
|
+email.notification.created_account.template.text = %(here)s/tracim_backend/templates/mail/created_account_body_text.mak
|
|
126
|
+email.notification.content_update.subject = [{website_title}] [{workspace_label}] {content_label} ({content_status_label})
|
|
127
|
+email.notification.created_account.subject = [{website_title}] Created account
|
|
128
|
+email.notification.processing_mode = async
|
|
129
|
+email.notification.smtp.server = 127.0.0.1
|
|
130
|
+email.notification.smtp.port = 1025
|
|
131
|
+email.notification.smtp.user = test_user
|
|
132
|
+email.notification.smtp.password = just_a_password
|