Skip to content

Commit 078f415

Browse files
committed
Fix internetstandards#1764 - Display CAA findings for all mail servers
This was modified originally for unclear reasons in 97193ce
1 parent 4cedc2d commit 078f415

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

checks/tasks/shared.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ def aggregate_subreports(subreports, report):
336336
# This is a small hack to allow running CAA along with all other tests in web,
337337
# i.e. once per webserver IP, while it only applies once per target domain.
338338
# Therefore, the tech table is flattened to only include one result, and no server column.
339-
if subreport[test_item]["name"] in ["web_caa", "mail_caa"]:
339+
if subreport[test_item]["name"] == "web_caa":
340340
report[test_item]["tech_data"] = [[row] for row in subtechdata]
341341
continue
342342
elif subreport[test_item]["tech_type"] == "table_multi_col" and isinstance(subtechdata, list):

0 commit comments

Comments
 (0)