<?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>Kevin Deldycke &#187; gmail</title> <atom:link href="http://kevin.deldycke.com/tag/gmail/feed/" rel="self" type="application/rss+xml" /><link>http://kevin.deldycke.com</link> <description>Free software engineer &#38; wannabe videomaker</description> <lastBuildDate>Fri, 03 Feb 2012 19:08:27 +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>How-to use GMail to send mails from Debian Squeeze</title><link>http://kevin.deldycke.com/2011/05/how-to-gmail-send-mails-debian-squeeze/</link> <comments>http://kevin.deldycke.com/2011/05/how-to-gmail-send-mails-debian-squeeze/#comments</comments> <pubDate>Tue, 03 May 2011 10:10:18 +0000</pubDate> <dc:creator>Kev</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[Debian]]></category> <category><![CDATA[Exim]]></category> <category><![CDATA[gmail]]></category> <category><![CDATA[google apps]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[mail]]></category> <category><![CDATA[Server]]></category> <category><![CDATA[squeeze]]></category><guid isPermaLink="false">http://kevin.deldycke.com/?p=3158</guid> <description><![CDATA[Here is quick guide on how I configured Exim 4 to let a Debian Squeeze server send mails through a GMail account. This article is just a rip-off of a tutorial I found on the web, which is itself an &#8230; <a href="http://kevin.deldycke.com/2011/05/how-to-gmail-send-mails-debian-squeeze/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>Here is quick guide on how I configured Exim 4 to let a Debian Squeeze server send mails through a GMail account. This article is just a rip-off of <a href="http://www.manu-j.com/blog/wordpress-exim4-ubuntu-gmail-smtp/75/">a tutorial I found on the web</a>, which is itself an updated version of <a href="http://wiki.debian.org/GmailAndExim4">a Debian&#8217;s Wiki page</a>.</p><p>Debian come with Exim (v4.72) pre-installed: it&#8217;s the default MTA on this distribution. There is absolutely no need to install extra packages. Let&#8217;s start right away by calling Exim&#8217;s configuration wizard:</p><pre class="brush: bash; title: ; notranslate">
$ dpkg-reconfigure exim4-config
</pre><p>Here are the options I choose in each step of the wizard:</p><ol><li>Choose <code>Mail sent by smarthost; received via SMTP or fetchmail</code>.</li><li>System mail name: <code>server.deldycke.com</code>.</li><li>IP adresses to listen on for incoming SMTP connections: <code>127.0.0.1 ; ::1</code> (which is the default proposed value).</li><li>Other destinations for which mail is accepted: leave blank.</li><li>Machines to relay mail for: leave blank.</li><li>Machine handling outgoing mail for this host (smarthost): <code>smtp.gmail.com::587</code>.</li><li>Hide local mail name in outgoing mail: <code>No</code>.</li><li>Keep number of DNS-queries minimal (Dial-on-Demand): <code>No</code>.</li><li>Mailboxes format: <code>mbox</code>.</li><li>Split configuration into small files: <code>No</code>.</li></ol><p>All these parameters you just answered are saved in the <code>/etc/exim4/update-exim4.conf.conf</code>:</p><pre class="brush: plain; title: ; notranslate">
# /etc/exim4/update-exim4.conf.conf
#
# Edit this file and /etc/mailname by hand and execute update-exim4.conf
# yourself or use 'dpkg-reconfigure exim4-config'
#
# Please note that this is _not_ a dpkg-conffile and that automatic changes
# to this file might happen. The code handling this will honor your local
# changes, so this is usually fine, but will break local schemes that mess
# around with multiple versions of the file.
#
# update-exim4.conf uses this file to determine variable values to generate
# exim configuration macros for the configuration file.
#
# Most settings found in here do have corresponding questions in the
# Debconf configuration, but not all of them.
#
# This is a Debian specific file

dc_eximconfig_configtype='smarthost'
dc_other_hostnames=''
dc_local_interfaces='127.0.0.1 ; ::1'
dc_readhost=''
dc_relay_domains=''
dc_minimaldns='false'
dc_relay_nets=''
dc_smarthost='smtp.gmail.com:587'
CFILEMODE='644'
dc_use_split_config='false'
dc_hide_mailname='false'
dc_mailname_in_oh='true'
dc_localdelivery='mail_spool'
</pre><p>Then I updated the <code>/etc/exim4/exim4.conf.template</code> to add proper handling of GMail SMTP server. Here are the differences between the untouched original <code>exim4.conf.template</code> file and my version:</p><pre class="brush: diff; title: ; notranslate">
--- /etc/exim4/exim4.conf.template-orig  2011-05-03 10:49:43.207938577 +0200
+++ /etc/exim4/exim4.conf.template       2011-05-03 10:52:26.235438776 +0200
@@ -1077,15 +1077,11 @@
 # domains, you'll need to copy the dnslookup_relay_to_domains router
 # here so that mail to relay_domains is handled separately.

-smarthost:
-  debug_print = &quot;R: smarthost for $local_part@$domain&quot;
-  driver = manualroute
-  domains = ! +local_domains
-  transport = remote_smtp_smarthost
-  route_list = * DCsmarthost byname
-  host_find_failed = defer
-  same_domain_copy_routing = yes
-  no_more
+send_via_gmail:
+       driver = manualroute
+       domains = ! +local_domains
+       transport = gmail_smtp
+       route_list = * smtp.gmail.com

 .endif

@@ -1632,6 +1628,12 @@
 # to a smarthost. The local host tries to authenticate.
 # This transport is used for smarthost and satellite configurations.

+gmail_smtp:
+       driver = smtp
+       port = 587
+       hosts_require_auth = $host_address
+       hosts_require_tls = $host_address
+
 remote_smtp_smarthost:
   debug_print = &quot;T: remote_smtp_smarthost for $local_part@$domain&quot;
   driver = smtp
@@ -1759,6 +1761,11 @@

 begin authenticators

+gmail_login:
+       driver = plaintext
+       public_name = LOGIN
+       client_send = : system@deldycke.com : XXXXXXXXX
+

 #####################################################
 ### end auth/00_exim4-config_header
@@ -1999,27 +2006,27 @@
                    ^${sg{PASSWDLINE}{\\N([^:]+:)(.*)\\N}{\\$2}}&quot;
 .endif

-login:
-  driver = plaintext
-  public_name = LOGIN
-.ifndef AUTH_CLIENT_ALLOW_NOTLS_PASSWORDS
-  # Return empty string if not non-TLS AND looking up $host in passwd-file
-  # yields a non-empty string; fail otherwise.
-  client_send = &quot;&lt;; ${if and{\
-                          {!eq{$tls_cipher}{}}\
-                          {!eq{PASSWDLINE}{}}\
-                         }\
-                      {}fail}\
-                 ; ${extract{1}{::}{PASSWDLINE}}\
-                ; ${sg{PASSWDLINE}{\\N([^:]+:)(.*)\\N}{\\$2}}&quot;
-.else
-  # Return empty string if looking up $host in passwd-file yields a
-  # non-empty string; fail otherwise.
-  client_send = &quot;&lt;; ${if !eq{PASSWDLINE}{}\
-                      {}fail}\
-                 ; ${extract{1}{::}{PASSWDLINE}}\
-                ; ${sg{PASSWDLINE}{\\N([^:]+:)(.*)\\N}{\\$2}}&quot;
-.endif
+#login:
+#  driver = plaintext
+#  public_name = LOGIN
+#.ifndef AUTH_CLIENT_ALLOW_NOTLS_PASSWORDS
+#  # Return empty string if not non-TLS AND looking up $host in passwd-file
+#  # yields a non-empty string; fail otherwise.
+#  client_send = &quot;&lt;; ${if and{\
+#                          {!eq{$tls_cipher}{}}\
+#                          {!eq{PASSWDLINE}{}}\
+#                         }\
+#                      {}fail}\
+#                 ; ${extract{1}{::}{PASSWDLINE}}\
+#               ; ${sg{PASSWDLINE}{\\N([^:]+:)(.*)\\N}{\\$2}}&quot;
+#.else
+#  # Return empty string if looking up $host in passwd-file yields a
+#  # non-empty string; fail otherwise.
+#  client_send = &quot;&lt;; ${if !eq{PASSWDLINE}{}\
+#                      {}fail}\
+#                 ; ${extract{1}{::}{PASSWDLINE}}\
+#               ; ${sg{PASSWDLINE}{\\N([^:]+:)(.*)\\N}{\\$2}}&quot;
+#.endif
 #####################################################
 ### end auth/30_exim4-config_examples
 #####################################################
</pre><p>Now all we have to do is to regenerate Exim&#8217;s configuration and restart the mail server:</p><pre class="brush: bash; title: ; notranslate">
$ update-exim4.conf
$ /etc/init.d/exim4 restart
</pre><p>You can then send a dummy email to test your mail system:</p><pre class="brush: bash; title: ; notranslate">
$ mail kevin@deldycke.com
Subject: This is an exim test
.
Cc:
Null message body; hope that's ok
</pre><p>And check in the log that everything&#8217;s fine:</p><pre class="brush: bash; title: ; notranslate">
$ tail -F /var/log/exim4/mainlog
2011-05-03 10:56:32 1QHBPE-0000ne-CW &lt;= root@server.deldycke.com U=root P=local S=362
2011-05-03 10:56:36 1QHBPE-0000ne-CW =&gt; kevin@deldycke.com R=send_via_gmail T=gmail_smtp H=gmail-smtp-msa.l.google.com [209.85.227.109] X=TLS1.0:RSA_ARCFOUR_SHA1:16 DN=&quot;C=US,ST=California,L=Mountain View,O=Google Inc,CN=smtp.gmail.com&quot;
2011-05-03 10:56:36 1QHBPE-0000ne-CW Completed
</pre>]]></content:encoded> <wfw:commentRss>http://kevin.deldycke.com/2011/05/how-to-gmail-send-mails-debian-squeeze/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Comment supprimer des comptes mails secondaires @free.fr</title><link>http://kevin.deldycke.com/2010/12/comment-supprimer-des-comptes-mails-secondaires-free-fr/</link> <comments>http://kevin.deldycke.com/2010/12/comment-supprimer-des-comptes-mails-secondaires-free-fr/#comments</comments> <pubDate>Wed, 08 Dec 2010 11:16:35 +0000</pubDate> <dc:creator>Kev</dc:creator> <category><![CDATA[Français]]></category> <category><![CDATA[free.fr]]></category> <category><![CDATA[gmail]]></category> <category><![CDATA[ISP]]></category> <category><![CDATA[mail]]></category><guid isPermaLink="false">http://kevin.deldycke.com/?p=2488</guid> <description><![CDATA[Ça fait maintenant 10 ans que je suis client chez Free. Durant mes premières années de fréquentation du web, j&#8217;avais décidé de créer autant de comptes mails @free.fr que de variations possibles avec mon nom et prénom. Ne riez pas. &#8230; <a href="http://kevin.deldycke.com/2010/12/comment-supprimer-des-comptes-mails-secondaires-free-fr/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>Ça fait maintenant 10 ans que je suis client chez <a href="http://free.fr">Free</a>. Durant mes premières années de fréquentation du web, j&#8217;avais décidé de créer autant de comptes mails <code>@free.fr</code> que de variations possibles avec mon nom et prénom. Ne riez pas. Je l&#8217;ai vraiment fait. J&#8217;avais même poussé le vice jusqu&#8217;à doubler les variations avec le préfixe <code>www</code>. Pourquoi ? Pour avoir des espaces d&#8217;hébergement associés (<em>Pages Perso</em>) avec une jolie URL du type <code>http://www.kevin.deldycke.free.fr</code>.</p><p>Résultat: cela fait maintenant 10 ans que je traîne plus d&#8217;une vingtaine de comptes mails chez Free. J&#8217;ai eu mal le jour ou j&#8217;ai changé de crémerie pour aller chez Google. Pour continuer à recevoir tous les mails envoyés chez Free, j&#8217;ai mis en place une arborescence de comptes Gmail. C&#8217;était la seule solution pour contourner les limites de l&#8217;<a href="http://mail.google.com/support/bin/answer.py?answer=21288">outil de récupération des messages</a>, qui est <a href="http://kb.mozillazine.org/Using_Gmail_with_Thunderbird_and_Mozilla_Suite#Mail_fetcher">limité à 5 comptes externes</a>.</p><p>Il est temps de mettre fin à cette folie furieuse et de faire le ménage.</p><p>La procédure de suppression de ces comptes mails chez Free n&#8217;est pas compliqué. La première chose à faire, si ce n&#8217;est pas déjà fait, consiste à rattacher ses comptes mails à son compte principal. Facile, ça se fait dans l&#8217;interface d&#8217;administration du compte:<br /> <a href="http://kevin.deldycke.com/wp-content/uploads/2010/12/rattacher-compte-mail.png"><img src="http://kevin.deldycke.com/wp-content/uploads/2010/12/rattacher-compte-mail-300x172.png" alt="" title="rattacher-compte-mail" width="300" height="172" class="aligncenter size-medium wp-image-2492" /></a></p><p>Ensuite, il faut se rendre sur la <a href="http://www.free.fr/assistance/mail.html">page d&#8217;assistance par mail</a>. Là, il suffit d&#8217;écrire un message poli et précis, en choisissant bien <em>Gestion des comptes de messagerie</em> comme destinataire:<br /> <a href="http://kevin.deldycke.com/wp-content/uploads/2010/12/free-assistance-mail.png"><img src="http://kevin.deldycke.com/wp-content/uploads/2010/12/free-assistance-mail-300x217.png" alt="" title="free-assistance-mail" width="300" height="217" class="aligncenter size-medium wp-image-2489" /></a></p><p>Et pour les paresseux, voici le modèle à copier/coller:</p><blockquote><p>Bonjour,</p><p>Je possède de nombreux comptes mails secondaires. La grande majorité de ceux ci sont obsolètes et abandonnés. Aussi je souhaiterais les supprimer, ainsi que toutes les données qui leurs sont associées (listes de diffusions, comptes mails, pages personnelles, bases de données SQL, statistiques, livres d&#8217;or, &#8230;).</p><p>Voici la liste des comptes mails secondaires:<br /> * compte1@free.fr<br /> * compte2@free.fr<br /> * compte3@free.fr<br /> * compte4@free.fr<br /> * compte5@free.fr</p><p>Pour information, tous ces comptes mails secondaires sont attachés à mon compte principal (ADSL) dont l&#8217;identifiant est &#8220;0123456789&#8243; et le mot de passe &#8220;XXXXXXXX&#8221;.</p></blockquote><p>Deux choses importante à noter:</p><ul><li>Il faut préciser son mot de passe. Ben oui, c&#8217;est comme ça. Ça fait partie de la procédure de vérification.</il><li>Les opérateurs prenant en charge votre demande ne peuvent pas supprimer plus de 5 comptes mails à la fois. Donc si comme moi vous en avez beaucoup, il faudra faire plusieurs demandes. Et comme on ne peut pas faire plusieurs demandes en parallèle, il faudra s&#8217;armer de patience.</li></ul><p>Une fois sur deux, votre demande va être immédiatement prise en charge, et vous recevrez la confirmation suivante:</p><blockquote><p>Madame, Monsieur,</p><p>Nous prenons connaissance de votre eMail.</p><p>Tout d&#8217;abord permettez moi de vous remercier, pour avoir respecté la procédure concernant la suppression des comptes.</p><p>Celle-ci vient d&#8217;être en effet, traitée à l&#8217;instant.</p><p>Ces comptes seront réellement effacés de notre serveur principal dans 48 heures, temps qu&#8217;il faudra à tous les autres serveurs pour synchroniser leurs bases.</p><p>Nous vous remercions, de votre confiance.</p><p>En espérant que notre réponse vous apportera une entière satisfaction, nous restons à votre disposition pour tout éventuel complément d&#8217;information.</p><p>Au nom de toute l&#8217;équipe Free, nous vous prions de recevoir, Madame, Monsieur, nos sincères salutations.</p></blockquote><p>L&#8217;autre moitié du temps, si votre compte à été créé avec une ligne <em>Free Haut Débit</em>, on vous enverra une demande de confirmation:</p><blockquote><p>Madame, Monsieur,</p><p>Nous prenons connaissance de votre eMail.</p><p>Je vous remercie pour votre message, vous l&#8217;avez adressé au bon service.</p><p>IMPORTANT :<br /> &#8212;&#8212;&#8212;-</p><p>NE RAJOUTEZ PAS LES COMPTES SUPPLEMENTAIRES NON DESIGNES A LA SUPPRESSION.</p><p>SI CEUX-CI SONT MENTIONNES, VOTRE DEMANDE NE SERA PAS TRAITEE.</p><p>C&#8217;est un compte qui a été créé sur FREE HAUT DEBIT.</p><p>La demande du mot de passe fait partie de la procédure, de suppression des comptes, par mesure de sécurité.</p><p>Sans cette information la suppression ne peut se faire.</p><p>Lorsque vous supprimez un compte, vous n&#8217;aurez plus accès aux services liés à ce compte (connexion RTC liée, e-mail, pages persos,).</p><p>Pour la suppression de votre ou vos comptes e-mail créé sur FREE HAUT DEBIT, nous vous serions gré de bien vouloir nous communiquer :<br /> - Votre identifiant (numéro de téléphone)<br /> - le mot de passe qui lui est rattaché.<br /> - le login du ou des comptes supplémentaires à supprimer UNIQUEMENT.<br /> - POUR QU&#8217;IL N&#8217;Y AIT PAS DE CONFUSION POSSIBLE, SI LE CAS EXISTE, SIGNALEZ MOI LES COMPTES AYANT UN LOGIN APPROCHANT AVEC CEUX A SUPPRIMER EXEMPLE : &#8220;VICTOIRES&#8221; &#038; &#8220;VICTOIRE&#8221; MERCI !</p><p>Un login appartenant à un compte secondaire qui a été supprimé, ne pourra être repris ultérieurement pour création d&#8217;un nouveau compte, et ceci définitivement.</p><p>Je vous remercie.</p><p>En espérant que notre réponse vous apportera une entière satisfaction, nous restons à votre disposition pour tout éventuel complément d&#8217;information.</p><p>Au nom de toute l&#8217;équipe Free, nous vous prions de recevoir, Madame, Monsieur, nos sincères salutations.</p></blockquote><p>Dans ce dernier cas, renvoyez un message de ce type pour relancer la procédure:</p><blockquote><p>Bonjour, et merci pour cette demande de confirmation.</p><p>J&#8217;ai lu attentivement vos explications et vos mises en garde. Je comprends très bien ce que ma demande implique (suppression définitive des données et impossibilité de recréation des logins).</p><p>Aussi je vous confirme bien ma demande, à savoir la suppression des comptes suivants:<br /> * compte1@free.fr<br /> * compte2@free.fr<br /> * compte3@free.fr<br /> * compte4@free.fr<br /> * compte5@free.fr</p><p>Pour information, tous ces comptes mails secondaires sont attachés à mon compte principal (ADSL) dont l&#8217;identifiant est &#8220;01234567890&#8243; et le mot de passe &#8220;XXXXXXXX&#8221;.</p><p>Merci pour votre prévenance.</p></blockquote><p>Et voila comment, après plusieurs semaines d&#8217;échanges avec le support de Free, j&#8217;ai simplifié ma vie ! <img src='http://kevin.deldycke.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> Dommage que la procédure ne soit pas automatisée&#8230;</p> ]]></content:encoded> <wfw:commentRss>http://kevin.deldycke.com/2010/12/comment-supprimer-des-comptes-mails-secondaires-free-fr/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>Google Apps&#8217; video chat comes with secure Gmail sessions</title><link>http://kevin.deldycke.com/2008/11/google-apps-video-chat-comes-with-secure-gmail-sessions/</link> <comments>http://kevin.deldycke.com/2008/11/google-apps-video-chat-comes-with-secure-gmail-sessions/#comments</comments> <pubDate>Tue, 18 Nov 2008 17:07:51 +0000</pubDate> <dc:creator>Kev</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[chat]]></category> <category><![CDATA[gmail]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[google apps]]></category> <category><![CDATA[h264]]></category> <category><![CDATA[https]]></category> <category><![CDATA[Jingle]]></category> <category><![CDATA[mail]]></category> <category><![CDATA[RTP]]></category> <category><![CDATA[security]]></category> <category><![CDATA[ssl]]></category> <category><![CDATA[TLS]]></category> <category><![CDATA[Video]]></category> <category><![CDATA[Web]]></category> <category><![CDATA[XMPP]]></category><guid isPermaLink="false">http://kevin.deldycke.com/?p=379</guid> <description><![CDATA[The story was spread by all top tech blogs last week: Google&#8217;s Gmail now features a video chat. And it requires the installation of a dedicated plugin. Alas, there is no such plugin for any other platform except &#8220;Windows XP &#8230; <a href="http://kevin.deldycke.com/2008/11/google-apps-video-chat-comes-with-secure-gmail-sessions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>The story was spread by <a href="http://www.gizmodo.com.au/2008/11/gmail_now_with_voice_chat_and_video.html">all</a> <a href="http://www.readwriteweb.com/archives/google_launches_video_and_voic.php">top</a> <a href="http://arstechnica.com/news.ars/post/20081111-gmail-gains-voice-and-video-chat-via-mac-and-pc-plug-in.html">tech</a> <a href="http://www.techcrunch.com/2008/11/11/google-adds-voice-and-video-chat-to-gmail/">blogs</a> last week: <a href="http://gmailblog.blogspot.com/2008/11/say-hello-to-gmail-voice-and-video-chat.html">Google&#8217;s Gmail now features a video chat</a>. And it requires the installation of a dedicated plugin.</p><p>Alas, there is no such plugin for any other platform except &#8220;<em>Windows XP and later</em>&#8221; (<a href="http://mail.google.com/videochat">according the official website</a>) and Macs (<a href="http://googleblog.blogspot.com/2008/11/talk-face-to-face-right-from-within.html">as read on the official blog</a>). So it&#8217;s a quite sad news for us Linux users. Indeed, I&#8217;m confident about a future seamless integration into the free software ecosystem, as the Gmail&#8217;s video chat is <a href="http://juberti.blogspot.com/2008/11/say-hello-to-gmail-voice-and-video-chat.html">based on a stack</a> of open (<a href="http://blog.senko.net/2008/11/12/gmail-videochat-the-good-the-bad-and-the-ugly/">or soon-to-be, according the recent controversy</a>) standards and protocols: <a href="http://xmpp.org">XMPP</a>/<a href="http://en.wikipedia.org/wiki/Jingle_(protocol)">Jingle</a>, <a href="http://wikipedia.org/wiki/Scalable_Video_Coding">h264/SVC</a> &#038; <a href="http://wikipedia.org/wiki/Real-time_Transport_Protocol">RTP</a>.</p><p>Anyways, that&#8217;s not the main purpose of this post.</p><p>I just wanted to point out an update that was not reported by the news: as soon as it was officially made available for the public, the brand new <a href="http://googleappsupdates.blogspot.com/2008/11/browser-based-voice-and-video-chat.html">video feature was released for Google Apps&#8217; Gmail</a> too.</p><p>Not only that, Google also backported to Apps&#8217; Gmail the <a href="http://blog.wired.com/27bstroke6/2008/08/gmail-https-doe.html#comment-127126868">much awaited HTTPs option</a> that allow you to force secure encryption of your sessions:<br /> <img src="http://kevin.deldycke.com/wp-content/uploads/2008/11/gmail-force-https.png" alt="" title="gmail-force-https" width="390" height="82" class="aligncenter size-full center wp-image-380" /></p><p>These two updates are quite interesting to note. I long as I remember (and I might be wrong), Google Apps components were always out-of-sync with their legacy equivalent. So this maybe a sign of change in a really good direction for Google Apps users ! <img src='http://kevin.deldycke.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://kevin.deldycke.com/2008/11/google-apps-video-chat-comes-with-secure-gmail-sessions/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 2/21 queries in 0.013 seconds using apc
Object Caching 650/691 objects using apc

Served from: kevin.deldycke.com @ 2012-02-08 10:16:02 -->
