summaryrefslogtreecommitdiff
path: root/fml/lib/FML
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-02-01 08:30:58 +0000
committerfukachan <fukachan>2001-02-01 08:30:58 +0000
commita1204fbc2298de08854fc69c3df1fef480e9996a (patch)
treed2fb98256d69ac37f9dbb950902474b9007ca218 /fml/lib/FML
parentdfd5005ef11bc29dfa5d2608c2f13dc02467f2fd (diff)
downloadfml8-a1204fbc2298de08854fc69c3df1fef480e9996a.tar.gz
fml8-a1204fbc2298de08854fc69c3df1fef480e9996a.tar.bz2
fml8-a1204fbc2298de08854fc69c3df1fef480e9996a.zip
save mail body without \r
define Messages::raw_print() for it
Diffstat (limited to 'fml/lib/FML')
-rw-r--r--fml/lib/FML/Article.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/fml/lib/FML/Article.pm b/fml/lib/FML/Article.pm
index 47f2eb15..5f63c11a 100644
--- a/fml/lib/FML/Article.pm
+++ b/fml/lib/FML/Article.pm
@@ -110,7 +110,7 @@ sub spool_in
if (defined $fh) {
$curproc->{ article }->{ header }->print($fh);
print $fh "\n";
- $curproc->{ article }->{ body }->print($fh);
+ $curproc->{ article }->{ body }->raw_print($fh);
$fh->close;
Log("Article $id");
}