Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/techsneeze/dmarcts-report-viewer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-07-21Merge pull request #81 from ekalin/php8HEADv2.0masterTechSneeze
PHP8 compatibility
2022-06-08PHP8 compatibilityEduardo M KALINOWSKI
htmlspecialchars() complains about null argument, so a null-safe wrapper was added.
2022-06-07Support for other database typesEduardo M KALINOWSKI
PDO is used instead of mysqli for database connection. A variable $dbtype specifies the driver to be used. If not specified, it defaults to mysql.
2021-05-17Add date_format option to $options arrayjnew-gh
2021-05-04Add xml highlighting options to $options arrayjnew-gh
Add a new option group, XML Data, and put all of the (new and old) xml options in that group on the options page.
2021-04-21Check if any options have been removed or added to $options[]jnew-gh
2021-04-20Move test_input() to common.phpjnew-gh
test_input() is used in more than one file so it makes sense to move it to the common.php file. Add $_POST variable vaildation with test_input.
2021-04-19Change to variable descriptionjnew-gh
2021-04-18Cookie variables and functionsjnew-gh
All variables and functions necessary to store and retrieve cookies
2021-04-18Configuration options for dmarcts-reports-viewer-options.phpjnew-gh
Add $options array to store the default program options
2021-04-14Add Report Status dropdown to option blockjnew-gh
This dropdown will filter the results in the Report List depending on the results of the individual tests for SPF/DKIM Authentication and Alignmnet and DMARC results (six results in all), corresponding to the right-hand color-coded circle. This dropdown is analogous to the current "DMARC Results" dropdown filter.
2021-04-14Formatting for easier readingjnew-gh
No code changes.
2021-04-05Update get_status_color() Functionjnew-gh
Depending on the individual SPF/DKIM Authentication & Alignment and overall DMARC results, this function sets the color variable for individual cells in the Report Data table.
2021-04-05Add get_report_status() Functionjnew-gh
Depending on the individual SPF/DKIM Authentication & Alignment and overall DMARC results, this function gets the color, sort key and result text for display in the Report Table (right status half-circle).
2021-04-05Add get_dmarc_result() Functionjnew-gh
Depending on the overall DMARC result, this function gets the color, sort key and result text for display in the Report Table (left status half-circle).
2021-04-05Change $dmarc_result to Accommodate Alignment Resultsjnew-gh
Also add 'status_text' key for Report List table results. Change 'status_num' key to 'status_sort_key' to better reflect what this key does. Change 'DKIM_' arrays to 'DMARC_' to better reflect what these array values represent.
2021-03-08use optional $default_dmarc_result to set up drop-downWolfgang Karall-Ahlborn
2020-07-10Add AJAX, table sorting, other modsJohn P. New