mhonarc-users

Re: Large archive conversion problem

2004-03-05 12:01:44
   I am having trouble in converting large archives ( since 1990 ).

   All my emails are in .txt format  on SunOS cdnemailweb.Cadence.COM 5.8
   Generic_108528-19 sun4u sparc SUNW,Ultra-80

   Here are my trials :

   1. mhonarc -add /usr1/archives/*.txt  ( doesn't work ) fails with
   Arguments too long

   2. find /usr1/archives/ | xargs cat > /tmp/mbox

What about

   find -name '*.txt' /usr1/archives -exec mhonarc -add {} \;

Or

   find -name '*.txt' /usr1/archives -exec cat {} \; > /tmp/mbox
   mhonarc -add /tmp/mbox

Chris