]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Mbox.pm
mbox: clarify our use of the the mboxrd variant
[public-inbox.git] / lib / PublicInbox / Mbox.pm
index 332e89a7220c1a153b764db42be8eb6846c97b08..9af92793b54ed443a8b6e8db5ab8845fdb315999 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright (C) 2015, all contributors <meta@public-inbox.org>
 # License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
-# Streaming interface for formatting messages as an mbox
+# Streaming interface for formatting messages as an mboxrd
 package PublicInbox::Mbox;
 use strict;
 use warnings;
@@ -36,7 +36,7 @@ sub emit_msg {
 
        my $buf = $simple->header_obj->as_string;
        unless ($buf =~ /\AFrom /) {
-               $fh->write("From a\@a Thu Jan  1 00:00:00 1970\n");
+               $fh->write("From mboxrd\@z Thu Jan  1 00:00:00 1970\n");
        }
        $fh->write($buf .= $simple->crlf);