123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- #!/bin/sh
- #
- # Released under the terms of GPLv3 or at your option any later version.
- # No warranties.
- # Copyright Enrico Tassi <gares@fettunta.org>
-
- # the idea is:
- # 0) it is the first run (no db)
- # 1) we compute the local db with mddiff
- # 2) we push it to the remote host via ssh
- # 3) we start a special pull where smd-server uses the special db
- # and where smd-client just emits a shell script with all the renaming
- # 4) we remove the remote db
-
- set -e
- #set -x
-
- PREFIX="@PREFIX@"
- if [ `echo "$PREFIX" | cut -c -1` = "@" ]; then
- SMDROOT=.
- echo "smd-uniform-names not installed, assuming smd-common is ./smd-common"
- else
- SMDROOT=$PREFIX/share/syncmaildir
- fi
-
- . $SMDROOT/smd-common
-
- init
- parse_args "$@"
- read_conffile
- # this could be a system wide pre-hook
- check_lockfile
- setup_plumbing
- setup_logging
- setup_mailboxnames
-
- # we move to the home, since Mail paths are relative
- # to the home
- cd
-
- setup_workarea
-
- ORIG_CHILDARGS="$CHILDSARGS"
-
- CHILDSARGS="$ORIG_CHILDARGS --get-mddiff-cmdline"
- DB=`run_local_server | sed 's?^.*--db-file \([^ ][^ ]*\) .*$?\1?'`
- if [ -e "$DB" ]; then
- echo "Found db file: $DB"
- echo "This utility can be used only before any synchronization"
- echo "takes place. See the manpage for more details."
- exit 1
- fi
-
- CHILDSARGS="$ORIG_CHILDARGS --get-mddiff-cmdline --override-db ~/$RENAMEDB"
- MDLINE=`run_local_server`
-
- EXITCODE=0
-
- gc_mktemp
- TMPERR="$RC"
- gc_mktemp
- TMPOUT="$RC"
- (cd $WORKAREA; $MDLINE) > $TMPOUT 2> $TMPERR || EXITCODE=1
- grep -v '^warning.*unable to open db' $TMPERR || true
- grep '^ERROR' $TMPOUT || true
- if [ $EXITCODE = 1 ]; then exit $EXITCODE; fi
- mv ~/$RENAMEDB.new ~/$RENAMEDB
- atexit_rm ~/$RENAMEDB.mtime.new
- atexit_rm ~/$RENAMEDB
-
- CHILDSARGS="$ORIG_CHILDARGS --dump-stdin ~/$RENAMEDB"
- cat ~/$RENAMEDB | run_remote_server
-
- ($MITM $CtS > $LtS) < $CtL &
- LOGGER1=$!
- atexit_kill $LOGGER1
-
- ($MITM $StC > $LtC) < $StL &
- LOGGER2=$!
- atexit_kill $LOGGER2
-
- ($PROGRESS_REPORTER $CL) < $PRp &
- REPORTER=$!
- atexit_kill $REPORTER
-
- CHILDSARGS="$ORIG_CHILDARGS --rename-only --override-db ~/$RENAMEDB"
- (run_local_client < $LtC 2> $PRp) > $CtL &
- CLIENT=$!
- atexit_kill $CLIENT
-
- CHILDSARGS="$ORIG_CHILDARGS --no-move --stop-after-diff --override-db ~/$RENAMEDB"
- (run_remote_server < $LtS 2> $SL) > $StL || EXITCODE=1
-
- wait $CLIENT || EXITCODE=1
- wait $REPORTER || EXITCODE=1
-
- report $EXITCODE 0 smd-push smd-pull smd-server smd-client
-
- exit $EXITCODE
|