You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
579 B
27 lines
579 B
#!/bin/bash |
|
# This script converts MH mail folders to the folders that KMail |
|
# prefers (all messages in one file) |
|
# |
|
# usage: mh2kmail <dirname> |
|
# |
|
# Author: Stefan Taferner <taferner@kde.org> |
|
# This script is under GPL |
|
# |
|
if [ "X$*" = "X" ]; then |
|
echo "usage: mh2kmail <dirname>" |
|
exit 0 |
|
fi |
|
|
|
MH_DIR=$1 |
|
FOLDER=${MH_DIR}.mbx |
|
|
|
# remove old kmail folder if any |
|
rm -f $FOLDER |
|
|
|
for f in `/bin/ls $MH_DIR|sed -e :a -e 's/^.\{1,5\}$/ &/;ta'|sort`; do |
|
echo "From ???@??? 00:00:00 1997 +0000" >> $FOLDER |
|
cat $MH_DIR/$f >> $FOLDER |
|
done |
|
|
|
echo "Done. Messages stored in file $FOLDER." |
|
|
|
|