Support has been added for intelmq-webinput-csv to run on IntelMQ version 3. However, older versions of IntelMQ can no longer be used with version 0.3.0.
The parameter destination_pipeline_queue
is expected on the top level, not anymore in the intelmq
array.
Previously:
"intelmq": {
"destination_pipeline_queue": "test",
"destination_pipeline_db": 2,
"destination_pipeline_host": "127.0.0.1",
"destination_pipeline_port": 6379
},
Now:
"intelmq": {
...
},
"destination_pipeline_queue": "test",
The reason is that now all the parameters in the intelmq
array are used like in intelmq itself and destination_pipeline_queue
is intelmq-webinput-csv specific.
The configuration of the destination pipeline has been changed and extended.
The configuration must include this section:
"intelmq": {
"destination_pipeline_queue": "test",
"destination_pipeline_db": 2,
"destination_pipeline_host": "127.0.0.1",
"destination_pipeline_password": "foobared",
"destination_pipeline_port": 6379
},
instead of a single destination_pipeline
entry. All parameters valid for IntelMQ itself can be used here.