From 17dd87dfd2d300471f94bbea77fb8221ab310f79 Mon Sep 17 00:00:00 2001 From: Leonidas Poulopoulos Date: Tue, 2 Apr 2013 17:58:19 +0300 Subject: [PATCH] Add fragment type in notification mail --- templates/rule_action.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/rule_action.txt b/templates/rule_action.txt index d3853a5..fae4534 100644 --- a/templates/rule_action.txt +++ b/templates/rule_action.txt @@ -12,6 +12,8 @@ Match Statements: * Ports: {% if route.sourceport.all or route.destinationport.all %}Defined by source/destination ports{% else %}{% if route.port.all %}{% for port in route.port.all %}{{ port }}{% if not forloop.last %}, {% endif %}{% endfor %}{% else %}any{% endif %}{% endif %} * Source Ports: {% if route.port.all %}same as ports{% else %}{% if route.sourceport.all %}{% for port in route.sourceport.all %}{{ port }}{% if not forloop.last %}, {% endif %}{% endfor %}{% else %}any{% endif %}{% endif %} * Destination Ports: {% if route.port.all %}same as ports{% else %}{% if route.destinationport.all %}{% for port in route.destinationport.all %}{{ port }}{% if not forloop.last %}, {% endif %}{% endfor %}{% else %}any{% endif %}{% endif %} +* Fragment Types: {% if route.fragmenttype.all %}{% for fragment in route.fragmenttype.all %}{{ fragment }}{% if not forloop.last %}, {% endif %}{% endfor %}{% else %}-{% endif %} + Then Actions: * Action:{% for then in route.then.all %}{{ then }}{% if not forloop.last %}, {% endif %}{% endfor %} -- 1.7.10.4