Can I drill down further? Because this doesn't really help me in explaining what part of the site is
Can I drill down further? Because this doesn't really help me in explaining what part of the site is responsible for this.





These days, port 25 is mainly used for SMTP Relaying – transmitting messages between different email servers. It’s not recommended to use for email submission unless you specifically manage your own mail server.https://mailtrap.io/blog/smtp-ports-25-465-587-used-for/
sharp which cannot run on Workers. Perhaps could use but it's probably costly on CPU and Workers have limited memory. Cloudflare Images seems to be more about serving images with transformations, rather than transforming/validating on ingest via a worker (would prefer to store a single minified image in R2)?expires_inexpires_inve been having this issue for a while now.
My wrangler version: wrangler secret putjimp const cfCache = await platform.caches.open("(cache name here)");
const cacheMatch = await cfCache.match(cacheURL) as Response | undefined;
if(cacheMatch) {
const responseGeneratedRaw = cacheMatch.headers.get("x-response-generated");
if(responseGeneratedRaw) {
const responseGenerated = new Date(responseGeneratedRaw);
if(Date.now() - responseGenerated.getTime() < cache_time) {
// return data from cache match
}
}
}platform?.context?.waitUntil(
cfCache.put(cacheURL, await createMFResponse(jsonResponse.clone()) as Response)
)TypeError: Cannot read properties of undefined (reading 'fetch')