February 09, 2010
Pascal Bleser
Call for testing openSUSE 11.2 with newer aria2
Philip Paeps
Survived yet another FOSDEM!
This year, FOSDEM didn't completely kill me like last year. Cleanup still turned me into a living corpse (despite the availability of Club Mate -- thanks to the Hackerspace Brussels crowd) but at least I'm back among the living a day after the event instead of a week.
I was very impressed with the network this year. Thanks to AY, Jerome and Peter from Cisco, and of course the FOSDEM networking team. We had to tell people to use more bandwidth. People even came to the infodesk asking us when the network would break because it didn't feel like FOSDEM to them. Yeah...
Taking it a little bit easier over the weekend, I was able to keep an eye on the noise on IRC. This little graph is highly amusing:
Back to work today. Very few days remain in my current contract, but that doesn't mean the work doesn't need finishing. :-)
Guy Van Sanden
deja-dup desktop backup
I've been messing with finding a decent desktop backup application this weekend to run on all the family laptops. I thought backintime would do the trick, but it turned out not to work over sshfs (due to the lack of hardlink support) and doing backups to the same disk that holds the data seems like a bad idea to me.
So, today I found an article on deja-dup in my RSS feed, installed it and it's wonderful. It has a built in scheduler and supports all filesystems that gvfs does, but adds nice things like encryption for your backups and it integrates very well with Nautilus.
I can just select a file or folder and revert it to the state of any of the listed backups, which is exactly the functionality I've been looking for.
Just a shame that I didn't find it in the first hours of looking... but I am happy now :-)
I'm giving a workshop on Zarafa
On 25 february, I'm giving a workshop on Zarafa, the open source alternative to MS Exchange.
If anyone is interested in signing up (for free), they can still do so at http://www.open-future.be/zarafa-workshop
February 08, 2010
Geert Vanderkelen
Don't forget the COMMIT in MySQL
Yes, MySQL has transactions if you use InnoDB or NDB Cluster for example. Using these transactional storage engines, you'll have to commit (or roll back) your inserts, deletes or updates.
I've seen it a few times now with people being surprised that no data is going into the tables. It's not so a silly problem in the end. If you are used to the defaults in MySQL you don't have to commit anything since it is automatically done for you.
Take the Python Database Interfaces for MySQL. PEP-249 says that, by default, auto-commit should be turned off. You could turn it back on, but it's good practice to be explicit and commit in your code. Remember the Zen of Python!
Here is just a small example to show it. Uses MySQL Connector/Python, but it does work also with others:
import mysql.connector
cnx = mysql.connector.connect(db='test')
cur = cnx.cursor()
cur.execute("""CREATE TABLE innodb_t1 (
id INT UNSIGNED NOT NULL,
c1 VARCHAR(128),
PRIMARY KEY (id)
) ENGINE=InnoDB""")
ins = "INSERT INTO innodb_t1 (id,c1) VALUES (%s,%s)"
cur.execute(ins,
(1,'MySQL Support Team _is_ already the best',))
cnx.commit()
cur.close()
cnx.close()
Pascal Bleser
Packman for Factory
Frederic Hornain
[FOSDEM'10] Thanks !

Dear *,
I would like to thanks for their helps, presence, questions, answers each of you who were at FOSDEM 2k10 Edition.
Well, THANKS !
See you next year !
Rem: if you have questions, remarks, feedbacks and so on about that edition or the next one, feel free to contact me…
BR
Frederic

Gert Schepens
Internet & Security
The new technologies bring along a plethora of delightful new options for consumers to sample content. One of those new ways is the music samples some groups put online. A full track or even a full album to build the hype and allow people to sample the tracks and to persuade them to Go out and BUY their newest creative offspring. And we all love it. It works, its Awesome! Embrace Technology.
A pitty though is the fact that many of these fancy previews lack the least of security measures to keep the actual music safe. The previews are on sites with fancy flash based interfaces to enable people to play them from the browser without hassle and instead of building a decent degree of security into that player, some of them just take plain mp3 files from sites. Fully tagged Mp3s that ll just download to any location and Play. Want them? Go trough the source, click on the mp3 links and wait till the goodies have downloaded. You will have to rename the files to the correct names, but since the mp3 files are cleanly tagged, that wont be an issue – and you cant have it all ey.
In a time where a lot of cds are nearly unusable due to draconic DRM measures, where DVDs play only in certain regions and where you re getting fucked in the arse whenever you shell out hard earned money to enjoy music or a movie. (Dont get me started about the modern day Cinema experience!) Its unbelievable that the other end of the line is So under protected. Im not advocating for DRM here, but to be honest .. if I would have put those online, Id at least chosen a method with a bit more protection along the way.
And its not as if these dont exist.. Take the new Gorillaz site for example. Im a big fan of the Murdoc podcasts and I wouldnt mind listening to them in my car. Contrary to other online content, they go trough the effort of using a flash player (so far we re on the same road as the aforementioned) and having that player connect to a streaming server with a bit more protection to the whole, instead of just placing .mp3 download links in their source!!
Now, lets get down to brass tacks here. Talking as an IT and Security professional with a dose of real life common sense. Not everyone will read the source code to see if it contains usable links (im just curious like that) and then proceed to download those instead of just listening to them on the web site as it was initially intended. And as a second, a stream server isnt failsafe either. Take the time to figure out how it wants its url and how to piece it all together; open VLC and stream it to disk and you ve got the music too. And if you re not up to any of the above, you can take the radio style approach and just have some software record whatever your computer outputs. Or go Really low tech and just hang a mic in front of your speakers while playing them and record that. There is ALWAYS a way
All im saying is .. You cant at the same time screw up the cd I just bought to a degree where it wont play on my car radio; and at the same time put the mp3s in a clickable format in the webpage source, ready for free downloading for anyone who can right click a mouse.
That being said.. Thank you for the Music!
FOSDEM organizers
Video recordings online in approx 1 week
The video recordings should be online in approximately one week. They will be released in an adequate Creative Commons license.
Frederic Hornain
[Campus Numerique] So many events to go….

Dear *,
A new invitation to participate to a Belgian event at Charleroi , the 22th of April 2010 from 9AM to 5PM.
Ref: http://www.campusnumerique.be/
Registration : http://www.campusnumerique.be/edition-2010-du-forum-des-technologies-de-linformation-et-de-la-communication.html
BR
Frederic

Raphael Bauduin
IE the time sucker
Geert Vanderkelen
Python, oursql and MacOS X 10.6 (Snow Leopard)
This post explains how to compile oursql and install it on MacOS 10.6. oursql is a Python database interface for MySQL, an alternative to MySQL for Python (i.e. MySQLdb) and MySQL Connector/Python.
First, find out which MySQL you installed. This can be either the 32-bit or the 64-bit version. To make sure, find the mysqld (e.g. in /usr/local/mysql/bin) and do the following in a Terminal window:
shell> file /usr/local/mysql/bin/mysqld
.../mysqld: Mach-O 64-bit executable x86_64
If you see x86_64, you got 64-bit, otherwise 32-bit. If you see both, then you have a universal build. This is important for specifying the ARGSFLAG when building.
Download oursql from Launchpad and unpack it into some directory. Using the information from above, you'll have to do following for 64-bit platform (or universal build) in a Terminal window:
shell> ARCHFLAGS="-arch x86_64" python setup.py build
shell> sudo python setup.py install
For 32-bit, you'll have to do:
shell> ARCHFLAGS="-arch i386" python setup.py build
shell> sudo python setup.py install
Following error will be reported when you don't specify the correct ARCHFLAGS:
ld: warning: in .../lib/libmysqlclient.dylib,
file is not of required architecture
Tips:
- When building failed, it is good to remove oursql, unpack it and try again.
- If you don't want to compile anything, or run into more troubles, give MySQL Connector/Python a try (alpha releases). It's a pure Python implementation of the MySQL Client/Server protocol and doesn't need compiling or a MySQL installation.
- You can download MySQL from either www.mysql.com or dev.mysql.com.
February 07, 2010
Peter Dedecker
Drupal-experimentjes
Mijn vorig postje was meteen ook de gelegenheid om een paar Drupal modules uit te testen, zoals Apture, Zemanta en lightbox. Echt tof speelgoed zeg, aanraders! Lightbox kan je testen door hieronder op het screenshot te klikken.

Dries Buytaert
Mollom blacklisting and language detection APIs
If you're a regular reader of this blog, you know that Mollom is a continual work in progress. By studying how people use Mollom, by listening to feature requests, and by examining the plugins that our software partners and others have made available, we've introduced new ways to interact with Mollom.
First, we're announcing support for blacklisting. We introduced two new methods: one based on detecting the presence of user-specified URLs, and another that detects specific phrases or keywords. In both cases, Mollom maintains custom, site-specific URL and text blacklists, and knows to search for the presence of these links or phrases when analyzing text for your site. We're adding support for this API to the next version of the Mollom module for Drupal.
Second, we've implemented a new method that detects the language of any given text. We currently support detection of about 75 languages and this new functionality allows our end-users to take action based on posting language. It could be used to help segment web postings into different forums by language, or to help moderate the languages spoken on your site, for instance. The language detection API is used by some of our customers, but probably won't make it into the next version of the Mollom module for Drupal.
We've got other new features that we're working on as well, and will introduce them as they're ready. In the meantime, I'm excited to see what our plugin developers do with this new level of control.
Bart Coppens
FOSDEM 2010 Pictures
As always, I took some pictures at FOSDEM 2010. Disappointingly I took less than last year: only 55 instead of 132 (and even that is cheating, because that includes a picture *of* me taken by xvello). Still, better than nothing, I guess... In any case, as always at FOSDEM, I had lots of fun, and that's what counts! 
FOSDEM organizers
Donations draw result
O'Reilly Books
- Olivier Nicolas
- Etienne Saliez
The above persons can email aburet@fosdem.org to know the details on how to get the books.
Nokia N900
- Alex Dulaunoy
- Michael Sawicz
- Luca Capello
Luca was present this Sunday, so he has already received his new phone ... Alex and Michael will be contacted by email.
Linux Magazine
Kristof Willen
Fosdem 2010

The 10th edition of Fosdem was quite crowdy, even in that degree that even the larger rooms were completely filled. In the AW building, some sessions had to disallow people in order to prevent security problems. One might suggest another campus for future editions...
Just like last year, lots of cloud-based talks, and also remarkble, lots of talks about cross-distro management. Anyhow, this is my track :
Also, in a stunning breach with traditions, I decided not to buy a Debian t-shirt, but a Gnome one instead...
Sunset

$ wget http://www.sun.com --2010-02-07 19:06:09-- http://www.sun.com/ Resolving www.sun.com... 72.5.124.61 Connecting to www.sun.com|72.5.124.61|:80... connected. HTTP request sent, awaiting response... 301 Moved Permanently Location: http://www.oracle.com [following]
After the official news of the approval by the EU, things changed fast. Since then, the sun.com website officially points to oracle.com. Lights out for Sun, the same for Solaris ?
Dries Buytaert
Drupal code sprint at FOSDEM 2010
With chx, dereine, seutje, mrbaileys, Bojhan and myself working Drupal 7 core and the Drupal 7 upgrade of Views.
Geert Vanderkelen
FOSDEM: 'Connecting MySQL and Python', handout & wrap-up
Apparently, my talk at FOSDEM 2010 about Connecting MySQL and Python was the only one about Python? There should be more, or?
I have a hand-out ready in PDF. The slides are not usable without my chatter. It contains a few examples and links. Any comments, corrections, criticism.. are welcome!
The longer version of this talk will be given at the O'Reilly MySQL Conference&Expo 2010 in Santa Clara, California (USA).
Frederic Descamps
My fosdem 2010 talk
As promised after the talk, these are the slides I presented this morning.
I had great feedback from the audience, thank you.

Thanks vinnov for the picture :-)
| Attachment | Size |
|---|---|
| FosdemMySQL.pdf | 3.53 MB |
Frederic Hornain
[FOSDEM'11] That’s the next step.
![]()
Dear *,
Indeed, I really appreciated the talk from Gdk about Education and Open Source during the last edition of FOSDEM (‘09), so I was a little bit disappointed to not have the same kind of talk this year.
So now, the challenge will be to make it happen for FOSDEM’11.
BR
Frederic

FOSDEM organizers
Keysigning: master hashes of list of participants
The FOSDEM 2010 keysigning party is now taking place outside. If you were
in room Ferrer on time, you would have been able to read the master hashes from the projector. If not, find them on https://fosdem.org/2010/keysigning.
Philip Van Hoof
Hmrrr
In line with what I usually do at conferences, I lost my glasses at the GNOME Beer event this year. If somebody found it, and maybe even has it, please let me know. It’s kinda hard to see presentations without it.
Frederic Hornain
[LOAD'10] Things Happens in Belgium
![]()
Dear *,
If your are system administrator, system engineer or IT Manager then it could be interesting for you to come….
Ref: http://loadays.org
BR
Frederic

FOSDEM organizers
Live streaming
If you can't be there, it is always possible to feel the FOSDEM ambiance by having a look at our live sessions in Jansson. Using VLC, you can connect to http://streaming.onsite.fosdem.net:10000
During lunch time, the Minix3 session is played back.
Frederic Hornain
[FOSDEM'10] JBoss Devroom exceeded our expectations.

Dear *,
An unbelievable surprise!
As it was the first time JBos.org was present at FOSDEM, we did not expect to a such success.
The result was beyond our most optimistic expectations.
See by your self on the following pictures :
First and Second talk – Falko Menge and Heiko w. Rupp -






Third and fourth talk – Mark Proctor, Sabri - From the point the room was always FULL – ( THE BET WAS WON ! Congratulation jbug ! – Belgian Jboss User Group – )







Unfortunately I had not the possibility to attend for the other talks (JBoss ESB, Yoeri Roels).
Thanks to jbug.be for helping me to make this happens – Joris, Jarom, etc..).
Thanks also to all speakers – Falko Menge, Heiko w. Rupp, Mark Proctor, Sabri Skhiri, Yoeri Roels
Rem: 30/40 attendees per session. Not so bad
BR
Frederic

FOSDEM organizers
Acceptable use policy of BELNET / FOSDEM Internet services
- The customer commits to act conform to the norms and protocols of Internet.
- The customer may only use the BELNET network under strict legal regulation. Any use which is in violation of Belgian or international laws is forbidden. As an active member of ISPA Belgium (Internet Service Providers Association of Belgium), BELNET totally complies to the "Collaboration protocol in order to fight against illegitimate acts on Internet". In case of suspicion of illegal acts from the customer, BELNET will collaborate, within the strict scope defined by the law, with the judicial power to help them with their investigation duties.
- It is forbidden to use BELNET for any activity having as consequence:
- Unauthorized access to third party data;
- Harming operational activities of BELNET or of Internet in general;
- Harming the use or performance of Internet services for other users;
- Wasting (human, network, computer) resources;
- Completely or partially destroying the integrity of computer data;
- Compromising the privacy of users;
- Using the network in order to send messages which are classified in the categories "harassment" or "spam".
- The use of the BELNET network is reserved to public services, education and research. Commercial use as well as intensive personal use is forbidden.
Feedback form
FOSDEM lives thanks to its visitors. Please tell us what you think about it and help us make it better.
February 06, 2010
Amedee Van Gasse
Vervelende script kiddies en hoe ermee om te gaan
Return-Path: <logcheck@amedee.be> X-Original-To: logcheck Delivered-To: logcheck@amedee.be Received: by intrepid.amedee.be (Postfix, from userid 112) id CD18E5A094; Thu, 4 Feb 2010 15:02:03 +0100 (CET) To: logcheck@amedee.be Subject: localhost 2010-02-04 15:02 System Events Message-Id: <20100204140203.CD18E5A094@intrepid.amedee.be> Date: Thu, 4 Feb 2010 15:02:03 +0100 (CET) From: logcheck@amedee.be (logcheck system account) System Events =-=-=-=-=-=-= Feb 4 15:00:17 localhost sshd[22196]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=117.240.227.14 user=root Feb 4 15:00:19 localhost sshd[22196]: Failed password for root from 117.240.227.14 port 50469 ssh2 Feb 4 15:00:23 localhost sshd[22198]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=117.240.227.14 user=root Feb 4 15:00:24 localhost sshd[22198]: Failed password for root from 117.240.227.14 port 50730 ssh2 Feb 4 15:00:27 localhost sshd[22200]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=117.240.227.14 user=root Feb 4 15:00:29 localhost sshd[22200]: Failed password for root from 117.240.227.14 port 51022 ssh2 Feb 4 15:00:32 localhost sshd[22202]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=117.240.227.14 user=root Feb 4 15:00:34 localhost sshd[22202]: Failed password for root from 117.240.227.14 port 51278 ssh2 Feb 4 15:00:37 localhost sshd[22204]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=117.240.227.14 user=root Feb 4 15:00:39 localhost sshd[22204]: Failed password for root from 117.240.227.14 port 51563 ssh2
Return-Path: <nobody@localhost> X-Original-To: root@localhost Delivered-To: root@localhost Received: from localhost.localdomain (localhost [127.0.0.1]) by intrepid.amedee.be (Postfix) with ESMTP id 550C25A093 for <root@localhost>; Thu, 4 Feb 2010 15:00:37 +0100 (CET) From: DenyHosts <nobody@localhost> To: root@localhost Subject: DenyHosts Report Date: Thu, 04 Feb 2010 15:00:37 +0100 Message-Id: <20100204140037.550C25A093@intrepid.amedee.be> Added the following hosts to /etc/hosts.deny: 117.240.227.14 (unknown) ----------------------------------------------------------------------
Received: from 188.40.34.110 (proxying for 127.0.0.1)
(SquirrelMail authenticated user amedee)
by amedee.be with HTTP;
Thu, 4 Feb 2010 16:18:29 +0100 (CET)
Message-ID: <88e710867a3f8a73d3efa3f6216db7ce.squirrel@amedee.be>
Date: Thu, 4 Feb 2010 16:18:29 +0100 (CET)
Subject: [Fwd: localhost 2010-02-04 15:02 System Events]
From: "Amedee Van Gasse" <amedee@vangasse.eu>
To: dnw_jtotech@bsnl.in,
dnwplg@sancharnet.in,
hm-changed@apnic.net,
hostmaster@sancharnet.in,
ip.admin@vsnl.co.in,
ip.nnoc@relianceada.com,
lokesh.aksh@gmail.com,
nib_jaipur@sancharnet.in,
vivekprabhakar64@gmail.com,
dns@jomax.net,
info@zenzeo.com
User-Agent: SquirrelMail/1.4.15
MIME-Version: 1.0
Content-Type: text/plain;charset=iso-8859-1
Content-Transfer-Encoding: 8bit
X-Priority: 3 (Normal)
Importance: Normal
X-XheaderVersion: 1.1
X-UserAgent:
Hello,
Please stop with your cracking attempts. It is annoying.
Thank you.
Amedee.
----------
Added the following hosts to /etc/hosts.deny:
117.240.227.14 (unknown)
----------
$ whois 117.240.227.14
% [whois.apnic.net node-1]
% Whois data copyright terms http://www.apnic.net/db/dbcopyright.html
inetnum: 117.240.227.0 - 117.240.227.127
netname: Aksh
descr: Aksh Optifiber
descr: aksh optifiber
descr: epip sitapura
descr:
admin-c: LK105-AP
tech-c: LK126-AP
country: IN
admin-c: NIJ2-AP
admin-c: NC83-AP
tech-c: CDN1-AP
mnt-by: MAINT-IN-DOT
status: ASSIGNED NON-PORTABLE
changed: dnw_jtotech@bsnl.in 20100106
source: APNIC
route: 117.240.224.0/20
descr: BSNL Internet
country: IN
origin: AS9829
mnt-lower: MAINT-IN-DOT
mnt-routes: MAINT-IN-DOT
mnt-by: MAINT-IN-AS9829
changed: dnw_jtotech@bsnl.in 20070914
source: APNIC
route: 117.240.192.0/18
descr: BSNL Internet
country: IN
origin: AS9829
mnt-lower: MAINT-IN-DOT
mnt-routes: MAINT-IN-DOT
mnt-by: MAINT-IN-AS9829
changed: dnw_jtotech@bsnl.in 20071207
source: APNIC
route: 117.240.0.0/16
descr: BSNL Internet
country: IN
origin: AS9829
mnt-lower: MAINT-IN-DOT
mnt-routes: MAINT-IN-DOT
mnt-by: MAINT-IN-AS9829
changed: dnw_jtotech@bsnl.in 20071207
source: APNIC
role: NS Cell
address: Internet Cell
address: Bharat Sanchar Nigam Limited
address: 8th Floor,148-B Statesman House
address: Barakhamba Road, New Delhi - 110 001
country: IN
phone: +91-11-23734057
phone: +91-11-23710183
fax-no: +91-11-23734052
e-mail: hostmaster@sancharnet.in
admin-c: CGMD1-AP
tech-c: DT197-AP
nic-hdl: NC83-AP
mnt-by: MAINT-IN-DOT
changed: dnwplg@sancharnet.in 20030120
changed: hm-changed@apnic.net 20071227
source: APNIC
role: CGM Data Networks
address: CTS Compound
address: Netaji Nagar
address: New Delhi- 110 023
country: IN
phone: +91-11-24106782
phone: +91-11-24102119
fax-no: +91-11-26116783
fax-no: +91-11-26887888
e-mail: dnwplg@sancharnet.in
e-mail: hostmaster@sancharnet.in
admin-c: CGMD1-AP
tech-c: DT197-AP
tech-c: BH155-AP
nic-hdl: CDN1-AP
mnt-by: MAINT-IN-DOT
changed: dnwplg@sancharnet.in 20030120
changed: hm-changed@apnic.net 20071227
source: APNIC
person: Lokesh Khandelwal
nic-hdl: LK105-AP
address: aksh optifiber
address: epip sitapura
address:
phone: +91-141-2770738
fax-no: +91-141-2770738
country: IN
e-mail: lokesh.aksh@gmail.com
mnt-by: MAINT-IN-PER-DOT
changed: dnw_jtotech@bsnl.in 20100106
source: APNIC
person: Node Incharge JAIPUR
nic-hdl: NIJ2-AP
address: NIB JAIPUR
address: O/O PGMTD Jaipur
phone: +91-141-2361234
fax-no: +91-141-2370040
country: IN
e-mail: nib_jaipur@sancharnet.in
mnt-by: MAINT-IN-PER-DOT
changed: dnwplg@sancharnet.in 20030716
source: APNIC
person: Lokesh Khandelwal
nic-hdl: LK126-AP
address: aksh optifiber
address: epip sitapura
address:
phone: +91-141-2770738
fax-no: +91-141-2770738
country: IN
e-mail: lokesh.aksh@gmail.com
mnt-by: MAINT-IN-PER-DOT
changed: dnw_jtotech@bsnl.in 20100106
source: APNIC
route: 117.192.0.0/10
descr: BSNL-VSNL Route Object
origin: AS4755
mnt-by: MAINT-VSNL-IN
changed: ip.admin@vsnl.co.in 20070917
source: RADB
route: 117.192.0.0/10
descr: Reliance customer-BSNL
origin: AS9829
mnt-by: MAINT-AS18101
changed: ip.nnoc@relianceada.com 20071207 #06:04:30(UTC)
source: RADB
----------
$ nmap -A -T4 117.240.227.14
Starting Nmap 4.62 ( http://nmap.org ) at 2010-02-04 15:44 CET
Interesting ports on 117.240.227.14:
Not shown: 1700 closed ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 3.9p1 (protocol 1.99)
25/tcp open smtp qmail smtpd
80/tcp open http Apache httpd 2.0.52 ((Red Hat))
106/tcp open tcpwrapped
110/tcp open pop3 qmail pop3d
111/tcp open rpcbind
113/tcp open ident authd
143/tcp open imap Courier Imapd (released 2005)
443/tcp open ssl/http Apache httpd 2.0.52 ((Red Hat))
866/tcp filtered unknown
993/tcp open ssl/imap Courier Imapd (released 2005)
1827/tcp filtered pcm
3306/tcp open mysql MySQL 4.1.12
5900/tcp open vnc VNC (protocol 3.7)
10000/tcp open http Webmin httpd
Service Info: Host: mail.zonzeo.com; OS: Unix
Service detection performed. Please report any incorrect results at
http://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 76.613 seconds
----------
$ nslookup mail.zonzeo.com
Server: 213.133.98.98
Address: 213.133.98.98#53
Non-authoritative answer:
Name: mail.zonzeo.com
Address: 117.240.227.14
----------
$ whois zonzeo.com
Whois Server Version 2.0
Domain names in the .com and .net domains can now be registered
with many different competing registrars. Go to http://www.internic.net
for detailed information.
Domain Name: ZONZEO.COM
Registrar: GODADDY.COM, INC.
Whois Server: whois.godaddy.com
Referral URL: http://registrar.godaddy.com
Name Server: NS25.DOMAINCONTROL.COM
Name Server: NS26.DOMAINCONTROL.COM
Status: clientDeleteProhibited
Status: clientRenewProhibited
Status: clientTransferProhibited
Status: clientUpdateProhibited
Updated Date: 12-jan-2010
Creation Date: 04-mar-2009
Expiration Date: 04-mar-2019
>>> Last update of whois database: Thu, 04 Feb 2010 15:05:31 UTC <<<
NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the
expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.
TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated except as reasonably necessary to register domain names or
modify existing registrations; the Data in VeriSign Global Registry
Services' ("VeriSign") Whois database is provided by VeriSign for
information purposes only, and to assist persons in obtaining information
about or related to a domain name registration record. VeriSign does not
guarantee its accuracy. By submitting a Whois query, you agree to abide
by the following terms of use: You agree that you may use this Data only
for lawful purposes and that under no circumstances will you use this Data
to: (1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail, telephone,
or facsimile; or (2) enable high volume, automated, electronic processes
that apply to VeriSign (or its computer systems). The compilation,
repackaging, dissemination or other use of this Data is expressly
prohibited without the prior written consent of VeriSign. You agree not to
use electronic processes that are automated and high-volume to access or
query the Whois database except as reasonably necessary to register
domain names or modify existing registrations. VeriSign reserves the right
to restrict your access to the Whois database in its sole discretion to
ensure
operational stability. VeriSign may restrict or terminate your access to the
Whois database for failure to abide by these terms of use. VeriSign
reserves the right to modify these terms at any time.
The Registry database contains ONLY .COM, .NET, .EDU domains and
Registrars.The data contained in GoDaddy.com, Inc.'s WhoIs database,
while believed by the company to be reliable, is provided "as is"
with no guarantee or warranties regarding its accuracy. This
information is provided for the sole purpose of assisting you
in obtaining information about domain name registration records.
Any use of this data for any other purpose is expressly forbidden without
the prior written
permission of GoDaddy.com, Inc. By submitting an inquiry,
you agree to these terms of usage and limitations of warranty. In
particular,
you agree not to use this data to allow, enable, or otherwise make possible,
dissemination or collection of this data, in part or in its entirety, for any
purpose, such as the transmission of unsolicited advertising and
and solicitations of any kind, including spam. You further agree
not to use this data to enable high volume, automated or robotic electronic
processes designed to collect or compile this data for any purpose,
including mining this data for your own personal or commercial purposes.
Please note: the registrant of the domain name is specified
in the "registrant" field. In most cases, GoDaddy.com, Inc.
is not the registrant of domain names listed in this database.
Registrant:
new era mart pvt ltd
s no 54 goverdhan colony
new sanganer road,sodala
jaipur, Rajasthan 302019
India
Registered through: GoDaddy.com, Inc. (http://www.godaddy.com)
Domain Name: ZONZEO.COM
Created on: 04-Mar-09
Expires on: 04-Mar-19
Last Updated on: 12-Jan-10
Administrative Contact:
prabhakar, vivek vivekprabhakar64@gmail.com
new era mart pvt ltd
s no 54 goverdhan colony
new sanganer road,sodala
jaipur, Rajasthan 302019
India
+91.9351006001 Fax --
Technical Contact:
prabhakar, vivek vivekprabhakar64@gmail.com
new era mart pvt ltd
s no 54 goverdhan colony
new sanganer road,sodala
jaipur, Rajasthan 302019
India
+91.9351006001 Fax --
Domain servers in listed order:
NS25.DOMAINCONTROL.COM
NS26.DOMAINCONTROL.COM
---------------------------- Original Message ----------------------------
Subject: localhost 2010-02-04 15:02 System Events
From: "logcheck system account" <logcheck@amedee.be>
Date: Thu, February 4, 2010 15:02
To: logcheck@amedee.be
--------------------------------------------------------------------------
System Events
=-=-=-=-=-=-=
Feb 4 15:00:17 localhost sshd[22196]: pam_unix(sshd:auth): authentication
failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=117.240.227.14
user=root
Feb 4 15:00:19 localhost sshd[22196]: Failed password for root from
117.240.227.14 port 50469 ssh2
Feb 4 15:00:23 localhost sshd[22198]: pam_unix(sshd:auth): authentication
failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=117.240.227.14
user=root
Feb 4 15:00:24 localhost sshd[22198]: Failed password for root from
117.240.227.14 port 50730 ssh2
Feb 4 15:00:27 localhost sshd[22200]: pam_unix(sshd:auth): authentication
failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=117.240.227.14
user=root
Feb 4 15:00:29 localhost sshd[22200]: Failed password for root from
117.240.227.14 port 51022 ssh2
Feb 4 15:00:32 localhost sshd[22202]: pam_unix(sshd:auth): authentication
failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=117.240.227.14
user=root
Feb 4 15:00:34 localhost sshd[22202]: Failed password for root from
117.240.227.14 port 51278 ssh2
Feb 4 15:00:37 localhost sshd[22204]: pam_unix(sshd:auth): authentication
failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=117.240.227.14
user=root
Feb 4 15:00:39 localhost sshd[22204]: Failed password for root from
117.240.227.14 port 51563 ssh2Return-Path: <lokesh.aksh@gmail.com> X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on intrepid.amedee.be X-Spam-Level: *** X-Spam-Status: No, score=3.3 required=5.0 tests=RCVD_IN_BL_SPAMCOP_NET, RCVD_IN_SORBS_WEB,SPF_PASS autolearn=no version=3.2.5 X-Original-To: amedee@vangasse.eu Delivered-To: amedee@amedee.be X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .gmail. - helo: .mail-yx0-f196.google. - helo-domain: .google.) FROM/MX_MATCHES_HELO(DOMAIN)=-2 IN_PM_RFCI=0.1; rate: -8.4 Received: from mail-yx0-f196.google.com (mail-yx0-f196.google.com [209.85.210.196]) by intrepid.amedee.be (Postfix) with ESMTP id 7E5D75A094 for <amedee@vangasse.eu>; Fri, 5 Feb 2010 10:37:17 +0100 (CET) Received: by yxe34 with SMTP id 34so4200638yxe.16 for <amedee@vangasse.eu>; Fri, 05 Feb 2010 01:37:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:references :in-reply-to:subject:date:message-id:mime-version:content-type :content-transfer-encoding:x-mailer:thread-index:content-language; bh=HceH/rOcmc5gBg6nW0mcaDclFGaU4v6cD6wxeG5W3EE=; b=N24nABkmOQi4I3sdgnUCMlhkFwA4TTbDqHeloMWDh9r/t/SuPoXlutRmyQURw0GexI BGvkIS6NL4AVO1VWKb2OKPdtC12NQh8nrQxtU9vf2f6zn5yintjZrZ3+hyhjhezd2O2U sFYRCwNhuaRGrLl//8uiZMMSaA6hsse/7icmg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:references:in-reply-to:subject:date:message-id:mime-version :content-type:content-transfer-encoding:x-mailer:thread-index :content-language; b=Z7LUjh2oVWMqCFUCmi5X3rFObDC4yKm35n1x3PR0rJ23Bv9rEw6qXwbymmwdgx4R2P tIw/kOZ8bLQpUyMLa+f+WJNOEnA8k50kB++lZKnmlE6F7Kgxliv0NEhyGVh1Tkm2EsAW WJYM4ws2BVnKUWr/CT6u2kDGRJVgWrf+LOuqQ= Received: by 10.101.197.6 with SMTP id z6mr3329320anp.102.1265362636468; Fri, 05 Feb 2010 01:37:16 -0800 (PST) Received: from LokeshKhandelwa ([117.240.252.11]) by mx.google.com with ESMTPS id 22sm370991yxe.57.2010.02.05.01.37.10 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 05 Feb 2010 01:37:15 -0800 (PST) From: "Lokesh" <lokesh.aksh@gmail.com> To: "'Amedee Van Gasse'" <amedee@vangasse.eu>, <dnw_jtotech@bsnl.in>, <dnwplg@sancharnet.in>, <hm-changed@apnic.net>, <hostmaster@sancharnet.in>, <ip.admin@vsnl.co.in>, <ip.nnoc@relianceada.com>, <nib_jaipur@sancharnet.in>, <vivekprabhakar64@gmail.com>, <dns@jomax.net>, <info@zenzeo.com> References: <88e710867a3f8a73d3efa3f6216db7ce.squirrel@amedee.be> In-Reply-To: <88e710867a3f8a73d3efa3f6216db7ce.squirrel@amedee.be> Subject: RE: [Fwd: localhost 2010-02-04 15:02 System Events] Date: Fri, 5 Feb 2010 15:07:13 +0530 Message-ID: <4b6be6cb.1602be0a.6714.2a5b@mx.google.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: AcqlrVD6A6v7/4JpTkqWzOHoYHvkMwAmXJcg Content-Language: en-us Hope problem is now resolved. With regards Lokesh
Bart Coppens
FOSDEM 2010 KDE Group Picture
As always, we had the KDE Group Picture taken at FOSDEM. It went pretty smooth this year, apart from not immediately hearing when the autotimer of the camera clicked 
[Edit: Hmmm why does this not show up in the feeds?]
Joeri Poesen
On Drupal, Open Source and Moving to West Africa
As some of you already know my time as project lead and trainer at af83 came to an end last December. Their Drupal team will continue to be lead by the more than capable Damien Tournoud (@damz), one of the most prolific core Drupal contributors out there.
During my time in Paris I had a blast co-organizing DrupalCon Paris, helping grow the French community and being part of the team that founded l'association Drupal France et Francophonie, the French Drupal Association.
It's made me realize that community work is what makes me get up in the morning: the connecting, the building, the learning. It's awesome to witness and a privilege to take part in.
<!--break-->
It won't come too much as a surprise then, that we decided to move to Senegal (West Africa) to continue the work started in Paris: to support the use and development of open source software (and Drupal in particular, of course) throughout West Africa.
This work will be funded through three channels:
- Edulogos vzw, a Belgian educational non-profit my wife and I have been running since 2007
- A Senegalese non-profit that's being set up as we speak
- Bantalabs, a social profit start-up with offices in Paris and Saint-Louis (Senegal)
I'm particularly happy we can finally unveil Bantalabs. Co-founder Simon Elliott and I have been preparing this venture for months - defining the core goals, fleshing out the business plan, connecting with higher education institutions and building the site.
We're really excited about this new chapter in our lives. We have high hopes and ambitious plans. We're going to have a lot of fun.
Feel free to follow us on twitter: @bantalabs, @mrsimonelliott, @jpoesen.
FOSDEM organizers
Follow live info on twitter
If you want to have live updates of FOSDEM, make sure you follow us on twitter.
Frederic Hornain
[FOSDEM'10] First Taste

Dear *,
These are the first pictures of the FOSDEM’10.
As this year Fedora booth – like last years – is quite mature, I have decided to give a hand to the JBoss.org team.
So feel free to join us at Jboss.org Booth.
Here are few pictures of the JBoss.org Booth.




BR
Frederic

FOSDEM organizers
Network up and running
The network is up and running. Enjoy the internet over IPv4 and IPv6
February 05, 2010
Peter Van Eynde
fosdem network
speed to Europe is good, speed to USA is not so good
got 500 Mbps on a download test on my Mac
tomorrow back early to get it working properly
Claudio Ramirez
See you at Fosdem!
Frederic Descamps
ptxArchiver 0.3
ptxArchiver 0.3 is out.
I added the possibility to not insert the delete statement in the binlog for replication. I also fixed some minor bugs.
give it a try and send me your feedback :)
| Attachment | Size |
|---|---|
| ptxArchiver-0.3.tgz | 4.18 KB |
| ptxarchiver-0.3-1.fc12.noarch.rpm | 7.66 KB |
Martijn Cielen
Unfortunately...

...due to way too much work on the renovation project.
February 04, 2010
Bert de Bruijn
ADSL speed
Today I notice, from the corner of my eye, the download speed of a virtual appliance I was fetching: 500+ KBps, or a good 5 Mbps. Sync rate of my modem is still 6Mbps.
Was something changed at the Scarlet/Belgacom side ? If yes, why ? Or am I blessed by a unique and unexplained cosmic alignment of some sort ? I just hope it doesn't go down again. Maybe I should keep speedtest.net in my bookmarks.
Guillaume Desmottes
FOSDEM
This year again I'll be at FOSDEM this week-end[1]. I should be around the GNOME stand/devroom and will, of course, attend the beer event on Saturday night.
Don't hesitate to come and say hi if you want to discuss about Telepathy, Empathy, Moovida or about your favorite Belgian beer.
For those who are lucky enough to own a N900 don't forget to download the FOSDEM 2010 Maemo application. The UI is pretty shit but the features are quite nice and it allows you to easily build your schedule for the week-end. If you are more an Android, iPhone or Palm person the app is also available for those plateforms.
See you there!
Notes
[1] assuming I'm not delayed on my way back from vacation this night
Dries Buytaert
Symbian using Drupal
Paul Cobbaut
Debian in a branded zone
root@sol10u8 export# zoneadm -z debianzone boot
root@sol10u8 export# zoneadm list -cv
ID NAME STATUS PATH BRAND IP
0 global running / native shared
7 debianzone running /export/debianzone lx shared
- zoneldap installed /export/zoneldap native shared
- zonedns installed /export/zonedns native excl
- lx-zone installed /export/lx-zone lx shared
- zonejs configured /export/zonejs native shared
root@sol10u8 export#
Solaris 10 only supports 2.4 kernels.
debianzone:~# uname -a
Linux debianzone 2.4.21 BrandZ fake linux i686 GNU/Linux
The debianzone cannot connect to the internet. Ping to router/dns server works, with some strange (but not unexpected) messages:
debianzone:~# ping 192.168.1.1
WARNING: setsockopt(ICMP_FILTER): Protocol not available
Do you have CONFIG_SOCKET in your kernel?WARNING: your kernel is veeery old. No problems.
PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
Warning: no SO_TIMESTAMP support, falling back to SIOCGSTAMP
64 bytes from 192.168.1.1: icmp_seq=1 ttl=64 time=3.56 ms
64 bytes from 192.168.1.1: icmp_seq=2 ttl=64 time=1.77 ms
Setting a route is not possible.
debianzone:~# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
debianzone:~# route add -net 127.0.0.0
SIOCADDRT: Invalid argument
debianzone:~# route add -net 192.168.1.0 dev eth0
SIOCADDRT: Invalid argument
debianzone:~# route add default gateway 192.168.1.1
SIOCADDRT: Invalid argument
debianzone:~#
On Opensolaris it seems to work, but not (yet?) on Solaris 10.
FOSDEM organizers
FOSDEM Beer Event
As every year, there will be a FOSDEM beer event on Friday night before FOSDEM (February 5th 2010).
As in 2009, this year's event will take place at the Delirium Café, in a beautiful alley near the Grand'Place in Brussels. In addition to the enormous variety in beers, the location also has enough room to accommodate the vast crowd of geeks we tend to be.
Frederic Descamps
Drupal updated !
I was very late to update my own site ! Yesterday I was still running drupal 5.3 !! (shame on me).
Now the site is updated and runs the latest version of drupal 6.x
I'm very happy with this upgrade and I took the opportunity to change the theme; this time I use a nice (to my opinion) theme provided by drupal : fervens
Jochen Maes
FOSDEM Beer Event Boycot
There are people preparing to boycott the beer event just because Google sponsors the free beers.
The boycott would be by refusing free beer. If people do not want free beer that is their own choice.
However (and I'm very clear about this) I will not tolerate flyers to be handed out or any lobbying at the event. If I see people doing this I will remove them and refuse entry.
Google is our sponsor and we are happy they are! If you really want to boycott stay away from FOSDEM as Google also sponsors the event itself!
The event is a private event and supposed to be free, as stated before FOSDEM has no political nor religious goals and will always refuse to be a part of that.
So In case you are still wondering: People actively pursuing a boycott will be removed!
update: I got contacted by Jan saying he will not continue and I'm happy we can resolve this!
February 03, 2010
Frank Goossens
Embedding YouTube HTML5-video with newTube
With all the discussions about the place of Flash on the ever-evolving web and the excitement following Google’s announcement about YouTube going HTML5, one would almost forget that YouTube is only at the very start of their “open video” endeavor. The limitations of the current implementations are numerous; there’s no OGG (damn), no ads (yeah!) and no embedding either (damn) for example.
After looking into ways to call the YouTube mp4-file from within a Video for Everybody html-block (which is not possible, Google protects raw video-files using what seems to be a session-based hash that has to be provided in the URL), I decided to take another (dirty) approach; faking it!
The solution is entirely javascript-based and is as un-elegant as it is simple; create a html-file with a script include of http://futtta.be/newTube/newTube.js and a div with “id=newTube” containing a link to a YouTube-page and the script automagically takes care of the rest. Check out http://futtta.be/newTube/ to see it in action.
The result is an embedded YouTube player which will display the HTML5-version if you’re running a browser which supports mp4/h264 playback (i.e. a recent version of Chrome or Safari) and if you enrolled in the beta. If either of these preconditions aren’t met, you’ll just see the plain old Flash-player.
Don’t get your hopes up, in reality newTube is probably pretty useless (for reasons I’ll get into in a follow-up post, when I have some time to spare that is). You’ll have to wait for someone (YouTube, Dailymotion, Vimeo, … are you listening?) to offer real embeddable html5-video (with support for both mp4/h264 and and ogg/theora).
But I did have fun creating the very first html5-capable embedded YouTube-player
Possibly related twitterless twaddle:
- Firefox 3.5 and tinyvid.tv do Ogg/Theora
- Google loves html5 (in Android 2.0)
- Bridging the gap between html5 and Gears
Philip Van Hoof
SMASHED at FOSDEM?
This is to let Rob Taylor and David Schlesinger know that they better start organizing S.M.A.S.H.E.D.
Geert Vanderkelen
FOSDEM: Change: Python/MySQL talk at 14:45 in MySQL Dev Room
Today we made a change in the schedule of talks held in the MySQL Developer Room at FOSDEM 2010, swapping two talks. Change is:
- 12:15 CET - Giuseppe's 'Sharding for the Masses
- 14:25 CET - Geert's Connecting MySQL and Python (title also changed)
The printed booklets found at the conference will not reflect the change, but the printable schedule has already been updated.
FOSDEM organizers
Last speaker interviews
To finish our collection of informative interviews with the FOSDEM 2010 main track speakers, we proudly present:
- Andrew Tanenbaum (MINIX 3)
- Benoît Chesneau (CouchDB)
- Elena Reshetova (Maemo 6 security)
- Lindsay Holmwood (Flapjack)
See you at FOSDEM this weekend!
Wim Leers
FOSDEM 2010
This weekend on Sunday, February 7, we'll have a full day of Drupal talks at the 10th edition of FOSDEM, Europe's biggest, free-est and open-est software conference.
FOSDEM, is a free and non-commercial event organized by the community, for the community. Its goal is to provide Free and Open Source developers a place to meet. The Drupal project was granted a developer room at FOSDEM to do exactly that: to share knowledge about Drupal.
The presentations schedule for the Drupal devroom features interesting speakers such as Robert Douglass, Károly Négyesi, Roel de Meester and Kristof van Tomme and even more interesting subjects as mobile device design, AHAH, eID and Views 3. Everyone is invited to attend the presentations.
FOSDEM organizers
Keysigning: list of participants now available
Dries Buytaert
Opel Antwerp going south
February 02, 2010
Frederic Descamps
Fosdem 2k10
I'll be at Fosdem 2k10 !
You could meet me at the beer event of Friday, I'll also be at the Devops dinner, everybody interested in the Devops talk can join (you can still choose for the place here)
I'll also attend the MySQL & Friends meetup on Saturday night.
During the conferences, you could find me in front of the O'reilly stand or in the Fedora or MySQL devroom.
On Sunday I'll give a talk in the MySQL devroom : Daily maintenance of big tables.
I hope to see you there :)
Joram Barrez
JBoss @ Fosdem 2010
Sébastien Wains
Asterisk Wake Up call application
If you want to be awaken by your Asterisk PBX, here’s a simple bit of code to add in your dial plan.
Basically, you would call 9253 followed by the time the phone should ring, for exemple if you want to be awaken at 06:30am you would call 92530630 (on your dialpad WAKE0610).
This code only allows to set ONE alarm.
If you want to delete -for exemple the 0630am- alarm, you would call 6692530610 (on dialpad NOWAKE0610).
Asterisk will create a call file and put it under /var/spool/asterisk/outgoing/
How does Asterisk know when to call you ? It will check the timestamp of the call files.
Make sure you enable func_strings.so module, it is required for STRFTIME.
[Context-This-Code-Should-Go-In]
; WAKE + hour + minute : sets a wake up call
exten => _9253XXXX,1,Answer()
exten => _9253XXXX,n,Set(wakeuptime=${EXTEN:4:4})
exten => _9253XXXX,n,Set(today=${STRFTIME(${EPOCH},,%Y%m%d)})
exten => _9253XXXX,n,Set(tomorrow=${STRFTIME($[${EPOCH} + 86400],,%Y%m%d)})
exten => _9253XXXX,n,Set(now=${STRFTIME(${EPOCH},,%Y%m%d%H%M)})
exten => _9253XXXX,n,System(echo -e "Channel: SIP/${CALLERID(num)}\\nContext: WakeUp\\nExtension: 92531" > /tmp/${UNIQUEID}.call)
exten => _9253XXXX,n,GotoIf($["${today}${wakeuptime}" < "${now}"]?tomorrow:today)
exten => _9253XXXX,n(today),NoOp(Scheduling wake up call for ${CALLERID(num)} today at ${wakeuptime} / )
exten => _9253XXXX,n,System(touch -t ${today}${wakeuptime} /tmp/${UNIQUEID}.call)
exten => _9253XXXX,n,Goto(move)
exten => _9253XXXX,n(tomorrow),NoOp(Scheduling wake up call for ${CALLERID(num)} tomorrow at ${wakeuptime} / )
exten => _9253XXXX,n,System(touch -t ${tomorrow}${wakeuptime} /tmp/${UNIQUEID}.call)
exten => _9253XXXX,n(move),System(mv /tmp/${UNIQUEID}.call /var/spool/asterisk/outgoing/${wakeuptime}.${UNIQUEID}.call)
exten => _9253XXXX,n,Wait(1)
exten => _9253XXXX,n,SayNumber(${wakeuptime})
exten => _9253XXXX,n,Hangup()
; NOWAKE + hour + minute : deletes a wake up call
exten => _669253XXXX,1,Answer()
exten => _669253XXXX,n,Set(wakeuptime=${EXTEN:6:4})
exten => _669253XXXX,n,NoOp(Deleting alarm set at ${wakeuptime})
exten => _669253XXXX,n,System(rm -f /var/spool/asterisk/outgoing/${wakeuptime}*)
exten => _669253XXXX,n,Wait(1)
exten => _669253XXXX,n,Background(auth-thankyou)
exten => _669253XXXX,n,Hangup()
[WakeUp]
;;; Context for outgoing wake up calls only, well you can always call 92531 but it's rather pointless
exten => 92531,1,Answer()
exten => 92531,n,Wait(1)
exten => 92531,n,Background(hello-world)
exten => 92531,n,Wait(1)
exten => 92531,n,Hangup()
Kristof Willen
Milky Way transit

Feeling lost in our galaxy ? Take the Milky Way transit authority map and find the nearest exit to Sagittarius A !
Bert Deferme
Zarafa Workshop
Open-Future, the company where I work is organizing a Zarafa workshop in February 2010!
Open-Future is a Linux & Open Source Integrator. Our goal is to make Open Source work for you. Our competences and services include:
- Infrastructure
- Security
- Groupware & ERP
- High Availability & Disaster Recovery
- Virtualisation
- Backup and Recovery
- ....
Zarafa is Open Source Collaboration, providing:
- Integration with your existing Linux mailserver
- Native mobile phone support
- Outlook "Look & Feel" webaccess
- Stable Outlook sharing (100% MAPI) * extract from www.zarafa.nl
Want to join the Zarafa Workshop? Click the banner:
Bart Cerneels
Guess What!
Thomas Vander Stichele
We’ve come a long way, baby
Linux Magazine March 2010 is full of GStreamer goodness: one article reviewing 4 media players, all of them using GStreamer (Banshee, Rhythmbox, Amarok 2, Songbird), and a three page article on your favourite video editor, PiTiVi!



