RhinosF1
RhinosF1
CDCloudflare Developers
Created by RhinosF1 on 6/25/2024 in #workers-help
email worker doing the opposite
export default { async email(message, env, ctx) { if (message.headers.get("from").includes("Mark Mateschitz")) { await message.forward("<me>"); } else { message.setReject("Rejected. Sending to this inbox has been banned by your email"); } } } Sent an email from my test account that doesn't include Mark Mateschitz in the from header but it still rejects.
6 replies
CDCloudflare Developers
Created by RhinosF1 on 6/19/2024 in #general-help
Cloudflare for SaaS and Origin SSL Certificates
Hello, Do our origin ssl certificates just need to be for our main zone as the origin certificates page doesn't let me add SaaS domains? We have cloudflare for SaaS so people can create custom domains for their site.
5 replies
CDCloudflare Developers
Created by RhinosF1 on 6/2/2024 in #general-help
Rocketloader causing "janky" pages
See bug report from one of our users on https://issue-tracker.miraheze.org/T12182. Is this not a? If it is, I don't see a config rule that allows me to set a header or something so I can exempt RocketLoader if certain extensions used. Does that exist?
5 replies
CDCloudflare Developers
Created by RhinosF1 on 10/17/2023 in #workers-help
email worker not working
I have a worker that follows the example but the reject doesn't seem to happen
8 replies