commit 5ce6a2d: [Minor] Allow to get raw body of non processed messages

Vsevolod Stakhov vsevolod at highsecure.ru
Mon Dec 14 10:21:06 UTC 2020


Author: Vsevolod Stakhov
Date: 2020-12-14 10:18:32 +0000
URL: https://github.com/rspamd/rspamd/commit/5ce6a2d97ff655651e4bba7737b834d866b94c94 (HEAD -> master)

[Minor] Allow to get raw body of non processed messages

---
 src/lua/lua_task.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/src/lua/lua_task.c b/src/lua/lua_task.c
index 061ed1ee2..c0d5c85e0 100644
--- a/src/lua/lua_task.c
+++ b/src/lua/lua_task.c
@@ -2546,7 +2546,13 @@ lua_task_get_rawbody (lua_State * L)
 			t->flags = 0;
 		}
 		else {
-			lua_pushnil (L);
+			/* Push body it it is there */
+			if (task->msg.len > 0 && task->msg.begin != NULL) {
+				lua_new_text (L, task->msg.begin, task->msg.len, FALSE);
+			}
+			else {
+				lua_pushnil (L);
+			}
 		}
 	}
 	else {


More information about the Commits mailing list