kerio_connect
Inhaltsverzeichnis
Kerio Connect
CAL-DAV URLs
http(s)://server:port/public-calendars/<domain>/<Calendar>/ http://mycompany.com/public-calendars/mycompany.com/HRCalend ar/ http://mycompany.com/public-calendars/mycompany.com/SomeFold er/Vacations/
Migration per "imapsync"
imapsync --regexflag 's/NonJunk//g' --regexflag 's/.*?(?:(\\(?:Answered|Flagged|Deleted|Seen|Draft)\s?)|$)/defined($1)?$1:q()/eg' --subscribed --host1 127.0.0.1 --prot1 143 --user1 USR --password1 PWD --host2 127.0.0.1 --port2 10143 --user2 USR --password2 PWD --prefix2 ALT
Update-Check
Da Kerio keine Mailingliste hat die auf Updates hinweist benutze ich dieses Sctipt:
#!/bin/sh STATUSFIEL="/var/run/kerio_version" MAIL="email@test.de" KVN=`wget http://www.kerio.eu/eu/connect/download -q -O - | grep -A1 "Latest Version" | sed -e :a -e 's/<[^<]*>/ /g;/</{N;s/\n/ /;ba;}' | sed "s/ //g;N;s/\n/ /;s/^[ \t]*//;s/[ \t]*$//;s/ / /g"` if [ -f $STATUSFIEL ]; then KVO=`cat $STATUSFIEL` echo $KVN echo $KVO if [ "$KVN" != "$KVO" ]; then echo $KVN | mail -s KerioUpdate $MAIL fi fi echo $KVN > $STATUSFIEL
Debian Repository
Hier liegt immer die aktuelle Version.
deb http://debian.mhcsoftware.de/ lenny contrib
„lenny“ ggf. ersetzten - kann aber auch bleiben.
kerio_connect.txt · Zuletzt geändert: 2017/03/17 11:37 von 127.0.0.1