Running your own Mail Server with iRedMail

apt-get update && apt-get -y dist-upgrade && apt-get clean hostnamectl set-hostname mail nano /etc/hosts hostname # get latest download link from http://www.iredmail.org/download.html wget https://bitbucket.org/zhb/iredmail/downloads/iRedMail-0.9.5-1.tar.bz2 tar jxf iRedMail-0.9.5-1.tar.bz2 cd iRedMail-0.9.5-1/ bash iRedMail.sh # long wait reboot amavisd-new showkeys # install dkim in domains DNS, name=dkim._domainkey type=TXT value=”v=DKIM1; p=k32hkj…” (remove the quotes and spaces at line breaks) […]

Setting up a radio with IceCast and EZstream

hostnamectl set-hostname radio nano /etc/hosts apt-get update && apt-get -y dist-upgrade && apt-get -y install gcc libcurl4-gnutls-dev libvorbis-dev libxslt1-dev pkg-config libtheora-dev libspeex-dev openssl last 3 are optional (libtheora-dev libspeex-dev openssl), not sure about pkg-config cd /usr/src/ wget http://downloads.xiph.org/releases/icecast/icecast-2.4.3.tar.gz tar -xzvf icecast-2.4.3.tar.gz cd icecast-2.4.3/ ./configure make make install # libshout cd /usr/src/ wget http://downloads.xiph.org/releases/libshout/libshout-2.4.1.tar.gz tar -xzvf […]