- 论坛徽章:
- 0
|
你用什麼pop3??我之前都作過同樣事情,我怕outlook 誤刪了郵件.....以下patch要用來disable DELE command in pop3
courier-imap:
--- imap/pop3dserver.c 2005-03-01 11:13:53.000000000 +0800
+++ imap/pop3dserver.c 2006-12-13 17:20:45.000000000 +0800
@@ -883,6 +883,7 @@
if (strcmp(p, "DELE") == 0)
{
+ /*
unsigned i;
if ((i=getmsgnum(strtok(NULL, " \t\r"))) == 0)
@@ -890,6 +891,8 @@
msglist_a[i-1]->isdeleted=1;
printf("+OK Deleted.\r\n");
+ */
+ printf("-ERR DELE command is Disabled.\r\n");
fflush(stdout);
continue;
}
dovecot:
--- src/pop3/commands.c 2006-08-11 06:26:34.000000000 +0800
+++ /root/commands.c 2007-02-12 01:16:08.000000000 +0800
@@ -678,8 +678,10 @@
return cmd_capa(client, args);
break;
case 'D':
- if (strcmp(name, "DELE") == 0)
- return cmd_dele(client, args);
+ if (strcmp(name, "DELE") == 0) {
+ client_send_line(client, "-ERR Command disabled: %s", name);
+ return -1;
+ }
break;
case 'L':
if (strcmp(name, "LIST") == 0) |
|