Posted by Gert Dewit
Fri, 28 Dec 2007 16:55:00 GMT
Zoals voorzien installeer ik vandaag op onze nieuwe CentOS server een betrouwbare virus- en spamfiltering mail server.
Overzicht

Naar de buitenwereld toe zijn er 2 poorten beschikbaar: de standaard
SMTP poort 25 waar de inkomende mail afgeleverd wordt en de standaard
IMAPS poort 993 waar de mail wordt opgehaald door de gebruikers. De
postfix instantie die de berichten van de buitenwereld ontvangt zorgt ervoor dat de server niet als open relay kan gebruikt worden en voert enkele rudimentaire checks uit om ongewenste mail al aan de bron weg te filteren. Daarna geeft deze de mail door aan
amavis. Amavis zorgt vervolgens voor de virus- en spamfiltering door gebruik te maken van
spamassassin en
ClamAV. Als de mail aanvaardbaar is wordt deze via de interne Postfix instantie die op poort 10025 luistert afgeleverd in de mailbox van de gebruiker.
Read more...
Posted in artikels | Tags amavis, byte, clamav, linux, postfix, spamassassin
Posted by Paul Verreth
Sat, 15 Dec 2007 17:24:00 GMT
Presentatie op OWASP door Patrick Debois

Download pdf
Posted in artikels, tips | Tags presentatie
Posted by Paul Verreth
Sat, 15 Dec 2007 17:09:00 GMT
Javapolis 2007
Presenatie “Lost use cases of operations” door Patrick Debois

Posted in artikels, tips | Tags presentatie
Posted by Paul Verreth
Mon, 26 Mar 2007 05:54:00 GMT
Mongrel is IMHO the preferred (web)server for Ruby on Rails applications hence for Radiant.
Here you can find a startup script for Fedora linux, but of course also usable for Ubuntu, ...
#!/bin/bash
#
# /etc/rc.d/init.d/radiant_cms
#
# Start mongrel & radiant
#
# chkconfig: - 65 35
# description: Mongrel & radiant
# processname: mongrel
# Source function library.
. /etc/init.d/functions
MONGREL=/usr/bin/mongrel_rails
RAILSDIR=/var/www/radiant
CONFFILE=mongrel_config
test -x $MONGREL || exit 0
RETVAL=0
prog="Mongrel for radiant"
start() {
echo -n $"Starting $prog: "
cd $RAILSDIR
$MONGREL start -C $CONFFILE
RETVAL=$?
echo
}
stop() {
echo -n $"Stopping $prog: "
cd $RAILSDIR
$MONGREL stop
RETVAL=$?
echo
}
#
# See how we were called.
#
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
start
RETVAL=$?
;;
*)
echo $"Usage: $0 {start|stop|restart}"
exit 1
esac
exit $RETVAL
Read more...
Posted in artikels, interessant open source | Tags mongrel, radiant
Posted by Paul Verreth
Wed, 14 Feb 2007 16:13:00 GMT
The OpenDocument Format (ODF) just keeps on getting stronger. It is now an official ISO standard; there are numerous applications that support it, with varying degrees of fidelity, including Google’s online word processor and spreadsheet; there’s an official Microsoft-funded plug-in for Microsoft Office that allows it to open and save ODF files, and a program that converts between ODF and the Chinese UOF XML office format; and the ODF community has largely sorted out issues of accessibility that threatened to de-rail its adoption by Massachusetts.
At the same time, Microsoft is clearly beginning to feel the pressure. Its attempts to ram its own XML format through as an ISO standard, and the unseemly haste with which its 6000 pages of documentation were approved as an ECMA standard, are an indication that it is playing catch-up in this sector, even if it remains the dominant player.
Read the rest of this Linux Journal article
Posted in artikels, interessant open source
Posted by Paul Verreth
Mon, 05 Feb 2007 15:00:00 GMT
In MySQL (>= 5.0) there exists a metadata database, INFORMATION_SCHEMA, in wich is stored information about all other databases, their tables, columntypes, accessprivileges, etc.
Read more...
Posted in artikels
Posted by Paul Verreth
Fri, 02 Feb 2007 21:05:00 GMT
(De nederlandse versie van dit artikel)
The most recent version (4.0.3) of typo has a gem based installer included. Installing the typo weblog server is now fairly easy to do.
Read more...
Posted in artikels | Tags typo
Posted by Paul Verreth
Tue, 30 Jan 2007 11:23:00 GMT
Authenticatiefout
Soms komt er de mededeling:
Warning: The following packages cannot be authenticated!
... ... ...
Install these packages without verification [y/N] ?
Dit komt omdat recente packages kunnen getest worden op een geldige signature.
Je kan de melding negeren, en gewoon verder gaan. Of je kan het verifiëren uitschakelen door een extra optie mee te geven met apt-get.
Read more...
Posted in artikels | Tags debian, linux, ubuntu
Posted by Paul Verreth
Tue, 30 Jan 2007 11:17:00 GMT
Voor het installeren of upgraden van packages achter een proxy zijn volgende aanpassingen nodig.
In de grafische synaptic package manager kan een proxy ingesteld worden. Maar deze instelling gebeurt enkel in $HOME/.synaptic/synaptic.conf, en dus niet systeemwijd.
Read more...
Posted in artikels | Tags debian, linux, ubuntu
Posted by Paul Verreth
Tue, 30 Jan 2007 10:47:00 GMT
Voor het bekijken van videoformaten zonder Open Source alternatief, zoals Quicktime – MOV , WMV, DivX – AVI, is het nodig om de zogenaamde “win32codecs” of “w32codecs” te installeren.
De webstek hiervoor is http://www4.mplayerhq.hu maar het is makkelijker om packages te downloaden bij medibuntu
Read more...
Posted in artikels | Tags debian, linux, multimedia, ubuntu