From ff2235b7f0b86b4d9a6f043e1fca9305f85465d2 Mon Sep 17 00:00:00 2001 From: Matthew Wilson Date: Fri, 19 May 2006 20:19:39 +0000 Subject: [PATCH] getCsMail doesn't recognize References --- lib/WebGUI/Mail/Get.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Mail/Get.pm b/lib/WebGUI/Mail/Get.pm index 83c89e73d..a61da9397 100644 --- a/lib/WebGUI/Mail/Get.pm +++ b/lib/WebGUI/Mail/Get.pm @@ -161,7 +161,7 @@ sub getNextMessage { chomp($cc); my $subject = $head->get("Subject") || undef; chomp($subject); - my $inReplyTo = $head->get("In-Reply-To") || undef; + my $inReplyTo = $head->get("In-Reply-To") || $head->get("References") || undef; chomp($inReplyTo); my $messageId = $head->get("Message-Id") || undef; chomp($messageId);