In Plugins like M365, fields like UUID or SRC can have really long values (+200 char). Without increasing the max length they get truncated and they can be
repeated in the DDBB, so useless.
/* Maximum Name length including EOS */
#define MAX_NAME_LENGTH 128
+/* Maximum Name length for Plugin Object values as UUID, Category, SRC, etc. including EOS */
+#define MAX_PLUGINOBJ_NAME_LENGTH 512
+
/* Maximum escaped Name lenght including EOS 2*MAX_NAME_LENGTH+1 */
#define MAX_ESCAPE_NAME_LENGTH 257