getRemailerList(); // Parse remailer list to extract remailer names $remailers = []; if ($remailerList) { $lines = explode("\n", $remailerList); foreach ($lines as $line) { // Extract remailer names (format: "name ******** time uptime") if (preg_match('/^([a-zA-Z0-9\-]+)\s+/', $line, $matches)) { $name = trim($matches[1]); if (!empty($name) && $name !== 'mixmaster' && strlen($name) > 2) { $remailers[] = $name; } } } // Remove duplicates and sort $remailers = array_unique($remailers); sort($remailers); } // If no remailers found, add wildcards if (empty($remailers)) { $remailers = ['*']; } ?>
MISSION: This interface provides access to the YAMN anonymous remailer network for secure, untraceable email transmission. Messages are encrypted and routed through a chain of randomly selected mix nodes, making traffic analysis and sender identification computationally infeasible.
OPERATION: All traffic is mandatorily routed through Tor before reaching the YAMN network. The YAMN entry node receives connections only from Tor exit nodes, never learning the true origin IP address. Messages are padded to standard sizes, delayed with random intervals, and protected against replay attacks through cryptographic message-ID verification.
SECURITY: Double-layer anonymization: Tor conceals your identity from the YAMN network, while YAMN's multi-hop mixing (minimum 3 remailers) prevents the final recipient from tracing back to the entry point. No persistent metadata retained.
STATUS: System operational. Tor connection verified. No logs retained.