pop3 test server: send terminating ".CRLF" only

With commit 035ef06bda applied, the test pop3 server needs to send
".\r\n" as the body terminating sequence and there needs to be a final
CRLF in the actual body in the test data file.
This commit is contained in:
Daniel Stenberg
2012-02-21 22:24:44 +01:00
parent 035ef06bda
commit 77a21ff623
3 changed files with 15 additions and 14 deletions

View File

@@ -6,7 +6,7 @@
# | (__| |_| | _ <| |___ # | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____| # \___|\___/|_| \_\_____|
# #
# Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. # Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
# #
# This software is licensed as described in the file COPYING, which # This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms # you should have received as part of this distribution. The terms
@@ -857,8 +857,9 @@ sub RETR_pop3 {
sendcontrol $d; sendcontrol $d;
} }
# end with the magic 5-byte end of mail marker # end with the magic 3-byte end of mail marker, assumes that the
sendcontrol "\r\n.\r\n"; # mail body ends with a CRLF!
sendcontrol ".\r\n";
return 0; return 0;
} }
@@ -880,8 +881,8 @@ my @pop3list=(
sendcontrol $d; sendcontrol $d;
} }
# end with the magic 5-byte end of listing marker # end with the magic 3-byte end of listing marker
sendcontrol "\r\n.\r\n"; sendcontrol ".\r\n";
return 0; return 0;
} }