Switch to side-by-side view

--- a/src/internfile/mh_mail.h
+++ b/src/internfile/mh_mail.h
@@ -1,12 +1,13 @@
 #ifndef _MAIL_H_INCLUDED_
 #define _MAIL_H_INCLUDED_
-/* @(#$Id: mh_mail.h,v 1.2 2005-03-31 10:04:07 dockes Exp $  (C) 2004 J.F.Dockes */
+/* @(#$Id: mh_mail.h,v 1.3 2005-11-08 21:02:55 dockes Exp $  (C) 2004 J.F.Dockes */
 #include "mimehandler.h"
 namespace Binc {
     class MimeDocument;
 }
 
-// Code to turn a mail folder file into internal documents
+/// Translate a mail folder file into internal documents (also works
+/// for maildir files)
 class MimeHandlerMail : public MimeHandler {
     void *vfp;
     int msgnum;
@@ -19,7 +20,8 @@
     MimeHandlerMail() : vfp(0), msgnum(0), conf(0) {}
     virtual ~MimeHandlerMail();
     virtual MimeHandler::Status 
-	worker(RclConfig *conf, const string &fn, 
+	mkDoc(RclConfig *conf, const string &fn, 
 	       const string &mtype, Rcl::Doc &docout, string& ipath);
 };
+
 #endif /* _MAIL_H_INCLUDED_ */