aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog5
-rw-r--r--lib-src/movemail.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 92625428b2..dc74be755f 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,8 @@
+2009-02-10 Glenn Morris <[email protected]>
+
+ * movemail.c (mbx_delimit_begin, mbx_delimit_end): Write mbox rather
+ than Babyl format. (Bug#2196)
+
2009-01-23 Adrian Robert <[email protected]>
* emacsclient.c (decode_options): Use a dummy display name under
diff --git a/lib-src/movemail.c b/lib-src/movemail.c
index dd3b8291cc..d452fd15a7 100644
--- a/lib-src/movemail.c
+++ b/lib-src/movemail.c
@@ -923,7 +923,7 @@ int
mbx_delimit_begin (mbf)
FILE *mbf;
{
- if (fputs ("\f\n0, unseen,,\n", mbf) == EOF)
+ if (fputs ("From movemail\n", mbf) == EOF)
return (NOTOK);
return (OK);
}
@@ -932,7 +932,7 @@ int
mbx_delimit_end (mbf)
FILE *mbf;
{
- if (putc ('\037', mbf) == EOF)
+ if (putc ('\n', mbf) == EOF)
return (NOTOK);
return (OK);
}