summaryrefslogtreecommitdiff
path: root/tests/ftpserver.pl
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2012-02-21 22:24:44 +0100
committerDaniel Stenberg <daniel@haxx.se>2012-02-21 22:24:44 +0100
commit77a21ff62380de7e53fa135ebbfd65d9908a4894 (patch)
tree3745060c5277d2ac4f13b12e6a8e55c8321f2673 /tests/ftpserver.pl
parent035ef06bda7fbe9ae1934f9dee008b61ad623ac1 (diff)
downloadcurl-77a21ff62380de7e53fa135ebbfd65d9908a4894.tar.gz
pop3 test server: send terminating ".CRLF" only
With commit 035ef06bda7 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.
Diffstat (limited to 'tests/ftpserver.pl')
-rwxr-xr-xtests/ftpserver.pl11
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/ftpserver.pl b/tests/ftpserver.pl
index b4039b381..034ac710d 100755
--- a/tests/ftpserver.pl
+++ b/tests/ftpserver.pl
@@ -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
# you should have received as part of this distribution. The terms
@@ -857,8 +857,9 @@ sub RETR_pop3 {
sendcontrol $d;
}
- # end with the magic 5-byte end of mail marker
- sendcontrol "\r\n.\r\n";
+ # end with the magic 3-byte end of mail marker, assumes that the
+ # mail body ends with a CRLF!
+ sendcontrol ".\r\n";
return 0;
}
@@ -880,8 +881,8 @@ my @pop3list=(
sendcontrol $d;
}
- # end with the magic 5-byte end of listing marker
- sendcontrol "\r\n.\r\n";
+ # end with the magic 3-byte end of listing marker
+ sendcontrol ".\r\n";
return 0;
}