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 ---
Hi Peter,
Hi Aledandru,

thank you very much for your comments. You made me realize that I actually don't
need any uloop related functionality in the first place, as I've already created
my own event loop.

So my solution is to have the main loop for my ubus thread periodically call
`ubus_handle_event()` until program termination is requested:

    void *ubus_thread_main(void *arg)
    {
        while (threads_run) {
            ubus_handle_event(ctx);
            usleep(UBUS_THREAD_DELAY_US);
        }
        ubus_free(ctx);
    }


Works like a charm.


Best regards,

Alex



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

Reply via email to