Changes for page Anwendungseinstellungen


From version 5.1
edited by nlo
on 14.10.2021, 16:54
Change comment: There is no comment for this version
To version 6.1
edited by awa
on 14.02.2022, 15:55
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.nlo
1 +XWiki.awa
Content
... ... @@ -159,6 +159,9 @@
159 159  |= Property|= Default value|= Explanation
160 160  |cleanup.worker.active|true|Whether the system cleanup job is active and run periodically. The system clean up jobs, for example, checks for unconfirmed form records waitning for a double opt-in confirmation, and deletes them when they are expired.
161 161  |cleanup.worker.cronexpression|0 0,15,30,45 * ? * *|The cron expression for the system clean up job that indicates when and how often that job is run. The system clean up jobs, for example, checks for unconfirmed form records waitning for a double opt-in confirmation, and deletes them when they are expired.
162 +|quartz.threadpool.thread.count {{version major="7" minor="0" patch="10" /}}|10|The number of threads for the scheduler. Default value is 10. When set to 0, new jobs are created, but no jobs are executed. This is useful in scenarios when the jobs should be run by another server.
163 +|quartz.scheduler.check.interval {{version major="7" minor="0" patch="10" /}}|30000|Is the amount of time in milliseconds that the scheduler will wait before re-queries for available triggers when the scheduler is otherwise idle. Normally you should not have to 'tune' this parameter, unless you’re using XA transactions, and are having problems with delayed firings of triggers that should fire immediately. Values less than 5000 ms are not recommended as it will cause excessive database querying. Values less than 1000 are not legal.
164 +|quartz.jobstore.misfire.threshold {{version major="7" minor="0" patch="10" /}}|60000|The number of milliseconds the scheduler will 'tolerate' a trigger to pass its next-fire-time by, before being considered "misfired". The default value (if you don’t make an entry of this property in your configuration) is 60000 (60 seconds).
162 162  {{/table}}
163 163  
164 164  == Sending of emails ==
... ... @@ -168,3 +168,69 @@
168 168  |mail.smtp.connectiontimeout {{version major="7" minor="0" patch="4" /}}|300000|SMTP Socket connection timeout value in milliseconds.
169 169  |mail.smtp.timeout {{version major="7" minor="0" patch="4" /}}|300000|SMTP Socket I/O timeout value in milliseconds.
170 170  {{/table}}
174 +
175 +== Workflow ==
176 +
177 +The following properties can be used to selectively enable or disable certain events or actions of the new workflow.
178 +
179 +The properties for events share the following pattern:
180 +
181 +{{code}}
182 +trigger.<technical_name_of_the_event>.enable=false
183 +{{/code}}
184 +
185 +The properties for actions share the following pattern:
186 +
187 +{{code}}
188 +processing.<technical_name_of_the_action>.enable=false
189 +{{/code}}
190 +
191 +The technical event names are as follows:
192 +
193 +* //fc_catch_error//: Workflow error
194 +* //fc_doi_verified//: Double opt-in confirmed
195 +* //fc_form_submit_button//: Technical name
196 +* //fc_invitation_error//: Invitation failed
197 +* //fc_invitation_sent//: Invitation sent
198 +* //fc_manual//: Custom
199 +* //fc_qualified_form_submit_button//: Submit button
200 +* //fc_state_timer//: After state change
201 +* //fc_time_point//: Date and time
202 +
203 +The technical action names are as follows:
204 +
205 +* //fc_change_form_availability//: Change availability
206 +* //fc_change_form_value//: Change form values
207 +* //fc_change_state//: Set state
208 +* //fc_compress_as_zip//: Compress files
209 +* //fc_copy_form_record//: Copy form record
210 +* //fc_counter//: Change counter
211 +* //fc_create_text_file//: Create text file
212 +* //fc_delete_form_record//: Delete form record
213 +* //fc_doi_init//: Send double opt-in email
214 +* //fc_email//: Email
215 +* //fc_empty//: Empty statement
216 +* //fc_experiment//: Handle errors
217 +* //fc_export_to_persistence//: Export to persistence file
218 +* //fc_export_to_xml//: Export as XML
219 +* //fc_fill_pdf//: Fill PDF document
220 +* //fc_fill_word//: Fill word document
221 +* //fc_import_form_value_from_xml//: Import from XML
222 +* //fc_ldap_query//: LDAP query
223 +* //fc_move_form_record_to_inbox//: Move to inbox
224 +* //fc_multiple_condition//: Condition (Check value)
225 +* //fc_post_request//: HTTP request
226 +* //fc_provide_resource//: Provide file
227 +* //fc_queue_task//: Queue custom event
228 +* //fc_redirect//: Redirect
229 +* //fc_renew_process_id//: Create new process ID
230 +* //fc_return//: Stop processing chain
231 +* //fc_return_file//: File download
232 +* //fc_save_to_file_system//: Save to file system
233 +* //fc_set_saved_flag//: Save
234 +* //fc_show_template//: HTML response page
235 +* //fc_sql_statement//: Database query
236 +* //fc_throw_exception//: Throw error
237 +* //fc_write_form_record_attributes//: Set server attribute
238 +* //sequence//: Block statement
239 +