<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Atlantilde</title>
	<atom:link href="http://www.atlantilde.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.atlantilde.com</link>
	<description>Blog d&#039;Alexandre Anriot</description>
	<lastBuildDate>Fri, 13 Jan 2012 16:53:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Routing for multiple uplinks</title>
		<link>http://www.atlantilde.com/en/2011/11/06/routage-avec-plusieurs-uplinks/</link>
		<comments>http://www.atlantilde.com/en/2011/11/06/routage-avec-plusieurs-uplinks/#comments</comments>
		<pubDate>Sun, 06 Nov 2011 19:14:41 +0000</pubDate>
		<dc:creator>alexandre</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open-Source]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[iproute2]]></category>

		<guid isPermaLink="false">http://www.atlantilde.com/?p=717</guid>
		<description><![CDATA[The goal of this article is to show an easy way allowing to use two uplinks on a Linux gateway. As requirement, you need the package "iproute" installed. The first step is to create the "iproute" tables relative to the two uplinks mentionned above, via "/etc/iproute2/rt_tables": 200     uplink_isp1 201     uplink_isp2 The second one is to [...]]]></description>
			<content:encoded><![CDATA[<p>The goal of this article is to show an easy way allowing to use two uplinks on a Linux gateway.</p>
<p>As requirement, you need the package "iproute" installed.</p>
<p>The first step is to create the "iproute" tables relative to the two uplinks mentionned above, via "/etc/iproute2/rt_tables":</p>
<blockquote><p>200     uplink_isp1<br />
201     uplink_isp2</p></blockquote>
<p>The second one is to perform the network settings. Here is a sample "/etc/network/interfaces" file (Debian) for two ISP:</p>
<blockquote><p>
# ISP1<br />
auto eth0<br />
iface eth0 inet static<br />
address 10.10.1.253<br />
netmask 255.255.255.0</p>
<p>post-up ip route add 10.10.1.254/32 dev eth0 src 10.10.1.253 table uplink_isp1<br />
post-up ip route add default via 10.10.1.254 table uplink_isp1<br />
post-up ip rule add from 10.10.1.253 table uplink_isp1</p>
<p>post-up ip route del 10.10.1.254/32 dev eth0 src 10.10.1.253 table uplink_isp1<br />
post-up ip route del default via 10.10.1.254 table uplink_isp1<br />
post-down ip rule del from 10.10.1.253 table uplink_isp1</p>
<p># ISP2<br />
auto eth1<br />
iface eth1 inet static<br />
address 10.10.2.253<br />
netmask 255.255.255.0</p>
<p>post-up ip route add 10.10.2.254/32 dev eth0 src 10.10.2.253 table uplink_isp2<br />
post-up ip route add default via 10.10.2.254 table uplink_isp2<br />
post-up ip rule add from 10.10.2.253 table uplink_isp2</p>
<p>post-up ip route del 10.10.2.254/32 dev eth0 src 10.10.2.253 table uplink_isp2<br />
post-up ip route del default via 10.10.2.254 table uplink_isp2<br />
post-down ip rule del from 10.10.2.253 table uplink_isp2</p></blockquote>
<p>You can also setup additionnal per-link routes in a such setup.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlantilde.com/en/2011/11/06/routage-avec-plusieurs-uplinks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dennis Ritchie has gone</title>
		<link>http://www.atlantilde.com/en/2011/10/14/dennis-ritchie-nous-a-quitte/</link>
		<comments>http://www.atlantilde.com/en/2011/10/14/dennis-ritchie-nous-a-quitte/#comments</comments>
		<pubDate>Fri, 14 Oct 2011 09:19:42 +0000</pubDate>
		<dc:creator>alexandre</dc:creator>
				<category><![CDATA[BSD / OpenBSD]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open-Source]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://www.atlantilde.com/?p=710</guid>
		<description><![CDATA[I come upon a bad news on thursday through an RSS feed. Dennis MacAlistair Ritchie who was 70 left us on october the 8th. The goal of this article is not to list all his work but only to make a humble tribute to someone who played a conclusive role and who has gone almost [...]]]></description>
			<content:encoded><![CDATA[<p>I come upon a bad news on thursday through an RSS feed. <a href="http://en.wikipedia.org/wiki/Dennis_Ritchie" target="_blank">Dennis MacAlistair Ritchie</a> who was 70 left us on october the 8th. The goal of this article is not to list all his work but only to make a humble tribute to someone who played a conclusive role and who has gone almost silently. RIP.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlantilde.com/en/2011/10/14/dennis-ritchie-nous-a-quitte/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LVM / XFS volume shrink</title>
		<link>http://www.atlantilde.com/en/2011/09/14/diminution-dun-volume-lvm-xfs/</link>
		<comments>http://www.atlantilde.com/en/2011/09/14/diminution-dun-volume-lvm-xfs/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 12:14:52 +0000</pubDate>
		<dc:creator>alexandre</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open-Source]]></category>
		<category><![CDATA[LVM]]></category>
		<category><![CDATA[XFS]]></category>

		<guid isPermaLink="false">http://www.atlantilde.com/?p=677</guid>
		<description><![CDATA[Here is a short list of the commands allowing to shrink a XFS LVM volume. The example mentions how to shrink 5Go of the /home mount point. xfsdump -f home.dump /home umount /home lvmreduce -L-5G /dev/mapper/VOL0-home mkfs.xfs /dev/mapper/VOL0-home mount /home xfsrestore -f home.dump /home]]></description>
			<content:encoded><![CDATA[<p>Here is a short list of the commands allowing to shrink a XFS LVM volume. The example mentions how to shrink 5Go of the /home mount point.</p>
<blockquote><p>xfsdump -f home.dump /home<br />
umount /home<br />
lvmreduce -L-5G /dev/mapper/VOL0-home<br />
mkfs.xfs /dev/mapper/VOL0-home<br />
mount /home<br />
xfsrestore -f home.dump /home</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.atlantilde.com/en/2011/09/14/diminution-dun-volume-lvm-xfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dkim and Postfix</title>
		<link>http://www.atlantilde.com/en/2011/09/09/dkim-et-postfix/</link>
		<comments>http://www.atlantilde.com/en/2011/09/09/dkim-et-postfix/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 13:13:34 +0000</pubDate>
		<dc:creator>alexandre</dc:creator>
				<category><![CDATA[BSD / OpenBSD]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Logiciels]]></category>
		<category><![CDATA[Open-Source]]></category>
		<category><![CDATA[Dkim]]></category>
		<category><![CDATA[Dkim-filter]]></category>
		<category><![CDATA[Postfix]]></category>

		<guid isPermaLink="false">http://www.atlantilde.com/?p=667</guid>
		<description><![CDATA[Here is a quick tutorial explaining how to enable DKIM, a technology which allows to authenticate the sender and the integrity of a mail, on a Debian / Postfix environment. Install dkim-filter: aptitude install dkim-filter Generate and export de key: openssl genrsa -out /etc/ssl/private/dkim_MYDOMAIN_MYTLD.key openssl rsa -in /etc/ssl/private/dkim_MYDOMAIN_MYTLD.key \ -pubout -outform PEM writing RSA key [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a quick tutorial explaining how to enable <a href="http://www.dkim.org/" target="_blank">DKIM</a>, a technology which allows to authenticate the sender and the integrity of a mail, on a <a href="http://www.debian.org/" target="_blank">Debian</a> / <a href="http://www.postfix.org/" target="_blank">Postfix</a> environment.</p>
<p>Install <a href="http://packages.debian.org/fr/lenny/dkim-filter" target="_blank">dkim-filter</a>:</p>
<blockquote><p>aptitude install dkim-filter</p></blockquote>
<p>Generate and export de key:</p>
<blockquote><p>openssl genrsa -out /etc/ssl/private/dkim_MYDOMAIN_MYTLD.key<br />
openssl rsa -in /etc/ssl/private/dkim_MYDOMAIN_MYTLD.key \<br />
-pubout -outform PEM</p>
<p>writing RSA key<br />
-----BEGIN PUBLIC KEY-----<br />
MYKEY<br />
-----END PUBLIC KEY-----</p></blockquote>
<p>Setup <a href="http://packages.debian.org/fr/lenny/dkim-filter" target="_blank">dkim-filter</a> through <em>/etc/dkim-filter.conf</em>:</p>
<blockquote><p>Domain            MYDOMAIN_MYTLD<br />
KeyFile             /etc/ssl/private/dkim_MYDOMAIN_MYTLD.key<br />
Selector            mail</p></blockquote>
<p>And through <em>/etc/default/dkim-filter</em>:</p>
<blockquote><p>  #SOCKET="inet:12345@192.0.2.1" # listen on 192.0.2.1 on port 12345<br />
+ SOCKET=inet:8891@localhost</p></blockquote>
<p>Restart the service:</p>
<blockquote><p> /etc/init.d/dkim-filter restart</p></blockquote>
<p>Add to the DNS zone:</p>
<blockquote><p>mail._domainkey TXT "k=rsa; t=y; p=MYKEY"</p></blockquote>
<p>Add to Postfix through <em>/etc/postfix/main.conf</em>:</p>
<blockquote><p>milter_default_action = accept<br />
milter_protocol = 2<br />
smtpd_milters = inet:localhost:8891<br />
non_smtpd_milters = inet:localhost:8891</p></blockquote>
<p>Eventually, restart <a href="http://www.postfix.org/" target="_blank">Postfix:</a></p>
<blockquote><p> /etc/init.d/postfix restart</p></blockquote>
<p>As the default mode is <em>sv</em>, you will now sign the outgoing mails and validate the incoming ones.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlantilde.com/en/2011/09/09/dkim-et-postfix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A few security mechanisms for a laptop</title>
		<link>http://www.atlantilde.com/en/2011/08/27/quelques-mecanismes-de-securite-pour-un-laptop/</link>
		<comments>http://www.atlantilde.com/en/2011/08/27/quelques-mecanismes-de-securite-pour-un-laptop/#comments</comments>
		<pubDate>Sat, 27 Aug 2011 20:05:52 +0000</pubDate>
		<dc:creator>alexandre</dc:creator>
				<category><![CDATA[Open-Source]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Laptop]]></category>
		<category><![CDATA[sécurité]]></category>
		<category><![CDATA[TRESOR]]></category>

		<guid isPermaLink="false">http://www.atlantilde.com/?p=653</guid>
		<description><![CDATA[Mike Cardwell has written a very good article about different security mechanisms for a laptop, entitled Protecting a Laptop from Simple and Sophisticated Attacks . Different technologies are mentionned, like swap encrypting, TRESOR, etc.]]></description>
			<content:encoded><![CDATA[<p><a>Mike Cardwell</a> has written a very good article about different security mechanisms for a laptop, entitled <a title="Protecting a Laptop from Simple and Sophisticated Attacks" href="https://grepular.com/Protecting_a_Laptop_from_Simple_and_Sophisticated_Attacks">Protecting a Laptop from Simple and Sophisticated Attacks</a> . Different technologies are mentionned, like swap encrypting, <a title="http://www1.informatik.uni-erlangen.de/tresor" href="https://grepular.com/bounce?url=http%3A%2F%2Fwww1.informatik.uni-erlangen.de%2Ftresor&amp;auth=3cd0b3052bea7b04d1f755e441580b6c&amp;src=%2FProtecting_a_Laptop_from_Simple_and_Sophisticated_Attacks">TRESOR</a>, etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlantilde.com/en/2011/08/27/quelques-mecanismes-de-securite-pour-un-laptop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another DNS root attack</title>
		<link>http://www.atlantilde.com/en/2011/07/02/attaque-de-la-racine-dns/</link>
		<comments>http://www.atlantilde.com/en/2011/07/02/attaque-de-la-racine-dns/#comments</comments>
		<pubDate>Sat, 02 Jul 2011 01:22:48 +0000</pubDate>
		<dc:creator>alexandre</dc:creator>
				<category><![CDATA[DNS]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Dnsmon]]></category>
		<category><![CDATA[Racine DNS]]></category>

		<guid isPermaLink="false">http://www.atlantilde.com/?p=641</guid>
		<description><![CDATA[The DNS root has been exposed to another attack on tuesday june the 28th. Though, no breakdown was noticed on the resolves, and it seems that only a few monitoring systems have spotted it. You can find technical details and related graphs on this article entitled Attaque contre les serveurs DNS de la racine - [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://en.wikipedia.org/wiki/Domain_Name_System" target="_blank">DNS</a> root has been exposed to another attack on tuesday june the 28th. Though, no breakdown was noticed on the resolves, and it seems that only a few monitoring systems have spotted it. You can find technical details and related graphs on this article entitled <a href="http://www.bortzmeyer.org/racine-dns-28-juin-2011.html" target="_blank">Attaque contre les serveurs DNS de la racine - juin 2011</a> (in french) from the <a href="http://www.bortzmeyer.org/" target="_blank">blog of Stéphane Bortzmeyer</a>.<a href="http://www.bortzmeyer.org/" target="_blank"><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlantilde.com/en/2011/07/02/attaque-de-la-racine-dns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>World IPv6 Day</title>
		<link>http://www.atlantilde.com/en/2011/06/08/world-ipv6-day/</link>
		<comments>http://www.atlantilde.com/en/2011/06/08/world-ipv6-day/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 06:57:52 +0000</pubDate>
		<dc:creator>alexandre</dc:creator>
				<category><![CDATA[IPv6]]></category>
		<category><![CDATA[World IPv6 Day]]></category>

		<guid isPermaLink="false">http://www.atlantilde.com/?p=627</guid>
		<description><![CDATA[The World IPv6 Day has come ; organized by ISOC, it's one of the first wide tests preparing the IPv6 deployment. Even if some big actors were missing, a lot of them were prepared for this event, who will be successful, as it will speed up the technical deployment of the protocol on the platforms [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.worldipv6day.org/" target="_blank">World IPv6 Day</a> has come ; organized by <a href="http://www.isoc.org/" target="_blank">ISOC</a>, it's one of the first wide tests preparing the <a href="http://en.wikipedia.org/wiki/IPv6" target="_blank">IPv6</a> deployment.<a href="http://www.worldipv6day.org/"><img class="alignright" title="World IPv6 Day" src="http://www.atlantilde.com/wp-content/uploads/2011/06/v6day-logo1-269x300.png" alt="" width="77" height="81" /></a></p>
<p>Even if some big actors were missing, a lot of them were prepared for this event, who will be successful, as it will speed up the technical deployment of the protocol on the platforms which never did the step.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlantilde.com/en/2011/06/08/world-ipv6-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zaurus SL-C3000</title>
		<link>http://www.atlantilde.com/en/2011/06/02/zaurus-sl-c300/</link>
		<comments>http://www.atlantilde.com/en/2011/06/02/zaurus-sl-c300/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 16:19:00 +0000</pubDate>
		<dc:creator>alexandre</dc:creator>
				<category><![CDATA[BSD / OpenBSD]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Qtopia]]></category>
		<category><![CDATA[SL-C3000]]></category>
		<category><![CDATA[Zaurus]]></category>

		<guid isPermaLink="false">http://www.atlantilde.com/?p=603</guid>
		<description><![CDATA[After a few years, I convinced oneself to sell my Sharp Zaurus SL-C3000, it will probably more useful in different hands. For those who don't know this PDA, it is the first platform which were commercialized under Linux. Its manufacturing ended at the end of 2007. The SL-C3000 has a 416 MHz Intel ARM X-SCALE CPU [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.atlantilde.com/wp-content/uploads/2011/06/zaurus.jpg"><img class="alignright" style="margin: 10px;" title="Zaurus SL-C3000" src="http://www.atlantilde.com/wp-content/uploads/2011/06/zaurus-300x192.jpg" alt="" width="300" height="192" /></a></p>
<p>After a few years, I convinced oneself to sell my <a href="http://www.sharp.fr/" target="_blank">Sharp</a> <a href="http://fr.wikipedia.org/wiki/Zaurus" target="_blank">Zaurus</a> SL-C3000, it will probably more useful in different hands. For those who don't know this <a href="http://fr.wikipedia.org/wiki/Assistant_personnel" target="_blank">PDA</a>, it is the first platform which were commercialized under<strong></strong> <a href="http://fr.wikipedia.org/wiki/Linux" target="_blank">Linux</a>. Its manufacturing ended at the end of 2007.</p>
<p>The SL-C3000 has a 416 MHz <a href="http://www.intel.com/" target="_blank">Intel</a> <a href="http://fr.wikipedia.org/wiki/Architecture_ARM" target="_blank">ARM</a> X-SCALE CPU , a 4 Go embedded microdrive, and the <a href="http://fr.wikipedia.org/wiki/Qtopia" target="_blank">Qtopia</a> environment. On the network part, the device can use a compact-flash wireless adapter e.g. the NL2511CF Mercury, or a USB-to-RJ45 adapter e.g. the Linksys USB200M.</p>
<p>A french community exists, <a href="http://www.zaurusfr.org/" target="_blank">ZaurusFr</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlantilde.com/en/2011/06/02/zaurus-sl-c300/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Filer recovery under Ext3</title>
		<link>http://www.atlantilde.com/en/2011/05/24/recuperation-dun-fichier-sur-ext3/</link>
		<comments>http://www.atlantilde.com/en/2011/05/24/recuperation-dun-fichier-sur-ext3/#comments</comments>
		<pubDate>Tue, 24 May 2011 14:01:44 +0000</pubDate>
		<dc:creator>alexandre</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Logiciels]]></category>
		<category><![CDATA[Open-Source]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[ext3grep]]></category>
		<category><![CDATA[extundelete]]></category>
		<category><![CDATA[lexsi]]></category>

		<guid isPermaLink="false">http://www.atlantilde.com/?p=598</guid>
		<description><![CDATA[The article entitled Cher journal... (in french) available on the weblog of the CERT-LEXSI shows the different ways to recover filers under Ext2 / Ext3 filesystems. The methods are based on the usage of tools like ext3grep, but you can also use extundelete which also works with Ext4. You can also read HOWTO recover deleted files [...]]]></description>
			<content:encoded><![CDATA[<p>The article entitled <a href="http://cert.lexsi.com/weblog/index.php/2011/05/19/415-cher-journal" target="_blank">Cher journal...</a> (in french) available on the <a href="http://cert.lexsi.com/weblog/" target="_blank">weblog</a> of the <a href="http://cert.lexsi.com/" target="_blank">CERT-LEXSI</a> shows the different ways to recover filers under <a href="http://fr.wikipedia.org/wiki/Ext2" target="_blank">Ext2</a> / <a href="http://fr.wikipedia.org/wiki/Ext3" target="_blank">Ext3</a> filesystems. The methods are based on the usage of tools like <a href="http://code.google.com/p/ext3grep/" target="_blank">ext3grep</a>, but you can also use <a href="http://extundelete.sourceforge.net/" target="_blank">extundelete</a> which also works with <a href="http://fr.wikipedia.org/wiki/Ext4" target="_blank">Ext4</a>. You can also read <a href="http://www.xs4all.nl/%7Ecarlo17/howto/undelete_ext3.html" target="_blank">HOWTO recover deleted files on an ext3 file system</a> which refers to the same topic.<a href="http://code.google.com/p/ext3grep/" target="_blank"><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlantilde.com/en/2011/05/24/recuperation-dun-fichier-sur-ext3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mail.log and PHP 5.3</title>
		<link>http://www.atlantilde.com/en/2011/05/17/mail-log-a-partir-de-php-5-3/</link>
		<comments>http://www.atlantilde.com/en/2011/05/17/mail-log-a-partir-de-php-5-3/#comments</comments>
		<pubDate>Tue, 17 May 2011 19:14:42 +0000</pubDate>
		<dc:creator>alexandre</dc:creator>
				<category><![CDATA[Logiciels]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[mail.info]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.atlantilde.com/?p=592</guid>
		<description><![CDATA[Starting with PHP 5.3, a new setup parameter called mail.info allows to log PHP calls to mail(). This will be a good alternative to approximative sendmail wrappers you could use in the past. Here is a sample output: mail() on [/path/file.php:2]: To: root@localhost -- Headers: X-Cust...]]></description>
			<content:encoded><![CDATA[<p>Starting with <a href="http://www.php.net/" target="_blank">PHP</a> 5.3, a new setup parameter called <a href="http://www.php.net/manual/fr/mail.configuration.php#ini.mail.log" target="_blank">mail.info</a> allows to log PHP calls to <a href="http://php.net/manual/fr/function.mail.php" target="_blank">mail()</a>. This will be a good alternative to approximative sendmail wrappers you could use in the past.</p>
<p>Here is a sample output:</p>
<blockquote><p>mail() on [/path/file.php:2]: To: root@localhost -- Headers: X-Cust...</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.atlantilde.com/en/2011/05/17/mail-log-a-partir-de-php-5-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

