|
脚本:
vuser_init()
{
pop31 = 0;
pop3_logon_ex(&pop31, "Pop3Logon",
"URL=pop3://×××:1@192.168.2.251:18110",
LAST);
pop3_command_ex(&pop31, "Pop3Command",
"Command=STAT",
LAST);
pop3_list_ex(&pop31, "Pop3List",
LAST);
pop3_retrieve_ex(&pop31, "RetrieveMail",
"RetrieveList=1",
"DeleteMail=No",
LAST);
pop3_logoff_ex(&pop31);
pop3_free_ex(&pop31);
return 0;
执行这个脚本 从服务器看到的错误日志是、:
ct 20 16:00:22 [ 9072] debug: command is STAT
[Src/CEFService.h:431]
Oct 20 16:00:22 [ 9072] debug: command is STAT
[Src/CEFService.h:431]
Oct 20 16:00:22 [ 9072] debug: command is LIST
[Src/CEFService.h:431]
Oct 20 16:00:22 [ 9072] debug: command is STAT
[Src/CEFService.h:431]
Oct 20 16:00:22 [ 9072] debug: command is STAT
[Src/CEFService.h:431]
Oct 20 16:00:22 [ 9072] debug: command is RETR 1
[Src/CEFService.h:431]
Oct 20 16:00:22 [ 9072] debug: Data is decrypted [Src/CEF.cpp:1114]
Oct 20 16:00:22 [ 9072] debug: command is QUIT
[Src/CEFService.h:431]
Oct 20 16:00:22 [ 9072] debug: UPDATE push_user SET conn_status=0, conn_pid=0 WHERE pushuser_id='13911019439' [Src/CEFUser.cpp:1691]
Oct 20 16:00:22 [ 9072] debug: Done! [Src/CEFService.h:546]
现在的问题是 我只在脚本中设置了发送一个【command is stat]】可是服务器怎么收到这么多啊,每执行完lr的一个接收邮件语句,就产生一个command is stat命令 |
|