Hi,
There is one line in the attachserial plugin which make the "non filter" not possible.
if(empty($params) || empty($params->attach_email) || empty($params->packs))
continue;
So if the plugin instance do not have "packs", the instance is skipped.
And below there are checks to see if there are serials in the packs or not.
One possibility is to store in that "params->packs" the boolean value "true" (instead of a string or an array).
With the current configuration interface, that is not possible because a namebox is used and there is nothing in the function "onPluginConfigurationSave" to store such boolean value in the configuration.
It means that, today, the best would be to modify the data directly in the database (or to duplicate the plugin to remove that checks or change the configuration save function).
I do understand you need ; I will see what I can do in the plugin to allow that but I cannot remove these checks like that because it could affect other websites.
So if I want to change that rule ; I have also to find a solution to not change (break) production website which are using HikaSerial and could have an attach serial configuration with no packs assigned (which do not generate any content).
Regards,