CFORED
CDCloudflare Developers
•Created by CFORED on 11/22/2023 in #workers-help
Email Routing reports that email messages are dropped.
7 replies
CDCloudflare Developers
•Created by CFORED on 11/22/2023 in #workers-help
Email Routing reports that email messages are dropped.
Check the Email Routing, Email Routing Summary, Chart: "Dropped."
7 replies
CDCloudflare Developers
•Created by CFORED on 11/12/2023 in #general-help
Failed Workers Delivery Transport to my EXIM Mail Server
Visit the following URL link, https://discord.com/channels/595317990191398933/1174500878028382278
8 replies
CDCloudflare Developers
•Created by CFORED on 11/12/2023 in #general-help
Failed Workers Delivery Transport to my EXIM Mail Server
I think the issue is with the non-HTTP service with EXIM mail server, and Cloudflare Workers currently only support making HTTP requests using the fetch API.
8 replies
CDCloudflare Developers
•Created by CFORED on 11/12/2023 in #general-help
Failed Workers Delivery Transport to my EXIM Mail Server
already added, no change
8 replies
CDCloudflare Developers
•Created by CFORED on 11/12/2023 in #general-help
Failed Workers Delivery Transport to my EXIM Mail Server
8 replies
CDCloudflare Developers
•Created by CFORED on 11/8/2023 in #general-help
Cloudflare Workers Code Error:
We found an issue with Auto SSL. Thanks
14 replies
CDCloudflare Developers
•Created by CFORED on 11/8/2023 in #general-help
Cloudflare Workers Code Error:
Checkout the Gist link, https://gist.github.com/DevCEDTeam/5d48992d55d58bc422e8f994ec89ba07
14 replies
CDCloudflare Developers
•Created by CFORED on 11/8/2023 in #general-help
Cloudflare Workers Code Error:
How do I resolve the bundling error?
14 replies
CDCloudflare Developers
•Created by CFORED on 11/8/2023 in #general-help
Cloudflare Workers Code Error:
Hi,
We have a cPanel/EXIM mail client and smart host Dual Circle that uses port no. 10025, smtp mx mail socket. The problem is with the SMTP node mailer library: Uncaught ReferenceError: require is not defined at worker.js:2:20 (Code: 10021).
Regards,
Harold,
DevCED Team
14 replies
CDCloudflare Developers
•Created by CFORED on 11/8/2023 in #general-help
Cloudflare Workers Code Error:
Hi ,
We have a cPanel/EXIM mail client and smart host Dual Circle that uses port no. 10025, smtp mx mail socket. The problem is with the SMTP node mailer library: Uncaught ReferenceError: require is not defined at worker.js:2:20 (Code: 10021).
Regards,
Harold,
DevCED Team
14 replies
CDCloudflare Developers
•Created by CFORED on 11/8/2023 in #general-help
Cloudflare Workers Code Error:
What is the name of the SMTP client library installed on Cloudflare Workers, e.g., include libraries like nodemailer, emailjs-smtp-client, or others.
See error message: Uncaught Error: No such module "nodemailer". imported from "worker.js" (Code: 10021).
14 replies
CDCloudflare Developers
•Created by CFORED on 11/8/2023 in #general-help
Enable Proxy protocol
Other than enabling an enterprise account, is there a secondary tool to move email traffic from Cloudflare Works to my Exim mail server (imap.xxxx.com:10025)?
Regards,
Hal
DevCED Team.
4 replies
CDCloudflare Developers
•Created by CFORED on 11/8/2023 in #general-help
Enable Proxy protocol
4 replies
CDCloudflare Developers
•Created by CFORED on 11/6/2023 in #general-help
Unknown error: permanent error (521): 5.3.0
Snippet code:
export default {
async email(message, env, ctx) {
/**
* Route all email traffic to imap.xxxx.com:10025
*/
const destinationServer = 'imap.xxxx.com:10025';
const destinationStream = await message.pipeTo(destinationServer);
// Check if the email was successfully delivered to the destination server
if (!destinationStream.ok) {
// Handle the error
throw new Error('Failed to deliver email to destination server');
}
// Close the destination stream
await destinationStream.close();
}
}
Rejected reason:
Unknown error: permanent error (521): 5.3.0 Upstream error, please check https://developers.cloudflare.com/email-routing/postmaster for possible reasons why. kxgHrM5oWf65
Rejected reason:
Unknown error: permanent error (550): 5.4.6 Email was forwarded too many times. 8EZifBH2aX33
2 replies
CDCloudflare Developers
•Created by CFORED on 11/3/2023 in #general-help
API Request Failed:
Thank you very much
10 replies