How does your config, without access credentials, look likeā¦?
1 Like
# This is the Zammad storage provider config sample. Copy this file to
# config/zammad/storage.yml and adopt your configuration.
# Amazon AWS S3 compatible simple storage service.
#
# For further information please see the official Amazon AWS S3 guide
# https://docs.aws.amazon.com/AmazonS3/latest/userguide
s3:
access_key_id: 'redacted'
secret_access_key: 'redacted'
region: 'eu-central'
endpoint: 'https://s3.eu-central-003.backblazeb2.com'
force_path_style: true
bucket: 'redacted'
# The above configuration may also be provided in a URL-like format in this
# configuration file or as an environment variable named S3_URL.
# If the url is provided in the configuration file the environment variable is
# ignored.
#s3:
# url: 'https://key:secret@s3.eu-central-1.amazonaws.com/zammad-storage-bucket?region=eu-central-1&force_path_style=true'
Thanks for the quick reply in any case. If itās of any use, weād be happy to supply you with credentials for a b2 S3 bucket in our account for testing purposes.
Okay I might have bad news.
It seems like backblaze doesnāt support these headers (see S3-Compatible API)
Now Iāve checked the upstream gem thatās responsible in Zammad for this. It has received a version bumb from 1.162 to 1.182 (in between 6.4 and 6.5).
Iāve checked the gems release notes and cannot spot any change thatās connected. There is a option in the gem to disable the checksum_mode (which should solve this issue), however, it is not implemented.
E, [2025-04-03T22:48:26.426956#3508-6760] ERROR -- : Store::Provider::S3: invalid configuration option `:checksum_mode'
Only quick option I see for you right now is a downgrade to Zammad 6.4.2 which contains at least the security fixes, but youāll loose the new features. At least youād be able to work, I guess.
Temporary workaround (maybe?) would be downgrade, file move to local storage (for now) and then the update back to 6.5 if thatās helping.
Thanks a lot for your suggestions. Is there any documentation on downgrading the version? We can live without the new features in 6.5 for now. File move to local storage would also be feasible for now but would cause infra issues for us in the short/midterm.
Regarding the checksum_mode disable, do you have an estimate on how much time it might take to implement that or if we could realistically calculate with that happening in the next weeks/months?
Hi @vanOert. Could you please update your S3 configuration as shown below?
s3:
access_key_id: 'redacted'
secret_access_key: 'redacted'
region: 'eu-central'
endpoint: 'https://s3.eu-central-003.backblazeb2.com'
force_path_style: true
bucket: 'redacted'
request_checksum_calculation: when_required
response_checksum_validation: when_required
Maybe this helpsā¦
3 Likes
I can confirm that
request_checksum_calculation: when_required
response_checksum_validation: when_required
work with my backblaze trial account, so should work for OP.
This isnāt documented anywhere rightā¦?
1 Like
@fliebe92 Changed config according to your suggestion. It seems to be working, we can access attachments from b2 S3 again. Searchindex:rebuild will take quite a while to complete but hasnāt run into the error yet. Thanks a lot. Iāll mark this solution as soon as weāre through.
@MrGeneration thanks for testing
1 Like