<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/" xmlns:indexing="urn:atom-extension:indexing" indexing:index="no"><access:restriction xmlns:access="http://www.bloglines.com/about/specs/fac-1.0" relationship="deny"/>
  <title>Planet Zentyal</title>
  <updated>2019-01-03T04:00:03Z</updated>
  <generator uri="http://intertwingly.net/code/venus/">Venus</generator>
  <author>
    <name>Zentyal</name>
    <email>it@zentyal.com</email>
  </author>
  <id>http://planet.zentyal.org/atom.xml</id>
  <link href="http://planet.zentyal.org/atom.xml" rel="self" type="application/atom+xml"/>
  <link href="http://planet.zentyal.org/" rel="alternate"/>

  <entry xml:lang="es-ES">
    <id>http://www.jbahillo.com/?p=747</id>
    <link href="https://www.jbahillo.com/syncing-zentyal-ca-between-two-zentyal-servers/" rel="alternate" type="text/html"/>
    <title>Syncing Zentyal CA between two Zentyal servers</title>
    <summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">This document describes the procedure to set up CA sync between two Zentyal servers. We will use for this rsync being run in a cron job. We will use root in the side that starts the connection (provided script will…<p class="more-link-p"><a class="more-link" href="https://www.jbahillo.com/syncing-zentyal-ca-between-two-zentyal-servers/">Read more →</a></p></div>
    </summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>This document describes the procedure to set up CA sync between two Zentyal servers. We will use for this rsync being run in a cron job.<br/>
We will use root in the side that starts the connection (provided script will be run by cron) and ebox for the side that receives it. We could use any other user, but using user ebox avoid having to create extra unneeded configurations. For the sake of the example we’ll be referring to two servers here:</p>
<ol>
<li>(Server A) The server on which the CA existed previously, and from which the files for the CA will be taken.</li>
<li>(Server B). The secondary server to which we want to export the CA which exists on Server A.</li>
</ol>
<p>In order to better understand the procedure we must keep in mind that:<br/>
Zentyal CA files are stored on /var/lib/zentyal/CA<br/>
This folder has these permissions:</p>
<pre class="brush: bash; gutter: true">drwx r-x --x 9 ebox ebox</pre>
<p>ebox user has as his home the folder /var/lib/zentyal/</p>
<ul>
<li>With this information, we’ll proceed to follow these steps:Check that rsync is installed in server B, and if not install it.</li>
</ul>
<pre class="brush: bash; gutter: true"> sudo apt-get install rsync</pre>
<ul>
<li>Check if root has a rsa key in server B. If it did not have, create if with ssh-keygen</li>
</ul>
<pre class="brush: bash; gutter: true"> if [ ! -f /root/.ssh/id_rsa.pub ] ; then /usr/bin/ssh-keygen" ; else echo "Key Already exists" ; fi</pre>
<p> </p>
<ul>
<li>Create folder /var/lib/zentyal/.ssh/ and create file authorized_keys</li>
</ul>
<pre class="brush: bash; gutter: true">sudo mkdir -p /var/lib/zentyal/.ssh/
sudo touch /var/lib/zentyal/.ssh/authorized_keys</pre>
<ul>
<li>Chown both to ebox.ebox:</li>
</ul>
<pre class="brush: bash; gutter: true">sudo chown -R ebox.ebox /var/lib/zentyal/.ssh/</pre>
<ul>
<li>Copy the root public key to /var/lib/zentyal/.ssh/authorized_keys of server A. Given ebox user has no password you will have to do it by hand, as long as you won’t be able to do it with ssh-copy-id . Thus, open /root/.ssh/id_rsa.pub and paste its contents into /var/lib/zentyal/.ssh/authorized_keys of server A.</li>
</ul>
<ul>
<li>Test that you can ssh without using password from root as ebox user:</li>
</ul>
<pre class="brush: actionscript3; gutter: true">sudo ssh ebox@SERVER-A-IP</pre>
<ul>
<li>Now you can:</li>
</ul>
<p style="padding-left: 60px;">1. Limit connections from IP:</p>
<p style="padding-left: 90px;">To do so edit in SERVER A /var/lib/zentyal/.ssh/authorized_keys, and add prior to the ssh-rsa this:</p>
<pre class="brush: bash; gutter: true">from="SERVER-B-IP" ssh-rsa dasghgdgh+RqUVx5wzgnaMxH2Km5KRx0Wzvsa5YvxjwERVVXs2mUEes5mDpoDMX9pUAwKqPCS5C
LyDwI+t0xNmVzPzeZjhypIfvBmgaG7pBNx7Zted7C+fha1X3SUmT4TguLzy7pfWbG7CKr2XkkFUYUOdUniYc99NsIxY1/51+/jjhfg
jhfg/Pr5jqH+jhfjfgj/jhfgjh+9kErROS1z root@hostname</pre>
<p style="padding-left: 60px;">2.  Ensuring that only rsync is used for this ssh connection:<br/>
To do so edit in SERVER A /var/lib/zentyal/.ssh/authorized_keys, and add prior to the ssh-rsa this:</p>
<pre class="brush: bash; gutter: true">command="/usr/share/bin/check_command.sh” ssh-rsa fdasghgdgh+RqUVx5wzgnaMxH2Km5KRx0Wzvsa5YvxjwERV
VXs2mUEes5mDpoDMX9pUAwKqPCS5CLyDwI+t0xNmVzPzeZjhypIfvBmgaG7pBNx7Zted7C+fha1X3SUmT4TguLzy7pfWbG7CKr
2XkkFUYUOdUniYc99NsIxY1/51+/jjhfgjhfg/Pr5jqH+jhfjfgj/jhfgjh+9kErROS1z root@hostname</pre>
<p style="padding-left: 60px;">Now, you must add the script it mentions this line (script taken from http://troy.jdmz.net/rsync/index.html)</p>
<pre class="brush: bash; gutter: true">#!/bin/sh

case "$SSH_ORIGINAL_COMMAND" in
*\&amp;*)
echo "Rejected"
;;
*\(*)
echo "Rejected"
;;
*\{*)
echo "Rejected"
;;
*\;*)
echo "Rejected"
;;
*\&lt;*)
echo "Rejected"
;;
*\`*)
echo "Rejected"
;;
*\|*)
echo "Rejected"
;;
rsync\ --server*)
$SSH_ORIGINAL_COMMAND
;;
*)
echo "Rejected"
;;
esac</pre>
<p style="padding-left: 60px;">If you use both, separate them with a “,”:</p>
<pre class="brush: bash; gutter: true">from="SERVER-B-IP",command="/usr/share/bin/check_command.sh” ssh-rsa fdasghgdgh+RqUVx5wzgnaMxH2Km5KRx0Wzvsa5Y
vxjwERVVXs2mUEes5mDpoDMX9pUAwKqPCS5CLyDwI+t0xNmVzPzeZjhypIfvBmgaG7pBNx7Zted7C+fha1X3SUmT4TguLzy7pfWbG7CKr2Xkk
FUYUOdUniYc99NsIxY1/51+/jjhfgjhfg/Pr5jqH+jhfjfgj/jhfgjh+9kErROS1z root@hostname</pre>
<p> </p>
<ul>
<li>Create the folder where you’re going to store the script that will do the sync and give it appropriate permissions:</li>
</ul>
<pre class="brush: bash; gutter: true">mkdir /var/local/rsync-ca
chmod 754 /var/local/rsync-ca</pre>
<p> </p>
<ul>
<li>Create the script file and give it proper permissions:</li>
</ul>
<pre class="brush: bash; gutter: true"> chmod 740 /var/local/sync-ca/rsync-ca</pre>
<p> </p>
<ul>
<li>Place the following content on the script (change variables as needed)</li>
</ul>
<pre class="brush: bash; gutter: true">#!/bin/bash
RSYNC=/usr/bin/rsync
SSH=/usr/bin/ssh
KEY=/root/.ssh/id_rsa
RUSER=ebox
RHOST=SERVER-A-IP
RPATH=/var/lib/zentyal/CA
LPATH=/var/lib/zentyal/
$RSYNC -az -e "$SSH -i $KEY" $RUSER@$RHOST:$RPATH $LPATH</pre>
<p> </p>
<ul>
<li>Test the script and confirm that it works as expected</li>
</ul>
<p> </p>
<ul>
<li>Create the cron job for the script we have just created. For instance, to run this daily write under /etc/cron.d/rsync-ca :</li>
</ul>
<pre class="brush: bash; gutter: true"> # /etc/cron.d/rsync-ca - Runs the script that syncs CA with SERVERA daily

SHELL=/bin/sh
PATH=/usr/bin:/bin

# Log data for report hourly
@daily root /var/local/rsync-ca/rsync-ca</pre></div>
    </content>
    <updated>2014-02-21T18:54:02Z</updated>
    <category term="GNU/Linux"/>
    <category term="Zentyal"/>
    <category term="Zentyal-World"/>
    <author>
      <name>Javier Bahillo</name>
    </author>
    <source>
      <id>https://www.jbahillo.com</id>
      <link href="https://www.jbahillo.com/category/zentyal-world/feed/" rel="self" type="application/atom+xml"/>
      <link href="https://www.jbahillo.com" rel="alternate" type="text/html"/>
      <subtitle>Blog de un Administrador de Sistemas</subtitle>
      <title>Zentyal-World – Javier Bahillo</title>
      <updated>2019-01-03T04:00:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/jacalvo/?p=250</id>
    <link href="http://blogs.zentyal.org/jacalvo/2014/01/31/anste-0-11-released/" rel="alternate" type="text/html"/>
    <title>ANSTE 0.11 released!</title>
    <summary>It has been a long time since a new version of ANSTE was officially published, but this is also the biggest release so far. It’s not only a bugfixing release with minor improvements, this one has big changes. It’s not 1.0 yet, but we’re almost there So, let’s summarize the main highlights: New anste-init command [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>It has been a long time since a new version of <a href="http://www.anste.org" target="_blank" title="ANSTE">ANSTE</a> was officially published, but this is also the biggest release so far. It’s not only a bugfixing release with minor improvements, this one has big changes. It’s not 1.0 yet, but we’re almost there <img alt=":)" class="wp-smiley" src="http://blogs.zentyal.org/jacalvo/wp-includes/images/smilies/icon_smile.gif"/> </p>
<p>So, let’s summarize the main highlights:</p>
<ul>
<li>New anste-init command to easily create the skeleton of a new project</li>
<li>Added python-anste wrapper for python-selenium</li>
<li>Completed migration to YAML format, removed old XML support</li>
<li>Allow to auto-download images from a server instead of creating them</li>
<li>Use QCOW2 format instead of RAW for images</li>
<li>Snapshots support via new anste-snapshot tool</li>
<li>Tons of fixes and improvements</li>
</ul>
<p>Full changelog is availabe at: <a href="https://github.com/Zentyal/anste/blob/master/ChangeLog" target="_blank">https://github.com/Zentyal/anste/blob/master/ChangeLog</a></p>
<p>You have all the information about ANSTE at the brand new <a href="http://www.anste.org">http://www.anste.org</a> webpage, which features a fresh and renewed style, and also a demo screencast will be published coming very soon! <img alt=":)" class="wp-smiley" src="http://blogs.zentyal.org/jacalvo/wp-includes/images/smilies/icon_smile.gif"/> </p>
<p>And by the way, if you are going to <a href="https://fosdem.org/2014/" target="_blank">FOSDEM</a>, don’t miss the <a href="http://www.zentyal.org/2014/01/zentyal-to-give-talk-at-the-fosdem-1-2-february-brussels-belgium/" target="_blank">ANSTE talk</a> there!</p>
<p> </p></div>
    </content>
    <updated>2014-01-31T15:38:49Z</updated>
    <category term="Uncategorized"/>
    <author>
      <name>jacalvo</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/jacalvo</id>
      <link href="http://blogs.zentyal.org/jacalvo/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/jacalvo" rel="alternate" type="text/html"/>
      <subtitle>Just another Zentyal blogs weblog</subtitle>
      <title>jacalvo's blog</title>
      <updated>2014-01-31T15:40:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="es-ES">
    <id>http://www.jbahillo.com/?p=632</id>
    <link href="https://www.jbahillo.com/mail-server-in-zentyal-understanding-differences-between-mail-and-groupware-modules/" rel="alternate" type="text/html"/>
    <title>Mail server in Zentyal – Understanding differences between Mail and Groupware modules</title>
    <summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Many people get confused when installed Zentyal about the differences between Zentyal Mail and Zentyal Groupware modules. Zentyal provides mail functionality through Zentyal Mail module. It uses Postfix as the daemon to provide smtp functionality, and Dovecot as the daemon…<p class="more-link-p"><a class="more-link" href="https://www.jbahillo.com/mail-server-in-zentyal-understanding-differences-between-mail-and-groupware-modules/">Read more →</a></p></div>
    </summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Many people get confused when installed Zentyal about the differences between Zentyal Mail and Zentyal Groupware modules.</p>
<p>Zentyal provides mail functionality through Zentyal Mail module. It uses Postfix as the daemon to provide smtp functionality, and Dovecot as the daemon for POP3(s) and IMAP(s) functionalities. Where are mails stored? It stores mail files in /var/vmail/. You can enable which services (POP/IMAP) you want to have enabled in the Zentyal GUI:</p>
<p/><center><a href="http://www.jbahillo.com/wp-content/uploads/2013/07/pop31.png"><img alt="pop31" class="aligncenter size-medium wp-image-685" height="123" src="http://www.jbahillo.com/wp-content/uploads/2013/07/pop31-300x123.png" width="300"/></a></center><br/>
Finally, you can use Zentyal Webmail module in order for your users to be able to check email using a browser. Zentyal uses Roundcube for this.<p/>
<p>Zentyal Groupware (zarafa)provides as well mail functionality. Zarafa will store mail on its database (Zarafa MySQL database when using Zentyal 3.0),and provides Webaccess as the interface for webmail. So What’s the difference with them?</p>
<ul>
<li>Zarafa provides you an address book with your LDAP users, so they don’t need to include their collegues by hand.</li>
<li>Zarafa allows you to use (collaborative) calendar where you can write and share your day-by-day events.</li>
<li>And the main one: Zarafa provides you with the possibility of allowing your users to use Exchange accounts for your domain (using the so-called Outlook Connectors) and to use their mobiles for Exchange accounts (using z-push).</li>
</ul>
<p>So far so easy isn’t it? But many people get confused when configuring these. In order to clarify these, we’ll try to make clearer how Zarafa works, so configuration should be easier.<br/>
We’ll take for this a simple environment, with no Mailfilter module involved (as it will be transparent for this), and Zentyal Mail, Webmail, Zentyal Zarafa and Zentyal Webaccess (which is installed when installed zentyal-zarafa module)</p>
<p>For the first step, let’s take an environment with Zentyal Mail with POP3, Secure POP3, IMAP, and IMAPS configured and Zentyal Webmail modules. In this environment we have a single domain, say zentyal-domain.loc, and three users:</p>
<ul>
<li>john@zentyal-domain.loc</li>
<li>doe@zentyal-domain.loc</li>
<li>foo@zentyal-domain.loc</li>
</ul>
<p>User john retrieves his mail through a Thunderbird/Outlook client with IMAP  and when he’s abroad, he checks it using it IMAPS on its mobile)</p>
<p>User doe retrieves his mail through POP3, and when he is abroad he checks it using IMAPS on its mobile)</p>
<p>User foo check his mail using webmail.</p>
<p>So, in this state-of-things any user can check his email using any method he might prefer (POP3, POP3S, IMAP, IMAPS or Webmail). But now we install the Zarafa module, and a new user bar@zentyal-domain.loc , and we define this user as a Zarafa user:</p>
<p/><center><a href="http://www.jbahillo.com/wp-content/uploads/2013/07/user-zarafa.png"><img alt="user-zarafa" class="aligncenter size-medium wp-image-686" height="101" src="http://www.jbahillo.com/wp-content/uploads/2013/07/user-zarafa-300x101.png" width="300"/></a></center><p/>
<p> </p>
<p>So, our user goes straight away to its Thunderbird mail client, and configures it but…gets nothing. We know that the should at least have received the welcome to the company email, so… what might have happened? He also checks webmail… and he finds the same result.</p>
<p>As we had told standard mail stores mail in /var/vmail while Zarafa does in MySQL. When a user is marked as non-Zarafa user its mail is sent to the filesystem, and if it is a Zarafa user mail is sent to MySQL. Now let us have a look to the first screenshot of this article. Yes, we still have enabled POP3, POP3S, IMAP and IMAPS. So meanwhile  we keep this configuration, no client can be used to check a zarafa account (unless using a Exchange account with an Outlook connector<strong>) as every method is still reserved for standard mail.  </strong>About the webmail, well you might have guessed, you user should point his browser to /webaccess (or /webapp, if webapp has been installed)  in order to check Zarafa mail, as <strong>Webmail module only checks standard mail</strong>.</p>
<p>So, in order for our user bar to be able to use Thunderbird, we have to disable in mail configuration some service. For our example we’ll leave the secure protocols for mail.<br/>
</p><center><br/>
<a href="http://www.jbahillo.com/wp-content/uploads/2013/07/configuring-mail.png"><img alt="configuring-mail" class="aligncenter size-medium wp-image-688" height="120" src="http://www.jbahillo.com/wp-content/uploads/2013/07/configuring-mail-300x120.png" width="300"/></a></center><p/>
<p>After saving changes, you’ll be able to enable the POP3 and IMAP gateways for Zarafa, and our user will be able to check Zarafa mail using these protocols. Don’t try enabling any gateway without disabling first on mail module config, as it will logically complain, as  the same port cannot be bind by two services:</p>
<p/><center><a href="http://www.jbahillo.com/wp-content/uploads/2013/07/zarafa-config.png"><img alt="zarafa-config" class="aligncenter size-medium wp-image-687" height="95" src="http://www.jbahillo.com/wp-content/uploads/2013/07/zarafa-config-300x95.png" width="300"/></a></center><p/></div>
    </content>
    <updated>2013-06-28T07:09:04Z</updated>
    <category term="GNU/Linux"/>
    <category term="Zentyal"/>
    <category term="Zentyal-World"/>
    <category term="dovecot"/>
    <category term="mail"/>
    <category term="postfix"/>
    <category term="zarafa"/>
    <category term="zentyal"/>
    <author>
      <name>Javier Bahillo</name>
    </author>
    <source>
      <id>https://www.jbahillo.com</id>
      <link href="https://www.jbahillo.com/category/zentyal-world/feed/" rel="self" type="application/atom+xml"/>
      <link href="https://www.jbahillo.com" rel="alternate" type="text/html"/>
      <subtitle>Blog de un Administrador de Sistemas</subtitle>
      <title>Zentyal-World – Javier Bahillo</title>
      <updated>2019-01-03T04:00:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=778</id>
    <link href="http://blogs.zentyal.org/gueststars/2013/06/17/zentyal-auth-and-shared-folders-configuration-on-linux/" rel="alternate" type="text/html"/>
    <title>Zentyal Auth and Shared Folders configuration on Linux</title>
    <summary>Xavy Bahillo has just published a short article on configuration of Authentication and Shared Folders on Ubuntu using Zentyal as server. He is showing a solution with SSSD and pam_mount. http://www.jbahillo.com/remote-identification-and-storage  </summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Xavy Bahillo has just published a short article on <a href="http://www.jbahillo.com/identificacion-y-almacenamiento-remoto/" target="_blank">configuration of Authentication and Shared Folders</a> on Ubuntu using Zentyal as server.</p>
<p>He is showing a solution with <em>SSSD</em> and <em>pam_mount</em>.</p>
<p><a href="http://www.jbahillo.com/remote-identification-and-storage">http://www.jbahillo.com/remote-identification-and-storage</a></p>
<p> </p></div>
    </content>
    <updated>2013-06-17T09:30:15Z</updated>
    <category term="Communication"/>
    <category term="Development"/>
    <category term="auth"/>
    <category term="pam_mount"/>
    <category term="shared folders"/>
    <category term="sssd"/>
    <category term="Zentyal"/>
    <author>
      <name>jjmontes</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2014-04-04T13:55:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=1031</id>
    <link href="http://blogs.zentyal.org/gueststars/2013/06/05/how-to-easily-deploy-and-manage-an-it-network-in-a-secondary-school-with-zentyal/" rel="alternate" type="text/html"/>
    <title>How to easily deploy and manage an IT network in a secondary school with Zentyal</title>
    <summary>Zentyal server includes the most common network infrastructure services required by any type of organization. In fact, besides being used in small and medium enterprises, it is very popular in the education sector. Thanks to its ease of deployment and maintenance, many primary and secondary schools meet their network infrastructure needs using Zentyal server. In [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p style="text-align: center;"><a href="http://blogs.zentyal.org/gueststars/2013/06/05/how-to-easily-deploy-and-manage-an-it-network-in-a-secondary-school-with-zentyal/zentyalies/" rel="attachment wp-att-1070"><img alt="" class="aligncenter  wp-image-1070" height="373" src="http://blogs.zentyal.org/gueststars/files/2013/05/zentyalIES.jpg" width="560"/></a></p>
<p>Zentyal server includes the most common network infrastructure services required by any type of organization. In fact, besides being used in small and medium enterprises, it is very popular in the education sector. Thanks to its ease of deployment and maintenance, many primary and secondary schools meet their network infrastructure needs using Zentyal server.</p>
<p>In this post we would like bring your attention to this Master Thesis project entitled <a href="http://openaccess.uoc.edu/webapps/o2/bitstream/10609/14897/6/gbermejosTFM0612memoria.pdf">ZentyES: Managing a secondary school network with Zentyal</a> that will be useful for those <strong>system administrators and computer teachers looking for a complete network management solution for their education center</strong>. In this document you will find detailed information about how to deploy a Zentyal-based computer network in a secondary school and how to set it up quickly through Zentyal’s easy-to-use web interface.</p>
<p>The author of this project <strong>Guadalupe Bermejo</strong> has done a great job and we are proud to broadcast it on our channels. Her Master’s Thesis, written in Spanish, has been carried out within the <strong>Master in Free Software of Università Oberta de Catalunya</strong>. The project provides an analysis of requirements and alternatives, together with an implementation study with great attention to detail, extensive documentation and justification of decisions, all with an impressive level of professionalism.</p>
<p>The network architecture proposed in the project <strong>meets the current requirements</strong> of the center, but also takes into account the <strong>future needs</strong>. A thorough description of the implementation, with detailed screenshots and explanations have been included for the present and future system administrators to ease the understanding. Concretely, Bermejo proposes how to manage the local network infrastructure with <strong>DHCP and DNS services</strong>, to use the <strong>gateway for Internet access</strong>, and <strong>HTTP proxy for content filtering</strong>. [1]</p>
<p style="text-align: center;"><a href="http://blogs.zentyal.org/gueststars/2013/06/05/how-to-easily-deploy-and-manage-an-it-network-in-a-secondary-school-with-zentyal/ies-network/" rel="attachment wp-att-1036"><img alt="" class="aligncenter  wp-image-1036" height="323" src="http://blogs.zentyal.org/gueststars/files/2013/05/ies-network.png" width="409"/></a></p>
<p>If interested, you can learn about some other <strong>real use cases in schools</strong> where Zentyal-based solutions are used. For example, the use case of <a href="http://www.zentyal.com/customers/aalborg-studenterkursus/">Studenterkursus High School in Aalborg, Denmark</a>, that uses Zentyal as Office Server, Gateway and infrastructure manager. And the use case in the <a href="http://www.zentyal.com/customers/school-2-0-program/">Department of Education of Aragon (Spain)</a>, that has deployed over 80 Zentyal servers in schools across the region.</p>
<p>During these years we have found out that many times it is the <strong>computer science teachers</strong> who actually take charge of maintaining their center’s network infrastructure and thanks to this, many learn about Zentyal. In case of vocation education centers, when teachers find out that Zentyal server includes most of the functionality they teach to their students, grouped in an all-in-one solution with an easy-to-use web interface, they often decide to include <strong>Zentyal studies in their training programs</strong>. And this is how <strong>Zentyal Academy</strong>, training program for official vocational education centers, was born! Read more about Zentyal Academy in <strong>this post about our participation in PUE’s Tech Learning Day</strong> and at <a href="http://www.zentyal.com/training/academy-program/">Academy Program-page</a>.</p>
<p>[1] Please note that the project is based on Zentyal 2.2, so if you plan to use it step by step to create your own Zentyal network, you might find out that there are some slight changes. But in essence it is very similar to Zentyal 3.0 so that it can perfectly serve as a basic guide.</p></div>
    </content>
    <updated>2013-06-05T08:27:06Z</updated>
    <category term="Communication"/>
    <author>
      <name>Marta Cambronero</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2014-04-04T13:55:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=1001</id>
    <link href="http://blogs.zentyal.org/gueststars/2013/05/24/spoiler-alert-a-new-zentyal-org-site-coming-soon/" rel="alternate" type="text/html"/>
    <title>Spoiler alert! A new Zentyal.org site coming soon!</title>
    <summary>Zentyal Team is proud to announce that a new Zentyal.org website is coming soon! This is something that we have had in our minds for quite some time already and now we are extremely glad to let you know that next Wednesday May 29 is the day when it will go live! The main goals [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Zentyal Team is proud to announce that <strong>a new Zentyal.org website</strong> is coming soon! This is something that we have had in our minds for quite some time already and now we are extremely glad to let you know that next <strong>Wednesday May 29</strong> is the day when it will go live!</p>
<p>The main goals have been to<strong> improve the hierarchy and structure</strong> of the website in order to make it easier to access and share interesting information. We have also wanted to <strong>highlight the How-tos and tutorials made by Zentyal users</strong> so that all this great content will become more accessible for the whole community to enjoy it!</p>
<p>The site has been divided in <strong>four major blocks of content</strong> with the aim of making it much easier and quicker to find what you are looking for. Moreover some <strong>new pages </strong>have been included: Technical features of Zentyal server, external how-tos, information on training, visual resources and ideas on how you can contribute to the project.</p>
<p>Here you can see a detail of the four main sections on the homepage:</p>
<p style="text-align: center;"><a href="http://blogs.zentyal.org/gueststars/2013/05/24/spoiler-alert-a-new-zentyal-org-site-coming-soon/spoiler_org_1/" rel="attachment wp-att-1002"><img alt="" class="aligncenter  wp-image-1002" height="285" src="http://blogs.zentyal.org/gueststars/files/2013/05/spoiler_org_1.png" width="471"/></a></p>
<p style="text-align: left;">And here you have a detail on how the News section will look like:</p>
<p style="text-align: center;"><a href="http://blogs.zentyal.org/gueststars/2013/05/24/spoiler-alert-a-new-zentyal-org-site-coming-soon/spoiler_org_2/" rel="attachment wp-att-1006"><img alt="" class="aligncenter  wp-image-1006" height="285" src="http://blogs.zentyal.org/gueststars/files/2013/05/spoiler_org_2.png" width="471"/></a></p>
<p style="text-align: left;">A full list of technical features of Zentyal server will be available at one sight:</p>
<p style="text-align: center;"><a href="http://blogs.zentyal.org/gueststars/2013/05/24/spoiler-alert-a-new-zentyal-org-site-coming-soon/spoiler_org_3/" rel="attachment wp-att-1008"><img alt="" class="aligncenter  wp-image-1008" height="285" src="http://blogs.zentyal.org/gueststars/files/2013/05/spoiler_org_3.png" width="471"/></a></p>
<p style="text-align: left;">So, stay tuned! The new site will go live <strong>on May 29</strong> and you can <strong>join the Zentyal Team</strong> to spread the word of the coolest website in the world <img alt=";)" class="wp-smiley" src="http://blogs.zentyal.org/gueststars/wp-includes/images/smilies/icon_wink.gif"/> !</p></div>
    </content>
    <updated>2013-05-24T09:54:32Z</updated>
    <category term="Communication"/>
    <category term="Community"/>
    <author>
      <name>Marta Cambronero</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2014-04-04T13:55:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=768</id>
    <link href="http://blogs.zentyal.org/gueststars/2013/05/03/music-at-zentyals-hq-pt-ii/" rel="alternate" type="text/html"/>
    <title>Music at Zentyal’s HQ (pt. II)</title>
    <summary>It seemed that five songs could be good enough for a post, so here we go with another five different songs from the people at Zentyal HQ. Suspicions were right, we are actually persons, sometimes even humans, and we use to work listening to music at our headphones. Thus, I hope you could know us [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>It seemed that five songs could be good enough for a post, so here we go with another five different songs from the people at Zentyal HQ. Suspicions were right, <strong>we are actually persons, sometimes even humans</strong>, and we use to work listening to music at our headphones. Thus, I hope you could know us a little ‘byte’ more with these posts.</p>
<p>xX_SpOiLeR aLeRt_Xx (xD) It seems that in this song squad classics have arrived, but also some Spanish themes, so get your ears ready for these <strong>songs chosen by people at Zentyal HQ</strong>. If there would be a hidden camera over here, you will notice that headbanging duels is a local sport. Guess why? Let’s discover it!</p>
<h3>AC/DC – Thunderstruck</h3>
<p>Ironman movie is cool, but we all agree that it is because of those AC/DC moments. Anyway, Mateo’s choice should be on that place where only brilliant songs deserve to be at. Thunderstruck is one of those, simple but great. Let’s listen to it in this <a href="http://youtu.be/v2AC41dglnM" target="_blank">live performance</a>.</p>
<h3>Jorn – Blacksong</h3>
<p>Melodic guitars and Jorn Lande’s voice; perfect ingredients for a terrific recipe. It was hard for Neru to choose just only one song for these posts, but after several changes this was the chosen one. What do you think? <a href="http://youtu.be/uVPSPXwL7Fg" target="_blank">Check it out</a> at Youtube.</p>
<h3>Joaquín Sabina – Y sin embargo</h3>
<p>Joaquín Sabina is one of the best sing-songwriter in Spain. Some of his songs are widely know over here, and this is one of those. It does not matter which kind of music do you like, everyone will know these lyrics. Let’s check out <a href="http://youtu.be/TEySFSWvCy4" target="_blank">Exekias’ choice</a> in Youtube (You can turn on English subtitles, highly recommended).</p>
<h3>The White Stripes – Seven Nation Army</h3>
<p>Talking about classics, here it comes a newer one. Everyone who listen to that first song notes would recognise it. Maybe not the title or the band, but sooner or later everyone has listen to it. Do not know the song? Listen to <a href="http://youtu.be/0J2QdDbelmY" target="_blank">Bencer’s choice</a>!</p>
<h3>Tachenko – Escapatoria</h3>
<p>To conclude with this second instalment a local band come up. Tachenko is an indie pop band from Zaragoza, but it is also sixstone’s choice. It is impossible not cheering up while listening to this song, <a href="http://youtu.be/ZrTqK4DM-7Q" target="_blank">check it out</a>.</p></div>
    </content>
    <updated>2013-05-03T09:01:04Z</updated>
    <category term="Communication"/>
    <author>
      <name>Miguel Julián</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2014-04-04T13:55:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=983</id>
    <link href="http://blogs.zentyal.org/gueststars/2013/04/01/preview-of-the-future-zentyal-3-2-theme/" rel="alternate" type="text/html"/>
    <title>Preview of the future Zentyal 3.2 theme</title>
    <summary>Hi all, One of our main goals for Zentyal 3.2 is to revamp the look and feel of the Zentyal interface, we want to give it a new fresh touch of kindness but making it also a bit more aggressive. We’ve done some work already and you can have a sneak peek if you do [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Hi all,</p>
<p>One of our main goals for Zentyal 3.2 is to revamp the look and feel of the Zentyal interface, we want to give it a new fresh touch of kindness but making it also a bit more aggressive. We’ve done some work already and you can have a sneak peek if you do the following on a root shell of your Zentyal machine:</p>
<pre>apt-get update
apt-get install z32-theme-preview
</pre>
<p>In the improbable case you get tired of it and want to switch back to the classic theme, you can do it with just:</p>
<pre>apt-get purge z32-theme-preview
</pre>
<p>And remember the Zentyal team don’t sleep, we just wait.</p></div>
    </content>
    <updated>2013-04-01T10:13:28Z</updated>
    <category term="Communication"/>
    <author>
      <name>jacalvo</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2014-04-04T13:55:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=950</id>
    <link href="http://blogs.zentyal.org/gueststars/2013/03/31/introducing-the-zentyal-configuration-backup/" rel="alternate" type="text/html"/>
    <title>Introducing the Zentyal configuration backup</title>
    <summary>I am sure that I don’t need to drill you about the importance of backing up your system. Ideally the whole system is backed up, but this costs time and space. However, as very convenient shortcut, there is an easy (and free) way of backing up the Zentyal server configuration. With this configuration backup you [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>I am sure that I don’t need to drill you about the importance of backing up your system. Ideally the whole system is backed up, but this costs time and space.</p>
<p>However, as very convenient shortcut, there is an easy (and free) way of backing up the <strong>Zentyal</strong> server configuration. With this configuration backup you can quickly restore your <strong>Zentyal</strong> server to a production state. And it does not need to be the same box, you can also use the configuration backup to apply the configuration to a new server.</p>
<p>The configuration backup also includes all the user and group accounts so your users can continue logging in to the services they use.</p>
<p>There are several ways to make and restore the configuration backup. The more versatile is to use Zentyal Cloud Service that comes with the Free Account registration: this way the backup will reside in the cloud and you could apply it to any of your Zentyal boxes. You can get a free account <a href="https://remote.zentyal.com/register/">here</a>.</p>
<p>To access to <a href="http://doc.zentyal.org/en/backup.html#zentyal-configuration-backup'">this feature</a> in the web interface, you must click in System -&gt; Import/Export configuration. A console interface is also available through the programs ‘/usr/share/zentyal/make-backup’ and ‘/usr/share/zentyal/restore-backup’.</p>
<h3>How this works?</h3>
<p>To the curious among us, let me explain its internal workings. The backup is just an archive file in <a href="http://en.wikipedia.org/wiki/Tar_%28computing%29" target="_blank">TAR</a> format, that includes the files describing the configuration.</p>
<p>First, the backup process writes some files with metadata, like the current date or the packages installed in the system. Then it loops through the installed modules making each one to dump its configuration.</p>
<p>Remember that the configuration values we see reflected in the web interface are stored in a <a href="http://en.wikipedia.org/wiki/Redis" target="_blank">Redis</a> backend. So each module must dump its <strong>Redis</strong> keys and value to a file. However the <strong>Redis</strong> keys are not sufficient for all modules. Remember that the users and its related data are stored in <a href="http://en.wikipedia.org/wiki/LDAP" target="_blank">LDAP</a>. In this case the <em>users module</em> does a dump of the full directory in LDIF format.</p>
<p>Likewise the <em>samba module</em> dumps its internal database and the modules which use OpenSSL certificates to store them in the backup archive.</p>
<p>When the backup is finished, it is stored in your local file system: you can download or restore it from the <strong>Zentyal</strong> web interface.</p>
<p>For restoring a backup the same process is run in reverse, picking each of the files and importing them to our <strong>Zentyal</strong> system.</p>
<h3>Configuration backup and the Backup module</h3>
<p>As you may known Zentyal also has a <a href="http://doc.zentyal.org/en/backup.html">file backup module</a> which allows you to set the files to be backed up, the destination of the backup and its frequency.</p>
<p>A configuration backup is added to the backup of the selected files to have better recovery odds.</p>
<h3>Backup in the cloud</h3>
<p>One problem remains in this configuration backup schema and it is to store it in a remote, always-accessible location. The location which meets these requirements is the Internet, now dubbed cloud.</p>
<p><a href="https://remote.zentyal.com/login/" target="_blank">Zentyal Remote </a>offers this service. It checks daily your <strong>Zentyal</strong> configuration and the contents of the<em> LDAP</em> directory, if it finds any changes, it makes automatically a backup and sends it to the cloud.</p>
<p>The number of simultaneous held backups depends on the type of edition you have. A community edition with Free Account can store one configuration backup, a <a href="http://www.zentyal.com/small-business-it/" target="_blank">Small Bussiness</a> or <a href="http://www.zentyal.com/enterprise-it/" target="_blank">Enterprise</a> edition can have up to seven configuration backups. Furthermore, the seven configuration backup-limit only applies to automatic backups, you can have as many manual backups as you like.</p>
<p>Once you have your backup in the cloud, you can restore it in any of your subscribed <strong>Zentyal</strong> servers using <a href="http://doc.zentyal.org/en/controlcenter.html#configuration-backup-in-zentyal-remote"> the web interface</a>.</p>
<p>Post written by Javier Amor Garcia</p></div>
    </content>
    <updated>2013-03-31T09:46:22Z</updated>
    <category term="Communication"/>
    <category term="Community members"/>
    <category term="Development"/>
    <category term="backup"/>
    <category term="configuration"/>
    <category term="Redis"/>
    <category term="remote"/>
    <category term="server"/>
    <category term="system"/>
    <category term="Zentyal"/>
    <author>
      <name>Julio José García Martín</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2014-04-04T13:55:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=842</id>
    <link href="http://blogs.zentyal.org/gueststars/2013/03/25/zentyal-internal-plumbing-part-ii-mail-with-groupware/" rel="alternate" type="text/html"/>
    <title>Zentyal Internal Plumbing (Part II): Mail with groupware</title>
    <summary>Hello again my fellow Zentyal plumbers. This post is very related with the first one, this time covering Zarafa and related subsystems.   Zarafa is a groupware suite, including mail, calendars, contacts, task and notes which offers fully-fledged collaboration, sharing and access permission mechanisms. A remarkable feature of Zarafa is its integration with Microsoft clients and mobile [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Hello again my fellow Zentyal plumbers. This post is very related with the first one, this time covering Zarafa and related subsystems.</p>
<p style="text-align: center;"><a href="http://blogs.zentyal.org/gueststars/2013/03/25/zentyal-internal-plumbing-part-ii-mail-with-groupware/marioss/" rel="attachment wp-att-891"><img alt="" class="aligncenter size-medium wp-image-891" height="270" src="http://blogs.zentyal.org/gueststars/files/2013/03/marioss-300x270.jpg" width="300"/></a></p>
<p> </p>
<p>Zarafa is a groupware suite, including mail, calendars, contacts, task and notes which offers fully-fledged collaboration, sharing and access permission mechanisms. A remarkable feature of Zarafa is its integration with Microsoft clients and mobile synchronization protocols.</p>
<p>Let’s jump to the plumbing diagram already:</p>
<p style="text-align: center;"><a href="http://blogs.zentyal.org/gueststars/files/2013/03/zarafa-2.png" rel="attachment wp-att-895"><img alt="" class="aligncenter  wp-image-895" height="324" src="http://blogs.zentyal.org/gueststars/files/2013/03/zarafa-2-1024x667.png" width="498"/></a><a href="http://blogs.zentyal.org/gueststars/2013/03/25/zentyal-internal-plumbing-part-ii-mail-with-groupware/zarafa-2/" rel="attachment wp-att-895"><br/>
</a></p>
<p style="text-align: center;">(click to enlarge image)</p>
<p>First of all, this diagram is a simplified and Zentyal-contextualized version of some parts of the Zarafa documentation: <a href="http://doc.zarafa.com/7.1/Administrator_Manual/en-US/html/_architecture.html" title="Architecture">Zarafa Architecture</a>, <a href="http://doc.zarafa.com/7.1/Administrator_Manual/en-US/html/_components.html" title="Components">Zarafa Components</a>. We encourage you to visit the official Zarafa documentation to continue learning about this platform.</p>
<p>Point by point:</p>
<p><strong>A</strong>: Most of the mail subsystem components explained in the first post <a href="http://blogs.zentyal.org/gueststars/2012/11/28/zentyal-internal-plumbing-part-i/" title="plumbingI">Plumbing part I</a> are exactly the same for this version, so you still have Postfix as your MTA and the optional parts like Amavis security suite, Postgrey, Fetchmail and so on. Zarafa replaces the MDA, and adds the groupware services and gateways for several protocols and platforms.</p>
<p><strong>B</strong>: The zarafa-dagent is the equivalent of a MDA (performing some of the roles of Dovecot for the former blogpost), it uses LMTP, a simplified and local-only version of the SMTP protocol to communicate with the MTA. Take into account that different MDA means different mailboxes for your users, if you migrate your virtual mail domain from Dovecot to Zarafa, the user mail addresses may remain the same, but they are accessing a different Inbox in different storage backend.</p>
<p><strong>C</strong>: MySQL database, related to the last point. Zarafa stores mail and some mail metadata in a proper database, as opposed to the file-system based mail storage present in traditional mail systems. </p>
<p><strong>D</strong>: The zarafa-spooler sends the mail waiting in the outgoing queue through the MTA.</p>
<p><strong>E</strong>: Zarafa is tightly integrated with the Apache server in Zentyal, so the ‘Web Server’ module is required to offer all the web-based interfaces and protocols available to the users.</p>
<p><strong>F</strong>: ‘Web access’ and ‘Web app’ are two web interfaces that offer the user a very convenient and fully featured way to access the mail and groupware services by just using their web browser. ‘Web access’ is oriented to look and feel like a microsoft outlook interface, while ‘Web app’ uses modern web protocols to improve the experience and can even integrate with chat and voice IP subsystems.</p>
<p><strong>G</strong>: Z-push, an implementation of Microsoft’s ActiveSync protocol, available in all the major smartphone operative systems. Using this gateway you can synchronize all your mail, contacts and calendars information in your phone, bidirectionally, without installing additional apps and over the air.</p>
<p><strong>H</strong>: Zarafa gateway for common mail services, IMAP4(S) and POP3(S), take into account that if your plan to offer a mail gateway, IMAPS for example, first you have to make sure that this port is disabled in Dovecot.</p>
<p><strong>I</strong>: Microsoft Oulook offers MAPI, an interface to perform the synchronization against third party software. The Zarafa Windows Client needs to be installed in the Desktop OS. It bridges the Zarafa groupware protocols and Microsoft Outlook clients in transparent way for the users.</p>
<p><strong>J</strong>: The MAPI commands are encoded in web-service SOAP and synchronized against Zarafa server.</p>
<p>Hope you have now a clearer vision of all the features and possibilities that Zarafa brings to the table. An important piece is missing in the diagram: how Zarafa server and Postfix connect to the LDAP to retrieve user auth and directory information. In the next post I intend to cover the Samba and Kerberos subsystems.</p></div>
    </content>
    <updated>2013-03-25T09:07:57Z</updated>
    <category term="Communication"/>
    <author>
      <name>mburillo</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2014-04-04T13:55:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=840</id>
    <link href="http://blogs.zentyal.org/gueststars/2013/03/15/upgraded-translation-platform-how-to-see-your-translations-right-away/" rel="alternate" type="text/html"/>
    <title>Upgraded translation platform &amp; how to see your translations right away</title>
    <summary>We have now updated our Pootle translation platform to a newer version, fixing some persistent problems with the string search functions. We are migrating the translations and accounts to the new system, so the users should not notice any major changes. Please, send us a notification if you detect any problem with your account or [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>We have now updated our <a href="http://translate.zentyal.org/" title="http://translate.zentyal.org/">Pootle translation platform</a> to a newer version, fixing some persistent problems with the string search functions. We are migrating the translations and accounts to the new system, so the users should not notice any major changes. Please, <a href="mailto:info@zentyal.com" title="info@zentyal.com">send us a notification</a> if you detect any problem with your account or your translations.</p>
<p>The internationalization packages are updated from time to time, so you can get a new language-pack-zentyal- containing your language fixes eventually. If you don’t like waiting and want to try your translations right away, you can click on the ‘Translate’ tab inside your language section and then download the ‘zentyal.po’ file, using the ‘Download’ link.</p>
<p><a href="http://blogs.zentyal.org/gueststars/files/2013/03/translate.png" rel="attachment wp-att-843"><img alt="http://blogs.zentyal.org/gueststars/files/2013/03/translate.png" class="aligncenter size-medium wp-image-843" height="255" src="http://blogs.zentyal.org/gueststars/files/2013/03/translate.png" width="450"/></a></p>
<p>You will need a local copy of the <a href="https://github.com/Zentyal/zentyal.git" title="GitHub Zentyal repository">github Zentyal repository</a>:</p>
<p><code>apt-get install git</code> (if needed)<br/>
<code>git clone git://github.com/Zentyal/zentyal.git</code></p>
<p>You will then, replace the ‘.po’ file in the repository. In my example I will overwrite <code>zentyal/extra/language-packs/po/es.po</code>. The file downloaded from pootle is named zentyal.po, so you will need to rename it.</p>
<p>Example:<br/>
<code>mv ~/Downloads/zentyal.po ~/repos/zentyal/extra/language-packs/po/es.po</code></p>
<p>You will also need the package building tools:</p>
<p><code>apt-get install dpkg-dev</code></p>
<p>By default behavior is to build all the language packs, you probably don’t want this, so make a backup of the <code>zentyal/extra/language-packs/debian/control</code> file and then delete the unwanted packages. </p>
<p>Example for Spanish only:</p>
<blockquote><p><code><br/>
Source: zentyal-language-packs<br/>
Section: web<br/>
Priority: optional<br/>
Maintainer: Zentyal Packaging Maintainers<br/>
Build-Depends: debhelper (&gt;= 5.0.0), cdbs, po-debconf<br/>
Standards-Version: 3.8.2</code></p><code>
<p>Package: language-packs-zentyal-all<br/>
Architecture: all<br/>
Depends: language-pack-zentyal-es<br/>
Description: Zentyal translations for all supported languages<br/>
 Zentyal is a Linux small business server that can act as<br/>
 a Gateway, Unified Threat Manager, Office Server, Infrastructure<br/>
 Manager, Unified Communications Server or a combination of them. One<br/>
 single, easy-to-use platform to manage all your network services.<br/>
 .<br/>
 This metapackage includes the translations for all the languages.</p>
<p>Package: language-pack-zentyal-es<br/>
Architecture: all<br/>
Depends: zentyal-common (&gt;= 3.0), ${misc:Depends}<br/>
Description: Zentyal translations for language Spanish<br/>
 Zentyal is a Linux small business server that can act as<br/>
 a Gateway, Unified Threat Manager, Office Server, Infrastructure<br/>
 Manager, Unified Communications Server or a combination of them. One<br/>
 single, easy-to-use platform to manage all your network services.<br/>
 .<br/>
 This package contains translations for the Spanish language.</p>
</code><p><code/>
</p></blockquote>
<p>Then, from the directory <code>zentyal/extra/language-packs</code> you will<br/>
execute the command <code>dpkg-buildpackage -us -uc</code>. When this process<br/>
is complete, you will find the .deb package in <code>zentyal/extra</code>,<br/>
<code>language-pack-zentyal-es_3.0.1_all.deb</code> in my case.</p>
<p>Then, just copy and install this package to your Zentyal machine:</p>
<p><code>dpkg -i language-pack-zentyal-es_3.0.1_all.deb</code></p>
<p>Restart the web interface…</p>
<p><code>service zentyal apache restart</code></p>
<p>And you should be able to see your updated Strings.</p>
<p>We encourage you to review the <a href="http://translate.zentyal.org/" title="Zentyal's official translation platform">state of your native language translation</a> and take the effort to help make Zentyal native for the people around you.</p></div>
    </content>
    <updated>2013-03-15T09:25:45Z</updated>
    <category term="Communication"/>
    <author>
      <name>mburillo</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2014-04-04T13:55:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=804</id>
    <link href="http://blogs.zentyal.org/gueststars/2013/03/04/zentyal-supports-the-python-software-foundation/" rel="alternate" type="text/html"/>
    <title>Zentyal supports the Python Software Foundation</title>
    <summary>Few weeks ago the Python Software Foundation asked for help in a trademark issue that involves “Python”. As Zentyal uses Python as main programming language for our cloud based services and in the testing of Zentyal Server, we have decided to submit a letter for helping the Python Software Foundation as much as we can. [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p><img alt="" class="alignright" height="184" src="http://geekcol.files.wordpress.com/2011/08/python-logo-glassy1.png?w=232" width="185"/></p>
<p>Few weeks ago the <a href="http://www.python.org/psf/" target="_blank">Python Software Foundation </a>asked for <a href="http://pyfound.blogspot.ie/2013/02/python-trademark-at-risk-in-europe-we.html" target="_blank">help in a trademark issue</a> that involves “Python”.</p>
<p>As Zentyal uses Python as main programming language for our <a href="https://remote.zentyal.com/" target="_blank">cloud based services</a> and in the testing of <a href="http://www.zentyal.org/" target="_blank">Zentyal Se</a><a href="http://www.zentyal.org/" target="_blank">rver</a>, we have decided to submit a letter for helping the <em>Python Software Foundation</em> as much as we can.</p>
<p>Please, if you use <a href="http://www.python.org/" target="_blank">Python</a> in any way, support them!!</p>
<p>Check out this <a href="http://people.zentyal.org/~jjgarcia/support_letter_template_python_software_foundation.odt" target="_blank" title="Template">letter template</a> that might help you to send your own support letter to the Python Software Foundation.</p>
<p> </p>
<p> </p>
<p> </p></div>
    </content>
    <updated>2013-03-04T10:12:24Z</updated>
    <category term="Communication"/>
    <category term="Development"/>
    <category term="issue"/>
    <category term="PSF"/>
    <category term="python"/>
    <category term="trademark"/>
    <category term="Zentyal"/>
    <author>
      <name>Julio José García Martín</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2014-04-04T13:55:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=784</id>
    <link href="http://blogs.zentyal.org/gueststars/2013/02/21/quality-and-fosdem-talks/" rel="alternate" type="text/html"/>
    <title>Quality and FOSDEM talks</title>
    <summary>The first weekend of February, the ULB Campus in Brussels held one of the biggest events in Europe about open source communities and development, the FOSDEM. Some Zentyalers decide to take few days off and go to that nice city and enjoy the weather (just kidding although it wasn’t that bad… ), all the talks and [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p><img alt="FOSDEM LOGO" class="alignright" height="158" src="https://fosdem.org/2013/schedule/event/keynotes_welcome/keynotes_welcome-c743944bdab7dce4a5b7d4696bd7264a8139bd4034a74033223fc9babf1c2d57.png" width="158"/>The first weekend of February, the <em>ULB Campus</em> in <strong>Brussels</strong> held one of the biggest events in Europe about open source communities and development, the <a href="https://fosdem.org/2013/" target="_blank" title="FOSDEM">FOSDEM</a>. Some Zentyalers decide to take few days off and go to that nice city and enjoy the weather (just kidding although it wasn’t that bad… ), all the talks and interesting people that get together.</p>
<p>Of course I was one of team members who joined the event, and besides the great beer, I especially liked a talk that the community of <strong>Libre Office</strong> gave. It was about the path they have been following lately and how they have <em>refactored</em> and improved such a great application. Here is a <a href="https://fosdem.org/2013/schedule/event/challenges_libreoffice/" target="_blank" title="Libre office talk">link</a> to the video in case you want to enjoy an interesting talk.</p>
<p>There were two things that really touched me. The first one was the culture shift they suffer to allow them to build a better product and empower new contributors to collaborate with them. Short iterations, don’t ask permission ask forgiveness, embrace change… and the most important of all of them, have fun developing <img alt=":)" class="wp-smiley" src="http://blogs.zentyal.org/gueststars/wp-includes/images/smilies/icon_smile.gif"/>  Fantastic!!!</p>
<p>The second one, was <strong>quality</strong>. They have done a big effort to build quality in the core of their project. Doing unit tests, refactoring to improve the code and its maintainability and what’s more important, giving the quality the necessary importance to reduce the bugs to a minimum. We definitively share that vision and have always considered that the best way to assure quality is to build it from the beginning, inside your products, not leaving it for the last part of the project or any other phase.</p>
<p>At <a href="http://zentyal.org" target="_blank" title="Zentyal">Zentyal</a> we have always put a great effort in building our products with the best quality. Moreover, in the past months we have done a similar switch to a more quality centered development. We are still working on fully changing our focus, but you can see already some of the improvements in the community version as well as in the <em>Software and Security updates</em> of the commercial <a href="http://www.zentyal.com/pricing-editions/" target="_blank" title="Zentyal editions">commercial versions</a>.</p>
<p>By the way, <a href="http://www.libreoffice.org/#0" target="_blank" title="Libre Office">Libre Office</a> has just released the 4.0 version. <a href="http://www.libreoffice.org/download" target="_blank" title="Libre Office">Check it out</a>, at <a href="http://zentyal.org" target="_blank" title="Zentyal">Zentyal</a> we use it in our daily work and it’s great.</p></div>
    </content>
    <updated>2013-02-21T10:07:58Z</updated>
    <category term="Development"/>
    <category term="Process"/>
    <category term="FOSDEM"/>
    <category term="Libre Office"/>
    <category term="quality"/>
    <category term="refactoring"/>
    <category term="talk"/>
    <category term="unit testing"/>
    <category term="video"/>
    <category term="Zentyal"/>
    <author>
      <name>Julio José García Martín</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2014-04-04T13:55:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=716</id>
    <link href="http://blogs.zentyal.org/gueststars/2013/01/25/music-at-zentyals-hq-pt-i/" rel="alternate" type="text/html"/>
    <title>Music at Zentyal’s HQ (pt. I)</title>
    <summary>One of the most recurrent topics at Zentyal’s HQ is music. In fact it use to conclude with some actual plush toy throwings and a heavy rain of axes. Our tastes may not differ a lot, but we actually love those confrontations. So, why not writing some lines to share our tastes with you all? [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p style="text-align: center;"><img alt="" class="size-full wp-image-729" height="920" src="http://blogs.zentyal.org/gueststars/files/2013/01/types_of_music.jpg" width="380"/></p>
<p>One of the most<strong> recurrent topics at Zentyal’s HQ is music</strong>. In fact it use to conclude with some actual plush toy throwings and a heavy rain of axes. Our tastes may not differ a lot, but we actually love those confrontations. So, why not writing some lines to share our tastes with you all?</p>
<p>Firstly I thought that it would be fine to ask my everyone at the HQ for one of their favourite songs. Though if was harder than expected, for some it was pretty hard to narrow down the scope, and others were just only lazy, here there are some of the ones I gathered. Hope you like them… or not (mind your head, axes will be flying towards it).</p>
<h3>Smoke On The Water – Deep Purple</h3>
<p>Julio, our quality assurance guru just kept that simple with a classic: <strong>Smoke On The Water</strong> from the great <strong>Deep Purple</strong> (Glover, Blackmore and friends). In fact this song represented one of his first hard rock songs when he was a child, so it was a good way to introduce himself into the rock world, isn’t it? You can watch a <a href="http://youtu.be/7mCK05dgwgU" target="_blank">live performance</a> on Youtube if you want.</p>
<h3>A.D.I.D.A.S. – Korn</h3>
<p>Let’s come close to the present with Fernando’s choice. Nowadays it could even be considered a classic, but <strong>A.D.I.D.A.S.</strong> from the American band <strong>Korn</strong> is what he needs to cheer himself up while working. Again here you have the link to the <a href="http://youtu.be/239vHrwt8Rs" target="_blank">official video</a> on Youtube.</p>
<h3>The Final Sacrifice – Avantasia</h3>
<p>Hard rock classics, nu metal pioneers on our list, so now you can imagine how could our talks verse about. But here shows up Zei with his choice. <strong>Avantasia</strong> is a power metal supergroup headed by Tobias Sammet, and <strong>The Final Sacrifice</strong> is one of their bests. Prepare you ears, and <a href="http://youtu.be/g8yfilEymiA" target="_blank">listen it on Youtube</a>.</p>
<h3>Adagio For Tron – Tron Legacy OST</h3>
<p>Well, it seems that guitars, basses and drums cope out music taste… but Blaxter has always something different in mind. The song he sent me is from the <strong>Tron Legacy OST</strong>, and it would chill down everyone here at the HQ. <a href="http://youtu.be/aFIXKXYfEy0" target="_blank">Check it out at Youtube</a>, it is <strong>Adagio For Tron</strong> from Daft Punk.</p>
<h3>Only For The Weak – In Flames</h3>
<p>It is time for the last song of this post. Let me show my own choice. It always gives me a plus while developing, fingers seems to type faster and everything seem easier. My choice is <strong>Only For The Weak</strong>, from the Swedish band <strong>In Flames</strong>. It is great, and by far, it is the best song of this list (of course, it’s mine!). Check their <a href="http://youtu.be/ZrkhQLtMFkY" target="_blank">live performance</a> out at Youtube.</p>
<p>Image | <a href="http://9gag.com/gag/2978758" target="_blank">9gag</a></p></div>
    </content>
    <updated>2013-01-25T10:14:48Z</updated>
    <category term="Communication"/>
    <author>
      <name>Miguel Julián</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2013-06-05T08:30:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=684</id>
    <link href="http://blogs.zentyal.org/gueststars/2013/01/24/zentyal-is-secure-by-default/" rel="alternate" type="text/html"/>
    <title>“Zentyal is secure by default”</title>
    <summary>We have had special guests at Zentyal HQ during the first weeks of the year. A few staff members of the Malawi Defence Force (MDF) visited us to take a training course, focused especially on security and how to optimize Zentyal server configuration to guarantee security in institutional environments. The course was jointly delivered by [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>We have had special guests at Zentyal HQ during the first weeks of the year. A few staff members of the Malawi Defence Force (MDF) visited us to take a training course, focused especially on security and how to optimize Zentyal server configuration to guarantee security in institutional environments. The course was jointly delivered by Zentyal and ACS Labs, UK-based IT support and service provider specialized in information security and Zentyal Partner.</p>
<p>Mussa Khonje, Computer Security Director at ACS Labs, UK, Nathan Soko and Duncain Taipi, respectively IT Officer and Director of Communications of Malawi Defence Force explained us why Zentyal software responds successfully to the main challenges regarding information security.</p>
<p style="text-align: center;"><a href="http://blogs.zentyal.org/gueststars/2013/01/24/zentyal-is-secure-by-default/malawi/" rel="attachment wp-att-747"><img alt="" height="394" src="http://blogs.zentyal.org/gueststars/files/2013/01/malawi.jpg" width="591"/></a></p>
<p><strong>Zentyal:</strong> What would you say are the typical IT needs and challenges in defence force environments?</p>
<p><strong>ACS Labs:</strong> The need to protect the banks, for example, is internationally recognized. When the armed conflict between Russia and Georgia took place in 2008, one of its effects was that people in Georgia could not draw money from banks. Since then organizations such as United Nations or NATO have implemented more rules to safeguard information security and how to tackle cyber operations. This is a new threat that is growing and changing all the time so there is a need to invest in this and it is also the direction the defence forces are taking.</p>
<p><strong>MDF:</strong> Defence forces are not anymore all about armed defense, we believe that one must also be prepared for software attacks, to mitigate these attacks and to secure information. If your IT systems are being attacked or hacked, you should be able to make sure these systems can not be easily penetrated, that you are able to keep the information safe and secure the correct functioning of the government.</p>
<p><strong>Zentyal:</strong> What are the benefits of Zentyal in comparison to other solutions?</p>
<p><strong>ACS Labs:</strong> Zentyal’s position is unique because it is a one platform with so many solutions. It is a well-tested system, with constant security updates and also very flexible to changes on technology. With other solutions you find a big gap: you need to download the software updates and implement them to the machines, what takes a week or more, and during this time the hackers can attack your system. Zentyal offers customers fast and automatic updates.</p>
<p><strong>MDF:</strong> Zentyal includes many services that in other software solutions come in different packages. Moreover, Zentyal integrates these services in all-in-one solution and it is very easy-to-use, just by clicking. We believe it is a powerful software that helps to control many security issues.</p>
<p><strong>Zentyal:</strong> So, we heard that during the course you were simulating attacks to different machines in order to test their vulnerability. What were the results?</p>
<p><strong>MDF:</strong> Yes, we were going into Zentyal software and other software products to test how difficult is to penetrate them. It took us five minutes to go into the proprietary product. Zentyal instead resisted the attack even though we know Zentyal rather well. When you configure it properly, it mitigates completely the attack. </p>
<p><strong>ACS Labs:</strong> In the Zentyal Summit of 2012 ACS Labs tested and presented the findings we knew about the strength of Zentyal. It is intelligent to use Zentyal because it is secure by default. If you configure Zentyal very well and you have great security policy, you will always keep your infrastructure protected.</p>
<p><strong>Zentyal:</strong> What would you highlight from the course?</p>
<p><strong>MDF:</strong> The teacher, Mateo Burillo, went far much deeper than we expected. We believe you Zentyal guys have chosen someone who has deep knowledge about what we were interested in.</p></div>
    </content>
    <updated>2013-01-24T09:59:48Z</updated>
    <category term="Communication"/>
    <author>
      <name>Marta Cambronero</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2013-05-29T14:25:08Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=695</id>
    <link href="http://blogs.zentyal.org/gueststars/2013/01/17/zentyals-scrum/" rel="alternate" type="text/html"/>
    <title>Zentyal’s Scrum</title>
    <summary>After the fantastic workshop we have the last month about Agile Methodologies, the two development teams working in Zentyal decide to start doing Scrum. We will start doing it bit a bit, not all at the same time. In this way people will get used to it and will feel more like a Kaizen process [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p style="text-align: left;">After the <a href="http://blogs.zentyal.org/gueststars/2012/12/28/agile-methods-improve-your-workflow-and-are-contagious/" target="_blank">fantastic workshop</a> we have the last month about <a href="http://en.wikipedia.org/wiki/Agile_software_development" target="_blank">Agile Methodologies</a>, the two development teams working in Zentyal decide to start doing <a href="http://en.wikipedia.org/wiki/Scrum_%28development%29" target="_blank">Scrum</a>.</p>
<p style="text-align: left;"><img alt="scrum in zentyal" class="aligncenter" height="200" src="http://upload.wikimedia.org/wikipedia/commons/thumb/5/58/Scrum_process.svg/400px-Scrum_process.svg.png" width="400"/><br/>
We will start doing it bit a bit, not all at the same time. In this way people will get used to it and will feel more like a <a href="http://en.wikipedia.org/wiki/Kaizen" target="_blank">Kaizen</a> process than a big <a href="http://en.wikipedia.org/wiki/Kaikaku" target="_blank">Kaikaku</a>. Stand up’s, visualization of the workflow in a task board and retrospectives will be the starting point for the two teams. From there we hope to be adding more stuff incrementally till it starts looking more like a proper <strong>Scrum</strong>, with sprints, planning meetings and all the other stuff. We will experiment with all this, see what fit us and thrown away the things that don’t fit in our company culture.</p>
<p>So, as you can see we have a large path to walk. We will try to improve our process a lot and hopefully you will notice this improvement in a even better quality of our products.</p></div>
    </content>
    <updated>2013-01-17T09:55:02Z</updated>
    <category term="Development"/>
    <category term="Process"/>
    <category term="agile"/>
    <category term="development"/>
    <category term="scrum"/>
    <category term="team"/>
    <author>
      <name>Julio José García Martín</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2013-05-03T09:25:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=592</id>
    <link href="http://blogs.zentyal.org/gueststars/2012/12/28/agile-methods-improve-your-workflow-and-are-contagious/" rel="alternate" type="text/html"/>
    <title>Agile methods improve your workflow and are contagious!</title>
    <summary>Amid laughs, Lego plays, origami papers, plastic sheets and colorful pencils is how you could see Zentyal staff at HQ on the 21st of December. The reason was the Agile workshop Teresa Oliver had prepared for Zentyal crew. But what is Agile? Is it really useful tool to improve the project development? Teresa, founder of [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p style="text-align: center;"><a href="http://blogs.zentyal.org/gueststars/2012/12/28/agile-methods-improve-your-workflow-and-are-contagious/548588_527231513968739_1124962808_n/" rel="attachment wp-att-613"><img alt="" class="wp-image-613" height="369" src="http://blogs.zentyal.org/gueststars/files/2012/12/548588_527231513968739_1124962808_n.jpg" width="491"/></a></p>
<p>Amid laughs, Lego plays, origami papers, plastic sheets and colorful pencils is how you could see Zentyal staff at HQ on the 21st of December. The reason was the Agile workshop Teresa Oliver had prepared for Zentyal crew. But what is Agile? Is it really useful tool to improve the project development? Teresa, founder of <a href="http://www.skok.es/">Skok</a> and in charge of this Agile training session, was pleased to respond to some questions for those who still don’t know what Agile techniques can do for your work-flow.</p>
<p><strong>Zentyal:</strong> What is Agile?<br/>
<strong>Teresa Oliver:</strong> It is a different way of managing projects and teams. It is based on giving value to the customer as soon as possible, as frequently as possible and adapting to the change all the time. It means not to have complex and fixed requirements at the beginning of the project, but build and deliver them at the end of it because there are many possibilities of not doing everything right from the beginning, not to have understood the requirements properly or it might also happen that customer needs change during the project. For this to work it is vital that the teams share and practice a range of values like confidence, communication, respect and absolute transparency, and this is not always easy.</p>
<p><strong>Z:</strong> Why games can help to overcome these issues?<br/>
<strong>T. O.:</strong> We combine many short games to stimulate the conversation about different Agile values with other longer games such as Lego and the ones with board and pieces in order to understand the complete cycle of a project. These games helps to embrace and fix concepts much more clearly than a traditional presentation.</p>
<p style="text-align: center;"><a href="http://blogs.zentyal.org/gueststars/2012/12/28/agile-methods-improve-your-workflow-and-are-contagious/teresa_oliver/" rel="attachment wp-att-623"><img alt="Teresa Oliver delivering Agile training at Zentyal HQ" class="wp-image-623 alignleft" height="300" src="http://blogs.zentyal.org/gueststars/files/2012/12/Teresa_Oliver-181x300.jpg" style="margin: 0px 5px 0px 0px;" width="181"/></a><strong/></p>
<p><strong>Z:</strong> If I want to practice Agile methodologies, what are the first steps to be taken?<br/>
<strong>T. O.:</strong> When we -Skok- collaborate in a company, we start with a basic workshop for the whole team, comparing their common everyday work with an Agile one. Afterwards we choose a pilot project, we apply Agile principles from the start and we learn what happens: What works and what has to be adapted to this specific environment. And later we extend, little by little, the learning to the rest of the projects. It uses to be very contagious.</p>
<p><strong>Z:</strong> Is it possible to apply Agile in other environments apart from software development? Some people say they use it in their lives.<br/>
<strong>T. O.:</strong> Of course! In fact it is done more and more: At universities and schools, for managing ONGs, for organizing children tasks in families, to mobilize multidisciplinary teams for transversal projects in big organizations… Agile can be useful in every environment where there is a set of people sharing a common goal and dealing with uncertainty and a fast adaptation to change.</p>
<p><strong>Z:</strong> In case I want to learn more, to whom I should turn to for advice?<br/>
<strong>T. O.:</strong> Apart from books and blogs, I recommend to meet people in your local community that share these interests. In Zaragoza we have <a href="http://agile-aragon.org/">Agile Aragon</a>, a small but very active community, that meets periodically to organize events, talks, bring people from other cities to share their experiences, make Agile programming sessions, etc. There is nothing like personal contact.</p>
<p><strong>Z:</strong> How can I find my local Agile community?<br/>
<strong>T. O.:</strong> In Spain local communities are listed <a href="http://agile-spain.org/about/grupos-locales/">here</a>. A good worldwide list, can be found <a href="http://www.agilealliance.org/resources/agile-user-group">here</a>.</p>
<p><strong>Thanks Teresa for making Zentyal Team a little more agile <img alt=":)" class="wp-smiley" src="http://blogs.zentyal.org/gueststars/wp-includes/images/smilies/icon_smile.gif"/> !</strong></p></div>
    </content>
    <updated>2012-12-28T11:59:26Z</updated>
    <category term="Communication"/>
    <author>
      <name>Marta Cambronero</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2013-05-03T09:00:11Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=571</id>
    <link href="http://blogs.zentyal.org/gueststars/2012/12/21/step-by-step-small-goals-and-reward-yourself/" rel="alternate" type="text/html"/>
    <title>Step by step: small goals and reward yourself</title>
    <summary>We all know that goals are important in our life. Yes, you are right, I said “life” and not only “work”. If you are used to work with goals, have you tried with them in your personal life? But I am not writing about life goals. Today I would like to write about some of [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p/>
<p><a href="http://blogs.zentyal.org/gueststars/2012/12/21/step-by-step-small-goals-and-reward-yourself/awesomeness-motivational-funny-barney-stinson-quote-print-poster/" rel="attachment wp-att-574"><img alt="Awesomeness by small and affordable tasks" class="aligncenter size-full wp-image-574 " height="316" src="http://blogs.zentyal.org/gueststars/files/2012/12/awesomeness-motivational-funny-barney-stinson-quote-print-poster.jpg" width="473"/></a></p>
<p>We all know that goals are important in our life. Yes, you are right, I said “life” and not only “work”. If you are used to work with goals, have you tried with them in your personal life? But I am not writing about life goals. Today I would like to write about some of those epidemics that are spreading all around the world: Poor concrete goals.</p>
<p>Doh! “Poor concrete” would not be the right words. Your goal in this project is to develop a huge web administration tool, users will be able to…. and administrator will be able to delete… when a “friend” is deleted a soft deletion will take place… and… do not forget to enable… is it clear? Of course it is. But, once you have to play the ball, the goal would seem to be huge and unaffordable.</p>
<p>We all have started a work day and felt that that day we did not want to do anything. Better sleeping habits could help, but probably the problem was the task that had to be done. Too complex? Too repetitive? Too difficult for you? Or you just simply do not like it. Let’s take a magic spacecraft.</p>
<p>Maybe you could fly up away your task. This would give you a clear and motivational context. Isn’t it clear? Don’t be so tight! Imaginary fuel is free, you can fly up higher and higher. Now you can see your company’s main direction and you may take a look at how it aligns to your personal and family life.</p>
<p>But I told you this was about avoiding “poor concrete goals”, once you have achieved a fully (I am always optimistic) motivational state it is time to dive deep into that task with we do not want to face up, let’s use again our magic spacecraft. It is everything about divide and conquer. Simple and smaller tasks use to be more affordable and motivating. Why do not use them? Now you only have to manage those tasks.</p>
<p>Internet is plenty of web tools that would help, but this is not about platforms, this is about you. It sounds aggressive, but it I promise, it is all about you. Sometimes simple is best. You can write them out on a whiteboard, on a piece of paper, or why not?, on a window glass with that whiteboard marker you have. But writing them out is not enough.</p>
<p>Apart from doing them, the key point is deleting them from your list. You can play basketball with the post-it, or you might burn it; maybe you would rather cross off the task with unusual passion. You have finished a task, you deserve a reward, so take it! No one is gonna give it to you (at least sooner enough), you have to take it by yourself. Take it and enjoy your work.</p></div>
    </content>
    <updated>2012-12-21T12:47:09Z</updated>
    <category term="Communication"/>
    <author>
      <name>Miguel Julián</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2013-03-31T09:50:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/heidi/?p=310</id>
    <link href="http://blogs.zentyal.org/heidi/2012/12/19/tune-up-your-fluffy-xmas-add-on/" rel="alternate" type="text/html"/>
    <title>Tune up your Fluffy (Xmas update)!</title>
    <summary>To celebrate the holiday season and the brand new year 2013, Zentyal Team has prepared a Xmas-themed update for your Fluffy! Happy holidays! Instructions: 1. Download and print the Fluffy cube template 2. Download and print the Xmas update 3. Get a pair of scissors, some glue and follow the instructions 4. Upload a picture [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p><a href="http://blogs.zentyal.org/heidi/files/2012/12/xmas_themed_fluffy2.jpg"><img alt="Christmas themed Fluffy" class="aligncenter size-full wp-image-315" height="350" src="http://blogs.zentyal.org/heidi/files/2012/12/xmas_themed_fluffy2.jpg" title="xmas_themed_fluffy" width="350"/></a></p>
<p>To celebrate the holiday season and the brand new year 2013, Zentyal Team has prepared a <strong>Xmas-themed update</strong> for your Fluffy! <strong>Happy holidays!</strong></p>
<p><strong>Instructions:</strong></p>
<p>1. Download and print the <a href="http://blogs.zentyal.org/gueststars/files/2012/10/fluffy_cube.pdf" title="Zentyal Fluffy cube template">Fluffy cube template</a><br/>
2. Download and print the <a href="http://blogs.zentyal.org/heidi/files/2012/12/fluffy_christmas_update.pdf" title="Zentyal Fluffy Xmas Update">Xmas update</a><br/>
3. Get a pair of scissors, some glue and follow the instructions<br/>
4. Upload a picture of your Fluffy to your Facebook or Twitter account and tag Zentyal :)!</p></div>
    </content>
    <updated>2012-12-19T12:21:30Z</updated>
    <category term="Community"/>
    <category term="Zentyal crew"/>
    <author>
      <name>admin</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/heidi</id>
      <link href="http://blogs.zentyal.org/heidi/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/heidi" rel="alternate" type="text/html"/>
      <subtitle>Zentyal crew, life and everything</subtitle>
      <title>heidi's blog</title>
      <updated>2012-12-19T12:25:04Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/jacalvo/?p=237</id>
    <link href="http://blogs.zentyal.org/jacalvo/2012/12/13/status-of-the-samba-4-0-integration-in-zentyal-3-0/" rel="alternate" type="text/html"/>
    <title>Status of the Samba 4.0 integration in Zentyal 3.0</title>
    <summary>As you may already know, when we started the Zentyal 2.3 development, we took the decision of integrating Samba4, which was about to enter the beta phase. This sounded risky and was questioned by some, but as we have the ambitious goal of being a full Active Directory replacement, and improve the migration processes from [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>As you may already know, when we started the <a href="http://www.zentyal.org">Zentyal</a> 2.3 development, we took the decision of integrating Samba4, which was about to enter the beta phase. This sounded risky and was questioned by some, but as we have the ambitious goal of being a full Active Directory replacement, and improve the migration processes from Windows server environments we decided to go for Samba4 integration and we do not regret it.</p>
<p>During the whole year Samba4 has been evolving really fast and we were confident that at some point around the release date of Zentyal 3.0, or not too late, there would be a final Samba 4.0 stable version solving the problems of the first beta versions. We can also say that during this development we have tried to contribute as much as possible with the Samba team, by giving feedback, coding and sending patches.</p>
<p>The thing is that Samba 4.0 stable has been released already and sadly, as you can see in the <a href="https://lists.samba.org/archive/samba-announce/2012/000283.html">official announcement</a>, it has been released still with known issues that affect some scenarios that Zentyal aims to provide.</p>
<p>So, how to solve this situation in these scenarios? To start with, we have written a <a href="http://trac.zentyal.org/wiki/Document/Samba4KnownIssues">brief list of the current known issues</a>. In the next days we are going to detail them, provide as much documentation as possible about the different scenarios, what works and what doesn’t, and what can be done, including best practices for deployments. The documentation will be ready during next week. We also plan to implement more checks in the Zentyal Samba module to avoid common configuration mistakes, and add the possibility to recover from them, for example, allowing easy reconfiguration if Samba has been provisioned with a wrong domain name.</p>
<p>We can assure you that we will keep working hard making Zentyal a full Active Directory replacement and you should expect clear information about the current issues and the updates on the zentyal-samba packages.</p>
<p>Thanks for using Zentyal and keep the feedback coming so that we can all make it the best Linux alternative to Windows Server!</p></div>
    </content>
    <updated>2012-12-13T09:26:07Z</updated>
    <category term="Uncategorized"/>
    <author>
      <name>jacalvo</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/jacalvo</id>
      <link href="http://blogs.zentyal.org/jacalvo/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/jacalvo" rel="alternate" type="text/html"/>
      <subtitle>Just another Zentyal blogs weblog</subtitle>
      <title>jacalvo's blog</title>
      <updated>2014-01-31T15:40:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=561</id>
    <link href="http://blogs.zentyal.org/gueststars/2012/12/10/visiting-becodes-facilities/" rel="alternate" type="text/html"/>
    <title>Visiting BeCode’s facilities</title>
    <summary>A few days ago two of us went to “La Cueva” (The Cave) at Valencia. La Cueva is the name that BeCode’s people give to their facilities, guess why? Well, it is not that cold and dark, but it does not seem to be like other development companies facilities. It is a ground floor of [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p/>
<p style="text-align: center;"><a href="http://blogs.zentyal.org/gueststars/2012/12/10/visiting-becodes-facilities/zentyal_stuff_visit_becode/" rel="attachment wp-att-563"><img alt="Zentyal stuff with Xavy at BeCode" class="aligncenter size-full wp-image-563" height="345" src="http://blogs.zentyal.org/gueststars/files/2012/12/zentyal_stuff_visit_becode.jpg" width="460"/></a></p>
<p>A few days ago two of us went to “La Cueva” (The Cave) at Valencia.<strong> La Cueva is the name that BeCode’s people give to their facilities</strong>, guess why? Well, it is not that cold and dark, but it does not seem to be like other development companies facilities. It is a ground floor of a building they all share, and it is also the place where they also organise open workshops for the neighbourhood (bicycle fixing, guitar lessons, WordPress workshops, …).</p>
<p>Inspired by the Desk Surfing movement, we decided to <strong>ask them for a place to work and exchange knowledge and opinion</strong>. Thus we arrived and they all welcomed us at their daily meeting and started working. It seemed that we arrived there at one of the coldest week in Valencia, but the environment there (and the heaters) made feel us warmer.</p>
<p>In those three days we had time enough for talking about many topics. We could practice with fluid interfaces with a Javascript kata with Jasmine lead by Xavy. We also share points of view about <strong>testing strategies at complex architectures (like Zentyal’s one)</strong>, and we also talked about design patterns and SOLID concepts in software development.</p>
<p>You <strong>managed to make us feel like if we were at home</strong>, so from this little internet corner we would like to thank you all your dedication and efforts. Be sure that we will back, better sooner than later, mainly because we already miss those beer talks. Thank you for everything.</p>
<p>More info | <a href="http://www.becodemyfriend.com/" target="_blank" title="BeCodeMyFriend">BeCode</a> | <a href="http://www.desk-surfing.org" target="_blank" title="Desk Surfing">DeskSurfing</a></p></div>
    </content>
    <updated>2012-12-10T11:59:31Z</updated>
    <category term="Development"/>
    <author>
      <name>Miguel Julián</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2013-03-25T09:10:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=513</id>
    <link href="http://blogs.zentyal.org/gueststars/2012/11/28/zentyal-internal-plumbing-part-i/" rel="alternate" type="text/html"/>
    <title>Zentyal Internal Plumbing (Part I): Mail</title>
    <summary>Hello all, Some of our advanced users don’t have enough just interacting with the Zentyal interface, and want to go deeper in its entrails, to know the abstracted-out details. In this series of small blog posts I would try to clarify how the different components are interconnected. I want to cover the following sub-systems: Mail [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Hello all,</p>
<p>Some of our <em>advanced users</em> don’t have enough just interacting with the <a href="http://zentyal.org" target="_blank" title="Zentyal">Zentyal</a> interface, and want to go deeper in its entrails, to know the abstracted-out details. In this series of small blog posts I would try to clarify how the different components are <strong>interconnected</strong>.</p>
<p style="text-align: center;"><a href="http://blogs.zentyal.org/gueststars/2012/11/28/zentyal-internal-plumbing-part-i/3219638385_27772147b1/" rel="attachment wp-att-514"><img alt="plumbing" class="size-medium wp-image-514  aligncenter" height="187" src="http://blogs.zentyal.org/gueststars/files/2012/11/3219638385_27772147b1-300x187.jpg" width="300"/></a></p>
<p>I want to cover the following <strong>sub-systems</strong>:</p>
<ul>
<li>Mail (Mail module only version)</li>
<li>Mail (Groupware version)</li>
<li>Samba4 and Kerberos &amp; how it connects to other sub-systems</li>
<li>HTTP proxy</li>
</ul>
<p>Let’s start with the <strong>Mail</strong> (Mail module only) and it’s general interconnection map:</p>
<p style="text-align: center;"><a href="http://blogs.zentyal.org/gueststars/files/2012/11/mailplumbing-2.png" rel="attachment wp-att-515" target="_blank" title="Internal plumbing I"><img alt="" class=" wp-image-515 aligncenter" height="202" src="http://blogs.zentyal.org/gueststars/files/2012/11/mailplumbing-2.png" width="455"/></a></p>
<p style="text-align: center;">(click to enlarge image)</p>
<p>This diagram also includes all the mailfilter capabilities.</p>
<p>Point by point:</p>
<p><strong>A</strong>: Postfix is our Mail Transfer Agent, in charge of delivering and accepting mails from other mail servers.</p>
<p><strong>B</strong>: The standard entry point for the SMTP protocol, it can support security via STARTTLS. Intended for communication with external MTAs.</p>
<p><strong>C</strong>: Same than B, this port is intended for local users delivery.</p>
<p><strong>D</strong>: Same than B, but with forced TLS communication.</p>
<p><strong>E</strong>: Every time the MTA receives a new message, the associated domain can be checked against the Postgrey database, this mechanism can force retries to deter spamming bots.</p>
<p><strong>F</strong>: Dovecot, our Mail Delivery Agent, distributes the mail to the users’ mail boxes.</p>
<p><strong>G</strong>: Dovecot is able to accept SIEVE rules (filters, forwards, flags and so on) using this port.</p>
<p><strong>H</strong>: SIEVE is sub-systems implementing a scripted language that performs the configured rules over the incoming mail. Take into account that SIEVE rules can, in turn, talk to the MTA to forward a mail again.</p>
<p><strong>I</strong>: Your Mail User Agent (mail client) will retrieve the mails from the MDA, using POP, IMAP or their secure versions.</p>
<p><strong>J</strong>: Amavis is a security suite that will use other components to filter potentially dangerous mail.</p>
<p><strong>K</strong>: Messages are forwarded from the MTA to Amavis, checked, tagged according to their spam status and then returned to Postfix.</p>
<p><strong>L</strong>: Amavis uses an unix socket to pass the messages to the ClamAV antivirus for inspection. Infected messages will be stored away in the quarantine folders, thus, they won’t be delivered to their recipients.</p>
<p><strong>M</strong>: The Spamassassin suite uses multiple auto-adjusting mechanism to detect unwanted mail.</p>
<p><strong>N</strong>: Fetchmail can periodically retrieve mail form external accounts and insert it in our system talking with the MTA.</p>
<p><strong>O</strong>: The Webmail service can be deployed to communicate with the MTA and MUA using a webapp.</p>
<p>Hope this had shed some light, the next post will reuse a lot of this concepts.</p></div>
    </content>
    <updated>2012-11-28T10:17:57Z</updated>
    <category term="Communication"/>
    <category term="Development"/>
    <category term="mail"/>
    <category term="modules"/>
    <category term="plumbing"/>
    <category term="proxy"/>
    <category term="samba"/>
    <category term="services"/>
    <category term="Zentyal"/>
    <author>
      <name>mburillo</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2013-03-24T23:00:04Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=452</id>
    <link href="http://blogs.zentyal.org/gueststars/2012/11/23/remember-remember-the-month-of-movember/" rel="alternate" type="text/html"/>
    <title>Remember, remember the month of Movember</title>
    <summary>Most of you would already know about that annual event called Movember. For those who don’t here is a brief summary: some dudes (Mo Bros) let grow their moustaches during the month of November. So there it is the combination of those two words, moustache and November, that builds the Movember event. I am sure [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p/>
<p style="text-align: center;"><a href="http://blogs.zentyal.org/gueststars/2012/11/23/remember-remember-the-month-of-movember/movember-zentyal/" rel="attachment wp-att-500"><img alt="Movember has arrived to Zentyal" class="size-full wp-image-500 aligncenter" height="328" src="http://blogs.zentyal.org/gueststars/files/2012/11/movember-zentyal.jpg" width="460"/></a></p>
<p>Most of you would already know about that annual event called <a href="http://es.movember.com/en/">Movember</a>. For those who don’t here is a brief summary: some dudes (Mo Bros) <strong>let grow their moustaches during the month of November</strong>. So there it is the combination of those two words, moustache and November, that builds the Movember event. I am sure you have noticed some other Mo Bros at the TV or maybe you just thought how horrible was that young guy with that ridiculous moustache. But everything has an explanation.</p>
<p>We let grow our moustaches during the month of November to <strong>raise the awareness of prostate cancer</strong>, other male diseases and associated charities. We want to “change the face of men’s health”, so one our duties consists in answering everyone who ask us about our moustache with a great speech about men’s health and the importance of getting an annual check-up.</p>
<p>We can also ask for donations to the Movember Foundation, which also has run events all around the world to raise founds for men’s health issues like the prior quoted prostate cancer, depression or testicular cancer. So here we are. <strong>Some of us at the Zentyal’s HQ are wearing a <strong><del>terrible</del></strong> moustache</strong>, it doesn’t look nice, but we do not care about it; we are proud to explain everyone, including our workmates, why we are wearing this.</p>
<p>Do not worry! It looks better day by day, and you will start recognising yourself after a few days. Now it is your turn. Now <strong>you might become the next antenna to spread Movember message</strong>, you will notice that you are not walking alone as you would see other Mo Bros around.</p>
<p>Let’s do it!</p>
<p>More info | <a href="http://www.movember.com" title="Movember">Movember</a></p>
<p/></div>
    </content>
    <updated>2012-11-23T10:11:12Z</updated>
    <category term="Communication"/>
    <category term="charity"/>
    <category term="moustache"/>
    <category term="Movember"/>
    <author>
      <name>Miguel Julián</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2013-03-04T10:15:04Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=468</id>
    <link href="http://blogs.zentyal.org/gueststars/2012/11/22/we-have-a-winning-fluffy-picture/" rel="alternate" type="text/html"/>
    <title>We have a winning Fluffy picture!</title>
    <summary>Congrats to @Miripi! The picture of her exclusive, customized Fluffy cube was the most voted by Zentyal staff (we really loved it!). It really seems that the quickest way to win the hearths of Zentyal staff is to wear a heavy t-shirt As promised, the winner gets a small Zentyal gift package. Miripi, we hope you will [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Congrats to <a href="http://twitter.com/Miripi" title="Miripi">@Miripi</a>! The picture of her <a href="http://twitpic.com/beepv7" title="A winning Fluffy picture!">exclusive, customized Fluffy cube</a> was the most voted by Zentyal staff (we really loved it!). It really seems that the quickest way to win the hearths of Zentyal staff is to wear a heavy t-shirt <img alt=";)" class="wp-smiley" src="http://blogs.zentyal.org/gueststars/wp-includes/images/smilies/icon_wink.gif"/> </p>
<p style="text-align: center;"><img alt="" class=" wp-image-475 aligncenter" height="280" src="http://blogs.zentyal.org/gueststars/files/2012/11/winner-300x225.jpg" width="420"/></p>
<p>As promised, the winner gets a small Zentyal gift package. Miripi, we hope you will enjoy it!</p>
<p style="text-align: center;"><a href="http://blogs.zentyal.org/gueststars/2012/11/22/we-have-a-winning-fluffy-picture/fluffy/" rel="attachment wp-att-477"><img alt="" class=" wp-image-477 aligncenter" height="250" src="http://blogs.zentyal.org/gueststars/files/2012/11/fluffy-300x168.jpg" width="420"/></a></p>
<p>Did you already make your own Fluffy? Not yet? Check out <a href="http://blogs.zentyal.org/gueststars/2012/10/19/create-your-own-fluffy/">this post</a> where you can find the instructions to make your own Fluffy.</p></div>
    </content>
    <updated>2012-11-22T10:19:00Z</updated>
    <category term="Communication"/>
    <author>
      <name>Marta Cambronero</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2013-02-21T10:10:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=437</id>
    <link href="http://blogs.zentyal.org/gueststars/2012/11/20/keep-learning-the-kaizen-path/" rel="alternate" type="text/html"/>
    <title>Keep Learning, the Kaizen path</title>
    <summary>I would like to share with you a story that I recently read in this post blog. The woodcutter story Once upon a time a very strong woodcutter asked for a job with a timber merchant, and he got it. The salary was really good and so were the work conditions. For that reason, the [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>I would like to share with you a story that I recently read in this <a href="http://www.correderajorge.es/keep-learning/" target="_blank" title="Keep Learning">post blog</a>.</p>
<blockquote>
<h4>The woodcutter story</h4>
<p>Once upon a time a very strong woodcutter asked for a job with a timber merchant, and he got it. The salary was really good and so were the work conditions. For that reason, the woodcutter was determined to do his best.<br/>
His boss gave him an axe and showed him the area where he was supposed to work. The first day, the woodcutter brought 18 trees. “Congratulations,” the boss said. “Go on that way!” Very motivated by the boss’ words, the woodcutter tried harder the next day, but could bring 15 trees only. The third day he tried even harder, but could bring 10 trees only. Day after day he was bringing less and less trees.</p>
<p>“I must be losing my strength”, the woodcutter thought. He went to the boss and apologized, saying that he could not understand what was going on. “When was the last time you sharpened your axe?” the boss asked. “Sharpen? I had no time to sharpen my axe. I have been very busy trying to cut trees…”</p>
<p><strong>Moral of the story</strong> : Working hard is not enough; one has to keep on sharpening one’s skills.</p></blockquote>
<p>It amaze me when I read it the first time. It makes obvious something that normally when building software we forget, sharpening our axe. Some people will argue that it’s not the same, you don’t use and axe to program <a href="http://zentyal.org" target="_blank" title="Zentyal">Zentyal</a> or any other software. That’s right, it’s even worse. <strong>Our tools</strong> <strong>are more complex</strong>, and difficult to master, so things like testing, proper coding, estimation, etc. need more time to be studied and correctly used. The good news are that we, as developers, <strong>can do a lot more than sharpening an axe</strong>.</p>
<p>One philosophy that fits well with this story and that I really love and try to practice it’s the Japanese <a href="http://es.wikipedia.org/wiki/Kaizen" target="_blank" title="Kaizen">Kaizen</a>. It means “<em>continuous improvement</em>” and it came from the Toyota Production System. In software and for me it means that we should trying to improve our process, continually. Never getting satisfied with a particular way of doing the things or the <em>quality</em> that we are delivering. It always can be better without a doubt. <strong>Perfection</strong> <strong>it’s not a state it’s a path</strong>.</p>
<p> </p></div>
    </content>
    <updated>2012-11-20T04:34:49Z</updated>
    <category term="Development"/>
    <category term="agile"/>
    <category term="continuous improvement"/>
    <category term="kaizen"/>
    <category term="software development"/>
    <category term="tools"/>
    <author>
      <name>Julio José García Martín</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2013-01-25T10:15:03Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/gueststars/?p=402</id>
    <link href="http://blogs.zentyal.org/gueststars/2012/10/19/create-your-own-fluffy/" rel="alternate" type="text/html"/>
    <title>Create your own Fluffy</title>
    <summary>It has been a long time since we decided to create Fluffy, but finally, Fluffy is here among us. Why a mascot? Since the very beginning of the Zentyal project we always wanted to have a mascot for a number of reasons. In the first place, we think that a mascot is a positive eye-catcher, [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>It has been a long time since we decided to create Fluffy, but finally, Fluffy is here among us.</p>
<p><a href="http://blogs.zentyal.org/gueststars/files/2012/10/flufy-web.jpg"><img alt="Fluffy is here" class="aligncenter size-full wp-image-418" height="325" src="http://blogs.zentyal.org/gueststars/files/2012/10/flufy-web.jpg" width="460"/></a></p>
<h2>Why a mascot?</h2>
<p>Since the very beginning of the Zentyal project we always wanted to have a mascot for a number of reasons. In the first place, we think that a mascot is a positive eye-catcher, able to grab people’s attention more easily than a logo or any other visual resource.</p>
<p>It also helps to build good feeling among the community: people can identify more easily with a little human like mascot than just with a name or a logo and in addition, it can also help to spread the word of the project.</p>
<p>Apart from that, a mascot is a very versatile resource, it can be used to make the users smile during the installation process, reinforce messages, it can be helpful for creating merchandising, etc.</p>
<h2>Why Fluffy is a panda bear?</h2>
<p>So what is the reason that our mascot is an adorable, curious, big-headed panda bear? First of all because we like panda bears, they are robust like Zentyal products, peaceful like Zentyal family, and they come from oriental “Zen” culture that matches with the <a href="http://blogs.zentyal.org/heidi/2010/08/19/the-new-name-for-ebox-platform-is-zentyal/" title="why zentyal name"> Zentyal project philosophy</a>.</p>
<p>The first drafts of Fluffy saw light as forum avatars, created by <a href="http://www.nicocomic.com/" title="ni and co">Antonio</a> (a friend of the project), during a long road trip to Wacken festival. The aim of the avatars was to represent the different forum member levels, going from basic user level, “Apprentice” to most advance user level “Hero”, and they looked this this:</p>
<p><a href="http://blogs.zentyal.org/gueststars/files/2012/10/Captura-de-pantalla-2012-10-18-a-las-19.13.11.png"><img alt="fluffy forums avatars" class="aligncenter size-full wp-image-405" src="http://blogs.zentyal.org/gueststars/files/2012/10/Captura-de-pantalla-2012-10-18-a-las-19.13.11.png" width="480"/></a></p>
<h2>Why Fluffy is called Fluffy?</h2>
<p>We got the name of Fluffy basically from the next scene of the movie <a href="http://www.imdb.com/title/tt1323594/" title="despicable me IMDB">Despicable Me</a>. Zentyal staff has also a inclination to become fluffy over time, so it seemed an appropriate name for our mascot!</p>
<p>&lt;iframe allowfullscreen="allowfullscreen" frameborder="0" height="270" src="http://www.youtube.com/embed/D4i7vS_UO4Q?fs=1&amp;amp;feature=oembed" width="480"&gt;&lt;/iframe&gt;</p>
<h2>And finally, let’s make your own Fluffy!</h2>
<p>Now to start off on the right foot with Fluffy, let’s see how you can create your very own Fluffy cube.</p>
<p>1- Download and print the template:  <a href="http://blogs.zentyal.org/gueststars/files/2012/10/fluffy_cube.pdf">Fluffy cube template</a></p>
<p>2- Get a scissors, some glue and follow the instructions</p>
<p>3- When your Fluffy is ready, upload a picture of yourself and your Fluffy to your Facebook account and tag Zentyal (or send us the picture to <em>info at zentyal.org</em>). In one week Zentyal staff will choose the coolest pictures and will contact you to send you a small package by mail!</p>
<p><a href="http://blogs.zentyal.org/gueststars/files/2012/10/cubo-fluffy-low.jpg"><img alt="cube Fluffy" class="aligncenter size-full wp-image-419" height="640" src="http://blogs.zentyal.org/gueststars/files/2012/10/cubo-fluffy-low.jpg" width="480"/></a><a href="http://blogs.zentyal.org/gueststars/files/2012/10/Captura-de-pantalla-2012-10-19-a-las-00.52.52.png"><img alt="DIY Fluffy cube" class="aligncenter size-full wp-image-420" height="677" src="http://blogs.zentyal.org/gueststars/files/2012/10/Captura-de-pantalla-2012-10-19-a-las-00.52.52.png" width="480"/></a></p></div>
    </content>
    <updated>2012-10-19T09:43:22Z</updated>
    <category term="Communication"/>
    <author>
      <name>jcarrion</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/gueststars</id>
      <link href="http://blogs.zentyal.org/gueststars/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/gueststars" rel="alternate" type="text/html"/>
      <subtitle>A perfect place for a post on Zentyal</subtitle>
      <title>Guest Stars</title>
      <updated>2013-01-24T10:00:22Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/icorreas/?p=263</id>
    <link href="http://blogs.zentyal.org/icorreas/2012/10/18/first-zentyal-zarafa-webinar/" rel="alternate" type="text/html"/>
    <title>First Zentyal – Zarafa webinar</title>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p><a href="http://blogs.zentyal.org/icorreas/files/2012/10/zentyal-zarafa_webinar.jpg"><img align="middle" alt="" src="http://blogs.zentyal.org/icorreas/files/2012/10/zentyal-zarafa_webinar.jpg" width="420"/></a></p></div>
    </content>
    <updated>2012-10-17T22:41:07Z</updated>
    <category term="Uncategorized"/>
    <author>
      <name>Ignacio Correas</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/icorreas</id>
      <link href="http://blogs.zentyal.org/icorreas/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/icorreas" rel="alternate" type="text/html"/>
      <subtitle>Struggling for balance between community development and business growth in Zentyal</subtitle>
      <title>How we know Linux to be banana shaped</title>
      <updated>2012-11-03T00:52:29Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/heidi/?p=296</id>
    <link href="http://blogs.zentyal.org/heidi/2012/10/03/how-metrics-help-to-take-decisions-about-free-software-find-out-during-zentyal-summit-1-day-to-go/" rel="alternate" type="text/html"/>
    <title>How metrics help to take decisions about free software? Find out during Zentyal Summit (1 day to go!)</title>
    <summary>Jesús González Barahona, one of the keynote speakers of Zentyal Summit 2012 published today a basic analysis of the Zentyal server project based on the activity on the mailing lists and code management repository. After a quick view to the data and jogging my memory, the major changes seem logical due to some internal changes [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p><a href="http://blog.bitergia.com/2012/10/03/basic-analysis-of-zentyal/"><img alt="Zentyal server project analysis by Bitergia" class="ligncenter size-full wp-image-297" height="338" src="http://blogs.zentyal.org/heidi/files/2012/10/zentyal_analysis_bitergia.png" title="foss_for_ppa" width="400"/></a></p>
<p><a href="http://twitter.com/jgbarah" title="Jes&#xFA;s Gonz&#xE1;lez Barahona">Jesús González Barahona</a>, one of the keynote speakers of Zentyal Summit 2012 published today a <a href="http://blog.bitergia.com/2012/10/03/basic-analysis-of-zentyal/" title="Basic analysis of the Zentyal Server Project">basic analysis of the Zentyal server project</a> based on the activity on the mailing lists and code management repository. </p>
<p>After a quick view to the data and jogging my memory, the major changes seem logical due to some internal changes we have carried out over the years. I’m quite curious to find out what else can be found out based on publicly available data and if there are any recommendations or best practices that could be carried out to improve the project based on this data. </p>
<p><strong>Let’s see if we’ll find out this tomorrow!</strong> Jesús’ talk will be held from 11:00 to 11:30 a.m. and it will also be <strong><a href="http://events.zentyal.com/zentyal-summit-2012/" title="Zentyal Summit 2012 Streaming">streamed</a></strong>.</p></div>
    </content>
    <updated>2012-10-03T21:59:41Z</updated>
    <category term="Community"/>
    <category term="Zentyal crew"/>
    <author>
      <name>hvilppola</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/heidi</id>
      <link href="http://blogs.zentyal.org/heidi/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/heidi" rel="alternate" type="text/html"/>
      <subtitle>Zentyal crew, life and everything</subtitle>
      <title>heidi's blog</title>
      <updated>2012-12-19T12:25:04Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/heidi/?p=283</id>
    <link href="http://blogs.zentyal.org/heidi/2012/10/02/sneak-peek-to-zentyal-summit-2012-preparations-2-days-to-go/" rel="alternate" type="text/html"/>
    <title>Sneak peek to Zentyal Summit 2012 preparations (2 days to go!)</title>
    <summary>Assembling of the over 200 Zentyal Summit 2012 badges. Estimated time: 30 minutes. Photo taken: 4 hours later, some 50 badges still to go. Slogan of the day: Always optimistic! If you want one of these cool badges, you totally have to be registered ;)! See you at Zentyal Summit in just two days!</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p><a href="http://blogs.zentyal.org/heidi/files/2012/10/assembly_line_zentyal_summit_2012_badges.jpg"><img alt="Assembling the over 200 Zentyal Summit 2012 badges" class="aligncenter size-full wp-image-286" height="233" src="http://blogs.zentyal.org/heidi/files/2012/10/assembly_line_zentyal_summit_2012_badges.jpg" title="assembly_line_zentyal_summit_2012_badges" width="350"/></a></p>
<p>Assembling of the over 200 Zentyal Summit 2012 badges. Estimated time: 30 minutes. Photo taken: 4 hours later, some 50 badges still to go. Slogan of the day: <strong>Always optimistic!</strong></p>
<p>If you want one of these cool badges, you totally have to be <strong><a href="http://events.zentyal.com/zentyal-summit-2012/" title="Register for Zentyal Summit 2012 - Talking Linux to small businesses">registered</a></strong> ;)! See you at Zentyal Summit in just <strong>two days</strong>!</p></div>
    </content>
    <updated>2012-10-02T21:31:18Z</updated>
    <category term="Community"/>
    <category term="Zentyal crew"/>
    <author>
      <name>hvilppola</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/heidi</id>
      <link href="http://blogs.zentyal.org/heidi/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/heidi" rel="alternate" type="text/html"/>
      <subtitle>Zentyal crew, life and everything</subtitle>
      <title>heidi's blog</title>
      <updated>2012-12-19T12:25:04Z</updated>
    </source>
  </entry>

  <entry xml:lang="en-US">
    <id>http://blogs.zentyal.org/heidi/?p=268</id>
    <link href="http://blogs.zentyal.org/heidi/2012/10/01/its-all-coming-together-for-the-summit-3-days-to-go/" rel="alternate" type="text/html"/>
    <title>It’s all coming together for the Summit (3 days to go!)</title>
    <summary>So, little by little everything is coming together for the Zentyal Summit 2012! Zentyal staff members not usually located in Zaragoza have started to come together (yay!), big brown cardboard boxes can be found at every corner of the Zentyal HQ and starting from tomorrow, we’re expecting the very first guests to arrive. All very [...]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p><a href="http://blogs.zentyal.org/heidi/files/2012/10/zentyal_summit_2012_materials.jpg"><img alt="Some of the Zentyal Summit 2012 materials" class="aligncenter size-full wp-image-273" height="300" src="http://blogs.zentyal.org/heidi/files/2012/10/zentyal_summit_2012_materials.jpg" title="zentyal_summit_2012_materials" width="400"/></a></p>
<p>So, little by little everything is coming together for the <strong><a href="http://events.zentyal.com/zentyal-summit-2012/" title="Zentyal Summit 2012 - Talking Linux to Small Businesses">Zentyal Summit 2012</a></strong>! Zentyal staff members not usually located in Zaragoza have started to come together (<strong>yay!</strong>), big brown cardboard boxes can be found at every corner of the Zentyal HQ and starting from tomorrow, we’re expecting the very first guests to arrive. All very exciting :)! And more so, because today we hit the milestone of 200 registered attendees (<strong>double yay!</strong>)</p>
<p><strong>Stay tuned</strong> or come to find out by yourself what’s all this fuss about ;)!</p></div>
    </content>
    <updated>2012-10-01T21:34:42Z</updated>
    <category term="Community"/>
    <category term="Zentyal crew"/>
    <author>
      <name>hvilppola</name>
    </author>
    <source>
      <id>http://blogs.zentyal.org/heidi</id>
      <link href="http://blogs.zentyal.org/heidi/feed/" rel="self" type="application/atom+xml"/>
      <link href="http://blogs.zentyal.org/heidi" rel="alternate" type="text/html"/>
      <subtitle>Zentyal crew, life and everything</subtitle>
      <title>heidi's blog</title>
      <updated>2012-12-19T12:25:04Z</updated>
    </source>
  </entry>
</feed>
