X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=postlicyd%2Fquery.c;h=4a4ae9ca8a80e6fb75f19bf03341efe3f5a5b1eb;hb=966ef448f783d04f8083978e4f6a27fd91c4bd94;hp=2d4cd89e931edd59ec683b0d12409dfb61f80f74;hpb=93101836aa2492393b960a00b660f529a170c866;p=apps%2Fpfixtools.git diff --git a/postlicyd/query.c b/postlicyd/query.c index 2d4cd89..4a4ae9c 100644 --- a/postlicyd/query.c +++ b/postlicyd/query.c @@ -38,6 +38,17 @@ #include "policy_tokens.h" #include "str.h" +const char *smtp_state_names[SMTP_count] = { + "CONNECT", + "HELO", + "MAIL", + "RCPT", + "DATA", + "END-OF-MESSAGE", + "VRFY", + "ETRN", +}; + bool query_parse(query_t *query, char *p) { #define PARSE_CHECK(expr, error, ...) \ @@ -179,6 +190,12 @@ const char *query_field_for_id(const query_t *query, postlicyd_token id) CASE(ETRN_DOMAIN, etrn_domain) CASE(STRESS, stress) #undef CASE + case PTK_PROTOCOL_NAME: + return query->esmtp ? "ESMTP" : "SMTP"; + + case PTK_PROTOCOL_STATE: + return smtp_state_names[query->state]; + default: return NULL; } }