You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
498 B

This file contains ambiguous Unicode characters!

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();
?>