FreePBX Backup Failing with ERROR]: File size exceeds maxsize!

Hello Team,

I have configured FreePBX Backup daily which is failing with below Email Notification:

[2023-09-12 14:00:15] [XYZ.INFO]: Finished Cleaning up
[2023-09-12 14:00:15] [XYZ.INFO]: Finished created backup file: 20230912-140002-1694507402-15.0.29-702018773.tar.gz
[2023-09-12 14:00:15] [XYZ.DEBUG]: Removing /var/spool/asterisk/backup/Daily_Full/20230910-140001-1694334601-15.0.29-1163338743.tar.gz
[2023-09-12 14:00:15] [XYZ.DEBUG]:     Removing 20230909-140002-1694248202-15.0.29-369307442.tar.gz
[2023-09-12 14:00:15] [XYZ.INFO]: Saving to selected Filestore locations
[2023-09-12 14:00:15] [XYZ.ERROR]: File size exceeds maxsize!
[2023-09-12 14:00:15] [XYZ.DEBUG]:     Saving to: Local:'Local Storage' instance ,File location: /var/spool/asterisk20230912-140002-1694507402-15.0.29-702018773.tar.gz 
[2023-09-12 14:00:15] [XYZ.INFO]: Finished Saving to selected Filestore locations
[2023-09-12 14:00:15] [XYZ.DEBUG]: Generated Backup process result email to [email protected]. Status: Failure

Appreciate your inputs to fix the same.

Error When Uploading the Backup file from One PBX to another PBX - PBX GUI - Documentation (freepbx.org)

Yes, I did modified my php.ini file to support 512MB file size however after restarting httpd service its still failing.
Please suggest how to go about it.

How big is the backup? Why do you think it is so big?

I could see the backup file created of 53MB however we are receive the Backup Failure Email Notification as mentioned above.

What version of FreePBX are you on?

FreePBX 15.0.29

Appreciate if someone can help to fix this error message please.

Can someone please look into and help me to fix this issue.

Which php.ini file did you fix ?

Do you have this setup to email the log as an attachment? That’s the issue here.

This absolutely has nothing to do with the PHP upload_max_size because this is a local backup being generated. Nothing is being uploaded, so the max size for an upload is irrelevant in this scenario.

This error: File size exceeds maxsize! is being generated from the email class within the Filestore module. When it is generating the email notification it is looking at the size of the attachment that is being added to the email, that attachment limit is 25MB because that’s standard for most email services.

The default config maxtype is mb and the default maxsize is 25.

switch($this->config['maxtype']) {
                        case 'mb':
                                $maxsize = $this->config['maxsize'] * 1000000;
                        break;
                        case 'kb':
                                $maxsize = $this->config['maxsize'] * 1000;
                        break;
                }
                if(strlen($contents) > $maxsize) {
                        throw new \Exception("File size exceeds maxsize!");
                }

So basically the attachment is too big for the email and that is throwing the error.

I had modified “etc/php.ini” as mentioned in Error When Uploading the Backup file from One PBX to another PBX - PBX GUI - Documentation

Email Attachment seems to be of 31KB.

Do the backups exist despite whatever you’re seeing in the logs? The error you are showing only gets thrown one way, the attachment is 25MB or larger…try it without an attachment option.

Yes Backup file is stored in Local storage as per the schedule. Email Attachment is of 31KB only. Without selecting the inline logs its gives log in the email as body with the failure error message as mentioned above.

Can someone please look into and help me to fix this issue.
Appreciate your help.

I am not reaching any conclusions or find any solution to fix this issue.
I appreciate if you can check this please.
Thank you.

That error comes from one place. i have shown where that error is. You say that isnt possible so dont know what else to say.

Show some actual logs.

Please find the actual log as mentioned below:

[2023-10-02 14:00:02] [FreePBXServer.DEBUG]: Running Backup ID: dba8d1aa-04a3-4257-81fa-f73ccc285fef 
[2023-10-02 14:00:02] [FreePBXServer.DEBUG]: Transaction: FreePBXServer 
[2023-10-02 14:00:02] [FreePBXServer.DEBUG]: Starting backup ChugleeDailyFull 
[2023-10-02 14:00:02] [FreePBXServer.DEBUG]: This backup will be stored locally and is subject to maintenance settings 
[2023-10-02 14:00:02] [FreePBXServer.INFO]: Backup File Name: 20231002-140002-1696235402-15.0.29-1845104420.tar.gz 
[2023-10-02 14:00:02] [FreePBXServer.INFO]: Working with amd module 
[2023-10-02 14:00:02] [FreePBXServer.INFO]: Exporting KVStore from Amd 
[2023-10-02 14:00:02] [FreePBXServer.DEBUG]: 	Adding module manifest for amd 
[2023-10-02 14:00:02] [FreePBXServer.INFO]: Working with announcement module 
[2023-10-02 14:00:02] [FreePBXServer.DEBUG]: 	Adding module manifest for announcement 
[2023-10-02 14:00:02] [FreePBXServer.INFO]: Working with arimanager module 
[2023-10-02 14:00:02] [FreePBXServer.DEBUG]: 	Adding module manifest for arimanager 
[2023-10-02 14:00:02] [FreePBXServer.INFO]: Working with backup module 
[2023-10-02 14:00:02] [FreePBXServer.INFO]: Exporting KVStore from Backup 
[2023-10-02 14:00:03] [FreePBXServer.DEBUG]: 	Adding module manifest for backup 
[2023-10-02 14:00:03] [FreePBXServer.INFO]: Working with blacklist module 
[2023-10-02 14:00:03] [FreePBXServer.INFO]: Exporting Feature Codes from blacklist 
[2023-10-02 14:00:03] [FreePBXServer.DEBUG]: 	Adding module manifest for blacklist 
[2023-10-02 14:00:03] [FreePBXServer.INFO]: Working with calendar module 
[2023-10-02 14:00:03] [FreePBXServer.DEBUG]: 	Adding module manifest for calendar 
[2023-10-02 14:00:03] [FreePBXServer.INFO]: Working with callforward module 
[2023-10-02 14:00:03] [FreePBXServer.INFO]: Exporting Feature Codes from callforward 
[2023-10-02 14:00:03] [FreePBXServer.DEBUG]: 	Adding module manifest for callforward 
[2023-10-02 14:00:03] [FreePBXServer.INFO]: Working with callrecording module 
[2023-10-02 14:00:03] [FreePBXServer.INFO]: Exporting Advanced settings from callrecording 
[2023-10-02 14:00:03] [FreePBXServer.DEBUG]: 	Adding module manifest for callrecording 
[2023-10-02 14:00:03] [FreePBXServer.INFO]: Working with callwaiting module 
[2023-10-02 14:00:03] [FreePBXServer.INFO]: Exporting Feature Codes from callwaiting 
[2023-10-02 14:00:03] [FreePBXServer.DEBUG]: 	Adding module manifest for callwaiting 
[2023-10-02 14:00:03] [FreePBXServer.INFO]: Working with cdr module 
[2023-10-02 14:00:04] [FreePBXServer.DEBUG]: 	Adding directory to tar: /tmp/dbdump 
[2023-10-02 14:00:04] [FreePBXServer.DEBUG]: 	Adding file to tar: files/tmp/dbdump/cdr.sql.gz 
[2023-10-02 14:00:04] [FreePBXServer.DEBUG]: 	Adding module manifest for cdr 
[2023-10-02 14:00:04] [FreePBXServer.INFO]: Working with cel module 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Exporting Advanced settings from cel 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding directory to tar: /tmp/dbdump 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding file to tar: files/tmp/dbdump/cel.sql.gz 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding module manifest for cel 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Working with certman module 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding directory to tar: /etc/asterisk/keys 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding directory to tar: /etc/asterisk/keys/integration 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding file to tar: files/etc/asterisk/keys/.rnd 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding file to tar: files/etc/asterisk/keys/ca.cfg 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding file to tar: files/etc/asterisk/keys/default.key 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding file to tar: files/etc/asterisk/keys/default.pem 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding file to tar: files/etc/asterisk/keys/api_oauth_public.key 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding file to tar: files/etc/asterisk/keys/ca.key 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding file to tar: files/etc/asterisk/keys/default.crt 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding file to tar: files/etc/asterisk/keys/integration/webserver.crt 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding file to tar: files/etc/asterisk/keys/integration/certificate.pem 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding file to tar: files/etc/asterisk/keys/integration/webserver.key 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding file to tar: files/etc/asterisk/keys/default.csr 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding file to tar: files/etc/asterisk/keys/ca.crt 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding file to tar: files/etc/asterisk/keys/api_oauth.key 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding module manifest for certman 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Working with cidlookup module 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding module manifest for cidlookup 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Working with conferences module 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Exporting KVStore from Conferences 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Exporting Feature Codes from conferences 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Exporting Advanced settings from conferences 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding module manifest for conferences 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Working with contactmanager module 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Exporting KVStore from Contactmanager 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Exporting Feature Codes from contactmanager 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Exporting Advanced settings from contactmanager 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding module manifest for contactmanager 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Working with core module 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Exporting Feature Codes from core 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Exporting Advanced settings from core 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Exporting KVStore from Core 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding module manifest for core 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Working with customappsreg module 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Exporting KVStore from Customappsreg 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding module manifest for customappsreg 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Working with dahdiconfig module 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Exporting Advanced settings from dahdiconfig 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding module manifest for dahdiconfig 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Working with dashboard module 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Exporting Advanced settings from dashboard 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding module manifest for dashboard 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Working with daynight module 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Exporting Databases from daynight 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Exporting Feature Codes from daynight 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Exporting Advanced settings from daynight 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding module manifest for daynight 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Working with dictate module 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Exporting Feature Codes from dictate 
[2023-10-02 14:00:10] [FreePBXServer.DEBUG]: 	Adding module manifest for dictate 
[2023-10-02 14:00:10] [FreePBXServer.INFO]: Working with directory module 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding module manifest for directory 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Working with disa module 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding module manifest for disa 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Working with extensionroutes module 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Exporting Databases from extensionroutes 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding module manifest for extensionroutes 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Working with filestore module 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Exporting KVStore from Filestore 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding module manifest for filestore 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Working with findmefollow module 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Exporting Databases from findmefollow 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Exporting Feature Codes from findmefollow 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding module manifest for findmefollow 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Working with firewall module 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Exporting KVStore from Firewall 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding file to tar: files/etc/firewall-4.rules 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding file to tar: files/etc/firewall-6.rules 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding module manifest for firewall 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Working with framework module 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding module manifest for framework 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Working with infoservices module 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Exporting Feature Codes from infoservices 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Exporting Advanced settings from infoservices 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding module manifest for infoservices 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Working with iotserver module 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Exporting Advanced settings from iotserver 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding module manifest for iotserver 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Working with ivr module 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding module manifest for ivr 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Working with languages module 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding module manifest for languages 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Working with manager module 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding module manifest for manager 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Working with miscapps module 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Exporting Feature Codes from miscapps 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding module manifest for miscapps 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Working with miscdests module 
[2023-10-02 14:00:11] [FreePBXServer.WARNING]: 	The module miscdests returned no data, No backup created 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Working with music module 
[2023-10-02 14:00:11] [FreePBXServer.INFO]: Exporting Advanced settings from music 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding directory to tar: /var/lib/asterisk/moh 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding directory to tar: /var/lib/asterisk/moh/.nomusic_reserved 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/LICENSE-asterisk-moh-opsound-wav 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/LICENSE-asterisk-moh-opsound-alaw 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/macroform-cold_day.wav 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/.asterisk-moh-opsound-sln16 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/manolo_camp-morning_coffee.alaw 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/.asterisk-moh-opsound-sln 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/LICENSE-asterisk-moh-opsound-sln16 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/CREDITS-asterisk-moh-opsound-wav 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/CREDITS-asterisk-moh-opsound-alaw 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/macroform-the_simplicity.wav 
[2023-10-02 14:00:11] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/macroform-the_simplicity.sln16 
[2023-10-02 14:00:12] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/macroform-robot_dity.alaw 
[2023-10-02 14:00:12] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/macroform-the_simplicity.alaw 
[2023-10-02 14:00:12] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/CHANGES-asterisk-moh-opsound-wav 
[2023-10-02 14:00:12] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/CHANGES-asterisk-moh-opsound-alaw 
[2023-10-02 14:00:12] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/manolo_camp-morning_coffee.sln16 
[2023-10-02 14:00:12] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/macroform-cold_day.sln16 
[2023-10-02 14:00:13] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/reno_project-system.sln16 
[2023-10-02 14:00:14] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/reno_project-system.alaw 
[2023-10-02 14:00:14] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/manolo_camp-morning_coffee.wav 
[2023-10-02 14:00:14] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/.asterisk-moh-opsound-alaw 
[2023-10-02 14:00:14] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/CREDITS-asterisk-moh-opsound-sln16 
[2023-10-02 14:00:14] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/macroform-robot_dity.sln16 
[2023-10-02 14:00:14] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/macroform-cold_day.alaw 
[2023-10-02 14:00:14] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/reno_project-system.wav 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/.nomusic_reserved/silence.wav 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/macroform-robot_dity.wav 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/moh/CHANGES-asterisk-moh-opsound-sln16 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for music 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with outroutemsg module 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for outroutemsg 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with paging module 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting KVStore from Paging 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Feature Codes from paging 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for paging 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with parking module 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for parking 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with phonebook module 
[2023-10-02 14:00:15] [FreePBXServer.WARNING]: 	The module phonebook returned no data, No backup created 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with pinsets module 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for pinsets 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with pm2 module 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Advanced settings from pm2 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for pm2 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with presencestate module 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for presencestate 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with queueprio module 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Feature Codes from queueprio 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Advanced settings from queueprio 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for queueprio 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with queues module 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Advanced settings from queues 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Feature Codes from queues 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Databases from queues 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting KVStore from Queues 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for queues 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with recordings module 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Feature Codes from recordings 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding directory to tar: /var/lib/asterisk/sounds/en 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/sounds/en/hangup-try-again.alaw 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/sounds/en/hangup-try-again.g722 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/sounds/en/hangup-try-again.g729 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/sounds/en/hangup-try-again.gsm 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/sounds/en/hangup-try-again.sln16 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/sounds/en/hangup-try-again.ulaw 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/sounds/en/pls-entr-num-uwish2-call.alaw 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/sounds/en/pls-entr-num-uwish2-call.g722 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/sounds/en/pls-entr-num-uwish2-call.g729 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/sounds/en/pls-entr-num-uwish2-call.sln 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/sounds/en/pls-entr-num-uwish2-call.sln16 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/sounds/en/pls-entr-num-uwish2-call.ulaw 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/lib/asterisk/sounds/en/pls-entr-num-uwish2-call.wav 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for recordings 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with ringgroups module 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Advanced settings from ringgroups 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for ringgroups 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with setcid module 
[2023-10-02 14:00:15] [FreePBXServer.WARNING]: 	The module setcid returned no data, No backup created 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with sipsettings module 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting KVStore from Sipsettings 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for sipsettings 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with soundlang module 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for soundlang 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with superfecta module 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Databases from superfecta 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting KVStore from Superfecta 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for superfecta 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with sysadmin module 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Databases from sysadmin 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting KVStore from Sysadmin 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Advanced settings from sysadmin 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for sysadmin 
[2023-10-02 14:00:15] [FreePBXServer.WARNING]: 	Skpping sysadmin which depends on framework because framework is a system requirement. Framework should be removed as a dependency 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with timeconditions module 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Databases from timeconditions 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Feature Codes from timeconditions 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Advanced settings from timeconditions 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for timeconditions 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with tts module 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Databases from tts 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for tts 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with ttsengines module 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for ttsengines 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with userman module 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Databases from userman 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting KVStore from Userman 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Advanced settings from userman 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Module XML userman 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for userman 
[2023-10-02 14:00:15] [FreePBXServer.WARNING]: 	Depend field was blank for userman. Skipping because not sure what to do 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with vmblast module 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Databases from vmblast 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for vmblast 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with voicemail module 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exclude Greeeting ?no 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exclude VMRecords ?no 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Feature Codes from voicemail 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Advanced settings from voicemail 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding directory to tar: /var/spool/asterisk/voicemail/default/6001 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding directory to tar: /var/spool/asterisk/voicemail/default/6001 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding directory to tar: /var/spool/asterisk/voicemail/default/6001 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/spool/asterisk/voicemail/default/6001/unavail.wav 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/spool/asterisk/voicemail/default/6001/greet.wav 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/var/spool/asterisk/voicemail/default/6001/busy.wav 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding file to tar: files/etc/asterisk/voicemail.conf 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for voicemail 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Working with xmpp module 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Exporting Databases from xmpp 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Adding module manifest for xmpp 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Starting Cleaning up 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Cleaning up data generated by Cdr 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Removing /tmp/dbdump 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Cleaning up data generated by Cel 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Removing /tmp/dbdump 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Finished Cleaning up 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Finished created backup file: 20231002-140002-1696235402-15.0.29-1845104420.tar.gz 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: Removing /var/spool/asterisk/backup/ChugleeDailyFull/20230930-140002-1696062602-15.0.29-293933843.tar.gz 
[2023-10-02 14:00:15] [FreePBXServer.DEBUG]: 	Removing 20230929-140002-1695976202-15.0.29-155310803.tar.gz 
[2023-10-02 14:00:15] [FreePBXServer.INFO]: Saving to selected Filestore locations 
[2023-10-02 14:00:15] [FreePBXServer.ERROR]: File size exceeds maxsize! 
[2023-10-02 14:00:16] [FreePBXServer.DEBUG]: 	Saving to: Local:'Local Storage' instance ,File location: /var/spool/asterisk20231002-140002-1696235402-15.0.29-1845104420.tar.gz  
[2023-10-02 14:00:16] [FreePBXServer.INFO]: Finished Saving to selected Filestore locations 
[2023-10-02 14:00:16] [FreePBXServer.DEBUG]: Generated Backup process result email to [email protected]. Status: Failure

Does that file get created? How big is it?

Do you get an email notice or does that fail?