The sender domain has a DMARC Reject/Quarantine policy which disallows
sending mailing list messages using the original "From" header.

To mitigate this problem, the original message has been wrapped
automatically by the mailing list software.
--- Begin Message ---
>From b9d08136e73cbe56e794e6d0c23ca10684d9e37d Mon Sep 17 00:00:00 2001
From: Kritstupas Savickas <kristupas.savic...@pm.me>
Date: Mon, 17 Jun 2019 22:38:55 +0300
Subject: [PATCH] libubox: add macros for remaining logging severities

Signed-off-by: Kritstupas Savickas <kristupas.savic...@pm.me>
---
 ulog.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/ulog.h b/ulog.h
index 46d3c77..9892100 100644
--- a/ulog.h
+++ b/ulog.h
@@ -35,9 +35,13 @@ void ulog_threshold(int threshold);
 void ulog(int priority, const char *fmt, ...)
        __attribute__ ((format (printf, 2, 3)));

+#define ULOG_DBG(fmt, ...) ulog(LOG_DEBUG, fmt, ## __VA_ARGS__)
 #define ULOG_INFO(fmt, ...) ulog(LOG_INFO, fmt, ## __VA_ARGS__)
 #define ULOG_NOTE(fmt, ...) ulog(LOG_NOTICE, fmt, ## __VA_ARGS__)
 #define ULOG_WARN(fmt, ...) ulog(LOG_WARNING, fmt, ## __VA_ARGS__)
 #define ULOG_ERR(fmt, ...) ulog(LOG_ERR, fmt, ## __VA_ARGS__)
+#define ULOG_CRIT(fmt, ...) ulog(LOG_CRIT, fmt, ## __VA_ARGS__)
+#define ULOG_ALERT(fmt, ...) ulog(LOG_ALERT, fmt, ## __VA_ARGS__)
+#define ULOG_EMERG(fmt, ...) ulog(LOG_EMERG, fmt, ## __VA_ARGS__)

 #endif
--
2.22.0



--- End Message ---
_______________________________________________
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel

Reply via email to