浏览代码

[Web] Remove file

andryyy 6 年之前
父节点
当前提交
6fffda5def
共有 1 个文件被更改,包括 0 次插入18 次删除
  1. 0 18
      data/web/mta_sts.php

+ 0 - 18
data/web/mta_sts.php

@@ -1,18 +0,0 @@
-<?php
-error_reporting(0);
-header('Content-Type: text/plain');
-
-echo $_SERVER['HTTP_HOST'];
-
-foreach (dns_get_record('mailcow.email', DNS_MX) as $mx_r) {
-  $mx_s[] = $mx_r['target'];
-}
-
-!empty($mx_s) ?: exit();
-
-echo 'version: STSv1' . PHP_EOL;
-echo 'mode: enforce' . PHP_EOL;
-foreach ($mx_s as $mx_r) {
-  printf('mx: %s' . PHP_EOL, $mx_r);
-}
-echo 'max_age: 86400' . PHP_EOL;