Storage Concerns

JeppyG

New Member
As more and more people subscribe...
As more and more campaigns get sent...
As more and more logs get stored...
Storage will be filled, right?
How can I maintain this assuming 'expansion' isn't an option?
 
How can I maintain this assuming 'expansion' isn't an option?
You can enable: Delete campaign delivery logs from Backend > Settings > Cron > Delete logs settings , with this option enabled mailwizz will purge campaign delivery logs after 30 day since campaign is marked as sent.
 
You can enable: Delete campaign delivery logs from Backend > Settings > Cron > Delete logs settings , with this option enabled mailwizz will purge campaign delivery logs after 30 day since campaign is marked as sent.
Great! Is that the only thing that I can delete automatically?

EDIT: I see I can delete the other logs, but after 5 days only so that might be too quick?
 
Great! Is that the only thing that I can delete automatically?

EDIT: I see I can delete the other logs, but after 5 days only so that might be too quick?
You can overwrite these days by adding in file: apps/common/config/main-custom.php these params:

PHP:
// params
    'params' => [
        'campaign.delivery.logs.delete.days_back'             => 30,
        'campaign.bounce.logs.delete.days_back'             => 30,
        'campaign.open.logs.delete.days_back'                 => 30,
        'campaign.click.logs.delete.days_back'                  => 30,
    ],
 
Back
Top