summaryrefslogtreecommitdiffstats
path: root/download_remailers.php
blob: c544dfd9f8b1b05b0c8a4725cb4bc561d219e18c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<?php
function downloadRemailers() {
    $url = 'https://www.mixmin.net/yamn/mlist2.txt';
    $file = '/var/www/yamnweb/remailers.txt';
    if (!file_exists($file) || (time() - filemtime($file) > 86400)) { // Scarica solo se il file non esiste o è più vecchio di 24 ore
        file_put_contents($file, file_get_contents($url));
    }
}

downloadRemailers();
?>