diff options
Diffstat (limited to 'imap/pop3dserver.c')
| -rw-r--r-- | imap/pop3dserver.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/imap/pop3dserver.c b/imap/pop3dserver.c index ea5ed99..5e938ad 100644 --- a/imap/pop3dserver.c +++ b/imap/pop3dserver.c @@ -61,6 +61,8 @@ #define LISTVERSION 3 extern void pop3dcapa(); +extern void pop3dlang(const char *); + static void acctout(const char *disc); void rfc2045_error(const char *p) { @@ -1010,6 +1012,12 @@ int c; continue; } + if (strcmp(p, "LANG") == 0) + { + pop3dlang(strtok(NULL, "\r\n")); + continue; + } + if (strcmp(p, "DELE") == 0) { unsigned i; |
