blob: e66ce6464e2432b6b03af08f3689c639eed02140 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
#
# $FML$
#
echo "# reset message-id database"
find /var/spool/ml/elena/var/db/message_id/ | perl -nple unlink ;
echo "# reset library"
sh reset_lib.sh ;
printf "\n%s\n\n" "# start emulation";
/usr/local/libexec/fml/fetchfml elena@home.fml.org --article-post
/usr/local/libexec/fml/fetchfml elena@home.fml.org --command-mail
/usr/local/libexec/fml/fetchfml elena@home.fml.org --error
exit 0;
|