|
166 | 166 | csv_field_size = 131072 |
167 | 167 |
|
168 | 168 | # Sets the default number of rounds used when encoding passwords |
169 | | - # using the PBKDF2 scheme. Set this to a higher value on faster |
170 | | - # systems which want more security. |
| 169 | + # using any PBKDF2 scheme. Set this to a higher value on faster |
| 170 | + # systems which want more security. Use a minimum of 250000 |
| 171 | + # for PBKDF2-SHA512 which is the default hash in Roundup 2.5. |
171 | 172 | # PBKDF2 (Password-Based Key Derivation Function) is a |
172 | 173 | # password hashing mechanism that derives hash from the |
173 | 174 | # password and a random salt. For authentication this process |
|
180 | 181 | # become faster. The currently enforced minimum number of |
181 | 182 | # rounds is 1000. |
182 | 183 | # See: http://en.wikipedia.org/wiki/PBKDF2 and RFC2898 |
183 | | - # Default: 2000000 |
184 | | - password_pbkdf2_default_rounds = 2000000 |
| 184 | + # Default: 250000 |
| 185 | + password_pbkdf2_default_rounds = 250000 |
185 | 186 |
|
186 | 187 | .. index:: config.ini; sections tracker |
187 | 188 | .. _`config-ini-section-tracker`: |
|
460 | 461 | # the user if the header is missing or invalid. |
461 | 462 | # Set this to 'yes' to block the post and notify the user |
462 | 463 | # if the header is invalid, but accept the form if |
463 | | - # the field is missing. |
| 464 | + # the header is missing. |
464 | 465 | # Set this to 'logfailure' to log a notice to the roundup |
465 | 466 | # log if the header is invalid or missing, but accept |
466 | 467 | # the post. |
|
475 | 476 | # the user if the header is missing or invalid. |
476 | 477 | # Set this to 'yes' to block the post and notify the user |
477 | 478 | # if the header is invalid, but accept the form if |
478 | | - # the field is missing. |
| 479 | + # the header is missing. |
479 | 480 | # Set this to 'logfailure' to log a notice to the roundup |
480 | 481 | # log if the header is invalid or missing, but accept |
481 | 482 | # the post. |
|
513 | 514 | # the user if the header is missing or invalid. |
514 | 515 | # Set this to 'yes' to block the post and notify the user |
515 | 516 | # if the header is invalid, but accept the form if |
516 | | - # the field is missing. |
| 517 | + # the header is missing. |
517 | 518 | # Set this to 'logfailure' to log a notice to the roundup |
518 | 519 | # log if the header is invalid or missing, but accept |
519 | 520 | # the post. |
|
529 | 530 | # the user if the header is missing or invalid. |
530 | 531 | # Set this to 'yes' to block the post and notify the user |
531 | 532 | # if the header is invalid, but accept the form if |
532 | | - # the field is missing. |
| 533 | + # the header is missing. |
533 | 534 | # Set this to 'logfailure' to log a notice to the roundup |
534 | 535 | # log if the header is invalid or missing, but accept |
535 | 536 | # the post. |
|
628 | 629 | .. code:: ini |
629 | 630 |
|
630 | 631 |
|
631 | | - # Settings in this section (except for backend) are used |
632 | | - # by RDBMS backends only. |
| 632 | + # Most settings in this section (except for backend and debug_filter) |
| 633 | + # are used by RDBMS backends only. |
633 | 634 |
|
634 | 635 | [rdbms] |
635 | 636 |
|
|
638 | 639 | # Default: NO DEFAULT |
639 | 640 | #backend = NO DEFAULT |
640 | 641 |
|
| 642 | + # Filter debugging: Permissions can define additional filter |
| 643 | + # functions that are used when checking permissions on results |
| 644 | + # returned by the database. This is done to improve |
| 645 | + # performance since the filtering is done in the database |
| 646 | + # backend, not in python (at least for the SQL backends). The |
| 647 | + # user is responsible for making the filter return the same |
| 648 | + # set of results as the check function for a permission. So it |
| 649 | + # makes sense to aid in debugging (and performance |
| 650 | + # measurements) to allow turning off the usage of filter |
| 651 | + # functions using only the check functions. |
| 652 | + # Allowed values: yes, no |
| 653 | + # Default: no |
| 654 | + debug_filter = no |
| 655 | + |
641 | 656 | # Name of the database to use. For Postgresql, this can |
642 | 657 | # be database.schema to use a specific schema within |
643 | 658 | # a Postgres database. |
|
0 commit comments