Loading tests/ftpserver.pl +54 −55 Original line number Diff line number Diff line Loading @@ -1274,9 +1274,8 @@ sub RETR_pop3 { } sub LIST_pop3 { # this is a built-in fake-message list my @pop3list=( # This is a built-in fake-message list my @data = ( "1 100\r\n", "2 4294967400\r\n", # > 4 GB "4 200\r\n", # Note that message 3 is a simulated "deleted" message Loading @@ -1286,11 +1285,11 @@ my @pop3list=( sendcontrol "+OK Listing starts\r\n"; for my $d (@pop3list) { for my $d (@data) { sendcontrol $d; } # end with the magic 3-byte end of listing marker # End with the magic 3-byte end of listing marker sendcontrol ".\r\n"; return 0; Loading Loading
tests/ftpserver.pl +54 −55 Original line number Diff line number Diff line Loading @@ -1274,9 +1274,8 @@ sub RETR_pop3 { } sub LIST_pop3 { # this is a built-in fake-message list my @pop3list=( # This is a built-in fake-message list my @data = ( "1 100\r\n", "2 4294967400\r\n", # > 4 GB "4 200\r\n", # Note that message 3 is a simulated "deleted" message Loading @@ -1286,11 +1285,11 @@ my @pop3list=( sendcontrol "+OK Listing starts\r\n"; for my $d (@pop3list) { for my $d (@data) { sendcontrol $d; } # end with the magic 3-byte end of listing marker # End with the magic 3-byte end of listing marker sendcontrol ".\r\n"; return 0; Loading