# HG changeset patch # User enz # Date 957173011 -3600 # Node ID 9426f9eaf3d72431083ba2335120886ffb7cec43 # Parent 7b6dc86c266ddead1c57203eb8982b57b2a05c49 [svn] Change output of "noffle -a all" to standard mailbox format. diff -r 7b6dc86c266d -r 9426f9eaf3d7 CHANGELOG.html --- a/CHANGELOG.html Mon May 01 10:22:42 2000 +0100 +++ b/CHANGELOG.html Mon May 01 10:23:31 2000 +0100 @@ -21,6 +21,9 @@
  • Applied patch from Jim Hague: support for local groups / new command line options --create and --cancel. +
  • +Change output of noffle -a all to standard mailbox format, +so that tools like grepmail work.

    Version 1.0pre5

    diff -r 7b6dc86c266d -r 9426f9eaf3d7 noffle.c --- a/noffle.c Mon May 01 10:22:42 2000 +0100 +++ b/noffle.c Mon May 01 10:23:31 2000 +0100 @@ -10,7 +10,7 @@ received for some seconds (to allow multiple clients connect at the same time). - $Id: noffle.c 32 2000-04-29 14:45:56Z enz $ + $Id: noffle.c 40 2000-05-01 09:23:31Z enz $ */ #include @@ -60,10 +60,12 @@ else do { - printf( "%s\n%s" - "========================================" - "======================================\n", - Db_header( id ), Db_body( id ) ); + printf( "From %s %s\n" + "%s\n" + "%s\n", + Db_from( id ), Db_date( id ), + Db_header( id ), + Db_body( id ) ); } while ( Db_next( &id ) ); }