David skrev: > How did you truncate your messages before putting them in the > collections folder? You can use a bash script with:
# -b n=size of parts in bytes cd /some/where/full-mails/ for file in *.eml do split -b 10000 "$file" /some/where/parts-of-mail/parts- mv /some/where/parts-of-mail/parts-aa /some/where/ready-first-part-of-mails/"$file" done rm /some/where/parts-of-mail/parts-* ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ Assp-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/assp-user
