summaryrefslogtreecommitdiffstats
path: root/download_remailers.php
blob: fa86e0f4a017b75024b0057ad399915f26e429b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<?php
function downloadRemailers() {
    $url = 'https://www.haph.org/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();
?>