Has anyone got the Backblaze B2 backup working?

It looks like the newer version of the b2sdk package is installed and currently being used by mailinabox. If you run the command ls -lah /usr/local/lib/mailinabox/env/lib/python3.6/site-packages do you see b2sdk-1.16.0.dist-info directory listed?

If so i’d recommend deleting the b2sdk package files and reinstalling them using the pip3 command.

  1. stop the mailinabox service: sudo systemctl stop mailinabox
  2. delete the b2sdk python packages used by mailinabox: sudo rm -rfv /usr/local/lib/mailinabox/env/lib/python3.6/site-packages/b2sdk*
  3. Install the b2sdk package in mailinabox’s site-packages directory at the required version and upgrade any other packages: sudo pip3 install b2sdk==1.14.1 --target /usr/local/lib/mailinabox/env/lib/python3.6/site-packages --upgrade
  4. restart the mailinabox service: sudo systemctl restart mailinabox
1 Like