Skip to content

Instantly share code, notes, and snippets.

@dotysan
Last active December 13, 2024 04:38
Show Gist options
  • Save dotysan/5ca9bee46425d1b3af47319801e6692c to your computer and use it in GitHub Desktop.
Save dotysan/5ca9bee46425d1b3af47319801e6692c to your computer and use it in GitHub Desktop.
CloudFlare Worker for MTA-STS policy
// const mode = 'testing';
const mode = 'enforce';
// const max_age = 86400; // 1 day
const max_age = 604800; // 1 week
const mx_list = [
'aspmx.l.google.com',
'alt1.aspmx.l.google.com',
'alt2.aspmx.l.google.com',
'alt3.aspmx.l.google.com',
'alt4.aspmx.l.google.com',
];
const sts = `version: STSv1
mode: ${mode}
${mx_list.map(i=> 'mx: '+ i).join('\n')}
max_age: ${max_age}`;
export default{
async fetch() {
return new Response(sts);
},
};
@dotysan
Copy link
Author

dotysan commented Dec 13, 2024

I had to adjust the mx_list slightly:

Yep. My original example was on a really old Google Workplace account. I just pushed some more modern/simple updates.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment