Subject: | as_string broken in 1.854 |
Hi,
It appears the stringify test is failing in 1.854, probably due to a
change in the private methods in Email::Simple.
This should fix it:
--- lib/Email/MIME.pm~ 2006-10-17 10:03:07.027808680 +0100
+++ lib/Email/MIME.pm 2006-10-17 10:03:23.636283808 +0100
@@ -17,7 +17,7 @@
sub as_string {
my $self = shift;
- return $self->__head->as_string
+ return $self->_headers_as_string
. ($self->{mycrlf} || "\n")
. $self->body_raw;
}