Versicherungen | Beschwerdestatistik

Das kennt jeder: Man will wissen, welche Versicherung Schäden kulant regelt, findet aber online nur unzählige Kundenzufriedenheitskommentare und -bewertungen, von denen ca. 90% das Gebaren der Unternehmen bei Vertragsabschuss bewerten. Das ist leider nicht der interessante Teil. Viel spannender ist die durch die BaFin (Bundesanstalt für Finanzdienstleistungsaufsicht) veröffentlichte Beschwerdestatistik.

OTRS | Configuration hints

Check the passwd file, the home of the usre otrs must be /var/lib/otrs (or better: the current directoty hosting otrs stuff). Remove the .dist extensions from crontab templates. Run Cron.sh Grab incoming mails via fetchmail. Run fetchmail as a daemon. /etc/fetchmailrc shouls contain poll imap.mailserver.de protocol IMAP user otrsmailuser password otrsmailuserpassword ssl is otrs Using […]

OpenBSD 5.1 and earlier | Cloning a disk the easy way

#!/bin/sh DISKLABEL=$(which disklabel) FDISK=$(which fdisk) DUMP=$(which dump) RESTORE=$(which restore) NEWFS=$(which newfs) MOUNT=$(which mount) UMOUNT=$(which umount) DUMP=$(which dump) RESTORE=$(which restore) MNT=”/mnt” LABEL=”/tmp/label” if [ $# -lt 2 ]; then echo “usage: do_clone.sh FROM TO” echo “example: do_clone.sh wd0 wd1” exit fi SRC=$1 $DISKLABEL $SRC > /dev/null || exit TAR=$2 $DISKLABEL $TAR > /dev/null || exit #echo […]

Smokeping | Master slave configuration

First hint: Run the slave daemon with –debug when testing On SLAVE: chown smokeping /etc/smokeping chmod 755 /etc/smokeping chown smokeping /etc/smokeping/slavesecret.txt chmod 600 /etc/smokeping/slavesecret.txt chown smokeping /etc/smokeping/smokeping_secrets chmod 600 /etc/smokeping/smokeping_secrets Om MASTER: chown smokeping /etc/smokeping/smokeping_secrets chgrp apache /etc/smokeping/smokeping_secrets chmod 640 /etc/smokeping/smokeping_secrets The //MASTER/cgi-bin/smokeping.fcgi file is owned by apache as a user and as a group […]