mirror of
https://github.com/imapsync/imapsync.git
synced 2024-11-17 00:02:29 +01:00
461 lines
14 KiB
Makefile
461 lines
14 KiB
Makefile
|
|
# $Id: Makefile,v 1.189 2015/07/17 17:36:56 gilles Exp gilles $
|
|
|
|
.PHONY: help usage all
|
|
|
|
help: usage
|
|
|
|
usage:
|
|
@echo " imapsync $(VERSION), You can do :"
|
|
@echo "make testp # it shows needed Perl modules from your distro or CPAN"
|
|
@echo "make install # as root"
|
|
@echo ""
|
|
@echo "All other goals are for the upstream developper"
|
|
|
|
@echo "make testf # run tests"
|
|
@echo "make testv # run tests verbosely"
|
|
@echo "make test_quick # few tests verbosely"
|
|
@echo "make W/test.bat # run --tests and W/test.bat on win32"
|
|
@echo "make W/test_tests.bat # run --tests on win32"
|
|
@echo "make W/test2.bat # run W/test2.bat on win32"
|
|
@echo "make W/test3.bat # run W/test3.bat on win32"
|
|
@echo "make W/test_reg.bat # run W/test_reg.bat on win32"
|
|
@echo "make W/test_exe_2.bat # run W/test_exe_2.bat on win32"
|
|
@echo "make prereq_win32 # run W/install_modules.bat on win32"
|
|
@echo "make all "
|
|
@echo "make upload_tests # upload tests.sh"
|
|
@echo "make upload_index"
|
|
@echo "make valid_index # check index.shtml for good syntax"
|
|
@echo "make upload_ks"
|
|
@echo "make imapsync.exe"
|
|
@echo "make bin"
|
|
@echo "make publish"
|
|
@echo "make perlcritic"
|
|
@echo "make prereq # Generates W/prereq.*"
|
|
@echo "make checklink # Check links"
|
|
@echo "make checklinkext # Check links of S/*.shtml"
|
|
|
|
|
|
PREFIX ?= /usr
|
|
DIST_NAME=imapsync-$(VERSION)
|
|
DIST_FILE=$(DIST_NAME).tgz
|
|
DEB_FILE=$(DIST_NAME).deb
|
|
|
|
VERSION=$(shell perl -I$(IMAPClient) ./imapsync --version 2>/dev/null || cat VERSION)
|
|
VERSION_EXE=$(shell cat ./VERSION_EXE)
|
|
|
|
HELLO=$(shell date;uname -a)
|
|
IMAPClient_3xx=./W/Mail-IMAPClient-3.35/lib
|
|
IMAPClient=$(IMAPClient_3xx)
|
|
|
|
HOSTNAME = $(shell hostname -s)
|
|
ARCH = $(shell uname -m)
|
|
KERNEL = $(shell uname -s)
|
|
BIN_NAME = imapsync_bin_$(KERNEL)_$(ARCH)
|
|
|
|
hello:
|
|
@echo "$(VERSION)"
|
|
@echo "$(IMAPClient)"
|
|
@echo "$(HOSTNAME)"
|
|
@echo "$(ARCH)"
|
|
@echo "$(KERNEL)"
|
|
@echo "$(BIN_NAME)"
|
|
|
|
|
|
all: ChangeLog README VERSION OPTIONS W/imapsync.1 prereq perlcritic bin mac imapsync.exe VERSION_EXE
|
|
|
|
testp :
|
|
sh INSTALL.d/prerequisites_imapsync
|
|
@perl -c imapsync || { echo; echo "Read the INSTALL file to solve Perl module dependencies!"; exit 1; }
|
|
|
|
ChangeLog: imapsync
|
|
rlog imapsync > ChangeLog
|
|
|
|
README: imapsync
|
|
perldoc -t imapsync > README
|
|
|
|
OPTIONS: imapsync
|
|
perl -I./$(IMAPClient) ./imapsync --help > ./OPTIONS
|
|
|
|
VERSION: imapsync
|
|
perl -I./$(IMAPClient) ./imapsync --version > ./VERSION
|
|
touch -r ./imapsync ./VERSION
|
|
|
|
VERSION_EXE: imapsync
|
|
ssh Admin@c 'C:/msys/1.0/home/Admin/imapsync/imapsync.exe --version' > ./VERSION_EXE
|
|
dos2unix ./VERSION_EXE
|
|
touch -r ./imapsync ./VERSION_EXE
|
|
|
|
|
|
GOOD_PRACTICES.html: W/GOOD_PRACTICES.t2t
|
|
txt2tags -i W/GOOD_PRACTICES.t2t -t html --toc -o GOOD_PRACTICES.html
|
|
|
|
TUTORIAL.html: W/TUTORIAL.t2t
|
|
txt2tags -i W/TUTORIAL.t2t -t html --toc -o TUTORIAL.html
|
|
|
|
doc: README OPTIONS ChangeLog TUTORIAL.html GOOD_PRACTICES.html
|
|
|
|
.PHONY: clean clean_tilde clean_test doc clean_log
|
|
|
|
clean: clean_tilde clean_man clean_log
|
|
|
|
clean_test:
|
|
rm -f .test_3xx
|
|
|
|
clean_tilde:
|
|
rm -f *~
|
|
|
|
clean_log:
|
|
rm -f LOG_imapsync/*.txt
|
|
rm -f examples/LOG_imapsync/*.txt
|
|
|
|
.PHONY: install dist man
|
|
|
|
man: imapsync.1
|
|
|
|
clean_man:
|
|
rm -f imapsync.1
|
|
|
|
W/imapsync.1: imapsync
|
|
# pod2man < /dev/null
|
|
pod2man imapsync > W/imapsync.1
|
|
|
|
install: testp W/imapsync.1
|
|
mkdir -p $(DESTDIR)$(PREFIX)/bin
|
|
install imapsync $(DESTDIR)$(PREFIX)/bin/imapsync
|
|
chmod 755 $(DESTDIR)$(PREFIX)/bin/imapsync
|
|
mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1
|
|
install W/imapsync.1 $(DESTDIR)$(PREFIX)/share/man/man1/imapsync.1
|
|
chmod 644 $(DESTDIR)$(PREFIX)/share/man/man1/imapsync.1
|
|
|
|
|
|
|
|
.PHONY: cidone ci
|
|
|
|
ci: cidone
|
|
|
|
cidone:
|
|
rcsdiff RCS/*
|
|
cd W && rcsdiff RCS/*
|
|
cd S && rcsdiff RCS/*
|
|
cd examples && rcsdiff RCS/*
|
|
|
|
###############
|
|
# Local goals
|
|
###############
|
|
|
|
.PHONY: prereq test tests testp testf test3xx testv3 perlcritic
|
|
|
|
prereq: W/prereq.scandeps
|
|
|
|
W/prereq.scandeps: INSTALL.d/prerequisites_imapsync imapsync
|
|
scandeps -c -x imapsync | tee W/prereq.scandeps
|
|
./INSTALL.d/prerequisites_imapsync | tee W/prereq.`lsb_release -i -s || echo Unknown`
|
|
|
|
|
|
|
|
perlcritic: W/perlcritic_3.out W/perlcritic_2.out
|
|
|
|
W/perlcritic_1.out: imapsync
|
|
perlcritic -1 imapsync > W/perlcritic_1.out || :
|
|
|
|
W/perlcritic_2.out: imapsync
|
|
perlcritic -2 imapsync > W/perlcritic_2.out || :
|
|
|
|
W/perlcritic_3.out: imapsync
|
|
perlcritic -3 imapsync > W/perlcritic_3.out || :
|
|
|
|
test_quick : test_quick_3xx
|
|
|
|
test_quick_3xx: imapsync tests.sh
|
|
CMD_PERL='perl -I./$(IMAPClient_3xx)' /usr/bin/time sh -x tests.sh locallocal
|
|
|
|
testv3: imapsync tests.sh
|
|
CMD_PERL='perl -I./$(IMAPClient_3xx)' /usr/bin/time sh tests.sh
|
|
|
|
testv: testv3
|
|
|
|
test: .test_3xx
|
|
|
|
tests: test
|
|
|
|
# .test_3xx is created by tests.sh with success at all mandatory tests
|
|
.test_3xx: imapsync tests.sh
|
|
CMD_PERL='perl -I./$(IMAPClient_3xx)' /usr/bin/time sh tests.sh 1>/dev/null
|
|
|
|
testf: clean_test test
|
|
|
|
.PHONY: lfo upload_lfo dosify_bat public imapsync_cidone
|
|
|
|
dosify_bat:
|
|
unix2dos W/*.bat examples/*.bat
|
|
|
|
copy_win32:
|
|
scp imapsync Admin@c:'C:/msys/1.0/home/Admin/imapsync/'
|
|
|
|
W/test.bat:
|
|
unix2dos W/test.bat
|
|
scp imapsync W/test.bat Admin@c:'C:/msys/1.0/home/Admin/imapsync/'
|
|
# ssh Admin@c 'perl C:/msys/1.0/home/Admin/imapsync/imapsync --tests_debug'
|
|
ssh Admin@c 'perl C:/msys/1.0/home/Admin/imapsync/imapsync --tests'
|
|
ssh Admin@c 'C:/msys/1.0/home/Admin/imapsync/test.bat'
|
|
# ssh Admin@c 'tasklist /FI "PID eq 0"'
|
|
# ssh Admin@c 'tasklist /NH /FO CSV'
|
|
|
|
|
|
W/test_tests.bat:
|
|
unix2dos W/test_tests.bat
|
|
scp imapsync W/test_tests.bat Admin@c:'C:/msys/1.0/home/Admin/imapsync/'
|
|
ssh Admin@c 'C:/msys/1.0/home/Admin/imapsync/test_tests.bat'
|
|
|
|
.PHONY: W/*.bat
|
|
|
|
|
|
|
|
W/test2.bat:
|
|
unix2dos W/test2.bat
|
|
scp imapsync examples/file.txt W/test2.bat Admin@c:'C:/msys/1.0/home/Admin/imapsync/'
|
|
ssh Admin@c 'C:/msys/1.0/home/Admin/imapsync/test2.bat'
|
|
|
|
W/test3.bat:
|
|
unix2dos W/test3.bat
|
|
scp imapsync W/test3.bat Admin@c:'C:/msys/1.0/home/Admin/imapsync/'
|
|
ssh Admin@c 'C:/msys/1.0/home/Admin/imapsync/test3.bat'
|
|
|
|
W/test_reg.bat:
|
|
unix2dos W/test_reg.bat
|
|
scp imapsync W/test_reg.bat Admin@c:'C:/msys/1.0/home/Admin/imapsync/'
|
|
ssh Admin@c 'C:/msys/1.0/home/Admin/imapsync/test_reg.bat'
|
|
|
|
W/test_exe_2.bat:
|
|
unix2dos W/test_exe_2.bat
|
|
scp imapsync W/test_exe_2.bat Admin@c:'C:/msys/1.0/home/Admin/imapsync/'
|
|
ssh Admin@c 'C:/msys/1.0/home/Admin/imapsync/test_exe_2.bat'
|
|
|
|
W/test3_gmail.bat:
|
|
unix2dos W/test3_gmail.bat
|
|
scp imapsync W/test3_gmail.bat /g/var/pass/secret.gilles_gmail Admin@c:'C:/msys/1.0/home/Admin/imapsync/'
|
|
ssh Admin@c 'C:/msys/1.0/home/Admin/imapsync/test3_gmail.bat'
|
|
|
|
test_imapsync_exe:
|
|
unix2dos W/test_exe.bat
|
|
scp W/test_exe.bat Admin@c:'C:/msys/1.0/home/Admin/imapsync/'
|
|
time ssh Admin@c 'C:/msys/1.0/home/Admin/imapsync/test_exe.bat'
|
|
|
|
prereq_win32:
|
|
unix2dos W/install_modules.bat
|
|
scp W/install_modules.bat Admin@c:'C:/msys/1.0/home/Admin/imapsync/'
|
|
|
|
|
|
imapsync.exe: imapsync
|
|
rcsdiff imapsync
|
|
ssh Admin@c 'perl -V'
|
|
(date "+%s"| tr "\n" " "; echo -n "BEGIN " $(VERSION) ": "; date) >> W/.BUILD_EXE_TIME
|
|
unix2dos W/*.bat examples/*.bat
|
|
scp W/install_modules.bat Admin@c:'C:/msys/1.0/home/Admin/imapsync/'
|
|
# ssh Admin@c 'C:/msys/1.0/home/Admin/imapsync/install_modules.bat'
|
|
scp imapsync W/build_exe.bat W/test_exe.bat Admin@c:'C:/msys/1.0/home/Admin/imapsync/'
|
|
ssh Admin@c 'C:/msys/1.0/home/Admin/imapsync/build_exe.bat'
|
|
ssh Admin@c 'C:/msys/1.0/home/Admin/imapsync/test_exe.bat'
|
|
scp Admin@c:'C:/msys/1.0/home/Admin/imapsync/imapsync.exe' .
|
|
(date "+%s"| tr "\n" " "; echo -n "END " $(VERSION) ": "; date) >> W/.BUILD_EXE_TIME
|
|
|
|
exe: imapsync W/build_exe.bat dosify_bat
|
|
(date "+%s"| tr "\n" " "; echo -n "BEGIN " $(VERSION) ": "; date) >> W/.BUILD_EXE_TIME
|
|
scp imapsync W/build_exe.bat Admin@c:'C:/msys/1.0/home/Admin/imapsync/'
|
|
ssh Admin@c 'C:/msys/1.0/home/Admin/imapsync/build_exe.bat'
|
|
ssh Admin@c 'C:/msys/1.0/home/Admin/imapsync/imapsync.exe --modules_version'
|
|
scp Admin@c:'C:/msys/1.0/home/Admin/imapsync/imapsync.exe' .
|
|
(date "+%s"| tr "\n" " "; echo -n "END " $(VERSION) ": "; date) >> W/.BUILD_EXE_TIME
|
|
|
|
|
|
zip: dosify_bat
|
|
rm -rfv ../prepa_zip/imapsync_$(VERSION_EXE)/
|
|
mkdir -p ../prepa_zip/imapsync_$(VERSION_EXE)/FAQ.d/ ../prepa_zip/imapsync_$(VERSION_EXE)/Cook/
|
|
cp -av examples/imapsync_example.bat examples/sync_loop_windows.bat examples/file.txt ../prepa_zip/imapsync_$(VERSION_EXE)/
|
|
cp -av W/build_exe.bat W/install_modules.bat W/test_cook_exe.bat W/test_cook_src.bat imapsync ../prepa_zip/imapsync_$(VERSION_EXE)/Cook/
|
|
for f in FAQ README ; do cp -av $$f ../prepa_zip/imapsync_$(VERSION_EXE)/$$f.txt ; done
|
|
cp -av FAQ.d/*.txt ../prepa_zip/imapsync_$(VERSION_EXE)/FAQ.d/
|
|
cp -av imapsync.exe README_Windows.txt ../prepa_zip/imapsync_$(VERSION_EXE)/
|
|
unix2dos ../prepa_zip/imapsync_$(VERSION_EXE)/*.txt
|
|
cd ../prepa_zip/ && rm -f ./imapsync_$(VERSION_EXE).zip && zip -r ./imapsync_$(VERSION_EXE).zip ./imapsync_$(VERSION_EXE)/
|
|
scp ../prepa_zip/imapsync_$(VERSION_EXE).zip Admin@c:'C:/msys/1.0/home/Admin/'
|
|
cp ../prepa_zip/imapsync_$(VERSION_EXE).zip /fe/imapsync/
|
|
|
|
|
|
# C:\Users\mansour\Desktop\imapsync
|
|
|
|
# vadrouille or petite
|
|
|
|
mac: imapsync
|
|
rcsdiff imapsync
|
|
rsync -p -e 'ssh -p 995' imapsync W/build_mac.sh gilleslamira@gate.polarhome.com:
|
|
ssh -p 995 gilleslamira@gate.polarhome.com 'sh build_mac.sh'
|
|
rsync -P -e 'ssh -p 995' gilleslamira@gate.polarhome.com:imapsync_bin_Darwin .
|
|
|
|
bin: imapsync
|
|
rcsdiff imapsync
|
|
{ pp -o $(BIN_NAME) -I $(IMAPClient_3xx) \
|
|
-M Mail::IMAPClient -M IO::Socket -M IO::Socket::SSL \
|
|
-M Digest::MD5 -M Digest::HMAC_MD5 -M Term::ReadKey \
|
|
-M Authen::NTLM \
|
|
imapsync ; \
|
|
} || :
|
|
./$(BIN_NAME)
|
|
|
|
|
|
lfo: upload_lfo
|
|
|
|
|
|
tarball: .tarball
|
|
|
|
|
|
.tarball: imapsync
|
|
echo making tarball $(DIST_FILE)
|
|
rcsdiff RCS/*
|
|
cd W && rcsdiff RCS/*
|
|
cd examples && rcsdiff RCS/*
|
|
mkdir -p dist
|
|
mkdir -p ../prepa_dist/$(DIST_NAME)
|
|
rsync -aCvH --delete --omit-dir-times --exclude dist/ --exclude imapsync.exe ./ ../prepa_dist/$(DIST_NAME)/
|
|
#rsync -av ./imapsync.exe ../prepa_dist/$(DIST_NAME)/
|
|
cd ../prepa_dist && tar czfv $(DIST_FILE) $(DIST_NAME)
|
|
#ln -f ../prepa_dist/$(DIST_FILE) dist/
|
|
cd ../prepa_dist && md5sum $(DIST_FILE) > $(DIST_FILE).md5.txt
|
|
cd ../prepa_dist && md5sum -c $(DIST_FILE).md5.txt
|
|
ls -l ../prepa_dist/$(DIST_FILE)
|
|
touch .tarball
|
|
|
|
|
|
DO_IT := $(shell test -d dist && { test -f ./dist/path_$(VERSION).txt || makepasswd --chars 4 > ./dist/path_$(VERSION).txt ; } )
|
|
DIST_SECRET := $(shell test -d dist && cat ./dist/path_$(VERSION).txt)
|
|
DIST_PATH := ./dist/$(DIST_SECRET)
|
|
|
|
lalala:
|
|
echo $(DIST_SECRET)
|
|
|
|
dist: cidone test clean all perlcritic dist_prepa dist_zip README_dist.txt
|
|
|
|
md5:
|
|
cd $(DIST_PATH)/ && md5sum *
|
|
|
|
sha:
|
|
cd $(DIST_PATH)/ && sha512sum *
|
|
|
|
|
|
dist_prepa: tarball dist_dir
|
|
ln -f ../prepa_dist/$(DIST_FILE) $(DIST_PATH)/
|
|
rcsdiff imapsync
|
|
cp -a imapsync $(DIST_PATH)/
|
|
#cd $(DIST_PATH)/ && md5sum $(DIST_FILE) > $(DIST_FILE).md5.txt
|
|
#cd $(DIST_PATH)/ && md5sum -c $(DIST_FILE).md5.txt
|
|
ls -l $(DIST_PATH)/
|
|
|
|
dist_dir:
|
|
@echo $(DIST_SECRET)
|
|
@echo $(DIST_PATH)
|
|
mkdir -p $(DIST_PATH)
|
|
ln -f ./dist/path_$(VERSION).txt ./dist/path_last.txt
|
|
|
|
|
|
dist_exe: imapsync.exe
|
|
cp -a ./imapsync.exe $(DIST_PATH)/
|
|
#cd $(DIST_PATH)/ && md5sum ./imapsync.exe > ./imapsync.exe.md5.txt
|
|
#cd $(DIST_PATH)/ && md5sum -c ./imapsync.exe.md5.txt
|
|
|
|
dist_zip: zip
|
|
cp -a ../prepa_zip/imapsync_$(VERSION_EXE).zip $(DIST_PATH)/
|
|
|
|
README_dist.txt: dist_dir
|
|
sh W/tools/gen_README_dist > $(DIST_PATH)/README_dist.txt
|
|
unix2dos $(DIST_PATH)/README_dist.txt
|
|
|
|
.PHONY: publish upload_ks ks valid_index
|
|
|
|
ks:
|
|
rsync -avHz --delete --exclude imapsync.exe \
|
|
. gilles@ks.lamiral.info:public_html/imapsync/
|
|
|
|
ksa:
|
|
rsync -avHz --delete -P \
|
|
. gilles@ks.lamiral.info:public_html/imapsync/
|
|
|
|
|
|
upload_tests: tests.sh
|
|
rsync -avHz --delete -P \
|
|
tests.sh \
|
|
gilles@ks.lamiral.info:public_html/imapsync/
|
|
|
|
|
|
#upload_ks: ci tarball
|
|
upload_ks: ci tarball
|
|
rsync -aHv $(PUBLIC) ../imapsync_website/
|
|
rsync -aHv $(PUBLIC_W) ../imapsync_website/W/
|
|
rsync -aHv --delete ./W/images/ ../imapsync_website/W/images/
|
|
rsync -aHv --delete ./W/ks.htaccess ../imapsync_website/.htaccess
|
|
rsync -aHv --delete ./dist/ ../imapsync_website/dist/
|
|
rsync -aHv --delete ./examples/ ../imapsync_website/examples/
|
|
rsync -aHv --delete ./INSTALL.d/ ../imapsync_website/INSTALL.d/
|
|
rsync -aHvz --delete ../imapsync_website/ root@ks.lamiral.info:/var/www/imapsync/
|
|
|
|
|
|
publish: dist upload_ks ksa
|
|
echo Now ou can do make ml
|
|
|
|
PUBLIC = ./ChangeLog ./NOLIMIT ./LICENSE ./CREDITS ./FAQ \
|
|
./index.shtml ./INSTALL ./README_Windows.txt \
|
|
./VERSION ./VERSION_EXE ./imapsync \
|
|
./README ./OPTIONS ./TODO ./TUTORIAL.html ./GOOD_PRACTICES.html
|
|
|
|
PUBLIC_W = ./W/style.css ./W/tw-hash.html \
|
|
./W/TIME \
|
|
./W/paypal.shtml ./W/paypal_return.shtml
|
|
|
|
|
|
ml: dist_dir
|
|
rcsdiff W/ml_announce.in
|
|
m4 -P W/ml_announce.in | mutt -H-
|
|
mailq
|
|
|
|
|
|
upload_lfo:
|
|
#rm -rf /home/gilles/public_html/www.linux-france.org/html/prj/imapsync/
|
|
#rm -rf /home/gilles/public_html/www.linux-france.org/ftp/prj/imapsync/
|
|
#rsync -avHz $(PUBLIC) \
|
|
#/home/gilles/public_html/www.linux-france.org/html/prj/imapsync/
|
|
rsync -lptvHzP ./W/memo glamiral@linux-france.org:imapsync_stats/memo
|
|
rsync -lptvHzP ./W/lfo.htaccess \
|
|
/home/gilles/public_html/www.linux-france.org/html/prj/imapsync/.htaccess
|
|
sh ~/memo/lfo-rsync
|
|
|
|
valid_index: .valid.index.shtml
|
|
|
|
checklink: index.shtml
|
|
checklink -b -q http://lamiral.info/~gilles/imapsync/
|
|
|
|
checklinkext: S/news.shtml S/external.shtml S/imapservers.shtml S/template.shtml
|
|
checklink -b -q \
|
|
http://lamiral.info/~gilles/imapsync/S/template.shtml \
|
|
http://lamiral.info/~gilles/imapsync/S/news.shtml \
|
|
http://lamiral.info/~gilles/imapsync/S/external.shtml \
|
|
http://lamiral.info/~gilles/imapsync/S/imapservers.shtml
|
|
|
|
.valid.index.shtml: index.shtml S/*.shtml
|
|
tidy -q index.shtml S/*.shtml > /dev/null
|
|
validate --verbose index.shtml S/*.shtml
|
|
touch .valid.index.shtml
|
|
|
|
.PHONY: upload_index
|
|
|
|
upload_index: .valid.index.shtml
|
|
rcsdiff index.shtml S/*.shtml FAQ FAQ.d/*.txt INSTALL LICENSE CREDITS TODO W/*.bat examples/*.bat index.shtml INSTALL.d/prerequisites_imapsync imapsync
|
|
rsync -avH index.shtml FAQ INSTALL OPTIONS NOLIMIT LICENSE CREDITS TODO TUTORIAL.html GOOD_PRACTICES.html imapsync imapsync.exe $(BIN_NAME) imapsync_Darwin_$(VERSION) ../imapsync_website/
|
|
rsync -avH $(PUBLIC_W) ../imapsync_website/W/
|
|
rsync -avH S/ ../imapsync_website/S/
|
|
rsync -avH W/images/ ../imapsync_website/W/images/
|
|
rsync -aHv --delete ./examples/ ../imapsync_website/examples/
|
|
rsync -aHv --delete ./INSTALL.d/ ../imapsync_website/INSTALL.d/
|
|
rsync -aHv --delete ./FAQ.d/ ../imapsync_website/FAQ.d/
|
|
rsync -aHvz --delete ../imapsync_website/ root@ks.lamiral.info:/var/www/imapsync/
|
|
|