This is a sample script for downloading files from Google Drive under no authorization using browser. By using this sample, you can make other users download files from your Google Drive. Even if the other users are not Google users, they can download the files.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- | |
| /* | |
| * Serverless contact form handler for Cloudflare Workers. | |
| * Emails are sent via Mailgun. | |
| * | |
| * Learn more at https://maxkostinevich.com/blog/serverless-contact-form | |
| * Live demo: https://codesandbox.io/s/serverless-contact-form-example-x0neb | |
| * | |
| * (c) Max Kostinevich / https://maxkostinevich.com | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This worker is designed to be able to neatly handle MTA-STS policies for multiple domains. | |
| // Make a new worker with this script and add your domains to the stsPolicies dict like the example. | |
| // Add a DNS AAAA record for mta-sts.yourdomain.com pointing to 100:: and set to proxied, | |
| // then add a workers route for mta-sts.yourdomain.com/* pointing to this worker. | |
| // You'll still need to manually add the appropriate _mta-sts.yourdomain.com TXT record to enable the policy, | |
| // and the _smtp._tls.yourdomain.com TXT record for reporting. | |
| const stsPolicies = { |
