not from mailwizz, but you can do it from command line:
Code:
# login
mysql -u MAILWIZZ_USER -p
# use mailwizz database
use DATABASE_NAME;
# show tables and identify the campaigns table
show tables;
#delete campaigns older than may 2015
DELETE FROM mw_campaign WHERE DATE(date_added) < '2015-05-01';