This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#!/usr/bin/env php
<?php
require_once __DIR__ . '/../src/protocol/Pop3Server.php';
echo "启动最简POP3邮件服务器\n";
echo "==============================\n\n";
// 检查是否有权限监听110端口(需要sudo)
if (posix_getuid() != 0) {
echo "错误:需要管理员权限监听110端口\n";
echo "请使用:sudo php " . __FILE__ . "\n";
echo "或者使用其他端口(需要修改代码)\n";
exit(1);
}
$server = new SimplePop3Server();
$server->start();
?>