brettrandall <[EMAIL PROTECTED]> writes:

> I've figured this one out. I was running the version that came with
> Debian Etch's uw-mailutils, which apparently 6 years old. I downloaded
> the latest UW-IMAP from the official server and mailutil worked great,
> first time.

Glad this helped you.

I also read the thread on the imap-uw mailing-list. Do not forget (as
I did) what Mark wrote you about the CR-LF line termination of the
data files of the 'mx' format.

I converted (and kept dates of) the 'mx' files stored in my
~/Mail/mail/ directory with the following shell script. It takes a
long time, but it works well.

find . -type f -name '[0-9]*' |\
while read f ; do
      tr -d '\r' < $f > $f.new
      touch -r $f $f.new
      mv -f $f.new $f
done

-- 
Nicolas


_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to