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

<channel>
	<title>SYNAQ</title>
	<atom:link href="http://www.synaq.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.synaq.com</link>
	<description>Leading SaaS Provider of Email Services for Business</description>
	<lastBuildDate>Wed, 04 Aug 2010 11:38:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=8719</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Integrating Zimbra with an external e-mail security platform</title>
		<link>http://www.synaq.com/technical-blog/integrating-zimbra-with-an-external-e-mail-security-platform</link>
		<comments>http://www.synaq.com/technical-blog/integrating-zimbra-with-an-external-e-mail-security-platform#comments</comments>
		<pubDate>Wed, 04 Aug 2010 11:38:53 +0000</pubDate>
		<dc:creator>David Jacobson</dc:creator>
				<category><![CDATA[Technical Blog]]></category>
		<category><![CDATA[Email Security]]></category>
		<category><![CDATA[pinpoint securemail]]></category>
		<category><![CDATA[zimbra]]></category>

		<guid isPermaLink="false">http://www.synaq.com/?p=1205</guid>
		<description><![CDATA[SMTP is for spam, but occasionally people send legitimate email.  It has been known to happen.
Zimbra is the leader in open source email and collaboration with over 50 million paid for mailboxes worldwide, this is the core technology we use to power our hosted email platform.
Pinpoint Securemail is our flagship e-mail security platform with 6 years [...]]]></description>
			<content:encoded><![CDATA[<p>SMTP is for spam, but occasionally people send legitimate email.  It has been known to happen.</p>
<p><a href="http://www.zimbra.com" target="_blank">Zimbra</a> is the leader in open source email and collaboration with over 50 million paid for mailboxes worldwide, this is the core technology we use to power our hosted email platform.</p>
<p><a href="http://www.synaq.com/products/email-security/overview" target="_blank">Pinpoint Securemail</a> is our flagship e-mail security platform with 6 years of R&amp;D and innovation now processing over 400 million mails per month.</p>
<p>Integration of Zimbra and Pinpoint Securemail was required for various reasons, namely saving resources on our hosted email platform, better security and reporting for our customers.</p>
<p>Zimbra and Pinpoint Securemail are based on a range of different open source products so the integration was easily achieved, here&#8217;s what we did&#8230;</p>
<p><strong><span style="text-decoration: underline">Zimbra modifications</span></strong></p>
<p><a href="http://www.ijs.si/software/amavisd/" target="_blank"><strong>Amavisd</strong></a><strong> was set to listen on an additional port that does not perform spam or virus checks.</strong></p>
<p>/opt/zimbra/conf/amavisd.conf.in</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">$inet_socket_port = [10024,10026];   # listen on this local TCP port(s) (see $protocol)
$interface_policy{'10026'} = 'MSCHKD'; # Email has already been determined as SPAM
$policy_bank{'MSCHKD'} = {
  bypass_spam_checks_maps = [1],
  bypass_banned_checks_maps = [1],
  bypass_header_checks_maps = [1],
  remove_existing_x_scanned_headers = 0,
  remove_existing_spam_headers = 0,
  remove_existing_spam_headers_maps = [0],
};</pre></div></div>

<p><strong>Header checks in </strong><a href="http://www.postfix.org/" target="_blank"><strong>Postfix</strong></a><strong> to ensure mail from Pinpoint is sent to Amavisd port 10026 if &#8220;X-Spam-Flag&#8221; header is set</strong></p>
<p>/opt/zimbra/conf/postfix_header_checks.in</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">/X-Spam-Flag: (YES*|NO*)/ FILTER smtp-amavis:[127.0.0.1]:10026</pre></div></div>

<p><strong>Modify Postifx to ensure we only accept mail if SMTP Authentication is used or if the sending host is on our trusted network (Pinpoint)</strong></p>
<p><strong>Note: This will stop semi intelligent spammers who think they can just add an &#8220;X-Spam-Flag&#8221; header to bypass our security checks</strong></p>
<p>/opt/zimbra/postfix/conf/master.cf.in</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">smtp     inet  n       -       n       -       -       smtpd
        -o smtpd_etrn_restrictions=reject
        -o smtpd_client_restrictions=permit_mynetworks,permit_sasl_authenticated,reject</pre></div></div>

<p><strong>Integration for &#8220;Junk&#8221; and &#8220;Not Junk&#8221; Zimbra option to train Pinpoint Securemail <a href="http://en.wikipedia.org/wiki/Bayes'_theorem" target="_blank">Bayesian database</a></strong></p>
<p>/opt/zimbra/conf/salocal.cf.in</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">use_bayes 1
bayes_auto_expire 0
bayes_store_module Mail::SpamAssassin::BayesStore::SQL
bayes_sql_dsn DBI:mysql:bayes:[hostname]
bayes_sql_username [username]
bayes_sql_password [password]
bayes_sql_override_username [username]</pre></div></div>

<p><strong><span style="text-decoration: underline">Pinpoint Securemail Modifications</span></strong></p>
<p>Pinpoint uses <a href="http://www.mailscanner.info" target="_blank">MailScanner</a> at the heart of the system, so making changes to add the headers required was simple.</p>
<p>We chose to use the &#8220;X-Spam-Flag&#8221; header after analyzing how Zimbra puts spam in the Junk folder.</p>
<p>non.spam.actions.rules</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">To: *@domain.com deliver header &quot;X-Spam-Flag: NO&quot;</pre></div></div>

<p>spam.actions.rules</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">To: *@domain.com store deliver header &quot;X-Spam-Flag: YES&quot;</pre></div></div>

<p>spam.high.actions.rules</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">To: *@domain.com store deliver header &quot;X-Spam-Flag: YES&quot;</pre></div></div>

<p><strong>Recap what we have achieved</strong></p>
<ul>
<li>No spam and virus checks performed locally on our Zimbra hosted email platform</li>
<li>This resulted in reduced server resource utilization</li>
<li>Tight integration with our users training spam and ham for the benefit of all Pinpoint Securemail customers</li>
<li>Outbound e-mail is still scanned for spam and virii</li>
<li>If mail is received from another trusted network that is not Pinpoint, spam and virus scanning will occur</li>
</ul>
<p>We hope the info above gives some insight on how to better integrate Zimbra with your favourite e-mail security platform.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/technical-blog/integrating-zimbra-with-an-external-e-mail-security-platform/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pinpoint 2 0.17: Exciting new toys</title>
		<link>http://www.synaq.com/uncategorized/pinpoint-2-0-17-exciting-new-toys</link>
		<comments>http://www.synaq.com/uncategorized/pinpoint-2-0-17-exciting-new-toys#comments</comments>
		<pubDate>Thu, 29 Jul 2010 13:00:10 +0000</pubDate>
		<dc:creator>Gareth McCumskey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.synaq.com/?p=1187</guid>
		<description><![CDATA[We have been hard at work. Oh yes, have we ever. And now Pinpoint 2 0.17 is upon us with a host of enhancements to features released with 0.16, as well as a whole brand new module that helps you manage recipient addresses across your domains.
But first things first. What has been improved?
Release Request Decline [...]]]></description>
			<content:encoded><![CDATA[<p class="no_margin">We have been hard at work. Oh yes, have we ever. And now Pinpoint 2 0.17 is upon us with a host of enhancements to features released with 0.16, as well as a whole brand new module that helps you manage recipient addresses across your domains.</p>
<p>But first things first. What has been improved?</p>
<h3 class="synaq_orange">Release Request Decline Reasons</h3>
<p>We realised that while the new <a href="http://www.synaq.com/news-releases/pinpoint-2-0-16-important-release-update" target="_blank">release request mechanism</a> works incredibly well, the original requestor might be left disgruntled when his release request is declined. Primarily because they do not know why. And if it has been declined, this requestor might fall back to the old faithful method of emailing an admin, negating the benefits of the release request mechanism.</p>
<p>In response, we have added a new feature that when the &#8220;Decline&#8221; option is selected for a release request, the admin has the opportunity to select one of four pre-populated decline reasons or enter their own specific reason for the decline.</p>
<p><a href="http://www.synaq.com/wp-content/uploads/2010/07/DeclineReason.png"><img class="alignnone size-full wp-image-1188" title="DeclineReason" src="http://www.synaq.com/wp-content/uploads/2010/07/DeclineReason.png" alt="" width="725" height="188" /></a></p>
<p>At least now, when an administrator does decline a release request, the original requestor is kept informed as to why, easing administrator workloads by reducing queries as to why it was declined.</p>
<h3 class="synaq_orange">Performance Enhancements</h3>
<p>There have also been a number of performance enhancements, some already active before this release, that accelerate the generation of reports as well as the speed of the Dashboard data loading.</p>
<p>In addition, with this release, we have improved the performance of loading the Message Listing view with release requests so that administrators can get to them quicker and action these.</p>
<h3 class="synaq_orange">Shiny new stuff</h3>
<p>Now that the boring stuff is out of the way, lets get to the most exciting aspect of the new release: Mailbox Management. This module has been specifically designed to allow you to control settings for addresses received by Pinpoint for your domain.</p>
<p>Using Mailbox Management you can do two things to the list of addresses provided:</p>
<ul>
<li>Deactivate a mailbox known not to actually exist on your domain. This provides you the ability to restrict mail being delivered to your domain. After all, why should mail be sent to your domain, potentially being processed by your mail server, using your bandwidth, etc, if no one is actually going to see it.</li>
</ul>
<p><a href="http://www.synaq.com/wp-content/uploads/2010/07/DeactivateConfirm.png"><img class="alignnone size-full wp-image-1189" title="DeactivateConfirm" src="http://www.synaq.com/wp-content/uploads/2010/07/DeactivateConfirm.png" alt="" width="748" height="139" /></a></p>
<ul>
<li>Mark an address as an alias to another address. If you have sales@domain.com, you can mark this as an alias to salesguy@domain.com. The added benefit of doing this is that instead of salesguy@domain.com getting 2 Daily Junk Mail reports (or more) because of his own account and the aliases, he will get one, unified Daily Junk Mail report showing the details of all mail blocked on his address and all the aliases linked to him.</li>
</ul>
<p><a href="http://www.synaq.com/wp-content/uploads/2010/07/AliasSetting.png"><img class="alignnone size-full wp-image-1190" title="AliasSetting" src="http://www.synaq.com/wp-content/uploads/2010/07/AliasSetting.png" alt="" width="745" height="123" /></a></p>
<p>We hope you that these additional enhancements make administering your email security service that bit easier and hassle free. And as usual, if you would like to provide feedback or discuss the changes, please feel free to do so in the comments or email dev@synaq.com to chat to the development directly.</p>
<p>For more detailed information about this release, please refer to the release notes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/uncategorized/pinpoint-2-0-17-exciting-new-toys/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pinpoint 2 0.16 &#8211; Important Release Update</title>
		<link>http://www.synaq.com/news-releases/pinpoint-2-0-16-important-release-update</link>
		<comments>http://www.synaq.com/news-releases/pinpoint-2-0-16-important-release-update#comments</comments>
		<pubDate>Thu, 24 Jun 2010 09:41:01 +0000</pubDate>
		<dc:creator>Gareth McCumskey</dc:creator>
				<category><![CDATA[Developers Blog]]></category>
		<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://www.synaq.com/?p=1157</guid>
		<description><![CDATA[We here at SYNAQ are on the cusp of a new release for Pinpoint 2, release 0.16, and this single release adds new features that we feel, if not communicated properly, can cause some confusion with our users and domain administrators using the interface. This blog post is an attempt to help educate our users [...]]]></description>
			<content:encoded><![CDATA[<p>We here at SYNAQ are on the cusp of a new release for Pinpoint 2, release 0.16, and this single release adds new features that we feel, if not communicated properly, can cause some confusion with our users and domain administrators using the interface. This blog post is an attempt to help educate our users on these new features before we publish them to the live system.</p>
<p>The new features that the next release will provide, make it possible for mail recipients in an organisation to finally see what mail, if any, that was intended for them has been blocked and in addition communicate the need for these messages to be released to a domain administrator in a more streamlined and consistent process. These same mail recipients can alternatively release these messages themselves, alleviating work load on the administrators.</p>
<p>How does all this work? Read on to find out</p>
<p><span id="more-1157"></span></p>
<h3 class="synaq_orange">Mail Recipient Release Mechanisms</h3>
<p>The average person that receives mail through Pinpoint is not registered as a user on the interface. And for many organisations, registering every user to give them access to Pinpoint is a labour intensive task that is never finished; people leave and join companies all the time and adding yet another sign-on, sign-off process is not a task we want to burden our clients with.</p>
<p>To overcome this, we have developed a reporting mechanism that domain administrators can activate for a domain (we will look at these settings shortly), whereby these regular mail users on a domain will receive a daily email that lists all blocked messages, if any, that were addressed to them for the previous day.</p>
<p>The report that the end users receive lists all spam blocked by Pinpoint as well as all Policy Blocked messages (blocked due to reasons of size or attachment types, etc). Alongside each listed blocked mail entry is a link that the user can click labelled &#8220;Release&#8221;.</p>
<p><strong><a href="http://www.synaq.com/wp-content/uploads/2010/06/daily_junkmail_report.png"><img class="alignnone size-full wp-image-1158" title="daily_junkmail_report" src="http://www.synaq.com/wp-content/uploads/2010/06/daily_junkmail_report.png" alt="" width="538" height="326" /></a></strong></p>
<p>Depending on the settings the administrator has activated for the domain, this link can do one of two things:</p>
<ul>
<li>The message can be immediately released to the intended recipient/s.</li>
<li>The message can be flagged as a &#8220;Release Request&#8221;, which will require an administrator to either accept or decline.</li>
</ul>
<p><strong><br />
</strong></p>
<p><strong><a href="http://www.synaq.com/wp-content/uploads/2010/06/mressage_released.png"><img class="alignnone size-full wp-image-1162" title="mressage_released" src="http://www.synaq.com/wp-content/uploads/2010/06/mressage_released.png" alt="" width="453" height="201" /></a></strong></p>
<p><strong><a href="http://www.synaq.com/wp-content/uploads/2010/06/mressage_released.png"></a></strong><img class="alignnone size-full wp-image-1163" title="mressage_release_requested" src="http://www.synaq.com/wp-content/uploads/2010/06/mressage_release_requested.png" alt="" width="450" height="233" /></p>
<p>From the average mail recipients point of view, that is all that they will see; either released or requested for release.</p>
<h3 class="synaq_orange">Domain Administrator Settings</h3>
<p>There obviously needs to be some control over how all this works, and these settings are controlled on a domain level. As a Domain Administrator, you can alter these settings.</p>
<p>Going to the Organisations module, and opening the &#8220;Edit Domain&#8221; section, you can then select which of your allowed domains you want to edit settings for.</p>
<p><strong><a href="http://www.synaq.com/wp-content/uploads/2010/06/domain_settings.png"><img class="alignnone size-full wp-image-1159" title="domain_settings" src="http://www.synaq.com/wp-content/uploads/2010/06/domain_settings.png" alt="" width="514" height="302" /></a></strong></p>
<p>Within this view you will see a few options related to Quarantine Report settings. The first option, &#8220;Domain administrators recieve daily quarantine reports for this domain&#8221;, remains unchanged and will affect the ability for domain administrators to receive the summary quarantine reports that has been available for a long time now. Nothing there has changed.</p>
<p>The next option, &#8220;Mail recipients at this domain receive daily quarantine reports&#8221;, affects the new feature for the upcoming release. If this is enabled, your regular mail users will receive a daily report (waiting for them when they come into work in the morning) with a list of the previous days blocked mail as described above.</p>
<p>The next section labelled &#8220;Mail Recipient Mail Release&#8221; has one option in it; &#8220;Mail recipients can release their own mail (if unchecked can only request release)&#8221;. If this option is enabled, the regular mail recipients can immediately release mail to them from the report by clicking the &#8220;Release&#8221; link in the report they get with no interaction needed by an administrator. If, however, this remains off, clicking &#8220;Release&#8221; in their report will flag that message for release instead and need to be actioned by an administrator.</p>
<p>In summary, for this feature to work for your domain/s, you need to enable the &#8220;Mail recipients at this domain recieve daily quarantine reports&#8221; option, and if you want users to release their own mail immediately also enable &#8220;Mail recipients can release their own mail (if unchecked can only request release)&#8221;, or not if they can only request a release.</p>
<h3 class="synaq_orange">Actioning Release Requests</h3>
<p>There have been a number of features included to make communicating the fact that there are release requests waiting for an admin as clean and simple as possible. The first of these to note is our notification message that appears if any messages have been requested for release.</p>
<p><strong><a href="http://www.synaq.com/wp-content/uploads/2010/06/growl_notification.png"><img class="alignnone size-full wp-image-1160" title="growl_notification" src="http://www.synaq.com/wp-content/uploads/2010/06/growl_notification.png" alt="" width="335" height="77" /></a></strong></p>
<p>Once a mail recipient has requested a mail item for release, the Pinpoint interface will do regular checks, as well as with each page load, and then notify the logged in administrator about any Release Requests. Clicking the notification message will then load the Message Listing module with the correct filters in place to view all current Release Requests.</p>
<p><strong><a href="http://www.synaq.com/wp-content/uploads/2010/06/message_listing.png"><img class="alignnone size-full wp-image-1161" title="message_listing" src="http://www.synaq.com/wp-content/uploads/2010/06/message_listing.png" alt="" width="357" height="254" /></a></strong></p>
<p>Each message that is waiting to be actioned has two options available to it; Accept or Decline. The Accept option will release the message to the original recipient/s of the mail and unmark the message as a Release Request (and also send an email to the original recipients that the message requested for release was released). The Decline option will simply unmark the message as a Release Request and send an email to the original recipients that the request was declined.</p>
<p>Thats it! All that an admin needs to do is go down the list, Accepting or Declining as he sees fit.</p>
<h3 class="synaq_orange">We Love Your Input</h3>
<p>We would love to encourage our customers reading this to comment on this blog post if there are any questions or suggestions they would like to share (we read them all!). Alternatively, you can also email dev@synaq.com to communicate with the SYNAQ development team.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/pinpoint-2-0-16-important-release-update/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SA Corporates Embracing open source SaaS</title>
		<link>http://www.synaq.com/news-releases/sa-corporates-embracing-open-source-saas</link>
		<comments>http://www.synaq.com/news-releases/sa-corporates-embracing-open-source-saas#comments</comments>
		<pubDate>Fri, 18 Jun 2010 14:36:39 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://www.synaq.com/?p=1152</guid>
		<description><![CDATA[
Johannesburg-based  open source software as a service company SYNAQ&#8217;s excellent performance  in the interim SA FastGrowth 100 index is a clear indication that open  source and software as a service (SaaS) is rapidly moving to mainstream  within the South African corporate environment.
So says SYNAQ  managing director Yossi Hasson, who points [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Verdana; font-size: x-small;"><span><span><span><img class="alignnone" title="Allworld Logo" src="http://www.allworldlive.com/sites/default/files/allworld_logo.jpg" alt="" width="89" height="93" /></span></span></span></span></p>
<p>Johannesburg-based  open source software as a service company SYNAQ&#8217;s excellent performance  in the interim SA FastGrowth 100 index is a clear indication that open  source and software as a service (SaaS) is rapidly moving to mainstream  within the South African corporate environment.</p>
<p>So says SYNAQ  managing director Yossi Hasson, who points out that in the five years  tracked by the index, SYNAQ experienced top line revenue growth of 184%,  making it the sixth fastest growing company of those tracked in South  Africa by AllWorld Network.</p>
<p>The report described the performance  of the list&#8217;s ranked companies in 2009 in particular as “stunning” in  the way it defied “the sluggishness of the global economy”.</p>
<p>“That  SYNAQ was included in this grouping is an unambiguous affirmation of the  fact that corporate South Africa is wholeheartedly embracing  cloud-based services and open source software.</p>
<p>“This trend is  being driven by companies seeking alternatives to the exorbitant  infrastructure costs, vendor lock-in and software complexity they have  been subjected to for so long,” Hasson adds.</p>
<p>The AllWorld “South  Africa 34/100 Fast Facts” list – an interim list intended to give early  economic indicators of South Africa&#8217;s entrepreneurial growth potential –  was published earlier this month (to view the list go to: <a href="http://www.allworldlive.com/south-africa-100/winners/34-100" target="_blank">http://www.allworldlive.com/south-africa-100/winners/34-100</a>).</p>
<p>The list, which is  endorsed by Harvard University Professor Michael E Porter, a leading  authority on competitive strategy, is made up of companies that reach  AllWorld&#8217;s international standard for competitive fast growth companies.  The rankings are based on sales growth between 2006 and 2009.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/sa-corporates-embracing-open-source-saas/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pinpoint 2: Now with Outbound</title>
		<link>http://www.synaq.com/news-releases/pinpoint-2-now-with-outbound</link>
		<comments>http://www.synaq.com/news-releases/pinpoint-2-now-with-outbound#comments</comments>
		<pubDate>Wed, 02 Jun 2010 10:30:41 +0000</pubDate>
		<dc:creator>Gareth McCumskey</dc:creator>
				<category><![CDATA[Developers Blog]]></category>
		<category><![CDATA[News Releases]]></category>
		<category><![CDATA[Outbound]]></category>
		<category><![CDATA[Pinpoint]]></category>

		<guid isPermaLink="false">http://www.synaq.com/?p=1033</guid>
		<description><![CDATA[Moments ago we released the latest version of Pinpoint 2 (0.15) to our customers, and those who have used the system may now notice that on the Message Listing module itself as well as within certain report parameters, the option can be chosen to view details of Outbound mail.  This release has actually been [...]]]></description>
			<content:encoded><![CDATA[<p>Moments ago we released the latest version of Pinpoint 2 (0.15) to our customers, and those who have used the system may now notice that on the Message Listing module itself as well as within certain report parameters, the option can be chosen to view details of Outbound mail.  This release has actually been in the works a lot longer than the two weeks since 0.14 came out, but due to SYNAQ wanting to ensure that our newly-minted Outbound service was working optimally we did not release the functionality with 0.14 and instead held the Outbound specific UI features back till we were satisfied with the end result.  What does this mean for our customers? Well, you can now have Pinpoint SecureMail scan all your outgoing mail as well. In addition, because we would end up logging all the outgoing mail from your domain, you get all the same reporting features available to your incoming mail, allowing you to accurately identify how your organisation is sending mail. If you are interested in the Outbound service for your organisation&#8217;s mail please feel free to contact sales@synaq.com.  A short list of the benefits this Outbound service gives you:</p>
<ul>
<li>Protection from spam mail created by malware that may exist in your organisation due to the Outbound spam filters.</li>
<li>Control over content types and size allowed to leave your organisation via email.</li>
<li>Detailed reporting abilities on all mail coming out of your organisations domains.</li>
<li>Basic outbound mail queue viewing to determine if mail you sent is still waiting to be delivered.</li>
</ul>
<p>We do also have other plans that will leverage across our Outbound service, so watch this space. Oh yes &#8230; we have plans (cue evil laughter)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/pinpoint-2-now-with-outbound/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open VS Closed Source Software Security</title>
		<link>http://www.synaq.com/open-source-blog/open-vs-closed-source-software-security</link>
		<comments>http://www.synaq.com/open-source-blog/open-vs-closed-source-software-security#comments</comments>
		<pubDate>Mon, 31 May 2010 09:45:55 +0000</pubDate>
		<dc:creator>Yossi Hasson</dc:creator>
				<category><![CDATA[Open for Business]]></category>
		<category><![CDATA[GPL]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[software security]]></category>

		<guid isPermaLink="false">http://www.synaq.com/?p=1014</guid>
		<description><![CDATA[We often get asked about the security implications of Open Source Software VS Closed Source Software. The presentation below was given at the quarterly Free Beer Sessions and attempts to answer the question: Open VS Closed: Which is more secure?
Open vs Closed &#8211; Which is more secure? 
View more presentations from SYNAQ.

]]></description>
			<content:encoded><![CDATA[<p>We often get asked about the security implications of Open Source Software VS Closed Source Software. The presentation below was given at the quarterly Free Beer Sessions and attempts to answer the question: Open VS Closed: Which is more secure?</p>
<p><strong style="display: block; margin: 12px 0 4px;"><a title="Open vs Closed - Which is more secure? " href="http://www.slideshare.net/synaq/open-vs-closed-free-beer-presentation">Open vs Closed &#8211; Which is more secure? </a></strong></p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/synaq">SYNAQ</a>.</div>
<p><span id="more-1014"></span></p>
<object width="675" height="553"><param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=openvsclosedfreebeerpresentation-100521032317-phpapp02"/><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=openvsclosedfreebeerpresentation-100521032317-phpapp02"  type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="675" height="553"></embed></object>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/open-source-blog/open-vs-closed-source-software-security/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BBG SP Partners with SYNAQ to offer Cloud Messaging Services</title>
		<link>http://www.synaq.com/news-releases/bbg-sp-partners-with-synaq-to-offer-cloud-messaging-services</link>
		<comments>http://www.synaq.com/news-releases/bbg-sp-partners-with-synaq-to-offer-cloud-messaging-services#comments</comments>
		<pubDate>Thu, 06 May 2010 14:27:14 +0000</pubDate>
		<dc:creator>Yossi Hasson</dc:creator>
				<category><![CDATA[News Releases]]></category>
		<category><![CDATA[cloud messaging]]></category>
		<category><![CDATA[partnership]]></category>
		<category><![CDATA[reseller]]></category>

		<guid isPermaLink="false">http://www.synaq.com/?p=1001</guid>
		<description><![CDATA[BBG Service Provider (SP), a Converged Communication and Cloud Computing Services Company, has joined forces with SYNAQ to deliver SYNAQ’s Cloud Messaging Services. SYNAQ is a leader in the South African Open Source/ SaaS (software as a service) community.
This follows the recent launch of SYNAQ’s channel partner programme for ISPs, ISVs and system integrators.  The [...]]]></description>
			<content:encoded><![CDATA[<p>BBG Service Provider (SP), a Converged Communication and Cloud Computing Services Company, has joined forces with SYNAQ to deliver SYNAQ’s Cloud Messaging Services. SYNAQ is a leader in the South African Open Source/ SaaS (software as a service) community.</p>
<div id="attachment_1003" class="wp-caption alignleft" style="width: 310px"><img class="size-medium wp-image-1003 " title="SYNAQ &amp; BBG SP Photo Small" src="http://www.synaq.com/wp-content/uploads/2010/05/SYNAQ-BBG-SP-Photo-Small-300x225.jpg" alt="SYNAQ &amp; BBG Team Partner Picture" width="300" height="225" /><p class="wp-caption-text">Yossi Hasson (SYNAQ) Brian Timperley, Grant Thom and Louis Jardim (BBG SP) outside BBG SP offices in Bryanston.</p></div>
<p>This follows the recent launch of SYNAQ’s channel partner programme for ISPs, ISVs and system integrators.  The programme enables SYNAQ’s Partners to provide cost-effective, value-added, cloud-based solutions to their customers.</p>
<p>According to BBG SP Sales Director, Grant Thom, the company provides underlying infrastructure and services for all communication requirements beyond the LAN. This is provisioned in a completely network agnostic format.</p>
<p>“We provide capacity on best-of-breed national and international infrastructures, to create uniquely bundled services that are applicable to a client’s needs. Access to business critical applications in the cloud is reinforcing the business drivers for high-speed, redundant connectivity.</p>
<p>“After careful evaluation of cloud messaging services, we found SYNAQ to be the market leaders. Not only are they highly respected, but continuously add value far beyond the traditional mail messaging boundaries. In alignment with the BBG SP value proposition, the partnership with SYNAQ therefore provides our clients with a quality cloud messaging solution,” he said.</p>
<p>SYNAQ CEO Yossi Hasson said the company has developed a strong and redundant messaging infrastructure over the past five years which partners like BBG SP could leverage to provide their customers with essential messaging services. These are based around SYNAQ’s flagship products, developed on Open Source platforms: Pinpoint SecureMail, a messaging hygiene offering designed to eliminate spam and malicious viruses from customers’ networks; Pinpoint Continuity which provides full redundancy for mail infrastructure; Pinpoint Archive, providing tamper-proof unlimited storage email retention and SYNAQ Cloud Messaging Suite, a full messaging and collaboration solution powered by Zimbra.</p>
<p>“We are delighted that a company of BBG SP’s reputation and experience has chosen to partner with SYNAQ and include our solutions as part of their value proposition to their customers,” Hasson concluded.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/bbg-sp-partners-with-synaq-to-offer-cloud-messaging-services/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Re-examining the environmental impact of Spam</title>
		<link>http://www.synaq.com/news-releases/re-examining-the-environmental-impact-of-spam</link>
		<comments>http://www.synaq.com/news-releases/re-examining-the-environmental-impact-of-spam#comments</comments>
		<pubDate>Tue, 04 May 2010 13:37:14 +0000</pubDate>
		<dc:creator>Sam Gelbart</dc:creator>
				<category><![CDATA[News Releases]]></category>
		<category><![CDATA[Spam Index]]></category>

		<guid isPermaLink="false">http://www.synaq.com/?p=863</guid>
		<description><![CDATA[(SYNAQ Spam Index &#8211; Q1 2010)
There are a lot of great articles on the web talking about spam&#8217;s impact on the environment, and one of the things that comes across immediately when you read them, is the negative impact when spam protection is not implemented for a user. Based on research findings it has been [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_961" class="wp-caption alignright" style="width: 427px"><a title="View SYNAQ Spam Index Q1 2010" href="http://www.synaq.com/wp-content/uploads/2010/04/SSI_Q1_2010.png" target="_blank"><img class="size-large wp-image-961  " src="http://www.synaq.com/wp-content/uploads/2010/04/SSI_Q1_2010-1024x636.png" alt="SYNAQ Spam Index Q1 2010" width="417" height="255" /></a><p class="wp-caption-text">SYNAQ Spam Index Q1 2010</p></div>
<h4 class="synaq_orange" style="line-height: 21.6px">(SYNAQ Spam Index &#8211; Q1 2010)</h4>
<p>There are a lot of great articles on the web talking about spam&#8217;s impact on the environment, and one of the things that comes across immediately when you read them, is the negative impact when spam protection is not implemented for a user. Based on research findings it has been determined that the greatest environmental cost from spam (energy consumed, Green House Gas emissions and so on) is generated by users reading through junk mail, deleting junk mail, and looking for false positives (clean or valid email).</p>
<p>Here are some key findings (2008 McAffee/ICE Report Data):</p>
<ul>
<li>An estimated worldwide total of 62 trillion spam emails were sent in 2008</li>
</ul>
<ul>
<li>Globally, annual spam energy use totals 33 billion kilowatt-hours (KWh), or 33 terawatt hours (TWh) That’s equivalent to the electricity used in 2.4 million homes in the United States, with the same Green House Gas (GHG) emissions as 3.1 million passenger cars using 8.8 billion liters of petrol</li>
<li>Spam filtering saves 135 TWh of electricity per year. That’s like taking 13 million cars off the road</li>
<li>If every inbox were protected by a state-of-the-art spam filter, organizations and individuals could reduce today’s spam energy by approximately 75 percent or 25 TWh per year. That’s equivalent to taking 2.3 million cars off the road</li>
<li>The average GHG emission associated with a single spam message is 0.3 grams of CO2, and when multiplied by the annual volume of spam, that&#8217;s equivalent to driving around the Earth 1.6 million times</li>
</ul>
<ul>
<li>A year’s email at a typical medium-size business uses 50,000 KWh; more than one fifth of that annual use can be associated with spam</li>
<li>Filtering spam is beneficial, but fighting spam at the source is even better. When McColo, a major source of online spam, was taken offline in late 2008, the energy saved in the ensuing lull — before spammers rebuilt their sending capacity — equated to taking 2.2 million cars off the road</li>
<li>Much of the energy consumption associated with spam (80 percent) comes from end-users deleting spam and searching for legitimate email (false positives)</li>
<li>Spam filtering accounts for just 16 percent of spam related energy use</li>
</ul>
<p>Reviewing our SPAM index for Q1 2010, and taking into account that SYNAQ&#8217;s Pinpoint SecureMail anti-spam service has a negligible false positive rate of 0,003%, we can see that our contribution to the reduction of GHG emissions while globally small is still significant.</p>
<p>Based on data taken from the McAffee/ICE Report, our service is removing, on average, 0,24g (0,3g * 80%) of GHG emissions from the atmosphere for each spam blocked. This translates into:</p>
<ul>
<li>JAN-2010: 72.3 million spam&#8217;s blocked  = 17 tons of CO2 saved</li>
<li>FEB-2010: 66.6 million spam&#8217;s blocked  = 16 tons of CO2 saved</li>
<li>MAR-2010: 69,3 million spam&#8217;s blocked = 16.6 tons of CO2 saved</li>
</ul>
<p>Grand Total for Q1 2010: 49,6 tons of CO2 emissions saved.</p>
<p>Now that&#8217;s what I call a software service. Cleaning your inbox and saving the planet at the same time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/re-examining-the-environmental-impact-of-spam/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Local reliance on international Internet is a threat to business</title>
		<link>http://www.synaq.com/news-releases/local-reliance-on-international-internet-is-a-threat-to-business</link>
		<comments>http://www.synaq.com/news-releases/local-reliance-on-international-internet-is-a-threat-to-business#comments</comments>
		<pubDate>Mon, 03 May 2010 08:00:56 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://www.synaq.com/?p=966</guid>
		<description><![CDATA[The recent Seacom undersea cable outage is a clear indication that  hosting applications internationally can be very dangerous for South  African businesses.
This according to Yossi Hasson, CEO of the  Johannesburg-based open source software as a service company, SYNAQ, who  says that while hosting “in-the-cloud” is operationally cost-effective,  it is important [...]]]></description>
			<content:encoded><![CDATA[<p>The recent Seacom undersea cable outage is a clear indication that  hosting applications internationally can be very dangerous for South  African businesses.</p>
<p>This according to Yossi Hasson, CEO of the  Johannesburg-based open source software as a service company, SYNAQ, who  says that while hosting “in-the-cloud” is operationally cost-effective,  it is important that these applications are hosted “at-the-edge” &#8211;  within South Africa &#8211; to reduce downtime risk. “The  costs of local hosting have come down dramatically in recent months,  reducing the need to host internationally any more,” he says. Hasson  points out that the Seacom outage did more than affect e-mail  transmission and Internet browsing.</p>
<div id="embedded-ad"></div>
<p>Most high-end e-mail security  solutions, utilised by corporate South Africa, are hosted overseas. With  the disruption to the cable link, some businesses were left unprotected  or unable to access their e-mail.</p>
<p>Hasson believes the outage  should be regarded as a warning to local businesses that intend to or  already use the cloud for their business computing needs to look closer  to home, particularly for the hosting of their enterprise applications.</p>
<p>“South  African businesses have long had to put up with slow download and  response times from the global Internet because of our international  bandwidth constraints. The completion of the Seacom cable was heralded  as the start of a new era in international Internet connectivity,” he  says.</p>
<p>“Unfortunately, just as the Icelandic volcano showed with  regard to air transport, the fault on the Mediterranean section of the  Seacom undersea cable demonstrated that nothing in the world of  communications can be taken for granted.”</p>
<p>Hasson emphasises that  this does not mean that local businesses cannot enjoy all the benefits  of cloud computing, including lower operating and capital costs as well  as convenience.</p>
<p>“At SYNAQ, we have long held the view that the  performance problems associated with international bandwidth  availability could best be reduced by ensuring that required  applications and services are hosted locally. This is why we recommend  to all of our customers to seek cloud providers that have local &#8216;edge&#8217;  capability &#8211; cloud services, but hosted locally.</p>
<p>“We have invested  a significant amount to develop infrastructure locally that is capable  of hosting all our SaaS applications, effectively eliminating the  performance problems associated with international bandwidth  availability,” Hasson concludes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/local-reliance-on-international-internet-is-a-threat-to-business/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advanced form techniques for symfony</title>
		<link>http://www.synaq.com/developers-blog/advanced-form-techniques-for-symfony</link>
		<comments>http://www.synaq.com/developers-blog/advanced-form-techniques-for-symfony#comments</comments>
		<pubDate>Mon, 19 Apr 2010 04:59:23 +0000</pubDate>
		<dc:creator>Gareth McCumskey</dc:creator>
				<category><![CDATA[Developers Blog]]></category>
		<category><![CDATA[custom widget]]></category>
		<category><![CDATA[dynamic form widgets]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Pinpoint]]></category>
		<category><![CDATA[sfForm]]></category>
		<category><![CDATA[sfWidget]]></category>
		<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">http://www.synaq.com/?p=885</guid>
		<description><![CDATA[Creating complex forms with symfony is possible and follows all the tenants of DRY, OOP code. In this example I show an actual working example of a symfony form that employs features such as custom widgets, dynamic addition of widgets and validators to a form object, dynamic field formatting from within the forms framework and [...]]]></description>
			<content:encoded><![CDATA[<p>Creating complex forms with symfony is possible and follows all the tenants of DRY, OOP code. In this example I show an actual working example of a symfony form that employs features such as custom widgets, dynamic addition of widgets and validators to a form object, dynamic field formatting from within the forms framework and how it is all put together.</p>
<p><span id="more-885"></span></p>
<h3 class="synaq_orange">1. The background info</h3>
<p>Firstly, let me set the scene quick. On development of Pinpoint 2, we have a module called reports and we realised that the original implementation of this module was lacking in a few large ways. Without going into the details of what those problems were, we decided to rewrite the entire module. One of the goals of this module however was to re-use as much as possible.</p>
<p>Each report consists of essentially two parts. Setting the parameters of the report through a form and then displaying the report after the form had been processed and data gathered.</p>
<p><img class="alignnone size-full wp-image-946" title="reportform" src="http://www.synaq.com/wp-content/uploads/2010/04/reportform.png" alt="" width="680" height="134" /></p>
<p><br class="spacer_" /></p>
<p>A decision was made to attempt to create a single form renderer for all forms as opposed to a seperate form template for each report. This was to help us maintain the reports better and make adding new reports in future easier. The same decision was made for the report rendering as well that you can see under the form, but thats not what this article focusses on so enough said about that.</p>
<h3 class="synaq_orange">2. The form renderer</h3>
<p>In creating a single template to display pretty much any type of form we might need, meant that the actual structure of the form would need to be fully defined as an extended symfony sfForm object. In addition, the renderer needs to be as unspecific as possible when rendering form widgets. Here is what the code for the form renderer looks like:</p>
<p><strong>apps/frontend/modules/reports/templates/reportFormViewSuccess.php</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">  <span style="color: #0000ff;">'reports/'</span><span style="color: #339933;">.</span><span style="color: #000088;">$form_name</span><span style="color: #339933;">,</span>
  <span style="color: #0000ff;">'update'</span><span style="color: #339933;">=&gt;</span>array<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'success'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'report_render_space'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'failure'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'action_space'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
  <span style="color: #0000ff;">'loading'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">&quot;Element.show('report_loading')&quot;</span><span style="color: #339933;">,</span>
  <span style="color: #0000ff;">'complete'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">&quot;Element.hide('report_loading'); Element.show('report_render_space');&quot;</span><span style="color: #339933;">,</span>
  <span style="color: #0000ff;">'script'</span><span style="color: #339933;">=&gt;</span>true
<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
getWidgetSchema<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getFields</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$widget_name</span><span style="color: #339933;">=&gt;</span><span style="color: #000088;">$widget_element</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
    <span style="color: #339933;">&lt;</span>span id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;date_picker&quot;</span><span style="color: #339933;">&gt;</span>
    renderRow<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
    renderRow<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
    <span style="color: #339933;">&lt;/</span>span<span style="color: #339933;">&gt;</span>
&nbsp;
    renderRow<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>As you can see from that code snippet, the action responsible for rendering the report needs to generate the $form object as well as a few other variables (such as $form_name). We also made a small concession by adding an if statement looking for specific widgets (from_date and to_date). While this might seem like breaking our rule of non-specificity in the renderer, we realised this was not a problem as every report that currently exists and into the future would have those widgets as setting dates is a necessary requirement of report generation.</p>
<h3 class="synaq_orange">3. One specific issue</h3>
<p>Things looked good. Converting our existing reports over to this new, single form renderer version was going well and all the reports were falling into place. That was until this:</p>
<p><img class="alignnone size-full wp-image-944" title="mailanalysisform" src="http://www.synaq.com/wp-content/uploads/2010/04/mailanalysisform.png" alt="" width="680" height="93" /></p>
<p>Let me take a moment to clarify what this form needs to do. The report that gets generated from the forms input takes a list of email addresses as arguments, added by typing the address into the “Recipient” field and clicking the “Add” link. The report will then pull mail statistics for each user in that list and display that to the user. However, the original form we needed to replace used AJAX style methods to add each recipient to the form via the very specific forms template, something we no longer had or wanted. We didn&#8217;t want to create specific form templates. Not only that, validation was also a little tricky. If an email address had been added to the list as such:</p>
<p><br class="spacer_" /></p>
<p><img class="alignnone size-full  wp-image-943" title="mailanalysisaddressinlist" src="http://www.synaq.com/wp-content/uploads/2010/04/mailanalysisaddressinlist.png" alt="" width="680" height="127" /></p>
<p>then form validation was supposed to pass. However, if there were no addresses in that list but an address had been typed into the input box without “Add” being clicked, validation was also supposed to pass:</p>
<p><br class="spacer_" /></p>
<p><img class="alignnone size-full  wp-image-942" title="mailanalysisaddressinbox" src="http://www.synaq.com/wp-content/uploads/2010/04/mailanalysisaddressinbox.png" alt="" width="680" height="92" /></p>
<p><br class="spacer_" /></p>
<p>Tricky, but, as we found, not undoable. Now, some will point out that we could have just altered our form renderer template to work for this one example, and in fact that idea was bandied about, but it would break that non-specificity we were trying to achieve. If we started now by adding some kind of if statement to look for this specific form object and doing something unique we would then probably add more for other forms in future and end up with a bloated, hard to maintain file and may as well have kept what we had in the first place.</p>
<h3 class="synaq_orange">4. That damned “Add” link</h3>
<p>Because we had the form renderer just rendering each form widget in sequence as defined in a forms class for a report, we couldn&#8217;t just insert an AJAX link. The solution? Create a new custom widget! Yup, for those that didn&#8217;t know, symfony allows you to create your own widgets. Here is the code for this lovely custom widget, which is, essentially, an AJAX link:</p>
<p><strong>lib/form/sfWidgetReprocessFormTextLink.class.php</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">class</span> sfWidgetReprocessFormTextLink <span style="color: #000000; font-weight: bold;">extends</span> sfWidgetForm
<span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> configure<span style="color: #009900;">&#40;</span><span style="color: #000088;">$options</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$attributes</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">addOption</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'module_action'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">addOption</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'field_link'</span><span style="color: #339933;">,</span><span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">addOption</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'target_id'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">addOption</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'display_text'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> render<span style="color: #009900;">&#40;</span><span style="color: #000088;">$name</span><span style="color: #339933;">,</span> <span style="color: #000088;">$value</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #339933;">,</span> <span style="color: #000088;">$attributes</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$errors</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$ajax_code</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;
		  new Ajax.Updater('&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getOption</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'target_id'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;',
                    '&quot;</span><span style="color: #339933;">.</span>url_for<span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getOption</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'module_action'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;',
		  {asynchronous:true, evalScripts:true,
                    parameters: 'value='+<span style="color: #000099; font-weight: bold;">\$</span>F('&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getOption</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'field_link'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;')});
                    return false;
		&quot;</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #b1b100;">return</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">renderContentTag</span><span style="color: #009900;">&#40;</span>
		  <span style="color: #0000ff;">'a'</span><span style="color: #339933;">,</span>
		  <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getOption</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'display_text'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
		  <span style="color: #990000;">array_merge</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'onclick'</span><span style="color: #339933;">=&gt;</span><span style="color: #000088;">$ajax_code</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'label'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$attributes</span><span style="color: #009900;">&#41;</span>
		<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>The first thing that needs to be done for a custom widget is define what options need to be passed to it, within the configure method. In our case, we needed to take a value from an input field (field_link), send that to an action which would then process what to do with that link (module_action), where to display the result of that processing (target_id) and what text this little link is made up of (display_text). The render method then overwrites the parent class (sfWidgetForm), and uses symfony&#8217;s renderContentTag() method to actually turn it into HTML.</p>
<p>So, now that we have that little “Add” link, how on earth do we make it display a refreshed list of addresses that the report needs.</p>
<h3 class="synaq_orange">5. Dynamic form widget generation</h3>
<p>We needed to replicate the functionality of the original system whereby the list of addresses were contained within editable input boxes,. What this meant for our form object was that we had a variable number of input boxes, from none to however-many-the-user-needs, to display. How we achieve this is by, first of all, using session to store what has been added already within the action called by the “Add” link widget we created above. This action is as such:</p>
<p><strong>apps/frontend/modules/reports/actions/actions.class.php</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> executeAddRecipient<span style="color: #009900;">&#40;</span>sfWebRequest <span style="color: #000088;">$request</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
      <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$request</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">hasParameter</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'value'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
      <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$recipients</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getUser</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getAttribute</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'recipients_list'</span><span style="color: #339933;">,</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$exploded</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;@&quot;</span><span style="color: #339933;">,</span><span style="color: #000088;">$request</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getParameter</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'value'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">strlen</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$exploded</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">0</span> <span style="color: #339933;">&amp;</span>amp<span style="color: #339933;">;&amp;</span>amp<span style="color: #339933;">;</span> <span style="color: #990000;">strlen</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$exploded</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
&nbsp;
          <span style="color: #000088;">$recipients</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array_merge</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
              <span style="color: #000088;">$request</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getParameter</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'value'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">=&gt;</span>
                  <span style="color: #000088;">$request</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getParameter</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'value'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span><span style="color: #000088;">$recipients</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getUser</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">setAttribute</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'recipients_list'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$recipients</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
      <span style="color: #009900;">&#125;</span>
      <span style="color: #b1b100;">else</span>
      <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$recipients</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getUser</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getAttribute</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'recipients_list'</span><span style="color: #339933;">,</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span>
      <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">title</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Mail Analysis by Recipient&quot;</span><span style="color: #339933;">;</span>
      <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">form_name</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;mailAnalByRecip&quot;</span><span style="color: #339933;">;</span>
      <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">form</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> MailAnalByRecipForm<span style="color: #009900;">&#40;</span><span style="color: #000088;">$recipients</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
      <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">setTemplate</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'reportFormView'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Really all this does is add the recipient sent to the action by the “Add” link to the session variable, does a quick and dirty little validation on the email address and then recreates the form object by passing the new array of recipients to it before re-rendering the form. What does the form object do with that array of recipients?</p>
<p><strong>lib/form/MailAnalByRecipForm.class.php</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> configure <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
	<span style="color: #666666; font-style: italic;">//Create base widgets that display by default on new form with no recipients added</span>
	<span style="color: #000088;">$widgets</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
                  <span style="color: #0000ff;">'recipient'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000000; font-weight: bold;">new</span> sfWidgetFormInput<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
		  <span style="color: #0000ff;">'add_recipient'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000000; font-weight: bold;">new</span> sfWidgetReprocessFormTextLink<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
                  <span style="color: #0000ff;">'module_action'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'reports/addRecipient'</span><span style="color: #339933;">,</span>
		  <span style="color: #0000ff;">'field_link'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'recipient'</span><span style="color: #339933;">,</span>
		  <span style="color: #0000ff;">'target_id'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'action_space'</span><span style="color: #339933;">,</span>
		  <span style="color: #0000ff;">'display_text'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'Add'</span><span style="color: #339933;">,</span>
		  <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
		    <span style="color: #0000ff;">'title'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">&quot;Click to add the recipient in the text box to the list of
                      recipients to report on&quot;</span><span style="color: #339933;">,</span>
		    <span style="color: #0000ff;">'style'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'text-decoration:underline'</span>
		  <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
      <span style="color: #0000ff;">'period'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000000; font-weight: bold;">new</span> sfWidgetFormSelect<span style="color: #009900;">&#40;</span>
        <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
          <span style="color: #0000ff;">'choices'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">periods</span>
        <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
        <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
          <span style="color: #0000ff;">'onchange'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'if ($F(&quot;period&quot;) &gt; 0) {
             $(&quot;date_picker&quot;).hide()}
          else {
            $(&quot;date_picker&quot;).show()}'</span>
        <span style="color: #009900;">&#41;</span>
      <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
      <span style="color: #0000ff;">'from_date'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000000; font-weight: bold;">new</span> myWidgetFormJQueryDate<span style="color: #009900;">&#40;</span>
        <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
      <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
      <span style="color: #0000ff;">'to_date'</span>   <span style="color: #339933;">=&gt;</span> <span style="color: #000000; font-weight: bold;">new</span> myWidgetFormJQueryDate<span style="color: #009900;">&#40;</span>
        <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Then we first create all the non-dynamic widgets and put them into a $widgets array.</p>
<p><strong>lib/form/MailAnalByRecipForm.class.php</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//If recipients have been added to the form</span>
<span style="color: #666666; font-style: italic;">//create the input fields for them with remove text link</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">extra_inputs</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
      <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">extra_inputs</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$name</span><span style="color: #339933;">=&gt;</span><span style="color: #000088;">$value</span><span style="color: #009900;">&#41;</span>
      <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$widgets</span><span style="color: #009900;">&#91;</span><span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$name</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> sfWidgetFormInput<span style="color: #009900;">&#40;</span>
            <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
            <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;class&quot;</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">&quot;recipient_list_input&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$widgets</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;remove_&quot;</span><span style="color: #339933;">.</span><span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$name</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> sfWidgetReprocessFormTextLink<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
          <span style="color: #0000ff;">'module_action'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'reports/removeRecipient'</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'field_link'</span><span style="color: #339933;">=&gt;</span>urlencode<span style="color: #009900;">&#40;</span><span style="color: #000088;">$name</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'target_id'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'action_space'</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'display_text'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'Remove'</span>
        <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
          <span style="color: #0000ff;">'title'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'Click this to remove '</span><span style="color: #339933;">.</span><span style="color: #000088;">$value</span><span style="color: #339933;">.</span>
              <span style="color: #0000ff;">' from the list of recipients to report on'</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'class'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'recipient_list_remove'</span>
        <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">setWidgets</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$widgets</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>It now dynamically adds an input field for every recipient that exists using the array key ($name) value to help keep things unique in the naming department, ensuring that each recipient listed has a “Remove” link which uses our custom widget class we also used for “Add” to do the reverse, and then setting the forms widgets right at the end by passing the array.</p>
<h3 class="synaq_orange">6. Validation</h3>
<p>As I said before, validation was a little tricky but not badly so. Here&#8217;s a look at the validators that were defined for the form thus far.</p>
<p>First, the basic validators for the static fields:</p>
<p><strong>lib/form/MailAnalByRecipForm.class.php</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//Create base validators with no validation on 'recipients' field</span>
<span style="color: #666666; font-style: italic;">//of recipients already added</span>
    <span style="color: #000088;">$validators</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
      <span style="color: #0000ff;">'recipient'</span><span style="color: #339933;">=&gt;</span> <span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">extra_inputs</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">0</span> ?
          <span style="color: #000000; font-weight: bold;">new</span> sfValidatorPass<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span>
          <span style="color: #000000; font-weight: bold;">new</span> sfValidatorEmail<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
      <span style="color: #0000ff;">'add_recipient'</span><span style="color: #339933;">=&gt;</span> <span style="color: #000000; font-weight: bold;">new</span> sfValidatorPass<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
      <span style="color: #0000ff;">'period'</span><span style="color: #339933;">=&gt;</span>new sfValidatorPass<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
      <span style="color: #0000ff;">'from_date'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000000; font-weight: bold;">new</span> myValidatorDateString<span style="color: #009900;">&#40;</span>
        <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
          <span style="color: #0000ff;">'date_format'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'%Y-%m-%d'</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'required'</span>  <span style="color: #339933;">=&gt;</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'with_time'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'min'</span>       <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">strtotime</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'-1 Year'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'max'</span>       <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">mktime</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">23</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">59</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">59</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'date_format_error'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Y-m-d h:i:s'</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'date_output'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Y-m-d'</span>
        <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
        <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
          <span style="color: #0000ff;">'invalid'</span>   <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'From date is invalid'</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'required'</span>  <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'From date is required'</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'bad_format'</span>    <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&quot;%value%&quot; does not match the date format (dd/mm/yyyy)'</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'min'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'The date %value% must be after %min%'</span>
        <span style="color: #009900;">&#41;</span>
      <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
      <span style="color: #0000ff;">'to_date'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000000; font-weight: bold;">new</span> myValidatorDateString<span style="color: #009900;">&#40;</span>
        <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
          <span style="color: #0000ff;">'date_format'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'%Y-%m-%d'</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'required'</span>  <span style="color: #339933;">=&gt;</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'with_time'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'min'</span>       <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">strtotime</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'-1 Year'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'max'</span>       <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">mktime</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">23</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">59</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">59</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'date_format_error'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Y-m-d h:i:s'</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'date_output'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Y-m-d'</span>
    <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>And then validators for the recipient input boxes if any, before setting the whole validators array as the validation for the form:</p>
<p><strong>lib/form/MailAnalByRecipForm.class.php</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//Add extra validators for the added recipients if any.</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">extra_inputs</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
      <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">extra_inputs</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$name</span><span style="color: #339933;">=&gt;</span><span style="color: #000088;">$value</span><span style="color: #009900;">&#41;</span>
      <span style="color: #009900;">&#123;</span>
      	<span style="color: #000088;">$validators</span><span style="color: #009900;">&#91;</span><span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$name</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> sfValidatorEmail<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      	<span style="color: #000088;">$validators</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;remove_&quot;</span><span style="color: #339933;">.</span><span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$name</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> sfValidatorPass<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
   <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">setValidators</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$validators</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<h3 class="synaq_orange">7. Custom rendering inside the form</h3>
<p>I&#8217;m afraid we are not done yet because two more problems reared their little heads. Firstly our form renderer template uses the symfony renderRow() method:</p>
<p><strong>apps/frontend/modules/reports/templates/reportFormViewSuccess.php</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//Remove labels for the added recipients input tags and the 'Add' and 'Remove' widgets</span>
   <span style="color: #000088;">$labels</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'add_recipient'</span>    <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">' '</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">extra_inputs</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
      <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">extra_inputs</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$name</span><span style="color: #339933;">=&gt;</span><span style="color: #000088;">$value</span><span style="color: #009900;">&#41;</span>
      <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$labels</span><span style="color: #009900;">&#91;</span><span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$name</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot; &quot;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$labels</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;remove_&quot;</span><span style="color: #339933;">.</span><span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$name</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot; &quot;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
   <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">widgetSchema</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">setLabels</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$labels</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>The other, slightly more complex issue was that we had to make each dynamically added input box and its “Remove” link sit on one line each as the image at the start shows. This was a little more interesting. Symfony does, however, provide custom formatting abilities for a form object by creating your very own form formatting class. So we went ahead and created it. Its actually very simple:</p>
<p><strong>lib/form/mailAnalByRecipFormatter.class.php</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">class</span> mailAnalByRecip <span style="color: #000000; font-weight: bold;">extends</span> sfWidgetFormSchemaFormatter
<span style="color: #009900;">&#123;</span>
	protected
    <span style="color: #000088;">$rowFormat</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span><span style="color: #009933; font-weight: bold;">%e</span>rror%<span style="color: #000099; font-weight: bold;">\n</span>
        &lt;span class=&quot;</span>\<span style="color: #339933;">&amp;</span>quot<span style="color: #339933;">;</span>formRow\<span style="color: #339933;">&amp;</span>quot<span style="color: #339933;">;</span><span style="color: #0000ff;">&quot;&gt;<span style="color: #000099; font-weight: bold;">\n</span>
        &lt;span class=&quot;</span>\<span style="color: #339933;">&amp;</span>quot<span style="color: #339933;">;</span>formLabel\<span style="color: #339933;">&amp;</span>quot<span style="color: #339933;">;</span><span style="color: #0000ff;">&quot;&gt;%label%&lt;/span&gt;<span style="color: #000099; font-weight: bold;">\n</span>
        &lt;span class=&quot;</span>\<span style="color: #339933;">&amp;</span>quot<span style="color: #339933;">;</span>formField\<span style="color: #339933;">&amp;</span>quot<span style="color: #339933;">;</span><span style="color: #0000ff;">&quot;&gt;<span style="color: #009933; font-weight: bold;">%f</span>ield%<span style="color: #000099; font-weight: bold;">\n</span>%help%&lt;/span&gt;&lt;/span&gt;<span style="color: #000099; font-weight: bold;">\n</span>
        %hidden_fields%&quot;</span><span style="color: #339933;">,</span>
    <span style="color: #000088;">$helpFormat</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&lt;span class=&quot;</span>fieldHelp<span style="color: #0000ff;">&quot;&gt;%help%&lt;/span&gt;&quot;</span><span style="color: #339933;">,</span>
    <span style="color: #000088;">$errorRowFormat</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&lt;span&gt;<span style="color: #000099; font-weight: bold;">\n</span><span style="color: #009933; font-weight: bold;">%e</span>rrors%&lt;/span&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span>
    <span style="color: #000088;">$errorListFormatInARow</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;
&lt;ul&gt;<span style="color: #009933; font-weight: bold;">%e</span>rrors%&lt;/ul&gt;
&nbsp;
<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span>
    <span style="color: #000088;">$errorRowFormatInARow</span> <span style="color: #339933;">=</span>  <span style="color: #0000ff;">&quot;
&lt;li class=&quot;</span>\<span style="color: #339933;">&amp;</span>quot<span style="color: #339933;">;</span>error\<span style="color: #339933;">&amp;</span>quot<span style="color: #339933;">;</span><span style="color: #0000ff;">&quot;&gt;↓ <span style="color: #009933; font-weight: bold;">%e</span>rror% ↓&lt;/li&gt;
&nbsp;
<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span>
    <span style="color: #000088;">$namedErrorRowFormatInARow</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;
&lt;li class=&quot;</span>\<span style="color: #339933;">&amp;</span>quot<span style="color: #339933;">;</span>error\<span style="color: #339933;">&amp;</span>quot<span style="color: #339933;">;</span><span style="color: #0000ff;">&quot;&gt;↓ <span style="color: #009933; font-weight: bold;">%e</span>rror% ↓&lt;/li&gt;
&nbsp;
<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span>
    <span style="color: #000088;">$decoratorFormat</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;<span style="color: #009933; font-weight: bold;">%c</span>ontent%&quot;</span><span style="color: #339933;">;</span>
&nbsp;
	protected <span style="color: #000088;">$fields_to_format</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> __construct<span style="color: #009900;">&#40;</span>sfWidgetFormSchema <span style="color: #000088;">$widgetSchema</span><span style="color: #339933;">,</span> <span style="color: #000088;">$fields_to_format</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">fields_to_format</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$fields_to_format</span><span style="color: #339933;">;</span>
		parent<span style="color: #339933;">::</span>__construct<span style="color: #009900;">&#40;</span><span style="color: #000088;">$widgetSchema</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> formatRow<span style="color: #009900;">&#40;</span><span style="color: #000088;">$label</span><span style="color: #339933;">,</span> <span style="color: #000088;">$field</span><span style="color: #339933;">,</span> <span style="color: #000088;">$errors</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$help</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
            <span style="color: #000088;">$hiddenFields</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">fields_to_format</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$field_name</span><span style="color: #009900;">&#41;</span>
		<span style="color: #009900;">&#123;</span>
			<span style="color: #000088;">$field_name</span> <span style="color: #339933;">=</span> <span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$field_name</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$field</span><span style="color: #339933;">,</span> <span style="color: #000088;">$field_name</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!==</span> <span style="color: #009900; font-weight: bold;">false</span> <span style="color: #339933;">&amp;</span>amp<span style="color: #339933;">;&amp;</span>amp<span style="color: #339933;">;</span>
                          <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$field</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'type=&quot;text&quot;'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!==</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span>
			<span style="color: #009900;">&#123;</span>
				<span style="color: #000088;">$field</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;
&lt;div class=&quot;</span>field_row<span style="color: #0000ff;">&quot;&gt;&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$field</span><span style="color: #339933;">;</span>
			<span style="color: #009900;">&#125;</span>
			<span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$field</span><span style="color: #339933;">,</span> <span style="color: #000088;">$field_name</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!==</span> <span style="color: #009900; font-weight: bold;">false</span> <span style="color: #339933;">&amp;</span>amp<span style="color: #339933;">;&amp;</span>amp<span style="color: #339933;">;</span>
                            <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$field</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'
&nbsp;
'</span><span style="color: #339933;">;</span>
			<span style="color: #009900;">&#125;</span>
		<span style="color: #009900;">&#125;</span>
&nbsp;
		<span style="color: #000088;">$row</span> <span style="color: #339933;">=</span> parent<span style="color: #339933;">::</span><span style="color: #004000;">formatRow</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$label</span><span style="color: #339933;">,</span> <span style="color: #000088;">$field</span><span style="color: #339933;">,</span> <span style="color: #000088;">$errors</span><span style="color: #339933;">,</span> <span style="color: #000088;">$help</span><span style="color: #339933;">,</span> <span style="color: #000088;">$hiddenFields</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #b1b100;">return</span> <span style="color: #000088;">$row</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>The protected variables at the start of that class define what the individual lines of every widget will look like; the error message, the actual input tag, the label, etc. The formatRow method overwrites the parents (sfWidgetFormSchemaFormatter) formatRow method and only applies our custom formatting to the specific rows we want and the default formatting to everything else.</p>
<p>Then in our form class we need to add:</p>
<p><strong>lib/form/MailAnalByRecipForm.class.php</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//Set custom form formatter to allow for an opening span</span>
<span style="color: #666666; font-style: italic;">//to be added in front of an added recipient and closed after the</span>
   <span style="color: #666666; font-style: italic;">//ajax custom widget Remove link</span>
   <span style="color: #000088;">$decorator</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> mailAnalByRecip<span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">widgetSchema</span><span style="color: #339933;">,</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">extra_inputs</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">widgetSchema</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">addFormFormatter</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'custom'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$decorator</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">widgetSchema</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">setFormFormatterName</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'custom'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Whew. There. All done.</p>
<h3 class="synaq_orange">8. Reasoning and thank you&#8217;s</h3>
<p>Why go through all this hassle just to generate the exact same forms we had before? Why do what looks like a lot of extra work to replicate a feature we already had? The answer is simple. Extendability and maintainability.</p>
<p>If we, in future, want to add a new report to the application, we can do it a lot quicker. In fact, some reports re-use the same form class used in other reports already. We have a custom widget that we can call on again should we need it without trying to rebuild it from scratch or create it in the template itself. If we need to alter the rendering of all forms all at once we go to our form renderer template; just one file as opposed to X amount of individual template files for every single report. If we want to alter the way just one form is displayed, we can edit the form class for that one report and we know it won&#8217;t affect any other. This is the holy grail of Object Orientated Programming; encapsulation and seperation of concerns.</p>
<p>Now, I could have gone and abstracted things further, I know that. But at some point you need to decide where to stop. The advantage that symfony as a whole gives us that refactoring is easy, so if we really need to do that later we can.</p>
<p>One thing I absolutely must mention is that all of this would not have been possible without the advice from the symfony community. By asking my questions through the symfony users mailing list I was able to get everything you have just read done. Specifically, I need to thank Sid Bachtiar for his advice and help getting to understand the intricacies of the symfony Forms framework which, to be honest, I didn&#8217;t know much about until starting the re-write of the reports module.</p>
<p>I hope this article is of help to others looking to use more advanced features of the symfony forms framework. Feel free to add a question you may have in the comments and I&#8217;ll pop my replies in as quick as I can.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/developers-blog/advanced-form-techniques-for-symfony/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>It&#8217;s a simple case of the shoemaker&#8217;s son who has no shoes</title>
		<link>http://www.synaq.com/open-source-blog/its-a-simple-case-of-the-shoemakers-son-who-has-no-shoes</link>
		<comments>http://www.synaq.com/open-source-blog/its-a-simple-case-of-the-shoemakers-son-who-has-no-shoes#comments</comments>
		<pubDate>Wed, 14 Apr 2010 19:22:10 +0000</pubDate>
		<dc:creator>Yossi Hasson</dc:creator>
				<category><![CDATA[Open for Business]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.synaq.com/?p=870</guid>
		<description><![CDATA[It’s a story that goes as far back as I can remember. The shoemaker, making shoes for all of his customers, is too busy to make shoes for his own children, so they walk around bare foot and suffering.
A similar situation happened here at SYNAQ when embarking on our journey to launch the new synaq.com [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">It’s a story that goes as far back as I can remember. The shoemaker, making shoes for all of his customers, is too busy to make shoes for his own children, so they walk around bare foot and suffering.</p>
<p style="text-align: justify;">A similar situation happened here at SYNAQ when embarking on our journey to launch the new synaq.com website.</p>
<p><span id="more-870"></span></p>
<p style="text-align: justify;">In hindsight, we should have seen it coming. We should have known what would happen, but still, we embarked on a painful path that only cost us more time and money.</p>
<p><img class="alignleft size-full wp-image-869" title="Shoes" src="http://www.synaq.com/wp-content/uploads/2010/04/shoes.jpg" alt="" width="336" height="222" /></p>
<p style="text-align: justify;">You see, we’re a small company trying to do some extraordinary things, meaning that our time is most precious – too precious (so we thought) to build our new website. We went out to the market to find the experts who provided us with some compelling presentations, customer references and accolades as to why they could get the job done better then anyone else and why their CMS (content management system) would be the best path for us moving forward.</p>
<p style="text-align: justify;">When launching our new site we soon realized the error in our ways. The site was driven by a proprietary CMS system that was riddled with bugs and plagued with security vulnerabilities. Immediately we were at the mercy of our supplier to fix any errors and make any of the changes that we required moving forward and these changes would only be made in accordance to their time lines and their charges.</p>
<p style="text-align: justify;">To rectify the problem we pulled one of our senior programmers off his existing projects to port our new website which we had just paid for, onto <a href="http://www.wordpress.org" target="_blank">Wordpress (www.wordpress.org)</a>, the open source content management system. In just over 4 days we had our new site up and running on Wordpress and WOW what a difference it has made.</p>
<p style="text-align: justify;">Using Wordpress we were able to immediately launch the official SYNAQ.com blog (something that would have cost extra on our previous platform), integrate best practices for SEO optimization, install a number of nifty new plugins, integrate with our internal CRM system, eliminate all the security holes and vulnerabilities present in the previous system and most importantly, control our destiny in terms of our websites future direction.</p>
<p style="text-align: justify;">This seemingly simple example of building a new website is a reminder to me as to why open source software provides such a compelling case to businesses of all sizes. Wordpress provided us with the ability to make use of a world class CMS system, backed by thousands of developers developing a range of plugins, ensuring the security of the platform and constantly innovating on its potential – all of this at zero cost and in record time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/open-source-blog/its-a-simple-case-of-the-shoemakers-son-who-has-no-shoes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pinpoint SecureMail 2.0: Design and development of the product</title>
		<link>http://www.synaq.com/developers-blog/design-and-building-pp2</link>
		<comments>http://www.synaq.com/developers-blog/design-and-building-pp2#comments</comments>
		<pubDate>Fri, 09 Apr 2010 10:23:40 +0000</pubDate>
		<dc:creator>Gareth McCumskey</dc:creator>
				<category><![CDATA[Developers Blog]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Pinpoint]]></category>

		<guid isPermaLink="false">http://www.synaq.com/?p=829</guid>
		<description><![CDATA[
Our new (and we hope improved) version of the Pinpoint SecureMail interface has been out now to our customers for just over a year. It is a total departure from the interface that was provided to SYNAQ customers in the past, with a totally reworked code base, additional features and a more modern approach.
But what [...]]]></description>
			<content:encoded><![CDATA[<p><br class="spacer_" /></p>
<p>Our new (and we hope improved) version of the Pinpoint SecureMail interface has been out now to our customers for just over a year. It is a total departure from the interface that was provided to SYNAQ customers in the past, with a totally reworked code base, additional features and a more modern approach.</p>
<p>But what went into the development of this new software and what guided our decision making as we built the application? This article will, hopefully, put into a better perspective our design principles and the process we used to build Pinpoint SecureMail 2.0.</p>
<p><span id="more-829"></span></p>
<h4>Size matters</h4>
<div id="attachment_844" class="wp-caption alignright" style="width: 360px"><img class="size-full wp-image-844" title="pinpoint2" src="http://www.synaq.com/wp-content/uploads/2010/04/pinpoint2.jpg" alt="Pinpoint Secure Mail 2.0" width="350" height="302" /><p class="wp-caption-text">Pinpoint Secure Mail 2.0</p></div>
<p>SYNAQ is an open-source, managed Linux Services company, with a huge depth of talent and expertise in implementing and maintaining our customer&#8217;s system-critical Linux architecture. SYNAQ was not, however, a web development company when I first joined nearly three years ago. The development team at SYNAQ has never numbered more than 3 full-time developers. And we like it that way!</p>
<p>With a limitation on the number of developers actively working on a project, this does cause some constraints on how we can develop. In fact, development companies such as <a href="http://www.37signals.com" target="_blank">37Signals</a>, constantly preach that small agile teams of developers are the best way to develop software, and we have found that to be true ourselves. While it might seem counter-intuitive to think of the “limitation” of only having three developers as a good thing, there are some very large benefits  gained by not being a monolithic, bureaucratic software development house and that is … agility.</p>
<p>Small, quick working teams can switch tack and start working on something new or alter something entirely a lot quicker than larger development teams can. In addition, a small team causes us to think very carefully about what we develop. We cannot, and don&#8217;t want to, build something with such a large set of features that may, in all likelihood, never get used by our customers.</p>
<h4>With great agility comes great responsibility</h4>
<p>Yes, we are agile. No, we cannot incorporate every feature under the sun. Nor do we want to. Speaking to people who have used competing products, and even looking at competing products ourselves, we realised that most are just too packed with features that most administrators don&#8217;t want to use.</p>
<p>When we held our user-group meeting just before starting development on Pinpoint 2, one aspect came out clearly. People <strong>don&#8217;t</strong> want to use the interface if they don&#8217;t have to. They <strong>don&#8217;t </strong>want to sit in endless configuration screens setting things up, adding users, and administrating mail release. People have real work to do, and having to fight your way through an interface just to provide a service that you kind of want to forget about and is not core to your business means you are less productive in what actually makes your company tick. Your email security service should just do its job.</p>
<p>There was our first prerogative. As little configuration as possible, and the ability for a company&#8217;s IT administrator to get in, do what he needs to do (reporting, mail release, etc) and get back to his real work as fast as possible.</p>
<h4>Decisions, decisions, decisions</h4>
<p>So we had our constraints and targets:</p>
<ul>
<li>
<p>Small 	team of developers that can add and alter new features as fast as 	possible.</p>
</li>
<li>
<p>Developing 	an app that reduces the amount of time people spend using it.</p>
</li>
<li>
<p>Making 	the resulting application as easily maintainable as possible so our 	small team of developers can focus on improving rather than fixing.</p>
</li>
</ul>
<p>The base of all this was to first decide if we were going to re-code and try to improve the existing interface we had at the time, use a different application and alter that to meet our needs or start from scratch?</p>
<p>For a few months, we did actually make enhancements to the existing interface that we were using, based on an open source application called <a href="http://www.mailwatch.co.uk" target="_blank">Mailwatch</a>. We needed to add certain features that our customers were really crying out for, so in order to provide that the fastest way possible was just to alter what we already had.</p>
<p>During this alteration period we realised, however, that the base Mailwatch was built on did not provide everything we needed to build what we really wanted. So the decision was made to start from scratch. We did make one concession. Instead of trying to build all the background stuff every web application needs, we started by using a PHP <a href="http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller" target="_blank">MVC</a> framework called <a href="http://www.symfony-project.org" target="_blank">symfony</a>. It essentially allowed us to get started with a common set of tools and a best-practices architecture in application design that did all the non business logic work for us so we could focus on building our product. It takes care of security, user login, caching mechanisms and all that “boring” dev work for us with minimal interaction from the developer.</p>
<p><em>We started building features from day one!</em></p>
<p>Our other very large decision was to use AJAX, or Web 2.0 as it has become collectively known. The ability to make only certain parts of a web page communicate with the server and databases allows an application to have a more desktop-application feel to it. In addition, it also reduces bandwidth, meaning only what is actually changing is being sent over your Internet connection, and not the entire page the user is viewing, which for us was a great way to make an application more responsive, and allow the user to spend even less time in the interface. Why reload something where 80% of the content is the same as it was before and only that small 20% actually changed?</p>
<h4>Getting rid of preconceptions</h4>
<p>This was also a big goal for us. We had been working for so long with a previous application (Mailwatch) and it did certain things in certain ways. We decided right up front that that application would not be a primer for what we were making. Instead we tried to take the  mindset of the average user and determine what features and functions they used the most. This resulted in us creating an application where a feature that was once buried deep in some arcane form drop down list structure that every user used on a daily basis and converting it into a main menu item that is in your face and easy to get to.</p>
<p>We removed the need for report filters to be created, report being run, back to filter page, editing filters, re-running report …. into a system where the filters are visible at the same time the report is, being able to edit the report filters on the fly and re-running the report without long loading times between. We even went ahead and created totally different reports to what we had provided customers before that provided better information that was more valuable and not replicating certain reports that were in essence, redundant.</p>
<p>Us as developers did not want a slicker version of the previous interface that was just a carbon copy. We felt the need to start from scratch and meet demands instead of locking ourselves into a singular train of thought.</p>
<h4>Putting it all together</h4>
<p>A small agile team, that can focus on features that matter and actually have a use, with a great base framework that made development simpler and maintenance easier and not being burdened with preconceptions, was what made Pinpoint 2 what it is today. An application that is under constant development, with improvements happening constantly and customers that find it faster and easier to use.</p>
<p>It hasn&#8217;t been easy, and everyday we are challenged to make it do some very interesting and unique things, but one thing that everyone can expect is for Pinpoint never to be lying still or dormant, constantly being enhanced and improved, and that excites me!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/developers-blog/design-and-building-pp2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SYNAQ celebrates five good years</title>
		<link>http://www.synaq.com/news-releases/synaq-celebrates-five-good-years</link>
		<comments>http://www.synaq.com/news-releases/synaq-celebrates-five-good-years#comments</comments>
		<pubDate>Tue, 01 Dec 2009 10:00:05 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://dev.synaq.com/?p=206</guid>
		<description><![CDATA[looks forward to many more
01 December 2009
SYNAQ, the Johannesburg-based Linux and open source managed services and software services company, has made a significant impact on the local IT scene since its establishment five years ago, by two (very) young entrepreneurs, Yossi Hasson and David Jacobson.


With the failure rate of start-up businesses in South Africa exceptionally [...]]]></description>
			<content:encoded><![CDATA[<h3><span class="synaq_orange">looks forward to many more</span></h3>
<p><em>01 December 2009</em></p>
<p>SYNAQ, the Johannesburg-based Linux and open source managed services and software services company, has made a significant impact on the local IT scene since its establishment five years ago, by two (very) young entrepreneurs, Yossi Hasson and David Jacobson.</p>
<p><span id="more-206"></span></p>
<p><img class="size-full wp-image-269  alignright" title="yossi-hasson_david-jacobson" src="/wp-content/uploads/2010/03/yossi-hasson_david-jacobson.jpg" alt="" width="240" height="300" /></p>
<p>With the failure rate of start-up businesses in South Africa exceptionally high &#8211; the Department of Trade and Industry says statistics indicate that between 70% and 90% of all n</p>
<p>ew businesses will not be around</p>
<p>after three years &#8211; SYNAQ&#8217;s five-year milestone is quite an achievement.</p>
<p>And when one considers that American research shows that the survival rate of IT start-ups is generally far lower than their counterparts in other industry sectors*, SYNAQ&#8217;s achievement is even more remarkable.</p>
<p>So, we asked SYNAQ&#8217;s founders 10 questions:</p>
<ol>
<li>
<h4><strong><span style="color: #ff6600;">What motivated you to start SYNAQ?</span></strong></h4>
<p>We have both always been fascinated with computers and technology. We were friends at school and even started a couple of businesses together back then, but we lost touch over the years. Then we met up again. David had been working for a number of IT companies, including one in the UK; while Yossi had dreams of being an entrepreneur. Then we met up again and chatting over a cup of coffee &#8211; and the conversation turned to open source and Linux. We discovered we were both passionate about it, and that we believed that it would never gain the respect &#8211; and market share &#8211; it deserved in the business sector without professional, reliable services and support.That&#8217;s when we decided there was a definite gap in the market for a professional, reliable Linux company &#8211; and we should be the ones to fill that gap. Our next step was to obtain financial backing &#8211; which we did; choose a name for our new company; and launch our new business. Five years later, here we are.</p>
</li>
<li>
<h4><span style="color: #ff6600;">What type of business did you set about creating?</span></h4>
<p>Our first business plan stated that we were going to be a professional services company for businesses looking for Linux-based solutions. We were going to offer world-class services and support. We were not going to be just another IT company. We wanted to be brilliant at delivering service.</p>
</li>
<li>
<h4><span style="color: #ff6600;">Is SYNAQ today what you envisaged it would be five years ago?</span></h4>
<p>It took us a few years to recognise that being &#8220;a Linux company&#8221; was far too broad a focus for a small business. We couldn&#8217;t be all-things-Linux to all businesses using Linux &#8211; not if we were to achieve our stated objective of providing world-class, consistent service. So we&#8217;ve refocused our business. We&#8217;ve distilled the best from what we&#8217;ve learned over the years in terms of our strengths and our customers&#8217; requirements &#8211; which has led to us producing our own product sets. So we&#8217;re moving ahead as a very different business in many respects from what we were five years ago.However, there is one very important element that has not, and will never, change. In addition to providing our customers with innovative products, we will continue to provide them with world-class services and support.</p>
</li>
<li>
<h4><span style="color: #ff6600;">A high percentage of start-ups fail. Why do you think SYNAQ has succeeded when so many others haven&#8217;t?</span></h4>
<p>We&#8217;ve succeeded because of our focus on customers and delivering services and solutions that exceed their expectations. Our customer base has grown largely through word of mouth recommendations from satisfied customers.<br />
 What has also played a role in our success is that unlike many other start-ups, which are founded by like-minded people, we are so different. David is technically minded; Yossi&#8217;s passion is business. We complement each other.</p>
<p>We were also extremely fortunate in obtaining backing from shareholders who believed in what we were doing and who have supported us every step of the way.Then we quickly learned that it is more important to hire people who are as passionate about our business as we are and who fit our culture, rather than to appoint people who come with the right set of skills but the wrong (for us) attitude. Skills can be learned; but you cannot teach anyone to care and believe in the things you do. The result is that we have been able to build up a really strong, SYNAQ-driven team.</p>
<p>Finally, all this would count for nothing if we were not giving our customers what they need and want &#8211; products and services that really do add value to their businesses.</p>
</li>
<li>
<h4><span style="color: #ff6600;">If you could, is there anything you would have done differently in building your business?</span></h4>
<p>In hindsight, we should probably have become more focused sooner than we did.<br />
 However, had we done that, we would probably not have gained the broad experience on which we have been able to develop our innovative product sets. We also would not have attracted and built relationships with the same spread of customers.<br />
 So looking back, there probably isn&#8217;t much we should have done differently.</p>
</li>
<li>
<h4><span style="color: #ff6600;">What has been your greatest challenge in the past five years?</span></h4>
<p>People &#8211; finding the right caliber of people with the right culture fit. When you are a tiny business, the impact of one &#8216;wrong&#8217; appointment can be enormous. As you grow and become more structured, there&#8217;s a stronger sense of the company&#8217;s DNA and it&#8217;s easier to know what the culture fit is &#8211; although it remains as challenging as ever to find people with SYNAQ potential.</p>
</li>
<li>
<h4><span style="color: #ff6600;">Describe an event/moment when you thought to yourself&#8221; a) &#8220;We&#8217;re not going to make it&#8221; and b) &#8220;Everything is going to be OK&#8221;.</span></h4>
<p>We were young and probably a little naive when we started out. There was never any doubt in our minds that we were going to make it. Of course there were times when we panicked &#8211; but fortunately, we never both did so at the same time. This probably helped to prevent a case of jitters escalating into a fully-fledged catastrophe. The fact that our shareholders have always been available with support and advice also helped immensely. However, we have also never been complacent.</p>
</li>
<li>
<h4><span style="color: #ff6600;">Now that you can no longer be considered a start-up, does it get any easier?</span></h4>
<p>No. As we&#8217;ve grown, so our responsibilities have increased. It used to be just us and a couple of people who were at risk from our decisions. Now there&#8217;s so many more, so the pressure to succeed and grow is far greater, and the potential consequences of the decisions we take are therefore larger than before.<br />
 Certainly, some of the challenges we faced in the early days are now far easier to handle, largely because we have processes in place and far more structure. However, new and different challenges keep emerging &#8211; which is good because through challenges, comes growth.</p>
</li>
<li>
<h4><span style="color: #ff6600;">What do you see as your greatest challenge going forward?</span></h4>
<p>Remaining innovative and avoiding the trap of becoming mired in bureaucracy while still being able to deliver our services consistently and reliably. At the same time, we have to ensure that we don&#8217;t get carried away with innovation and differentiate between hype and real trends in our industry. We have to achieve growth, but it has to be sustainable growth.</p>
</li>
<li>
<h4><span style="color: #ff6600;">Look into your crystal ball and describe SYNAQ in 2014.</span></h4>
<p>We see a very similar, entrepreneurial company, with a few more employees, a larger client base and a host of innovative products that are making a real difference to our customers and the international Linux/open source community.</p>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-celebrates-five-good-years/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SYNAQ Business Suite delivers enterprise-level communications capabilities to SM</title>
		<link>http://www.synaq.com/news-releases/synaq-business-suite-delivers-enterprise-level-communications-capabilities-to-sm</link>
		<comments>http://www.synaq.com/news-releases/synaq-business-suite-delivers-enterprise-level-communications-capabilities-to-sm#comments</comments>
		<pubDate>Tue, 13 Oct 2009 10:00:45 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>
		<category><![CDATA[Business Suite]]></category>
		<category><![CDATA[enterprise-level]]></category>

		<guid isPermaLink="false">http://dev.synaq.com/?p=309</guid>
		<description><![CDATA[Small and medium enterprises can now tap the benefits of advanced network easily , affordably and reliably
13 October 2009
Small and medium enterprises can now tap the benefits of advanced network communications and collaboration technologies easily, affordably, reliably and securely following the launch of SYNAQ Business Suite (SBS).

Managed Linux services and open source solutions company, SYNAQ, [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Small and medium enterprises can now tap the benefits of advanced network easily , affordably and reliably</h3>
<p><em>13 October 2009</em></p>
<p>Small and medium enterprises can now tap the benefits of advanced network communications and collaboration technologies easily, affordably, reliably and securely following the launch of SYNAQ Business Suite (SBS).</p>
<p><span id="more-309"></span></p>
<p>Managed Linux services and open source solutions company, SYNAQ, designed and developed SBS specifically for businesses with up to 50 workstations or users, giving them access to enterprise-class technology and capabilities at a fraction of the cost of conventional systems</p>
<p>Adi Meyers, director of Managed Services at SYNAQ, says SBS gives a small business all the essential network-related services they need, including e-mail collaboration, firewall for network security, Web proxy, file server and directory server in a single, easy-to-use offering.</p>
<p>In addition, its powerful collaboration applications allow businesses to share information quickly and easily between employees, customers and suppliers regardless of their location, providing organisations with a keen competitive edge.</p>
<p>&#8220;The problem for SMEs is that these applications are not only relatively expensive, implementing, managing and securing them is often beyond the technical capability of a company with limited technical resources.</p>
<p>&#8220;SYNAQ Business Suite is designed to give SMEs all the advantages of this advanced technology, and a whole lot more, without any of the headaches. We designed SBS with simplicity in mind, providing our customers with even basic technical knowledge with the tools that they need to be able to gain visibility into their network and perform some of the required daily administration. When something more complex is needed, we will do it for them,&#8221; she says.</p>
<p>SBS&#8217;s full featured messaging and collaboration; file and print sharing; firewall and remote access capabilities also incorporates SYNAQ&#8217;s powerful Pinpoint SecureMail e-mail security solution. This gives SMEs advanced e-mail security functionality with protection from unwanted and malicious e-mail-borne threats, ensuring greater robustness and reliability of the organisation&#8217;s e-mail infrastructure.</p>
<p>An open source solution, SBS can be used with Windows, Apple and Unix/Linux clients, and can work within or replace traditional Windows network servers. This means that licensing fees are further reduced.</p>
<p>In addition, because it&#8217;s delivered as a SYNAQ Managed Service, which includes proactive monitoring, routine preventative maintenance and 24&#215;7 support, maximised uptime and peace of mind are always part of the deal.</p>
<p>&#8220;With SBS, users can work and stay connected with the office from anywhere in the world as a VPN server application provides secure access from outside the office. They can also access their mail from any cellphone or smart device with a Web browser, without having to download additional software; and mobile push technology allows for personal information to be pushed to users&#8217; BlackBerry or ActiveSync phones,Â  Meyers explains.</p>
<p>&#8220;The rich collaboration functionality of SBS delivers everything one would want from a full-featured messaging solution, including e-mail, group calendars, contacts, instant messaging, documents and tasks.</p>
<p>All this is delivered securely and easily. Regardless of whether users are accessing the system via a PC, laptop, cellphone or BlackBerry, they use the same sign-on to access the business&#8217;s network, file and Internet resources.</p>
<p>SBS also helps SMEs to prevent data loss as company information is stored in a central location that is backed up daily to an external location.</p>
<p>Full-caching proxy saves bandwidth, as does the ability to control users&#8217; access to the Web based on URLs, file types and content matching. In addition, businesses receive detailed Web usage reports that provide insight into network utilisation and activity.</p>
<p>Finally, failover support allows the server to switch to a secondary Internet connection in case of a line outage, maximising uptime.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-business-suite-delivers-enterprise-level-communications-capabilities-to-sm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SYNAQ launches locally hosted upgrade for Pinpoint SecureMail&#8217;s</title>
		<link>http://www.synaq.com/news-releases/synaq-launches-locally-hosted-upgrade-for-pinpoint-securemails</link>
		<comments>http://www.synaq.com/news-releases/synaq-launches-locally-hosted-upgrade-for-pinpoint-securemails#comments</comments>
		<pubDate>Tue, 18 Aug 2009 09:34:34 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>
		<category><![CDATA[Pinpoint]]></category>
		<category><![CDATA[SecureMail]]></category>

		<guid isPermaLink="false">http://dev.synaq.com/?p=314</guid>
		<description><![CDATA[Pinpoint SecureMail 2.0 acts as first line of defence
18 August 2009
SYNAQ, the managed Linux services and open source solutions company, has launched a locally-hosted, enhanced version of its home-grown Pinpoint SecureMail SaaS (software as a service) solution.

Pinpoint SecureMail 2.0, which acts as a first line of defence between the public Internet and a company&#8217;s e-mail [...]]]></description>
			<content:encoded><![CDATA[<h3><span class="synaq_orange">Pinpoint SecureMail 2.0 acts as first line of defence</span></h3>
<p><em>18 August 2009</em></p>
<p>SYNAQ, the managed Linux services and open source solutions company, has launched a locally-hosted, enhanced version of its home-grown Pinpoint SecureMail SaaS (software as a service) solution.</p>
<p><span id="more-314"></span></p>
<p>Pinpoint SecureMail 2.0, which acts as a first line of defence between the public Internet and a company&#8217;s e-mail servers with its sophisticated anti-virus, anti-spam, content control and anti-phishing capabilities, now incorporates an array of new features specifically requested by users of the powerful software.</p>
<p>Sam Gelbart, director: Software Services at SYNAQ, says the company consulted extensively with Pinpoint users and potential resellers to ensure the development of a product that would actually meet business needs.</p>
<p>One of the most pressing items on users&#8217; wish lists was for faster download and response times &#8211; a feat that cannot be achieved with applications that are hosted offshore, given South Africa&#8217;s international bandwidth constraints. At present, most high-end e-mail security solutions utilised by corporate South Africa are hosted overseas.</p>
<p>&#8220;SYNAQ could have waited to see what impact the new Seacom cable would have on local Internet performance. However, by hosting Pinpoint SecureMail 2.0 locally, we have effectively eliminated the performance problems associated with international bandwidth availability immediately and into the future,&#8221; he explains.</p>
<p>&#8220;This, combined with the advanced Web 2.0 and AJAX technologies we have incorporated into the software, has resulted in a security application that is incredibly fast, always up-to-date and extremely quick and easy to use.&#8221;</p>
<p>According to Gelbart, several clear trends emerged during user discussions, one of which was the difficulties businesses face in reducing the time impact of mail management both operationally and legally.</p>
<p>&#8220;IT staff have less time in which they have to do more &#8211; they need to do more, report more and control more. Their request was to be empowered to do what they need to do as quickly and easily as possible, while ensuring they comply with all legal and regulatory requirements. Pinpoint SecureMail 2.0 meets these requirements,&#8221; he adds.</p>
<p>Highlights of the enhanced software include an innovative new interface that is faster and easier to use; improved reporting capabilities with a faster reporting interface; role-based user management and access capabilities; easier mail administration; and full audit trails for all actions.</p>
<p>&#8220;Spammers constantly develop aggressive new tactics to defeat traditional e-mail filtering solutions. They regularly add new weapons to their arsenal to extract information from users, disable networks by flooding them, and paralysing corporate mail servers. On top on that, there is also a vast amount of e-mail-borne viruses to contend with.</p>
<p>&#8220;With Pinpoint SecureMail 2.0 delivered as an always up-to-date, hassle-free service that changes as quickly as spammers do, businesses are assured of a robust, fast and secure defence against all e-mail-borne threats,&#8221; Gelbart concludes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-launches-locally-hosted-upgrade-for-pinpoint-securemails/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Considerations for Cloud Computing</title>
		<link>http://www.synaq.com/news-releases/considerations-for-cloud-computing</link>
		<comments>http://www.synaq.com/news-releases/considerations-for-cloud-computing#comments</comments>
		<pubDate>Wed, 12 Aug 2009 10:00:45 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=737</guid>
		<description><![CDATA[Tremendous advantages for businesses in terms of lower costs
12 August 2009
Cloud computing holds tremendous advantages for businesses in terms of lower operating and capital costs as well as convenience; but, there are several important considerations to bear in mind before committing to the cloud.
That&#8217;s the view of Yossi Hasson, CEO of managed Linux services and [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Tremendous advantages for businesses in terms of lower costs</h3>
<p><em>12 August 2009</em></p>
<p>Cloud computing holds tremendous advantages for businesses in terms of lower operating and capital costs as well as convenience; but, there are several important considerations to bear in mind before committing to the cloud.</p>
<p>That&#8217;s the view of Yossi Hasson, CEO of managed Linux services and open source solutions company SYNAQ, who says one of the main areas of concern is that of control.</p>
<p><span id="more-737"></span>&#8220;With both managed services and software services, the organisation releases some areas of control of its IT systems and data to a vendor. In order to avoid lock-in to that vendor and ensure your ability to move your data to another vendor, should the need arise, as well as being able to do so without incurring penalties, it&#8217;s important to know that the vendor is either using open standards or open source software.</p>
<p>&#8220;Alternatively, the vendor should be part of or subscribe to organisations that are working towards bringing open standards into cloud computing,&#8221; he adds.</p>
<p>One of these is the recently formed Open Cloud Manifesto, an organisation that&#8217;s trying to bring an open standard to cloud computing so as to enable businesses to integrate and change data without being tied to a managed services or software as a service (SaaS) vendor.</p>
<p>According to Hasson, the establishment of cloud computing standards is still in its infancy, but the drivers are no different to those behind the impetus towards an open standard platform. As an open source company, SYNAQ supports the principles of the Open Cloud Manifesto.</p>
<p>As for the practicalities of cloud computing, Hasson believes businesses should adopt a &#8220;fit for purpose&#8221; approach that takes cognisance of the potential drawbacks of cloud computing.</p>
<p>&#8220;There&#8217;s no question that cloud computing today is ideally suited to standard SaaS-type applications such as CRM, e-mail or anti-spam solutions. However, with South Africa&#8217;s current bandwidth limitations, businesses should be wary of going the cloud route for everything.</p>
<p>&#8220;Indeed, for applications that require more integration and interoperability with other systems, the managed services approach could be a far better option right now,&#8221; he adds.</p>
<p>Another factor to bear in mind is the size of the organisation and the impact this will have on the cost of cloud computing.</p>
<p>Among the benefits of SaaS is a potential reduction in costs resulting from reduced requirements for hardware and licences. However, for larger organisations, having most applications, or even high-use applications, on the cloud could drive up bandwidth requirements &#8211; and bandwidth costs &#8211; thereby eliminating any savings that would otherwise be achieved.</p>
<p>&#8220;Cloud computing &#8211; particularly with respect to SaaS and managed services &#8211; is likely to become mainstream in the not too distant future. There are distinct benefits to be attained right now for organisations that are willing to take this step now provided they partner with the right vendors and use the cloud for the right types of solutions,&#8221; Hasson concludes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/considerations-for-cloud-computing/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ten tips for choosing the right Managed Service Provider</title>
		<link>http://www.synaq.com/news-releases/ten-tips-for-choosing-the-right-managed-service-provider</link>
		<comments>http://www.synaq.com/news-releases/ten-tips-for-choosing-the-right-managed-service-provider#comments</comments>
		<pubDate>Tue, 21 Jul 2009 10:00:00 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=735</guid>
		<description><![CDATA[Businesses cannot afford to choose the wrong MSP
21 July 2009
In today&#8217;s economic climate, the benefits of opting for IT managed services &#8211; lower total cost of ownership (TCO), predictable monthly expenses and access to scarce skilled resources &#8211; has become increasingly compelling.
At the same time, Yossi Hasson, CEO of managed Linux services and open source [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Businesses cannot afford to choose the wrong MSP</h3>
<p><em>21 July 2009</em></p>
<p>In today&#8217;s economic climate, the benefits of opting for IT managed services &#8211; lower total cost of ownership (TCO), predictable monthly expenses and access to scarce skilled resources &#8211; has become increasingly compelling.</p>
<p>At the same time, Yossi Hasson, CEO of managed Linux services and open source solutions company, SYNAQ, warns that the margin for error when choosing a managed services provider (MSP) has narrowed considerably.<br />
&#8220;Businesses simply cannot afford to choose the wrong MSP, one that doesn&#8217;t deliver on the myriad benefits outsourced managed services can and should provide,&#8221; he says.</p>
<p><span id="more-735"></span>An MSP, by definition, provides delivery and management of network-based services, applications, and equipment to enterprises. The MSP is supposed to fulfil the role of the IT team if the organisation doesn&#8217;t have one, or to free up the IT team to focus on solutions that deliver competitive advantage to the business by taking care of essential but routine systems, such as the e-mail server or the firewall.</p>
<p>The effective MSP is one that can provide a proactive, cost-effective remote management service that delivers peace of mind for a fixed monthly investment.</p>
<p>In order to choose an MSP that will meet your expectations regarding outsourced managed services, Hasson suggests businesses ask the following questions:</p>
<p>1. <strong>Expert staff.</strong> In addition to hiring qualified, certified people, does the MSP constantly update their relevant technical certifications and customer services training to ensure that they remain abreast of all developments?</p>
<p>2. <strong>Proactive monitoring.</strong> Does the MSP utilise enterprise class monitoring systems that enables it to address possible problems before they occur or become a crisis?</p>
<p>3. <strong>Preventative maintenance:</strong> Does the MSP conduct routine checks by certified staff in order to validate the health of your infrastructure and raise alerts to potential future problems? Does this include ensuring the latest security patches and critical updates are installed on each system managed?</p>
<p>4. <strong>Configuration backups to remote location</strong>. Are server configurations are always available for disaster recovery? Are daily backups of critical files held in a secure off-site location?</p>
<p>5. <strong>Guaranteed response times</strong>. How good are the MSP&#8217;s standard response times? Do they beat the industry standard and are issues acknowledged in good time?</p>
<p>6.<strong> Prioritisation.</strong> Are support requests prioritised by criticality to ensure that critical issues receive immediate attention and affected services are restored as soon as possible?</p>
<p>7. <strong>Support and response.</strong> Is a dedicated team of highly trained support desk personnel on standby at all times to give you assistance as and when required?</p>
<p>8. <strong>System security checks.</strong> Does the MSP have systems in place that will ensure all potential security vulnerabilities are detected and remedied before they can be exploited?</p>
<p>9. <strong>Detailed monthly reports.</strong> Are monthly reports provided and will they provide visibility and extra insight into your infrastructure allowing you to see trends over time?</p>
<p>10. <strong>Predictable expenditure:</strong> You don&#8217;t want any hidden surprises. Will your fixed monthly investment provide you with uncapped support at an agreed level and type of service?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/ten-tips-for-choosing-the-right-managed-service-provider/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SYNAQ Spam index shows slowdown</title>
		<link>http://www.synaq.com/news-releases/synaq-spam-index-shows-slowdown</link>
		<comments>http://www.synaq.com/news-releases/synaq-spam-index-shows-slowdown#comments</comments>
		<pubDate>Wed, 15 Jul 2009 10:00:41 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=732</guid>
		<description><![CDATA[Ongoing war of attrition with spam purveyors
15 July 2009
Spam messages flooding South African networks reached record highs in May, before falling back by more than 13% in June to account for just more than 91% of all e-mail traffic.
That&#8217;s according to the inaugural quarterly SYNAQ Spam Index, which tracks spam, virus and clean e-mail traffic [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Ongoing war of attrition with spam purveyors</h3>
<p><em>15 July 2009</em></p>
<p>Spam messages flooding South African networks reached record highs in May, before falling back by more than 13% in June to account for just more than 91% of all e-mail traffic.</p>
<p>That&#8217;s according to the inaugural quarterly SYNAQ Spam Index, which tracks spam, virus and clean e-mail traffic volumes in South Africa as monitored by the managed Linux services and open source solutions company.</p>
<p><span id="more-732"></span></p>
<div id="attachment_733" class="wp-caption alignleft" style="width: 310px"><img class="size-full wp-image-733" title="Spam Index" src="http://wp.synaq.com/wp-content/uploads/2010/04/SynaqGraph.jpg" alt="Spam Index July 2009" width="300" height="227" /><p class="wp-caption-text">Spam Capture Rate: April 09 - 93.80%, May 09 - 93.51%, June 09 - 91.49% % Spam Volume Increase on Base: April 09 - BASE, May 09 - +12.88%, June 09 - -13.85%</p></div>
<p>The index, which covers the second quarter of 2009 (April &#8211; June), reveals a sharp 12% rise to a record 95 million spam messages in May, up from 84.2 million the previous month. But in June, the number of spam e-mails dropped back to just over 71 million.</p>
<p>Sam Gelbart, director: Software Services at SYNAQ, attributes the decline to the US Federal Trade Commission&#8217;s shut-down of the rogue Pricewert ISP early in the month. This dealt a major blow to the notorious Cutwail botnet, which was said to be responsible for over a third of global spam traffic in the month prior to the shutdown.</p>
<p>However, Gelbart believes the respite from the shutdown will be short-lived, with spam volumes likely to rise again.</p>
<p>&#8220;There&#8217;s an ongoing war of attrition with spam purveyors. As one botnet gets shut down, another starts up,&#8221; Gelbart explains.</p>
<p>Meanwhile, despite the decline in spam volumes in June, the number of malicious virus carrying e-mails continued to increase steadily throughout the quarter.</p>
<p>&#8220;Even though the volume of e-mail-borne viruses is statistically low in comparison to spam, there is always the threat of the next zero-day outbreak. It&#8217;s therefore essential to always remain vigilant,&#8221; he concludes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-spam-index-shows-slowdown/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advantages of Open Source software for Business</title>
		<link>http://www.synaq.com/news-releases/advantages-of-open-source-software-for-business</link>
		<comments>http://www.synaq.com/news-releases/advantages-of-open-source-software-for-business#comments</comments>
		<pubDate>Thu, 25 Jun 2009 10:00:48 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=730</guid>
		<description><![CDATA[Open source beats the competition.
25 June 2009
Throughout most of the 1990s, open source software was generally dismissed as unsuitable for general business computing. This has changed, and there are now many business applications that run on Linux.
That&#8217;s according to Yossi Hasson, CEO of managed Linux services and open source solutions company SYNAQ, who attributes the [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Open source beats the competition.</h3>
<p><em>25 June 2009</em></p>
<p>Throughout most of the 1990s, open source software was generally dismissed as unsuitable for general business computing. This has changed, and there are now many business applications that run on Linux.</p>
<p><span id="more-730"></span>That&#8217;s according to Yossi Hasson, CEO of managed Linux services and open source solutions company SYNAQ, who attributes the growth in acceptance of open source software to several factors, ranging from flexibility and security to lower cost of ownership.<br />
&#8220;When a business wants to use a specific application to differentiate itself and gain a competitive edge, open source is the way to go. Because the business has access to the source code of the software, as well as less restrictive licence terms, customisation is easier and less expensive than is the case with proprietary software,&#8221; he explains.</p>
<p>In addition, open source software generally costs less to acquire than its proprietary counterpart. However, the savings don&#8217;t stop there.</p>
<p>&#8220;SYNAQ&#8217;s experience is that upgrade/maintenance costs are also typically far less. Add to this the fact that it is usually possible to run open source software more efficiently on older hardware. This translates into smaller hardware costs and potentially, removing the need for new hardware,&#8221; he adds.</p>
<p>Indeed, a recent report by Forrester Research stated that the average TCO savings with open source were around 50%, and in some cases up to 60%.</p>
<p>Hasson acknowledges that these cost savings would not be worth much if open source was inherently less stable and secure than proprietary software. The reality, however, is that there is quantitative data that confirms the greater reliability of open source programs over proprietary programs; and performance tests show that on equivalent hardware, open source often beats the competition.</p>
<p>Finally, he says, there&#8217;s the issue of security. Questions are often raised about the security of open source software because of the ready availability of its source code.</p>
<p>&#8220;The facts, however, prove the opposite. The very openness of the source code actually increases its security. This helps to explain why Windows sites are defaced disproportionately more often than can be attributed to its larger market share and why 80% of all spam is sent by infected Windows PCs.</p>
<p>&#8220;It&#8217;s therefore not surprising that more insurance companies are starting to charge clients more for hacker insurance if they use proprietary software rather than open source for their Internet operations.</p>
<p>&#8220;With lower acquisition costs and lower total cost of ownership combined with greater flexibility, stability and security, the question is no longer whether businesses should opt for open source software, but when to make the change,&#8221; Hasson concludes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/advantages-of-open-source-software-for-business/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SYNAQ Messaging Suite</title>
		<link>http://www.synaq.com/news-releases/synaq-messaging-suite</link>
		<comments>http://www.synaq.com/news-releases/synaq-messaging-suite#comments</comments>
		<pubDate>Wed, 24 Jun 2009 10:00:06 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=728</guid>
		<description><![CDATA[Mail collaboration for the enterprise
24 June 2009
Offering you the best in open source messaging and collaboration allowing your enterprise to email, share calendars and collaborate, all while reducing TCO.
Find out more about SYNAQ Messaging Suite and start collaborating today

]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Mail collaboration for the enterprise</h3>
<p><em>24 June 2009</em></p>
<p>Offering you the best in open source messaging and collaboration allowing your enterprise to email, share calendars and collaborate, all while reducing TCO.</p>
<p>Find out more about <a href="/products/email-collaboration/overview">SYNAQ Messaging Suite</a> and start collaborating today</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-messaging-suite/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SYNAQ helps MTN defuse email hoax</title>
		<link>http://www.synaq.com/news-releases/synaq-helps-mtn-defuse-email-hoax</link>
		<comments>http://www.synaq.com/news-releases/synaq-helps-mtn-defuse-email-hoax#comments</comments>
		<pubDate>Fri, 15 May 2009 10:00:13 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=726</guid>
		<description><![CDATA[SYNAQ minimised the impact of a chain hoax email for MTN
15 May 2009
Prompt action by MTN and its e-mail security provider SYNAQ has minimised the impact of a chain hoax e-mail on the telecommunications operator&#8217;s brand.
The hoax e-mail, which promises recipients a free mobile phone as part of an MTN &#8220;brand promotion&#8221; if they forward [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">SYNAQ minimised the impact of a chain hoax email for MTN</h3>
<p><em>15 May 2009</em></p>
<p>Prompt action by MTN and its e-mail security provider SYNAQ has minimised the impact of a chain hoax e-mail on the telecommunications operator&#8217;s brand.</p>
<p>The hoax e-mail, which promises recipients a free mobile phone as part of an MTN &#8220;brand promotion&#8221; if they forward the mail to eight to 20 people and MTN, has been circulating on the Internet for some time. Initially, it spread quickly, resulting in MTN being bombarded by e-mails on a daily basis from hopeful consumers.</p>
<p><span id="more-726"></span>When the hoax e-mail first started circulating, MTN took immediate action, placing print and radio advertisements warning the public about the hoax and distancing itself from any such &#8220;promotion&#8221;.</p>
<p>While the number of response e-mails received by MTN has declined, the hoax message continues to circulate.</p>
<p>&#8220;Fortunately, we have been able to prevent the vast majority of these e-mails from reaching and overloading MTN&#8217;s e-mail servers,&#8221; says SYNAQ CEO Yossi Hasson.</p>
<p>&#8220;However, the problem facing MTN goes beyond merely blocking these e-mails. The potential damage to MTN&#8217;s brand from disgruntled consumers who expected to receive the &#8216;promised&#8217; free cellphone is considerable.&#8221;</p>
<p>Rather than merely blocking and destroying the e-mails, SYNAQ ensures that the sender of every hoax-response e-mail receives an automated reply that explains the hoax and apologises, on MTN&#8217;s behalf, for any inconvenience caused.</p>
<p>According to Hasson, this is technically extremely difficult to do, as every sender is different. However, SYNAQ has the ability to decide what action to take on every e-mail, based on keywords. In the case of keywords that relate to the hoax, the automated reply is sent.</p>
<p>&#8220;At the height of the hoax, we were sending out over 30 000 responses every day, without impacting in any way on MTN&#8217;s e-mail network. We continue to deal promptly with the responses to the hoax as they are received,&#8221; Hasson concludes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-helps-mtn-defuse-email-hoax/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Economic downturn to boost Open Source</title>
		<link>http://www.synaq.com/news-releases/economic-downturn-to-boost-open-source</link>
		<comments>http://www.synaq.com/news-releases/economic-downturn-to-boost-open-source#comments</comments>
		<pubDate>Tue, 05 May 2009 10:00:26 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/news-releases/economic-downturn-to-boost-open-source</guid>
		<description><![CDATA[Open source will start to look increasingly attractive
05 May 2009
Businesses that opt for open source solution equivalents of proprietary software applications can reduce the total budget required for its implementation and operation by 50% to 60% over three years.
That&#8217;s according to Yossi Hasson, CEO of managed Linux services and open source solutions provider, SYNAQ, who [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Open source will start to look increasingly attractive</h3>
<p><em>05 May 2009</em></p>
<p>Businesses that opt for open source solution equivalents of proprietary software applications can reduce the total budget required for its implementation and operation by 50% to 60% over three years.</p>
<p>That&#8217;s according to Yossi Hasson, CEO of managed Linux services and open source solutions provider, SYNAQ, who says that with the slowdown in the economy, businesses need to investigate viable alternatives in order to meet their IT needs in the most cost-effective way possible.</p>
<p><span id="more-725"></span>&#8220;For many businesses, going the open source route could spell the difference between implementing a project that boosts business efficiencies, or not. Indeed, when there is little to differentiate the functionality of an open source solution to its proprietary equivalent, the cost savings that come with open source are extremely compelling,&#8221; he says.</p>
<p>According to Hasson, it isn&#8217;t only the saving on licensing requirements that makes the difference, although these are considerable. Savings are also achieved on the investment requirement for the hardware on which the application has to run.</p>
<p>&#8220;In many instances, the open source solution is less &#8216;hardware hungry&#8217; than its proprietary equivalent, which means businesses can leverage off their existing infrastructure without compromising on the application&#8217;s functionality,&#8221; he says.</p>
<p>However, Hasson continues, the benefits of open source solutions to a business go beyond cost savings.</p>
<p>&#8220;The enormous strength of open source is its flexibility. An enterprise usually wants to use IT or a specific application to differentiate itself. An off-the-shelf package might only meet 70% to 80% of what is required and the package might have to be customised. That could be expensive.</p>
<p>With open source, customisation is easier and less expensive as the user has access to the source code.</p>
<p>&#8220;There is no doubt that as budgets come under increasing strain, the open source will start to look increasingly attractive to businesses of all sizes,&#8221; he concludes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/economic-downturn-to-boost-open-source/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SYNAQ&#8217;s Commitment to service goes to the top</title>
		<link>http://www.synaq.com/news-releases/synaqs-commitment-to-service-goes-to-the-top</link>
		<comments>http://www.synaq.com/news-releases/synaqs-commitment-to-service-goes-to-the-top#comments</comments>
		<pubDate>Wed, 29 Apr 2009 10:00:37 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=723</guid>
		<description><![CDATA[Helpdesk is the frontline of service delivery
29 April 2009
When managed Linux services and open source solutions company SYNAQ claims it takes customer service seriously, it&#8217;s not lip-service: callers to the Johannesburg-based company&#8217;s helpdesk could well find that the person handling their query is the CEO Yossi Hasson.
Hasson works as a helpdesk agent for two half-days [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Helpdesk is the frontline of service delivery</h3>
<p><em>29 April 2009</em></p>
<p>When managed Linux services and open source solutions company SYNAQ claims it takes customer service seriously, it&#8217;s not lip-service: callers to the Johannesburg-based company&#8217;s helpdesk could well find that the person handling their query is the CEO Yossi Hasson.</p>
<p><span id="more-723"></span>Hasson works as a helpdesk agent for two half-days every month &#8211; and every new employee hired by the company also has to put in time on the helpdesk.<br />
&#8220;Our helpdesk is the frontline of our service delivery. We train our agents well and we believe they do a great job. However, if we&#8217;re to deliver truly world-class service, we need first-hand experience the problems our customers want resolved as well as the challenges faced by our agents in meeting customer needs,&#8221; he explains.</p>
<p>According to Hasson, his first day on the helpdesk was &#8220;an interesting experience&#8221;, which afforded him new insight into the world of the helpdesk agent.</p>
<p>&#8220;It also gave me greater insight into SYNAQ and the way our organisation and its offerings is perceived by customers,&#8221; he adds.</p>
<p>&#8220;However, my working on the helpdesk is not a PR exercise. We are already starting to incorporate some of the lessons learned by dealing with customer concerns and issues into our daily operations.&#8221;</p>
<p>As for new employees having to spend time on the helpdesk, Hasson says it is proving useful in quickly initiating them into the workings and culture of SYNAQ.</p>
<p>&#8220;It helps them to understand just how seriously service and service delivery is taken at SYNAQ,&#8221; Hasson concludes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaqs-commitment-to-service-goes-to-the-top/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protecting corporate communications infrastructure through the cloud</title>
		<link>http://www.synaq.com/news-releases/protecting-corporate-communications-infrastructure-through-the-cloud</link>
		<comments>http://www.synaq.com/news-releases/protecting-corporate-communications-infrastructure-through-the-cloud#comments</comments>
		<pubDate>Fri, 17 Apr 2009 10:00:33 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=721</guid>
		<description><![CDATA[Cloud computing comes to the fore
17 April 2009
Cloud computing is set to have a major impact on network security in 2009, according to Yossi Hasson, CEO of managed Linux services and open source solutions provider, SYNAQ.
&#8220;Because security threats change from day to day, dealing with them demands a holistic understanding of every aspect of the [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Cloud computing comes to the fore</h3>
<p><em>17 April 2009</em></p>
<p>Cloud computing is set to have a major impact on network security in 2009, according to Yossi Hasson, CEO of managed Linux services and open source solutions provider, SYNAQ.</p>
<p>&#8220;Because security threats change from day to day, dealing with them demands a holistic understanding of every aspect of the environment that is to be protected. This must be supported by continuous updating and re-evaluation of the security measures to ensure vulnerabilities are identified and rectified before an attack occurs.</p>
<p><span id="more-721"></span>&#8220;It&#8217;s a full-time job that requires 24/7 support and maintenance. Few organisations have the resources and know-how to deal with threats on an ongoing basis,&#8221; Hasson says.</p>
<p>That&#8217;s where cloud computing comes to the fore. In a cloud computing scenario, real-time, scalable resources are provided as a service over the Internet, to users who need not have knowledge of, expertise in or control over the technology infrastructure that supports them.</p>
<p>However, the benefits of securing the network over the cloud go further.</p>
<p>Hasson points out that a high proportion of the attacks on corporate networks are launched via the e-mail system, usually in the form of spam or unwanted e-mail.</p>
<p>&#8220;The cost to businesses of unwanted e-mail &#8211; of both the &#8216;harmless&#8217; and malicious variety &#8211; can be enormous in terms of network performance degradation and wasted bandwidth. In the cloud scenario, the threat is removed before it even reaches the organisation&#8217;s network,&#8221; he explains.</p>
<p>A recent analysis of a major South African-based corporate&#8217;s e-mails over a three-week period conducted by SYNAQ revealed just how costly spam can be.</p>
<p>During the study period, SYNAQ processed some 260GB of mail &#8211; or around 53 million e-mails &#8211; that was destined for the corporate&#8217;s network.</p>
<p>Only 822 000 (1.5%) were &#8220;legitimate&#8221; e-mails.</p>
<p>Of the remainder, 850 000 (1.6%) carried malicious viruses and 51.4 million (96.9%) were spam.</p>
<p>It was calculated that the amount of additional bandwidth that the corporate needed to accommodate the spam so that it didn&#8217;t impact negatively on network performance would cost in the region of R30 000 per month.</p>
<p>&#8220;Of course, a concerted spam attack could bring the entire network down either through the introduction of a malicious virus, or simply by overloading the system to the extent that it collapses,&#8221; he adds.</p>
<p>The fact that the cloud effectively shields visibility of the corporate&#8217;s infrastructure from the attacker is also extremely important. In conventional perimeter security scenario, the anti-virus or anti-spam applications are located at the edge of the corporate&#8217;s own mail infrastructure. Attackers can therefore monitor the peripheral for exploitable vulnerabilities, which often result from configuration problems.</p>
<p>&#8220;By going the cloud route, attackers have visibility only of the service provider&#8217;s infrastructure &#8211; and because security is the provider&#8217;s core business, protective mechanisms are likely to be far more current and sophisticated,&#8221; Hasson says and points out that in a multi-branch, dispersed network environment, even the smallest, remotest office receives the same high level of protection.</p>
<p>Finally, security via the cloud comes at a predictable cost to the organisation. There&#8217;s no need to suddenly scale up infrastructure to deal with an anticipated threat or sustained attack.</p>
<p>&#8220;If left unchecked, the cost of spam would increase exponentially. There&#8217;s no sign of a slowdown in the distribution of unsolicited bulk e-mails, while spammers are becoming increasingly sophisticated in bypassing anti-spam filters. Organisations can try and fight this on their own, or they can harness the benefits advances in cloud computing allow,&#8221; he concludes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/protecting-corporate-communications-infrastructure-through-the-cloud/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Local Solution Protects Corporate E-mail Systems</title>
		<link>http://www.synaq.com/news-releases/local-solution-protects-corporate-e-mail-systems</link>
		<comments>http://www.synaq.com/news-releases/local-solution-protects-corporate-e-mail-systems#comments</comments>
		<pubDate>Mon, 30 Mar 2009 10:00:36 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=719</guid>
		<description><![CDATA[Pinpoint Securemail incorporates a range of protection
30 March 2009
A locally developed e-mail security solution is being used to monitor over 10 million e-mails destined for corporate South Africa every day. Of these, around 94% are spam or viruses, and only 5% are legitimate.
The solution, Pinpoint SecureMail, was developed by managed Linux services and open source [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Pinpoint Securemail incorporates a range of protection</h3>
<p><em>30 March 2009</em></p>
<p>A locally developed e-mail security solution is being used to monitor over 10 million e-mails destined for corporate South Africa every day. Of these, around 94% are spam or viruses, and only 5% are legitimate.</p>
<p>The solution, Pinpoint SecureMail, was developed by managed Linux services and open source solutions provider, SYNAQ, on an open source platform.</p>
<p><span id="more-719"></span>According to SYNAQ technical director David Jacobson, corporate networks are constantly under threat from virus propagators and spammers who relentlessly develop aggressive new tactics to defeat traditional e-mail filtering solutions.</p>
<p>They regularly add new weapons to their arsenal to extract information from users, flood company mail servers, and cripple corporate IT infrastructures by camouflaging their vicious threats within innocuous-looking e-mails.</p>
<p>&#8220;We recognised that in order to counter the aggressive tactics of virus propagators and spammers, we would have to develop an e-mail security solution that could change as quickly as they do. By leveraging the flexibility of open source software and technologies, we have produced a security solution that is always up-to-date,&#8221; Jacobson says.</p>
<p>Pinpoint SecureMail incorporates a range of protection services (anti-virus, anti-spam, content control and anti-phishing) and acts as a first line of defence between the public Internet and a company&#8217;s e-mail servers.<br />
It scans e-mail using any combination of up to 14 different virus scanners that automatically update themselves every hour with the latest malware signatures.</p>
<p>It also identifies over 95% of spam using multiple techniques, including highly advanced heuristics and optical character recognition (OCR) for protection against the latest picture-embedded methodology used by spammers.</p>
<p>Pinpoint SecureMail is readily customisable to suit every company&#8217;s needs. This could range from incorporating employee specific rules within company-wide filtering policies to unique notification procedures.</p>
<p>The solution comes standard with a fully functional, easy-to-use Web interface that provides detailed management reports and statistics, allows release of blocked e-mails, and offers a vast number of other functions.</p>
<p>&#8220;It requires no additional software, hardware or technical skills providing customers with a central, reliable, always up-to-date e-mail security solution that&#8217;s easy to implement and even easier to manage,&#8221; Jacobson concludes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/local-solution-protects-corporate-e-mail-systems/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Open Source Safer?</title>
		<link>http://www.synaq.com/news-releases/is-open-source-safer</link>
		<comments>http://www.synaq.com/news-releases/is-open-source-safer#comments</comments>
		<pubDate>Thu, 26 Mar 2009 10:00:38 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=717</guid>
		<description><![CDATA[Open Source is Ready
26 March 2009
Vulnerabilities around open source software and cloud computing are some of the issues that will be discussed at the ITWeb Security Summit 2009, to be held at Vodaworld in Midrand, from 26 to 28 May.
Yossi Hasson, MD of SYNAQ, will debate the issues around security and open source software, and [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Open Source is Ready</h3>
<p><em>26 March 2009</em></p>
<p>Vulnerabilities around open source software and cloud computing are some of the issues that will be discussed at the ITWeb Security Summit 2009, to be held at Vodaworld in Midrand, from 26 to 28 May.</p>
<p>Yossi Hasson, MD of SYNAQ, will debate the issues around security and open source software, and whether open source software is more vulnerable to security risks than proprietary software.</p>
<p><span id="more-717"></span>Hasson says contrary to public belief that open source is unsafe, open source is no more vulnerable than proprietary software. &#8220;A lot of the viruses that are out there are not targeting typical open source software, but rather proprietary software. We are also seeing more anti-virus engines being developed that run on open source platforms.</p>
<p>&#8220;The trend that we are seeing with open source software is that open source has faster turnaround times in fixing bugs and that more open source users are starting to really scrutinise the software they purchase.&#8221;</p>
<p>According to Hasson, the uptake and awareness of open source software is rapidly increasing, and there are more malware threats targeting proprietary software, making open source a safer choice.</p>
<p>Open source is ready</p>
<p>&#8220;In these economic times, more companies are looking at the options and benefits that open source provides versus proprietary software. It&#8217;s not a question of whether open source is ready for the market. It is ready, and now businesses are seriously exploring and looking at how it makes sense for them.&#8221;</p>
<p>Hasson says an increasing number of software developers are turning to open source as a foundation to develop cloud computing and software-as-a-service applications. &#8220;The licensing restrictions are by far less onerous, there&#8217;s more flexibility, and when they do build cloud computing platforms, it gives them an added advantage.</p>
<p>&#8220;There will be a lot more awareness and a lot more open source applications developing and coming into the mainstream in years to come. However, I don&#8217;t think it will be the end of proprietary software. There will always be a place for both. What it will do is increase competition, and at the end of the day, it will be the customer that will benefit from having more choice.&#8221;</p>
<p>Another advantage to open source software, Hasson points out, is the turnaround time to resolve security problems is much faster than proprietary software.<br />
back</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/is-open-source-safer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synaq</title>
		<link>http://www.synaq.com/news-releases/synaq-7</link>
		<comments>http://www.synaq.com/news-releases/synaq-7#comments</comments>
		<pubDate>Thu, 19 Mar 2009 10:00:04 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=713</guid>
		<description><![CDATA[Lance Soller Reference SYNAQ
16 March 2009
I&#8217;ve been involved in the IT industry since 1990 and SYNAQ is one of the few companies I&#8217;ve worked that actually delivers on its promises &#8211; not once or twice, but consistently.
]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Lance Soller Reference SYNAQ</h3>
<p><em>16 March 2009</em></p>
<p>I&#8217;ve been involved in the IT industry since 1990 and SYNAQ is one of the few companies I&#8217;ve worked that actually delivers on its promises &#8211; not once or twice, but consistently.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-7/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SYNAQ delivers for RAM Couriers</title>
		<link>http://www.synaq.com/news-releases/synaq-delivers-for-ram-couriers</link>
		<comments>http://www.synaq.com/news-releases/synaq-delivers-for-ram-couriers#comments</comments>
		<pubDate>Mon, 16 Mar 2009 10:10:50 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=715</guid>
		<description><![CDATA[Another satisfied customer: RAM Couriers
16 March 2009
The greatest differentiator for a courier company that delivers tens of thousands of parcels daily is its IT systems.
So says Lance Soller, IT manager at RAM, South Africa&#8217;s fastest growing courier organisation which currently has 30 branches around the country all connected to its IT network.&#8221;Our IT systems are [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Another satisfied customer: RAM Couriers</h3>
<p><em>16 March 2009</em></p>
<p>The greatest differentiator for a courier company that delivers tens of thousands of parcels daily is its IT systems.</p>
<p>So says Lance Soller, IT manager at RAM, South Africa&#8217;s fastest growing courier organisation which currently has 30 branches around the country all connected to its IT network.&#8221;Our IT systems are absolutely critical to our operations. Even a short system failure would virtually bring us to a standstill,&#8221; he says.</p>
<p><span id="more-715"></span>For the past four years RAM has partnered with SYNAQ, a national provider of Managed Linux Services and Open Source solutions, to ensure its IT systems perform at peak levels at all time.</p>
<p>SYNAQ constantly monitors RAM&#8217;s network and more than 100 servers for indications of impending trouble and system overload.</p>
<p>In addition, SYNAQ ensures the RAM helpdesk system &#8211; which it implemented and supports &#8211; also functions at peak efficiency.</p>
<p>&#8220;We&#8217;ve been most impressed with the solutions provided by SYNAQ in terms of their affordability and efficacy.  However, it&#8217;s their service ethic that really blows us away,&#8221; Soller says.  </p>
<p>&#8220;I&#8217;ve been involved in the IT industry since 1990 and SYNAQ is one of the few companies I&#8217;ve worked that actually delivers on its promises &#8211; not once or twice, but consistently.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-delivers-for-ram-couriers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Breadbin Fress Open Source</title>
		<link>http://www.synaq.com/news-releases/breadbin-fress-open-source</link>
		<comments>http://www.synaq.com/news-releases/breadbin-fress-open-source#comments</comments>
		<pubDate>Tue, 03 Feb 2009 10:00:56 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=711</guid>
		<description><![CDATA[90% of enterprises will use open source
03 February 2009
Breadbin Interactive, a local open source software company, is looking to use its Freedom Toaster platform to promote and expand open source software into the rest of Africa.
The company plans to expand into Africa to make information feely available, particularly in the enterprise and education space.
The aim, [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">90% of enterprises will use open source</h3>
<p><em>03 February 2009</em></p>
<p>Breadbin Interactive, a local open source software company, is looking to use its Freedom Toaster platform to promote and expand open source software into the rest of Africa.</p>
<p>The company plans to expand into Africa to make information feely available, particularly in the enterprise and education space.</p>
<p><span id="more-711"></span>The aim, says the company, is to make up-to-date relevant information free to the public to download from computer platforms entitled Freedom Toasters.</p>
<p>Brett Simpson, co-founder of the Freedom Toaster, says: &#8220;The name Freedom Toaster is derived from the fact that open source software and open content is free and that Linux users refer to burning CDs as &#8216;toasting&#8217;; hence The Freedom Toaster.</p>
<p>&#8220;We hope to fulfil our first international order into Africa and close development of our smaller, counter-top unit. Our core market and area for greatest social impact is education. So we will be targeting a selection of tertiary educational institutions with which to collaborate.&#8221;<br />
Breadbin has already sold Freedom Toasters to Unisa, the Western Cape provincial government, MTN Science Centre and Seda.</p>
<p>The Freedom Toaster is a platform that comes in the form of a touch-screen kiosk, similar to an ATM, allowing users to burn digital information and content onto CD/DVD or USB. This includes free open source software, company information, templates, tenders, legal documents, electronic textbooks, training manuals, photographs, music and movies.</p>
<p>In addition, Breadbin is building open source platforms that transfer information via Bluetooth technology to the cellphone.</p>
<p>The Freedom Toaster concept was developed by Simpson and Jason Hudson, within the Shuttleworth Foundation, five years ago.</p>
<p>Simpson adds: &#8220;The concept proved so popular in so far as it was being embraced locally and internationally (we have helped people in Canada, India, Saudi Arabia, Egypt, Germany, Kenya and Namibia build their own Freedom Toasters). After three years within the Shuttleworth Foundation, all stakeholders &#8211; including Mark Shuttleworth &#8211; decided the best way to make this philanthropic project self-sustainable would be to commercialise it.&#8221;</p>
<p>This consequently led to the formation of Breadbin Interactive in 2006, and a commercially viable model was developed to make the units available to companies, educational institutions and government departments.</p>
<p>According to Simpson, Breadbin Interactive is working with Seda, the entrepreneurial arm of the government, to distribute information to assist entrepreneurs start their own businesses. It includes business plans, industry information, as well as case studies.</p>
<p>Breadbin Interactive has partnered with Business Connexion, which supports Breadbin&#8217;s maintenance contracts for its clients.</p>
<p><strong>Gaining popularity</strong></p>
<p>Breadbin Interactive has found a higher frequency of people migrating over to open source operating systems, such as Shuttleworth&#8217;s Ubuntu.</p>
<p>Simpson believes this is because open source operating systems are more cost-effective and flexible and have anti-virus software built in. He says open source operating systems are usually not the targets of viruses in the first place.</p>
<p>Yossi Hasson, MD of SYNAQ, says according to Gartner, by 2012 more than 90% of enterprises will use open source in direct or embedded forms.Hasson claims open source improves local IT skills, cuts costs, has a lower total cost of ownership and can be customised.He points out: &#8220;We are seeing more software being replaced with the alternative of open source software. FNB switched 12 000 desktops from Microsoft Windows to Linux. IBM and HP are putting through funding programmes into open source.&#8221;In an economic downturn, open source software can only grow. Companies are evaluating their spend on IT and are turning to alternatives such as open source.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/breadbin-fress-open-source/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Email Strangling Corporate Networks</title>
		<link>http://www.synaq.com/news-releases/email-strangling-corporate-networks</link>
		<comments>http://www.synaq.com/news-releases/email-strangling-corporate-networks#comments</comments>
		<pubDate>Tue, 18 Nov 2008 10:00:59 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=709</guid>
		<description><![CDATA[Startling Facts about Spam
18 November 2008
Just how much damage is unwanted e-mail &#8211; of both the harmless and malicious variety &#8211; doing to local corporate networks?
A recent analysis of a major South African-based corporate&#8217;s e-mails over a three-week period by Johannesburg-based SYNAQ, a company focused on delivering managed services in the mail security and network [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Startling Facts about Spam</h3>
<p><em>18 November 2008</em></p>
<p>Just how much damage is unwanted e-mail &#8211; of both the harmless and malicious variety &#8211; doing to local corporate networks?</p>
<p>A recent analysis of a major South African-based corporate&#8217;s e-mails over a three-week period by Johannesburg-based SYNAQ, a company focused on delivering managed services in the mail security and network monitoring arenas, turned up some horrifying statistics.</p>
<p><span id="more-709"></span>During the study period, SYNAQ processed some 260GB of mail &#8211; or around 53 million e-mails &#8211; that was destined for the corporate&#8217;s network.</p>
<p>Only 822 000 (1.5%) were legitimate e-mails.</p>
<p>Of the remainder, 850 000 (1.6%) carried malicious viruses and 51.4 million (96.9%) were harmless, albeit annoying, spam.</p>
<p>However, SYNAQ&#8217;s technical director David Jacobson points out that harmless spam is more than annoying. It slows the network and consumes expensive bandwidth.</p>
<p>&#8220;We estimate that the amount of additional bandwidth that the corporate would require to accommodate the spam so that it doesn&#8217;t impact negatively on the network would cost around R25 000 per month. That can hardly be considered harmless,&#8221; he says.</p>
<p>&#8220;If left unchecked, the cost of spam would increase exponentially. There&#8217;s no sign of a slowdown in the distribution of unsolicited bulk e-mails while spammers are becoming increasingly sophisticated in bypassing anti-spam filters.&#8221;</p>
<p>According to Jacobson, spam used to be fairly easy to filter. It usually came from fixed IP addresses which could be countered by using a blacklist; the &#8220;from&#8221; address was not usually forged and so could be filtered; and spam contained keywords &#8211; like &#8220;penis&#8221; or &#8220;Viagra&#8221; &#8211; that could be blacklisted</p>
<p>However, he says, the simplistic filtering of &#8220;from&#8221; addresses and content is now useless and has been for the past few years.</p>
<p>In addition spammers use a number of tricks designed to fool spam filtering programs such as misspelling commonly flagged words. So &#8220;Viagra&#8221;, for example, is written as &#8220;v1@gra&#8221;, or &#8220;penis&#8221; as &#8220;pe.nis&#8221;. Spammers also use invisible ink camouflage techniques.</p>
<p>But as spammers&#8217; tricks become more sophisticated, and because spam changes its form so often, the only feasible solution against this plague is to ensure anti-spam defences are constantly updated.</p>
<p>&#8220;At the same time, you have to ensure that your e-mail security protection doesn&#8217;t inhibit legitimate e-mail correspondence,&#8221; Jacobson warns.</p>
<p>For example, greylisting &#8211; a relatively new technique that has shown some promise &#8211; often causes delays on the delivery of initial e-mails. Similarly, content blockers that unilaterally block all mails containing suspect words such as Viagra may not take account of the fact that in some instances, mails containing the a word like Viagra may be perfectly legitimate for members of the medical or pharmaceutical professions.</p>
<p>&#8220;What&#8217;s required therefore is a dynamic e-mail protection solution that is able to deal with changing threats on a daily basis while simultaneously managing the availability and performance of e-mail services.</p>
<p>&#8220;Because few businesses have the in-house skills &#8211; or the time &#8211; to continuously monitor and maintain their anti-spam defences, they are increasingly turning to companies that provide managed e-mail security solutions to continue the war on their behalf,&#8221; he concludes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/email-strangling-corporate-networks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open source questions answered and myths debunked</title>
		<link>http://www.synaq.com/news-releases/open-source-questions-answered-and-myths-debunked-2</link>
		<comments>http://www.synaq.com/news-releases/open-source-questions-answered-and-myths-debunked-2#comments</comments>
		<pubDate>Mon, 17 Nov 2008 10:00:28 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=707</guid>
		<description><![CDATA[Is open source effective in the workplace?
17 November 2008
By Yossi Hasson, Managing Director, SYNAQ
 Yes, it is effective. The stigma that it&#8217;s a platform for geeks is undeserved. SYNAQ is a committed open source advocate &#8211; we are a 20-person company and we run almost everything on open source. However, we use a proprietary solution [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Is open source effective in the workplace?</h3>
<p><em>17 November 2008</em><br />
By Yossi Hasson, Managing Director, SYNAQ</p>
<p> Yes, it is effective. The stigma that it&#8217;s a platform for geeks is undeserved. SYNAQ is a committed open source advocate &#8211; we are a 20-person company and we run almost everything on open source. However, we use a proprietary solution for our accounting requirements.</p>
<p><span id="more-707"></span>The workplace doesn&#8217;t have to be an either/or environment. There is place for both open source and proprietary &#8211; it&#8217;s really about the right tools for the job.In a simple desktop environment, for example in a call centre in which users just need a simple Web interface, basic word processing and a spreadsheet, an open source package, like Ubuntu, running Open Office would be perfect. These users don&#8217;t need the bells and whistles of Microsoft Office.</p>
<p>At the other end of the scale, for an SME that is growing and has constantly changing needs &#8211; it may need to implement CRM or workflow management and be able to build this up over time or adapt it to enable changes in the business strategy &#8211; open source is absolutely the way to go. Open source allows for rapid change, customisation and greater flexibility.SYNAQ, however, is the first to acknowledge that open source may not be for everyone or for every situation. But it does give users something that they&#8217;ve never had before &#8211; choice.</p>
<p> <strong>Why bother with open source at all?</strong></p>
<p>For some open source proponents, it&#8217;s a philosophical thing &#8211; a belief that software and its code should be free (albeit in a philosophical rather than financial sense) and unencumbered by licensing restrictions.Probably the most compelling reason to opt for open source is its inherent flexibility.However, if flexibility isn&#8217;t an issue and if a particular application doesn&#8217;t add any real extra value &#8211; all banks have debit order systems; all businesses have accounting systems &#8211; then proprietary software might, or might not, be better. In these situations, the choice between open source and proprietary comes down to issues like features (fit-for-purpose), price and the availability of ongoing support.Flexibility becomes an issue when an enterprise wants to use IT or a specific application to differentiate itself. An off-the-shelf package might only meet 70% to 80% of what is required. The package might have to be customised and that could be expensive, or impossible, regardless of how many skilled resources the organisation has. Many large enterprises struggle to adapt to change quickly, largely because their legacy proprietary applications don&#8217;t give them the flexibility they need. With open source, customisation is easier and less expensive as the user has access to the source code.</p>
<p>So if I need to change my business quickly to adapt to developments in the market or to maintain a competitive edge, open source is the way to go.<br />
<strong><br />
Is open source really cheaper than proprietary software?</strong></p>
<p>It&#8217;s unfortunate that open source has been positioned as the cheaper alternative purely on the basis that it does not carry the licensing costs associated with proprietary software.The reality is that the cost of open source depends on the context in which it is used. SYNAQ&#8217;s experience is that the total cost to the enterprise of an open source solution and a comparable proprietary solution is probably fairly similar when everything is taken into account. On average open source solutions should be cheaper than their proprietary alternatives. However, the main benefit does not come from a cost-saving but rather the increased flexibility/ability to adapt and the prevention of user lock-in.Open source could undoubtedly be less expensive for SMEs that have in-house open source skills with the ability to implement and maintain the open source platform and applications itself. This is because there is usually &#8211; but not always &#8211; no licence fee and the solution could well require less hardware to run effectively. But if the company has to outsource support and development, the costs will probably be similar or possibly slightly less, depending on whether the software comes with a service cost.</p>
<p><strong>Is Linux becoming mainstream?</strong></p>
<p>In South Africa, businesses are starting to put Linux on their radar but it is not mainstream yet. Businesses are still hesitant because of the perceived risks associated with open source. These risks have generally been blown out of proportion by proponents of proprietary software through fear, uncertainty, despair campaigns.In terms of the growth of the Internet and the Web2.0 community, Linux is not only mainstream, it is close to being the only stream. Even Facebook confirmed that it is preparing to further open its platform so that third-party developers will be able to use its source code to create applications that will run in other environments.Facebook has had to do this because of the speed with which it has to scale and change. As the world becomes increasingly collaborative, so open source will increasingly become the platform of choice because of its flexibility and scalability.<br />
<strong><br />
Popular open source myths</strong>*</p>
<p>Only proprietary software is properly tested and supported.Good open source projects backed by a proper open source community are also fully tested and supported. The underlying philosophy of open source is that it should be open and available to the masses. As such, it is probably better tested than proprietary software before and after release because the community using it, testing it and enhancing it is so large. Anything missing, any bug, will soon be identified and fixed.* Open source solutions are not stable.The best way to address this myth is to point out an open source application, Apache, which runs about 70% of all Internet servers around the world. Along with products like Squid and Sendmail, open source virtually runs the Internet. The Internet is amazingly stable. And Google has opted to go the open source route for its new Chrome browser.* The shortage of open source skills makes it more expensiveThere is a general shortage of IT skills across all platforms &#8211; and it&#8217;s a worldwide phenomenon.In South Africa, because open source remains a niche market, skills are not as readily available as for proprietary platforms. However, while there may be more individuals with MS skills, are they all good skills or are many of them merely average?There is quality support available for open source available through companies like SYNAQ. There are also a lot more open source learnerships available and the number of people being trained is growing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/open-source-questions-answered-and-myths-debunked-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change : the proverbial evil</title>
		<link>http://www.synaq.com/news-releases/change-the-proverbial-evil</link>
		<comments>http://www.synaq.com/news-releases/change-the-proverbial-evil#comments</comments>
		<pubDate>Mon, 20 Oct 2008 10:00:10 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=705</guid>
		<description><![CDATA[Skills shortage
20 October 2008
Whither the modern outsourcing provider? On the one hand, it has to provide some kind of business value for its client. On the other, it also struggles to find the skills that force companies to outsource in the first place. And because technology is so intertwined with modern business, quite often customers [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Skills shortage</h3>
<p><em>20 October 2008</em></p>
<p>Whither the modern outsourcing provider? On the one hand, it has to provide some kind of business value for its client. On the other, it also struggles to find the skills that force companies to outsource in the first place. And because technology is so intertwined with modern business, quite often customers don&#8217;t want to own a problem, but also can&#8217;t bear to lose control. It&#8217;s a unique set of pressures, as ITWeb heard during a roundtable discussion held in Johannesburg recently.</p>
<p><span id="more-705"></span>According to Lance Fanaroff, joint-MD of the Integr8 Group, the skills shortage is just as common for outsourcers as it is for other businesses, but it does work both ways. &#8220;The biggest challenge for everyone is the skills shortage, but that is both a pro and a con,&#8221; he says. &#8220;Companies want to outsource because of it, but it&#8217;s then hard for us to find skills.&#8221;</p>
<p>Another challenge facing outsourcers is the convergence of telecoms and IT. Although convergence is an old word, from an outsourced partner perspective the skill set to align those strategies can be hard to find.</p>
<p>Frank Mullen, COO of the telecommunications division at ITEC, says his customers are looking for one point of contact. &#8220;In the past, companies had a telecoms solution in-house, a data solution in-house and a software development solution in-house. Because of instant messaging, VOIP and broadband, I as an outsource provider can offer a much higher quality of service to my partners, but I also have to align solutions with those partners and be making decisions for them. It&#8217;s not their duty to understand technology. When you go [see them] customers ask: can you do my data, my telecoms, my networks, my hosting and my applications? So the pressure on outsourcers is to get those skills on board.&#8221;</p>
<p>David Jacobson, technical director at SYNAQ, agrees the skills shortage is a major issue, particularly when it comes to specialised skills. &#8220;I personally interview about five people a week. We need good IT people and good Linux people. The problem you find is that hard-core Linux guys aren&#8217;t very good with customers. They look funny, have long hair, eat pizza and don&#8217;t like talking to customers &#8211; which can be a serious problem.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/change-the-proverbial-evil/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open source take proactive management to the next level</title>
		<link>http://www.synaq.com/news-releases/open-source-take-proactive-management-to-the-next-level</link>
		<comments>http://www.synaq.com/news-releases/open-source-take-proactive-management-to-the-next-level#comments</comments>
		<pubDate>Wed, 17 Sep 2008 10:00:20 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=703</guid>
		<description><![CDATA[Enables the rapid identification of problem areas
17 September 2008
In today&#8217;s competitive economy, the concept of proactive network and systems management has become something of a cliché. However, with enterprise networks supporting an intricate web of proprietary applications and solutions, translating the concept into a reliable, robust reality can be a complex undertaking.
So says Yossi Hasson, [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Enables the rapid identification of problem areas</h3>
<p><em>17 September 2008</em></p>
<p>In today&#8217;s competitive economy, the concept of proactive network and systems management has become something of a cliché. However, with enterprise networks supporting an intricate web of proprietary applications and solutions, translating the concept into a reliable, robust reality can be a complex undertaking.</p>
<p><span id="more-703"></span>So says Yossi Hasson, MD of SYNAQ, a Johannesburg-based provider of managed Linux services, who points out that the time it takes to become aware of any network problem is often critical to the success of a business.</p>
<p>&#8220;Identification of network problems, therefore, can&#8217;t be left to chance. That&#8217;s why proactive management, which enables the rapid identification of problem areas, is so important,&#8221; he explains.</p>
<p>However, Hasson continues, the network management tools that are put in place need to be able to do more than identify problems so an engineer can fix them. That alone won&#8217;t prevent faults from reoccurring.</p>
<p>What&#8217;s really required is an ability to identify the cause of a fault so the underlying problem can be addressed. Without that ability, the battle to increase network uptime can never be won.</p>
<p>According to Hasson, every enterprise ideally needs a single tool that can watch over every part of the network, identify potential problem areas and alert network managers to looming problems before they happen.</p>
<p>&#8220;While there are numerous excellent network management tools available, most have a major flaw: they were developed to monitor and manage a &#8216;typical&#8217; network or one aspect of a &#8216;typical&#8217; network. However, there is no such thing as a &#8216;typical&#8217; network running typical applications,&#8221; he says.</p>
<p>&#8220;Few, if any, management tools have plug-ins available for every piece of proprietary software or customised application on the network. Rather, plug-ins have to be developed. And every time a new application is introduced, or an existing application is upgraded, so a new or upgraded plug-in has to be developed too.&#8221;</p>
<p>For that reason, SYNAQ has chosen to leverage the customisable power of open source for its network monitoring solution.Based on the best-of-breed GroundWork Monitor software &#8211; the most widely deployed commercial open source-based IT management and network monitoring solution in the world &#8211; the scalable monitoring solution is flexible enough to meet customers&#8217; unique requirements while offering a holistic overview of the status of their entire network.&#8221;And with a single monitoring server licensing model, it takes network management to the next level quickly and affordably,&#8221; he concludes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/open-source-take-proactive-management-to-the-next-level/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Users contribute to PinPoint SecureMail upgrade</title>
		<link>http://www.synaq.com/news-releases/users-contribute-to-pinpoint-securemail-upgrade</link>
		<comments>http://www.synaq.com/news-releases/users-contribute-to-pinpoint-securemail-upgrade#comments</comments>
		<pubDate>Tue, 09 Sep 2008 10:00:14 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/news-releases/users-contribute-to-pinpoint-securemail-upgrade</guid>
		<description><![CDATA[Pinpoint is an e-mail security solution
09 September 2008
In a move aimed at ensuring the upgrade roadmap of its flagship product dovetails with the challenges facing businesses today, Johannesburg-based IT company, SYNAQ, is partnering with users to help spec the next version of PinPoint SecureMail.
Sam Gelbart, product development director at SYNAQ, says participants in a recent [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Pinpoint is an e-mail security solution</h3>
<p><em>09 September 2008</em></p>
<p>In a move aimed at ensuring the upgrade roadmap of its flagship product dovetails with the challenges facing businesses today, Johannesburg-based IT company, SYNAQ, is partnering with users to help spec the next version of PinPoint SecureMail.</p>
<p>Sam Gelbart, product development director at SYNAQ, says participants in a recent PinPoint SecureMail User Group forum highlighted a wish list of features they would like to see incorporated into future versions of the software. PinPoint is an e-mail security solution that leverages the flexibility of open source software and technologies to offer a security solution that is always up-to-date.</p>
<p><span id="more-702"></span>&#8220;We invited PinPoint users to provide us with feedback on their experiences of the product, problems and issues they may have and what they would like to see incorporated as features in the future. The idea was to ensure we develop a product that meets actual business needs rather than a product with features we think might be nice to have &#8211; and we were delighted with the response,&#8221; he adds.</p>
<p>According to Gelbart, several clear trends emerged during user discussions, one of which was the difficulties businesses face in meeting compliance and governance requirements in the face of growing demands on executive time.</p>
<p>&#8220;Executives have less time in which they have to do more &#8211; they need to do more, report more and control more. Their request was to be empowered to do what they need to do as quickly and easily as possible, while ensuring they comply with all legal and regulatory requirements,&#8221; he says.</p>
<p>SYNAQ developers are now working on an alpha version of PinPoint 2.0 that will incorporate several of the suggestions and requests raised during the User Group forum. This is expected to be released for testing within the next few months.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/users-contribute-to-pinpoint-securemail-upgrade/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Source is Good for Security</title>
		<link>http://www.synaq.com/news-releases/open-source-is-good-for-security</link>
		<comments>http://www.synaq.com/news-releases/open-source-is-good-for-security#comments</comments>
		<pubDate>Thu, 14 Aug 2008 10:00:21 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=700</guid>
		<description><![CDATA[David Jacobson speaks about the strength of open source software in security
14 August 2008
The key to IT security is secure software &#8211; software that is written with not only features, but also security, in mind, says David Jacobson, technical director at Linux services company SYNAQ. However, says Jacobson, software is seldom developed with an eye [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">David Jacobson speaks about the strength of open source software in security</h3>
<p><em>14 August 2008</em></p>
<p>The key to IT security is secure software &#8211; software that is written with not only features, but also security, in mind, says David Jacobson, technical director at Linux services company SYNAQ. However, says Jacobson, software is seldom developed with an eye on back-end security requirements. Developers are usually under pressure to deliver on required features within tight deadlines which leave little time to check for vulnerabilities each step of the way. The result is that most software is inherently vulnerable.</p>
<p><span id="more-700"></span>&#8220;It is unfortunate that many people &#8211; business executives as well as so-called security experts &#8211; believe that the implementation of one or two security products can address security issues. There cannot be a &#8216;one size fits all&#8217; approach to security as each environment is different, with its own set of vulnerabilities. And some security products themselves contain flaws which increase a network&#8217;s vulnerability rather than reduce it,&#8221; he says.</p>
<p>&#8220;Indeed, if businesses are serious about security, they need to understand that the only way to truly check that they are secure is to view the code. That&#8217;s one of the reasons I believe open source software is the better option for companies where security is of the utmost concern. It&#8217;s not that open source is more secure, but rather the fact that you can view the code, see any vulnerabilities yourself and even fix if necessary if you have the skills to do so,&#8221; says Jacobson.</p>
<p>Jacobson recommends that before implementing any application, including a security product, users should check the &#8220;pedigree&#8221; of the product.</p>
<p>This would include determining whether any vulnerabilities or flaws had been detected in the product; and how well or quickly the vendor had responded to these reports. Most of this information is to be found on websites like www.securityfocus.com, a vendor-neutral site that provides objective, timely and comprehensive security information to all members of the global IT security community.</p>
<p>&#8220;The SecurityFocus Vulnerability Database, for example, delivers an invaluable service by providing security professionals with the most up-to-date information on vulnerabilities for all platforms and services. Another SecurityFocus service is BugTraq, a high volume, full disclosure mailing list for the detailed discussion and announcement of computer security vulnerabilities. BugTraq is, without doubt, the cornerstone of the Internet-wide security community,&#8221; he adds.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/open-source-is-good-for-security/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SMEs must consider open source</title>
		<link>http://www.synaq.com/news-releases/smes-must-consider-open-source</link>
		<comments>http://www.synaq.com/news-releases/smes-must-consider-open-source#comments</comments>
		<pubDate>Tue, 05 Aug 2008 10:00:23 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=698</guid>
		<description><![CDATA[Its extremely effective in the workplace
05 August 2008
Open source is a viable option for SMEs but not because it is necessarily &#8220;cheaper&#8221; than proprietary solutions (although this is often the case). Rather, open source &#8211; because of its inherent qualities for flexibility and scalability &#8211; is ideal for SMEs that have ambitions to lose the [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Its extremely effective in the workplace</h3>
<p><em>05 August 2008</em></p>
<p>Open source is a viable option for SMEs but not because it is necessarily &#8220;cheaper&#8221; than proprietary solutions (although this is often the case). Rather, open source &#8211; because of its inherent qualities for flexibility and scalability &#8211; is ideal for SMEs that have ambitions to lose the &#8220;S&#8221; appellation.</p>
<p><span id="more-698"></span>So says Yossi Hasson, MD of SYNAQ, a SME focused on providing open source solutions to SMEs (and large enterprises) who believes it&#8217;s time open source lost its undeserved reputation as a platform for geeks.</p>
<p> &#8220;It&#8217;s extremely effective in the workplace,&#8221; he maintains and points out that Synaq, apart from being an open source advocate, is a 15-person company that runs almost everything on open source. The only exception is the company&#8217;s accounting system.</p>
<p>&#8220;There is place for both open source and proprietary in any SME environment &#8211; it&#8217;s really about the right tools for the job,&#8221; he adds.</p>
<p>For example, in a desktop environment in which users just need a simple Web interface, basic word processing and a spreadsheet, an open source package like Ubuntu running Open Office would be perfect. These users don&#8217;t need the bells and whistles of a Microsoft Office.</p>
<p>At the other end of the scale, for a SME that is growing and has constantly changing needs &#8211; it may need to implement CRM or workflow management and be able to build this up over time or adapt it to enable changes in the business strategy &#8211; then open source is absolutely the way to go. Open source allows for rapid change, customisation and greater flexibility.</p>
<p>Hasson says there are many open source &#8220;big ticket&#8221; tech solutions &#8211; CRM, BI, mail tools and the like &#8211; which can be and are readily tailored to SME requirements.</p>
<p>&#8220;SME versions of heavyweight proprietary solutions generally offer fewer features than their big brother counterparts which is why they are more affordable for the SME. But what if the particular whistle that has been left out is one the SME needs? And what if there are still features in the &#8216;lite&#8217; version that the SME can easily do without?</p>
<p>&#8220;With an open source option, SMEs can have a solution that not only fits their precise needs, it will be easy to scale as the business grows,&#8221; he explains.</p>
<p>He acknowledges that some SMEs may be reluctant to go the open source route because of concerns that a shortage of open source skills would make it more expensive to maintain than a proprietary solution.</p>
<p>However, he points out that there is a general shortage of IT skills across all platforms &#8211; and it&#8217;s a worldwide phenomenon.</p>
<p>&#8220;It&#8217;s important to bear in mind that while there may be more individuals with MS skills, they are not all good skills. Many of them may be merely average.</p>
<p>&#8220;Quality support is available for open source through companies like SYNAQ. There are also a lot more open source learnerships available and the number of people being trained is growing,&#8221; he concludes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/smes-must-consider-open-source/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No end in sight to spam war of attrition</title>
		<link>http://www.synaq.com/news-releases/no-end-in-sight-to-spam-war-of-attrition</link>
		<comments>http://www.synaq.com/news-releases/no-end-in-sight-to-spam-war-of-attrition#comments</comments>
		<pubDate>Wed, 02 Jul 2008 10:00:41 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=696</guid>
		<description><![CDATA[Spamming is not only an unpleasant annoyance
02 July 2008
The ongoing war of attrition between spammers and those opposed to these purveyors of unsolicited bulk e-mails shows no sign of abating or any indication of an ultimate victor.
Indeed, David Jacobson, technical director at Johannesburg-based SYNAQ, a company focused on delivering managed Linux services in the mail [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Spamming is not only an unpleasant annoyance</h3>
<p><em>02 July 2008</em></p>
<p>The ongoing war of attrition between spammers and those opposed to these purveyors of unsolicited bulk e-mails shows no sign of abating or any indication of an ultimate victor.</p>
<p>Indeed, David Jacobson, technical director at Johannesburg-based SYNAQ, a company focused on delivering managed Linux services in the mail security and network monitoring arenas, believes it&#8217;s a war that can never be won &#8211; at least not while SMTP (Simple Mail Transfer Protocol) remains the de facto standard for e-mail transmissions across the Internet.</p>
<p><span id="more-696"></span>&#8220;SMTP&#8217;s strength comes primarily from its simplicity. Unfortunately, it was developed at a time when the very concept of Internet viruses, spammers, hackers and online fraud would have been regarded as science fiction at best or a harmless prank by high-spirited computer geeks at worst,&#8221; he says.</p>
<p>&#8220;Today, however, spamming is not only an unpleasant annoyance, it&#8217;s potentially extremely dangerous.&#8221;</p>
<p>According to Jacobson, spam used to be fairly easy to filter. It usually came from fixed IP addresses which could be countered by using a blacklist; the &#8216;from&#8217; address was not usually forged and so could be filtered; and spam contained keywords &#8211; like &#8216;penis&#8217; or &#8216;Viagra&#8217; &#8211; that could be blacklisted.</p>
<p>However, he says, the simplistic filtering of &#8216;from&#8217; addresses and content is now useless and has been for the past few years.</p>
<p>The reason is that spammers use a number of tricks designed to fool spam-filtering programs. These include misspelling commonly flagged words &#8211; so &#8216;Viagra&#8217;, for example, is written as &#8216;v1@gra&#8217;, or &#8216;penis&#8217; as &#8216;pe.nis&#8217;; and using invisible ink camouflage techniques. Ironically, it&#8217;s tricks like these that in fact make it easier for anti-spam readers to identify suspect mails.</p>
<p>So spammers&#8217; tricks have become more sophisticated &#8211; and anti-spammers are having to counter them one-by-one. Examples of the anti-spam battles currently being waged include:</p>
<p><strong>Battle one:</strong></p>
<p>* Spammers realise that spam filters spot their text tricks so they send short, plain text e-mails with a URL which direct recipients to a Web site;<br />
* Anti-spammer response: blacklist the URL<br />
* Spammer response: use a redirector (to counter the URL blacklist)<br />
* Anti-spammer response: follow the redirector and blacklist that<br />
* Spammer response: use Geocities with complex page that reloads using encoded Javascript</p>
<p><strong>Battle two:</strong></p>
<p>* Spammers realise that spam filters read their mail so they send an image instead of text<br />
* Anti-spammer response: checksum the images<br />
* Spammer response: make random modification of image and number of images<br />
* Anti-spammer response: perform OCR (optical character recognition) on images<br />
* Spammer response: add random noise to images<br />
* Anti-spammer response &#8211; use fuzzy OCR</p>
<p>And so these and other battles in the war of attrition continue.</p>
<p>&#8220;Because spam changes its form so often, the only feasible solution against this plague is to ensure your anti-spam defences are constantly updated. At the same time, you have to ensure your anti-spam protection doesn&#8217;t inhibit legitimate e-mail correspondence,&#8221; Jacobson says.</p>
<p>For example, greylisting &#8211; a relatively new technique that has shown some promise &#8211; often causes delays on the delivery of initial e-mails. Similarly, content blockers that unilaterally block all mails containing suspect words such as Viagra may not take account of the fact that in many instances, mails containing the word Viagra may well be perfectly legitimate for members of the medical or pharmaceutical professions.</p>
<p>&#8220;What&#8217;s required therefore is a dynamic anti-spam solution that is able to deal with changing threats on a daily basis while simultaneously managing the availability and performance of e-mail services.</p>
<p>&#8220;Because few businesses have the in-house skills &#8211; or the time &#8211; to continuously monitor and maintain their anti-spam defences, they are increasingly turning to companies that provide managed e-mail security solutions to continue the war on their behalf,&#8221; he concludes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/no-end-in-sight-to-spam-war-of-attrition/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open source questions answered and myths debunked</title>
		<link>http://www.synaq.com/news-releases/open-source-questions-answered-and-myths-debunked</link>
		<comments>http://www.synaq.com/news-releases/open-source-questions-answered-and-myths-debunked#comments</comments>
		<pubDate>Sat, 17 Nov 2007 10:00:32 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=694</guid>
		<description><![CDATA[Open source questions answered and myths debunked
17 November 2007
Yes, it is effective. The stigma that it&#8217;s a platform for geeks is undeserved. SYNAQ is a committed open source advocate &#8211; we are a 20-person company and we run almost everything on open source. However, we use a proprietary solution for our accounting requirements.
The workplace doesn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Open source questions answered and myths debunked</h3>
<p><em>17 November 2007</em></p>
<p>Yes, it is effective. The stigma that it&#8217;s a platform for geeks is undeserved. SYNAQ is a committed open source advocate &#8211; we are a 20-person company and we run almost everything on open source. However, we use a proprietary solution for our accounting requirements.</p>
<p>The workplace doesn&#8217;t have to be an either/or environment. There is place for both open source and proprietary &#8211; it&#8217;s really about the right tools for the job.</p>
<p><span id="more-694"></span>In a simple desktop environment, for example in a call centre in which users just need a simple Web interface, basic word processing and a spreadsheet, an open source package, like Ubuntu, running Open Office would be perfect. These users don&#8217;t need the bells and whistles of Microsoft Office.At the other end of the scale, for an SME that is growing and has constantly changing needs &#8211; it may need to implement CRM or workflow management and be able to build this up over time or adapt it to enable changes in the business strategy &#8211; open source is absolutely the way to go. Open source allows for rapid change, customisation and greater flexibility.SYNAQ, however, is the first to acknowledge that open source may not be for everyone or for every situation. But it does give users something that they&#8217;ve never had before &#8211; choice.</p>
<p><strong>Why bother with open source at all?</strong></p>
<p>For some open source proponents, it&#8217;s a philosophical thing &#8211; a belief that software and its code should be free (albeit in a philosophical rather than financial sense) and unencumbered by licensing restrictions.Probably the most compelling reason to opt for open source is its inherent flexibility.However, if flexibility isn&#8217;t an issue and if a particular application doesn&#8217;t add any real extra value &#8211; all banks have debit order systems; all businesses have accounting systems &#8211; then proprietary software might, or might not, be better. In these situations, the choice between open source and proprietary comes down to issues like features (fit-for-purpose), price and the availability of ongoing support.Flexibility becomes an issue when an enterprise wants to use IT or a specific application to differentiate itself. An off-the-shelf package might only meet 70% to 80% of what is required. The package might have to be customised and that could be expensive, or impossible, regardless of how many skilled resources the organisation has. Many large enterprises struggle to adapt to change quickly, largely because their legacy proprietary applications don&#8217;t give them the flexibility they need. With open source, customisation is easier and less expensive as the user has access to the source code.So if I need to change my business quickly to adapt to developments in the market or to maintain a competitive edge, open source is the way to go.</p>
<p><strong>Is open source really cheaper than proprietary software?</strong></p>
<p>It&#8217;s unfortunate that open source has been positioned as the cheaper alternative purely on the basis that it does not carry the licensing costs associated with proprietary software.The reality is that the cost of open source depends on the context in which it is used. SYNAQ&#8217;s experience is that the total cost to the enterprise of an open source solution and a comparable proprietary solution is probably fairly similar when everything is taken into account. On average open source solutions should be cheaper than their proprietary alternatives. However, the main benefit does not come from a cost-saving but rather the increased flexibility/ability to adapt and the prevention of user lock-in.Open source could undoubtedly be less expensive for SMEs that have in-house open source skills with the ability to implement and maintain the open source platform and applications itself. This is because there is usually &#8211; but not always &#8211; no licence fee and the solution could well require less hardware to run effectively. But if the company has to outsource support and development, the costs will probably be similar or possibly slightly less, depending on whether the software comes with a service cost.</p>
<p><strong>Is Linux becoming mainstream?</strong></p>
<p>In South Africa, businesses are starting to put Linux on their radar but it is not mainstream yet. Businesses are still hesitant because of the perceived risks associated with open source. These risks have generally been blown out of proportion by proponents of proprietary software through fear, uncertainty, despair campaigns.In terms of the growth of the Internet and the Web2.0 community, Linux is not only mainstream, it is close to being the only stream. Even Facebook confirmed that it is preparing to further open its platform so that third-party developers will be able to use its source code to create applications that will run in other environments.Facebook has had to do this because of the speed with which it has to scale and change. As the world becomes increasingly collaborative, so open source will increasingly become the platform of choice because of its flexibility and scalability.<br />
<strong><br />
Popular open source myths</strong></p>
<p>Only proprietary software is properly tested and supported.Good open source projects backed by a proper open source community are also fully tested and supported. The underlying philosophy of open source is that it should be open and available to the masses. As such, it is probably better tested than proprietary software before and after release because the community using it, testing it and enhancing it is so large. Anything missing, any bug, will soon be identified and fixed.* Open source solutions are not stable.The best way to address this myth is to point out an open source application, Apache, which runs about 70% of all Internet servers around the world. Along with products like Squid and Sendmail, open source virtually runs the Internet. The Internet is amazingly stable. And Google has opted to go the open source route for its new Chrome browser.* The shortage of open source skills makes it more expensiveThere is a general shortage of IT skills across all platforms &#8211; and it&#8217;s a worldwide phenomenon.In South Africa, because open source remains a niche market, skills are not as readily available as for proprietary platforms. However, while there may be more individuals with MS skills, are they all good skills or are many of them merely average?There is quality support available for open source available through companies like SYNAQ. There are also a lot more open source learnerships available and the number of people being trained is growing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/open-source-questions-answered-and-myths-debunked/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tracker keeps tabs on its technical network dexterity with SYNAQ</title>
		<link>http://www.synaq.com/news-releases/tracker-keeps-tabs-on-its-technical-network-dexterity-with-synaq</link>
		<comments>http://www.synaq.com/news-releases/tracker-keeps-tabs-on-its-technical-network-dexterity-with-synaq#comments</comments>
		<pubDate>Thu, 01 Nov 2007 10:00:14 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=692</guid>
		<description><![CDATA[Synaq implements open-source monitoring for Tracker
01 November 2007
 Tracker, Africa&#8217;s leading vehicle tracking company, continues to maintain a close eye on its customers, safe in the knowledge that its network infrastructure remains efficient, up-to-date and proactively monitored by its IT supply partner SYNAQ.
SYNAQ is a national provider of managed Linux and open source services. The [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Synaq implements open-source monitoring for Tracker</h3>
<p><em>01 November 2007</em></p>
<p> Tracker, Africa&#8217;s leading vehicle tracking company, continues to maintain a close eye on its customers, safe in the knowledge that its network infrastructure remains efficient, up-to-date and proactively monitored by its IT supply partner SYNAQ.</p>
<p><span id="more-692"></span>SYNAQ is a national provider of managed Linux and open source services. The company was recently contracted by Tracker to implement a system that would increase the ability to manage and control what is a substantially large and complex IT environment.</p>
<p>Tracker has been operational in South Africa since October 1996. It has developed a service portfolio, incorporating a comprehensive range of technology products such as Tracker Retrieve, Tracker Alert, SkyTrax and Tracker Selftest, all of which is designed to ensure the safety of drivers and efficiency of vehicles throughout South Africa.</p>
<p>Its national presence stretches from its headquarters through to an extensive network of Tracker base stations located across the country. The company has 467 000 vehicles under its care.</p>
<p>&#8220;Tracker is a company with over a thousand employees and has over 150 servers that are proactively monitored, managed and maintained to run the business,&#8221; explains Yossi Hasson, MD of SYNAQ. &#8220;With such a large environment it is often difficult to ascertain where a single fault on a network lies. This can result in hours of downtime and in the business that Tracker operates, downtime could have far-reaching, serious consequences.&#8221;</p>
<p>With this in mind, SYNAQ looked to implement an open source software solution that would provide the necessary level of proactive, automated troubleshooting and response capability.</p>
<p>&#8220;We elected to implement Nagios infrastructure monitoring and management solution. This had to be customised to fit in with Tracker&#8217;s unique heterogeneous environment made up of an array of different systems, including Linux, Microsoft, Oracle and its own custom solutions. It was imperative for Tracker that the solution enabled them to detect strings and logs &#8211; such as RF Signal alignment strengths and error messages,&#8221; adds Hasson.</p>
<p>The rationale behind the selection of Nagios was based on its offer of a high level holistic overview of a company&#8217;s systems and different business silos.</p>
<p>&#8220;Tracker base stations are made up of unique hardware and software custom-developed for Tracker. This equipment works through a radio network and integrates with its custom designed Oracle database. This architecture allows the company to monitor the relevant statistics of vehicles under its care. Our objective was to integrate our monitoring into this custom environment in order to pull critical warnings and relevant information used by the Tracker operations team,&#8221; says Hasson.</p>
<p>&#8220;The advantage we had with Nagios monitoring is that the solution is a modular framework that is open source and allows one to custom-develop plug-ins or checks in order to close any off-the-shelf monitoring gaps,&#8221; he adds.</p>
<p>SYNAQ continues to provide infrastructure management and support services to Tracker and both parties look forward to a long-term association.<br />
back</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/tracker-keeps-tabs-on-its-technical-network-dexterity-with-synaq/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synaq shows why it is considered pro at Linux, open source service</title>
		<link>http://www.synaq.com/news-releases/synaq-shows-why-it-is-considered-pro-at-linux-open-source-service</link>
		<comments>http://www.synaq.com/news-releases/synaq-shows-why-it-is-considered-pro-at-linux-open-source-service#comments</comments>
		<pubDate>Mon, 01 Oct 2007 10:00:11 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/news-releases/synaq-shows-why-it-is-considered-pro-at-linux-open-source-service</guid>
		<description><![CDATA[Synaq scores Linux hole-in-one with The Pro Shop
01 October 2007
SYNAQ, a local provider of Linux and open source managed services, has been contracted to manage and maintain the Linux-based ICT network infrastructure and connectivity for The Pro Shop, a national supplier of golfing product and services.
The Pro Shop is one of several divisions of MoreGolf, [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Synaq scores Linux hole-in-one with The Pro Shop</h3>
<p><em>01 October 2007</em></p>
<p>SYNAQ, a local provider of Linux and open source managed services, has been contracted to manage and maintain the Linux-based ICT network infrastructure and connectivity for The Pro Shop, a national supplier of golfing product and services.</p>
<p>The Pro Shop is one of several divisions of MoreGolf, incorporating the Vodacom World of Golf, Vodacom Golf Villages, playmoregolfSA with vodacom, Gary Player Golf Experience powered by Telkom business and LandBank Golf4All.</p>
<p><span id="more-691"></span>To provide an idea of the coverage and service level of this entire operation, Dale Rosenberg, IT General Manager of MoreGolf, describes the businesses within the group.</p>
<p>The Pro Shop has five branches spread throughout the country, with a sixth store about to open in Fourways, Johannesburg.</p>
<p>The Vodacom World of Golf is South Africa&#8217;s first golfing theme park and is situated in Woodmead; there are Vodacom Golf Villages in Gilloolys, Randpark and Centurion, and playmoregolfSA with vodacom is South Africa&#8217;s premier rewards programme for golfers.</p>
<p>Each division of MoreGolf runs off a Linux-based infrastructure and connects with the head office in Woodmead through ADSL VPN. There are 10 sites that form part of this VPN and each site runs a Linux firewall.</p>
<p>Management at MoreGolf required the services of an established company with a proven track record within the Linux/open source arena to manage its e-mail, Internet and VPN.</p>
<p>Rosenberg confirms the importance of connectivity for the business and explains why the company opted to outsource this maintenance function to SYNAQ.</p>
<p>
&#8220;When we embarked on our quest to find a partner that could maintain these competencies for us, we knew we wanted to outsource to a company that could do so without sacrificing on quality of service. Having thoroughly scouted the Linux market, we were impressed with SYNAQ&#8217;s list of customers and the way it conducted itself as a business,&#8221; he says.</p>
<p>&#8220;The decision to outsource this function to Synaq meant we did not have to organise the skills in-house and could therefore concentrate on ensuring that all our key business solutions/applications run as efficiently as possible.&#8221;</p>
<p>Synaq is a recognised and established provider of Linux and open source management solutions, operating from its base in Sandton, Gauteng.</p>
<p>Yossi Hasson, managing director of SYNAQ, says The Pro Shop is a premium brand in South Africa that is synonymous with retailing within the golf industry. The mandate supplied to SYNAQ was based on the proactive management, support and maintenance of the company&#8217;s entire site network and setup.</p>
<p>&#8220;Connectivity is essential for any sized operation, but especially for a company of this size and involving so many sites. Our job is to ensure The Pro Shop and all of MoreGolf&#8217;s businesses are able to continue to provide the level of service its customers have become accustomed to without having to worry about infrastructure,&#8221; says Hasson.</p>
<p>Rosenberg also points to SYNAQ&#8217;s knowledge base as a key factor in being able to leverage off the infrastructure and add value to the service delivery process.</p>
<p>&#8220;We are also able to draw on SYNAQ&#8217;s knowledge when it comes to open source solutions. This opens up a new range of possibilities that are both powerful and cost-effective. In all businesses these days, connectivity is crucial even if your users say it isn&#8217;t, and having a reliable solution and support structure ensures you are able to stay focused on the key areas within the business.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-shows-why-it-is-considered-pro-at-linux-open-source-service/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Article courtesy mybroadband.co.za</title>
		<link>http://www.synaq.com/news-releases/article-courtesy-mybroadband-co-za</link>
		<comments>http://www.synaq.com/news-releases/article-courtesy-mybroadband-co-za#comments</comments>
		<pubDate>Fri, 13 Jul 2007 10:00:42 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=689</guid>
		<description><![CDATA[Vista Under Fire
13 July 2007
In 2000, Microsoft foisted a dog of an operating system onto the world. Windows Millennium Edition (Me) was unstable to the point of being unusable. Now some commentators are drawing parallels between it and Windows Vista, Microsoft&#8217;s new baby.
Windows Me was such a bad operating system that even Microsoft officials admitted [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Vista Under Fire</h3>
<p><em>13 July 2007</em></p>
<p>In 2000, Microsoft foisted a dog of an operating system onto the world. Windows Millennium Edition (Me) was unstable to the point of being unusable. Now some commentators are drawing parallels between it and Windows Vista, Microsoft&#8217;s new baby.</p>
<p><span id="more-689"></span>Windows Me was such a bad operating system that even Microsoft officials admitted to me in private at the time that the company had made a mistake in releasing what was at best &#8220;beta&#8221; code. Why did the company do it? Windows XP was still a year away and the company was clearly itching to squeeze the last drops of blood it could out of its dying, DOS-based Windows 95 and 98 franchise.</p>
<p>The technology press lambasted Microsoft for releasing the software, which constantly plagued users with the infamous &#8220;blue screen of death&#8221; &#8211; the screen that inevitably meant it was time to reboot. Many consumers who made the mistake of installing it &#8211; I was one of them &#8211; quickly backtracked to Windows 98. Last May, PC World, an influential US IT magazine, listed Windows Me as the fourth-worst technology product of all time. &#8220;Forget Y2K, this was the real millennium bug,&#8221; wrote PC World journalist Dan Tynan.</p>
<p>Read the full article at: <a href="http://mybroadband.co.za/news/Software/613.html" target="_blank">http://mybroadband.co.za/news/Software/613.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/article-courtesy-mybroadband-co-za/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synaq Openbreakfast 29 June 2007</title>
		<link>http://www.synaq.com/news-releases/synaq-openbreakfast-29-june-2007</link>
		<comments>http://www.synaq.com/news-releases/synaq-openbreakfast-29-june-2007#comments</comments>
		<pubDate>Tue, 12 Jun 2007 10:00:42 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=687</guid>
		<description><![CDATA[Synaq set up to serve up Linux value to clients
12 June 2007
According to Loura DiDio, Yankee analyst and author of the 2007 Global Server Hardware and Server OS Survey, 23 percent of survey respondents intend to migrate away from Exchange Server and adopt an alternative Linux or Open Source email and messaging distribution platform in [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Synaq set up to serve up Linux value to clients</h3>
<p><em>12 June 2007</em></p>
<p>According to Loura DiDio, Yankee analyst and author of the 2007 Global Server Hardware and Server OS Survey, 23 percent of survey respondents intend to migrate away from Exchange Server and adopt an alternative Linux or Open Source email and messaging distribution platform in the next 12 to 18 months.</p>
<p><span id="more-687"></span>This is further evidence of a growing international trend that is starting to take root in Africa and southern Africa says Yossi Hasson, managing director at Synaq, a national provider of managed Linux and Open Source services.</p>
<p>&#8220;It is an exciting development that businesses cannot afford to overlook,&#8221; says Hasson. To this end Synaq will be hosting a breakfast product and information session on June 29 at the Hilton in Sandton to introduce the latest in available Linux-based solutions and assist its customer base and industry partners with advice and information.</p>
<p>&#8220;Our mandate is to keep our client base informed about the latest Linux and Open Source technology on offer. For example, the local industry alliance we have with Scalix, a US-based international messaging infrastructure company, offers us access to solutions that make an instant impression on clients. One such product is the Scalix Small Business Server solution that features almost the same functionality as the company&#8217;s Enterprise solution, but is targeted primarily at the small-to-medium segment of the market,&#8221; adds Hasson. Hasson says that Scalix Small Business Server provides companies with full Microsoft Exchange functionality at a fraction of the cost.</p>
<p>The product includes the industry&#8217;s most robust third-party MS Outlook support and Scalix Web Access, the company&#8217;s award-winning and fully featured AJAX web email client that combines the power of desktop email with the convenience of a browser.</p>
<p>It also includes native Novell Evolution support (enabling full-function email and calendaring on Linux desktops), unlimited POP/IMAP email access, GUI and command line administration, full group calendaring, scheduling and the optional Scalix Wireless Solution.</p>
<p>&#8220;We continue to receive very positive feedback from clients that have committed to a migration from traditional email platforms, Exchange and other messaging infrastructure. Clearly, there is an association between Linux-based technology and benefits such as improved operational efficiency, higher levels of infrastructure management and control, as well as lower total cost of ownership,&#8221; he adds.</p>
<p>The Synaq breakfast is free but seating is limited. Those people interested in attending should register as soon as possible with Gloria at gloria@synaq.com, (012) 803-5686 or click through to http://www.synaq.com/openbreakfast</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-openbreakfast-29-june-2007/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synaq sees the bigger picture</title>
		<link>http://www.synaq.com/news-releases/synaq-sees-the-bigger-picture</link>
		<comments>http://www.synaq.com/news-releases/synaq-sees-the-bigger-picture#comments</comments>
		<pubDate>Thu, 14 Dec 2006 10:00:40 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=681</guid>
		<description><![CDATA[Pinpoint Securemail, now with OCR
14 December 2006
Synaq, an established managed Linux services provider and Open Source specialist, has upgraded its acclaimed PinPoint Securemail servers to include Optical Character Recognition (OCR) enhanced anti-spam technology. Customers are now guarded against modern picture-embedded methodology used by spammers.
Yossi Hasson, marketing and sales director at Synaq, says the company has [...]]]></description>
			<content:encoded><![CDATA[<h3>Pinpoint Securemail, now with OCR</h3>
<p><em>14 December 2006</em></p>
<p>Synaq, an established managed Linux services provider and Open Source specialist, has upgraded its acclaimed PinPoint Securemail servers to include Optical Character Recognition (OCR) enhanced anti-spam technology. Customers are now guarded against modern picture-embedded methodology used by spammers.</p>
<p><span id="more-681"></span>Yossi Hasson, marketing and sales director at Synaq, says the company has already integrated the technology into its PinPoint Securemail solution and this offers its customers another facet of protection against the surge of spam.</p>
<p>Globally there has been an increase in spam targeting mail servers that are able to bypass anti-spam solutions by having a graphic or picture embedded in the mail.</p>
<p>&#8220;Most ant-spam solutions are designed to pick up and quarantine e-mails containing specific key words. Spammers have started incorporating aggressive new tactics to curb corporate email security solutions by embedding an image containing the actual spam within the email. Images, by default, cannot be &#8217;scanned&#8217; using standard filtering techniques and therefore spammers have experienced a large degree of success by incorporating this method. This is exactly why we have developed and introduced OCR within our filtering engines&#8221; says Hasson.</p>
<p>OCR was developed using various Open Source components. Synaq decided to also custom develop the solution to integrate seamlessly with its PinPoint e-mail solution. The result is technology that ensures that images are &#8216;read&#8217; and categorized by the system.</p>
<p>&#8220;All spam messages are automatically given a hashcode and placed into a database. The solution will then perform a check of all mail against this database to ensure that it does not contain any of the registered hashcodes. It is an effective means of protection and spam filtering, especially given the fact that up to thirty percent of all spam messages contain an embedded image,&#8221; Hasson explains.</p>
<p>The company is confident of the reliability of the technology it has integrated into its solution and provided to its client as an upgraded managed service. So much so, says Hasson, that we are running a competition during the month of December 2006, whereby anyone investing in the solution on a 30-day free trial basis can win an i-Pod Nano.</p>
<p>&#8220;This is an extension of our managed service portfolio. Our PinPoint solution continues to gain popularity, and we are excited about this effective built-in component. There is a fifty percent increase in spam hitting global mail servers and it is necessary for businesses to keep up to date with the latest developments in IT security solutions and approaches,&#8221; adds Hasson.</p>
<p>For more information, contact the Synaq Team on 0860 0 SYNAQ or info@synaq.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-sees-the-bigger-picture/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synaq implements new Linux solution for Nandos</title>
		<link>http://www.synaq.com/news-releases/synaq-implements-new-linux-solution-for-nandos</link>
		<comments>http://www.synaq.com/news-releases/synaq-implements-new-linux-solution-for-nandos#comments</comments>
		<pubDate>Thu, 07 Sep 2006 10:00:39 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=679</guid>
		<description><![CDATA[Nandos spices up its IT infrastructure with Synaq
07 September 2006
Nandos has revamped its ICT infrastructure and restaurant connectivity after incorporating a new Linux-based solution and connectivity across its network. The well known restaurant chain outsourced the project to Synaq, a provider of managed Linux services and Open Source software.
Nandos has 250 restaurants nationwide and each [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Nandos spices up its IT infrastructure with Synaq</h3>
<p><em>07 September 2006</em></p>
<p>Nandos has revamped its ICT infrastructure and restaurant connectivity after incorporating a new Linux-based solution and connectivity across its network. The well known restaurant chain outsourced the project to Synaq, a provider of managed Linux services and Open Source software.</p>
<p><span id="more-679"></span>Nandos has 250 restaurants nationwide and each restaurant is required to forward detailed information from their Point of Sale (PoS) system directly to head office on a daily basis.</p>
<p>The data is vitally important in assisting the company in its day-to-day operations, identify trends, engage with their market and ensure sufficient quantities of stock.</p>
<p>Each restaurant is equipped with a PoS system and backoffice computer . The backoffice computer communicates with the PoS and then communicates all data back to head office.</p>
<p>&#8220;The solution was not providing head office with accurate and reliable communications on a regular basis. This would often result in staff having to manually retrieve the missing information from each restaurant. Synaq was contacted and requested to conduct a full inspection and evaluation of the communications infrastructure with the objective of redesigning the infrastructure setup and network,&#8221; explains Yossi Hasson, sales and marketing director at Synaq.</p>
<p>&#8220;We then set up a completely new server and initiated a three-to-four week re-design, development and testing process,&#8221; Hasson continues.</p>
<p>This culminated in the integration of a new solution which has already resulted in 100% communication from all Nandos restaurants.</p>
<p>&#8220;In addition we provided Nandos with a graphical reporting interface that allows the company to view the percentage of stores that were successful, which failed and other background information&#8221; adds Hasson.</p>
<p>Antonio Silva, Head of IT for Nandos, said the solution more than met expectations and has proven to work in the given timeframe and within budget.</p>
<p>&#8220;Synaq has superb project management skills which is sorely lacking in the industry. They are in touch with business and technology, and their standards-based approach ensures that one never feels locked in as is often the case with custom development,&#8221; comments Silva.</p>
<p>&#8220;The company took the time to audit and understand our technology which ensured that they understood our challenges. Synaq has proven to be a valuable partner for Nandos and I am confident that we have a bright future together,&#8221; Silva concludes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-implements-new-linux-solution-for-nandos/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The State of Spam</title>
		<link>http://www.synaq.com/news-releases/the-state-of-spam</link>
		<comments>http://www.synaq.com/news-releases/the-state-of-spam#comments</comments>
		<pubDate>Wed, 23 Aug 2006 10:00:45 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=676</guid>
		<description><![CDATA[The State of Spam Today
23 August 2006
The State Of Spam
Filters have gotten so effective at keeping junk e-mail away from users that there&#8217;s little public outcry against spam today. But behind the scenes, the problem is worse than ever&#8211;and it could mask a serious, real-world threat.
Read the full article on InformationWeek by clicking here.
]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">The State of Spam Today</h3>
<p><em>23 August 2006</em><br />
The State Of Spam</p>
<p>Filters have gotten so effective at keeping junk e-mail away from users that there&#8217;s little public outcry against spam today. But behind the scenes, the problem is worse than ever&#8211;and it could mask a serious, real-world threat.</p>
<p>Read the full article on InformationWeek by clicking <a href="http://www.informationweek.com/research/showArticle.jhtml?articleID=190600156&amp;pgno=1&amp;queryText=" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/the-state-of-spam/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synaq to market Altiris SecurityExpressions Software</title>
		<link>http://www.synaq.com/news-releases/synaq-to-market-altiris-securityexpressions-software</link>
		<comments>http://www.synaq.com/news-releases/synaq-to-market-altiris-securityexpressions-software#comments</comments>
		<pubDate>Tue, 01 Aug 2006 10:00:09 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=674</guid>
		<description><![CDATA[SecurityExpressions now in SA
01 August 2006
Synaq, a national provider of managed Linux services, is to market Altiris SecurityExpressions software, a scalable solution used to deploy and manage enterprise system security policies.
The solution caters for both an &#8216;agentless&#8217; or agent-based approach and allows the user to automatically audit, deploy and enforce system security policies across all [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">SecurityExpressions now in SA</h3>
<p><em>01 August 2006</em></p>
<p>Synaq, a national provider of managed Linux services, is to market Altiris SecurityExpressions software, a scalable solution used to deploy and manage enterprise system security policies.</p>
<p>The solution caters for both an &#8216;agentless&#8217; or agent-based approach and allows the user to automatically audit, deploy and enforce system security policies across all Windows, UNIX and Linux desktops, notebooks, and servers in a fraction of the time previously required.</p>
<p><span id="more-674"></span>SecurityExpressions helps a business to implement, administer and manage formal, defined system security policies that control items such as: network authentication, systems settings, user rights, accountability, resource access controls, operating systems and application of patches.</p>
<p>The key advantage of the system is that it can be customized according to a company&#8217;s specific security policy or can audit a network using industry security best practices including Sarbanes-Oxley, HIPAA and FISMA. Its fundamental benefit is the fact that it helps ensure that a company meets its IT security policies.</p>
<p>Both Altiris (Nasdaq: ATRS), a pioneer of service-oriented management solutions, and Synaq believe the solution will help local companies negotiate numerous challenges within the area of information security management including: compliance with legislation, vulnerability management, investment in technology and adequate protection against internal and external threats.</p>
<p>John Thomas, Regional Manager, Altiris, refers to the 2005 CSI/FBI Crime Report*, specifically towards the statistic which suggests that surveyed companies lost more than 0 million in 2004 due to poor system security.</p>
<p>&#8220;The difficulty is that unforeseen security holes come in all different shapes and sizes-from missing patches, mis-configured systems, poor security policies, file sharing programs to outdated antivirus definitions. Even if some critical areas are well-protected but others are not, the effect is the same as if none were well protected-resources can still be vulnerable. As a result, organizations are constantly struggling to increase their system security posture and combat security threats before they rapidly proliferate across the network or undermine their compliance with industry or governmental regulations,&#8221; says Thomas.</p>
<p>Yossi Hasson, sales and marketing director at Synaq, suggests the introduction of SecurityExpressions will help reinforce a company&#8217;s efficiency in managing security and protecting their most prized asset, namely data.</p>
<p>&#8220;Businesses tend to understand the need to invest in technology to help secure their environment. The issue is that acquiring solutions without any knowledge and insight from a specialist is like throwing money at a challenge in the hope that this will eliminate the problem. Our partnership with Altiris will add value to the local market because this is a proven solution from an internationally-established company with extensive experience in the field. This factor, together with our experience and knowledge of local requirements, will prove to be a worthwhile and profitable venture,&#8221; says Hasson.</p>
<p>&#8220;Synaq has a very specific skill set in this country. Altiris relies on partners of this nature to implement and advise on key security issues. In many cases, security is viewed in the same light as purchasing insurance &#8211; one is only certain of its value when something happens,&#8221; explains Thomas, &#8220;We are very happy with Synaq&#8217;s skills and knowledge and feel that this partnership will be instrumental in taking us into the future.&#8221;</p>
<p><strong>About Altiris</strong></p>
<p>Altiris, Inc. is a leading provider of service-oriented management software that enables IT organisations to easily manage, secure and service heterogeneous IT assets. Flexible solutions from Altiris help IT align services to drive business objectives, deliver audit-ready security, automate tasks, and reduce the cost and complexity of management. For more information, visit www.altiris.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-to-market-altiris-securityexpressions-software/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pinpoint Securemail secures Storm email infrastructure</title>
		<link>http://www.synaq.com/news-releases/pinpoint-securemail-secures-storm-email-infrastructure</link>
		<comments>http://www.synaq.com/news-releases/pinpoint-securemail-secures-storm-email-infrastructure#comments</comments>
		<pubDate>Tue, 21 Mar 2006 10:00:31 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=683</guid>
		<description><![CDATA[Synaq provides safer e-mail for Storm customers
21 March 2007
Synaq, a leading Linux and open source services specialist, has extended its technology partnership with Storm Telecom, a major provider of voice and data solutions to businesses in South Africa, in an agreement which sees Storm including Synaq&#8217;s Pinpoint Securemail e-mail security solution into its data services [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Synaq provides safer e-mail for Storm customers</h3>
<p><em>21 March 2007</em></p>
<p>Synaq, a leading Linux and open source services specialist, has extended its technology partnership with Storm Telecom, a major provider of voice and data solutions to businesses in South Africa, in an agreement which sees Storm including Synaq&#8217;s Pinpoint Securemail e-mail security solution into its data services offering.</p>
<p><span id="more-683"></span>The two companies have been working together since early 2006, where Synaq provided Storm with the Linux server component of the majority of Storm&#8217;s uncapped DSL solutions for proxy services, traffic shaping and firewalling.</p>
<p>Both companies view the alliance as the next logical step forward in their relationship.</p>
<p>Synaq has proven its technical competence, experience and capability to partner, and deliver custom-built solutions for the customer within given timeframes.</p>
<p>&#8220;Our customers are looking to us to provide high-speed, reliable voice and data solutions that also take management and security headaches off their hands. By bundling Synaq&#8217;s e-mail security technology with our data solutions, we can relieve stresses on client&#8217;s internal IT staff who would otherwise have to constantly deal with e-mail-born viruses, Trojans and phishing attempts, and worry about keeping scanners up to date to detect the latest attacks,&#8221; explains Clifford Giesenow, Data Business Unit Manager at Storm.</p>
<p>
Yossi Hasson, Synaq&#8217;s Sales and Marketing Director.<br />
Pinpoint Securemail acts as a first line of defence between the public Internet and a company&#8217;s e-mail servers, scanning e-mail using any combination of up to 14 different virus scanners that automatically update themselves with the latest malware signatures. It identifies over 95% of spam using multiple techniques, including highly advanced heuristics. Pinpoint Securemail is based on open source software modules that are thoroughly tested by organisations around the world, and is highly scalable, able to process over a million messages per day.</p>
<p>&#8220;This agreement for Storm to exclusively use Pinpoint Securemail in its data solutions strengthens Synaq&#8217;s position as a provider of highly regarded, enterprise-class e-mail security solutions. It gives a strong vote of confidence in Synaq&#8217;s ability to deliver on mission-critical services and solutions to the corporate market,&#8221; says Yossi Hasson, Synaq&#8217;s Sales and Marketing Director.</p>
<p>According to Hasson, this agreement requires a great deal of mutual confidence as both parties share the risks in making it a success.</p>
<p>&#8220;Synaq has made an investment in the required infrastructure, software and technical skills, while Storm is supplying the required bandwidth, sales, marketing and help-desk support for this product offering. The structure of this venture ensures that as the solution grows, both companies benefit and grow together,&#8221; he says.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/pinpoint-securemail-secures-storm-email-infrastructure/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synaq invests in global Scalix training</title>
		<link>http://www.synaq.com/news-releases/synaq-invests-in-global-scalix-training</link>
		<comments>http://www.synaq.com/news-releases/synaq-invests-in-global-scalix-training#comments</comments>
		<pubDate>Wed, 01 Mar 2006 10:00:45 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=672</guid>
		<description><![CDATA[Synaq skills up in Scalix capabilities
01 March 2006
National managed Linux services provider and Open Source software specialist Synaq has boosted its technical capability to integrate and support the Scalix messaging platform with an investment in training from the US-based messaging infrastructure company.
Technical managers from Synaq have completed an intensive, three-day training course hosted by Florian [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Synaq skills up in Scalix capabilities</h3>
<p><em>01 March 2006</em></p>
<p>National managed Linux services provider and Open Source software specialist Synaq has boosted its technical capability to integrate and support the Scalix messaging platform with an investment in training from the US-based messaging infrastructure company.</p>
<p>Technical managers from Synaq have completed an intensive, three-day training course hosted by Florian von Kurnatowski, Director EMEA Technical Services at Scalix, focused on the Scalix solution.</p>
<p><span id="more-672"></span>The training has been organized following Synaq’s formal agreement and partnership with Scalix to extend the solution to the local market.</p>
<p>“The high-level training strengthens our ability to solicit maximum value from the solution for clients. It guarantees us a higher level of understanding in order to offer the necessary support and services,” explains Yossi Hasson, sales and marketing director at Synaq. “Synaq has invested in Scalix as an answer to the growing need to offer a comprehensive Linux-based Exchange replacement and we are encouraged by this investment in the partnership and our skills level.”</p>
<p>“With its award-winning SWA Webmail interface and full support for the industry-standard Outlook desktop client, Scalix is a true alternative to Microsoft&#8217;s Exchange server. The foundation is solid and cuts down on messaging costs by consolidating workgroup servers. The introduction of new infrastructure will certainly add value to local businesses and presents options to enterprises that are planning to invest or those already investing in Linux or Open Source infrastructure. Scalix offers a very robust and scaleable Enterprise Messaging platform running on Linux,” he adds.</p>
<p>Von Kurnatowski believes the alliance with Synaq will add value to the messaging infrastructure company’s ongoing campaign to increase its presence within emerging markets.</p>
<p>”The solution is well-established in various key markets throughout the world and our intention is to increase the level of awareness and adoption in developing markets. Synaq has the reach and presence to help drive this campaign forward into the South African market, which has significant potential for us, he says.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-invests-in-global-scalix-training/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alliance will result in the delivery of a new Linux-based e-mail server solution</title>
		<link>http://www.synaq.com/news-releases/alliance-will-result-in-the-delivery-of-a-new-linux-based-e-mail-server-solution</link>
		<comments>http://www.synaq.com/news-releases/alliance-will-result-in-the-delivery-of-a-new-linux-based-e-mail-server-solution#comments</comments>
		<pubDate>Wed, 01 Feb 2006 10:00:44 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=669</guid>
		<description><![CDATA[Synaq partners with global trader
01 February 2006
National managed Linux services provider and Open Source software specialist Synaq has entered into a partnership with Scalix, a US-based international messaging infrastructure company, to provide the local market with new Linux-based server infrastructure.
The industry alliance presents Synaq with an immediate opportunity to distribute and implement a new generation [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Synaq partners with global trader</h3>
<p><em>01 February 2006</em></p>
<p>National managed Linux services provider and Open Source software specialist Synaq has entered into a partnership with Scalix, a US-based international messaging infrastructure company, to provide the local market with new Linux-based server infrastructure.</p>
<p><span id="more-669"></span>The industry alliance presents Synaq with an immediate opportunity to distribute and implement a new generation messaging platform that is a full Microsoft Exchange replacement on Linux and provides companies with the capabilities to collaborate in the workplace, including, for example, the sharing of calendars, online/offline synchronization and mobile device access.</p>
<p>“This is done at a fraction of the cost of Exchange with more stability and security,” says Yossi Hasson, sales and marketing director at Synaq.</p>
<p>The product is targeted at a broad spectrum of organizations, with capacity to support businesses with thousands of users and those with less than one hundred.</p>
<p>Hasson describes the partnership as a major breakthrough for the company and the local market.</p>
<p>“We are very excited about this development. It offers us a significant opportunity to extend our reach into the market with a new offering that will add value,” says Hasson.</p>
<p>“The introduction of new infrastructure will certainly add value to local businesses and presents options to enterprises that are planning to invest or those already investing in Linux or Open Source infrastructure. The solution is scalable so it adapts easily to the changing needs of the environment and grows with the company. The foundation is solid and cuts down on messaging costs by consolidating workgroup servers,” he adds.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/alliance-will-result-in-the-delivery-of-a-new-linux-based-e-mail-server-solution/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Regent Cost Savings</title>
		<link>http://www.synaq.com/news-releases/regent-cost-savings</link>
		<comments>http://www.synaq.com/news-releases/regent-cost-savings#comments</comments>
		<pubDate>Tue, 24 Jan 2006 10:00:36 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=667</guid>
		<description><![CDATA[Regent Insurance Experiences Cost Savings on Linux
24 January 2006
Regent Insurance Company Ltd., a local provider of underwrite services for motor and motor-related businesses, has implemented an Intel/Linux-based solution and acquired related services from local provider SYNAQ in order to guarantee optimum performance from its communications infrastructure.
]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Regent Insurance Experiences Cost Savings on Linux</h3>
<p><em>24 January 2006</em></p>
<p>Regent Insurance Company Ltd., a local provider of underwrite services for motor and motor-related businesses, has implemented an Intel/Linux-based solution and acquired related services from local provider SYNAQ in order to guarantee optimum performance from its communications infrastructure.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/regent-cost-savings/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Regent Insurance takes to Linux like a King penguin takes to water</title>
		<link>http://www.synaq.com/news-releases/regent-insurance-takes-to-linux-like-a-king-penguin-takes-to-water</link>
		<comments>http://www.synaq.com/news-releases/regent-insurance-takes-to-linux-like-a-king-penguin-takes-to-water#comments</comments>
		<pubDate>Thu, 27 Oct 2005 10:00:17 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=665</guid>
		<description><![CDATA[Regent Insurance Experience Cost Savings on Linux
27 October 2005
Regent Insurance takes to Linux like a King penguin takes to water
Regent Insurance Company Ltd., a local provider of underwrite services for motor and motor-related businesses, has implemented an Intel/Linux-based solution and aquired related services from local provider Synaq in order to guarantee optimum performance from its [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Regent Insurance Experience Cost Savings on Linux</h3>
<p><em>27 October 2005</em></p>
<p>Regent Insurance takes to Linux like a King penguin takes to water</p>
<p>Regent Insurance Company Ltd., a local provider of underwrite services for motor and motor-related businesses, has implemented an Intel/Linux-based solution and aquired related services from local provider Synaq in order to guarantee optimum performance from its communications infrastructure.</p>
<p><span id="more-665"></span>According to Yossi Hasson, sales and marketing director at Synaq, Regent Insurance Company decided to migrate its central database application, which runs on Oracle 8, from a Sun architecture to a Linux architecture.</p>
<p>“The client has experienced significant growth and the main server began to take strain when its 190 or so agents simultaneously logged into the solution. An upgrade on the server would have been costly and so Regent evaluated the solution on a Microsoft environment using Intel architecture. Although the solution increased performance, bottlenecks still occurred,” explains Hasson.</p>
<p>Regent then opted to evaluate the solution on Linux but had difficulty in sourcing a vendor that could successfully install Oracle 8.17 on Red Hat Linux (RHEL AS2.1). This is where Synaq was brought in to add value.</p>
<p>“We installed RHEL AS2.1 Linux with Oracle 8, configured the solution and moved the company’s old database across and implemented the solution. In addition we have a service level agreement with Regent and now monitor, manage and maintain the solution on their behalf,” adds Hasson.</p>
<p>The cost saving element was associated with not having to upgrade Sun servers and also allow Regent Insurance the ability to scale its environment and apply readily available Intel/Linux architecture to accommodate new customers.</p>
<p>A major challenge faced by Synaq lay in marrying an old version of Oracle (Oracle 8.17) with an older version of Red Hat Linux (RHEL AS2.1).</p>
<p>“We conducted some extremely low level debugging and diagnostics to come up with the solution. In the end we fulfilled the primary requirement of ensuring that Oracle 8 worked natively on Linux in conjunction with Regent Insurance’s in-house insurance software application written by Websoft Maven,” says Hasson.</p>
<p>Craig Grasko, IT manager at Regent Insurance, adds that Synaq provided high level Linux experience and understanding required for the installation of Oracle on the Linux server, as well as to successfully design and configure the right solution for the job.</p>
<p>“We have now decided to migrate the entire solution to Linux running with Oracle 10g. We will also install RHEL AS4.0 and Oracle 10g. This will definitely result in even greater performance and will provide us with greater flexibility to expand,” says Grasko.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/regent-insurance-takes-to-linux-like-a-king-penguin-takes-to-water/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Big Things expected from Open Source PBX solution</title>
		<link>http://www.synaq.com/news-releases/big-things-expected-from-open-source-pbx-solution</link>
		<comments>http://www.synaq.com/news-releases/big-things-expected-from-open-source-pbx-solution#comments</comments>
		<pubDate>Fri, 21 Oct 2005 10:00:10 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=661</guid>
		<description><![CDATA[David Jacobson attends Asterisk Conference in California
21 October 2005
Big things expected from Open Source PBX solution
The Open Source PBX solution known as Asterisk is fast gaining the attention of investors and IT managers looking to beef up the telecommunication and digital interactive capability of their organisations. The solution, says David Jacobson, technical director at Synaq, [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">David Jacobson attends Asterisk Conference in California</h3>
<p><em>21 October 2005</em></p>
<p>Big things expected from Open Source PBX solution</p>
<p>The Open Source PBX solution known as Asterisk is fast gaining the attention of investors and IT managers looking to beef up the telecommunication and digital interactive capability of their organisations. The solution, says David Jacobson, technical director at Synaq, is already making a huge impact in several parts of the world, including South Africa.</p>
<p><span id="more-661"></span>Jacobson, who heads up the technical division at local Linux managed services provider, Synaq, recently attended the third Astricon conference in Los Angeles, California, a high level forum focused on the increased adoption and general level of awareness around the Asterisk Open Source PBX solution.</p>
<p>This, he says, was a unique opportunity to network with recognized leaders within the development of this solution, people such as Mark Spencer who wrote the original application.</p>
<p>“The key aspect of attending the conference was the opportunity to familiarize oneself with the benefits that are inherent within this technology. It was clear from the discussions and presentations that Asterisk as a PBX solution is increasing in popularity and there is much more to come from this space, globally and locally,” says Jacobson.</p>
<p>Asterisk is based entirely on Open Source software and is designed to provide feature-rich PBX to the enterprise at a fraction of the cost of typical proprietary PABX systems.</p>
<p>Synaq is active in this market and has already managed a number of successful local Asterisk implementations.</p>
<p>“As a strategic PABX platform, Asterisk features built-in VoIP, Call Recording, MP3 on Hold, Interactive Voice Response and Direct Listing Functionality that combine to enhance the corporate communication process,” says Yossi Hasson, sales and marketing director at Synaq. “The fact that it is software-based means the solution can be customised to specific telephony requirements and related applications a business may have.”</p>
<p>“We are very excited about the prospects in unleashing the solution’s true potential locally,” adds Hasson.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/big-things-expected-from-open-source-pbx-solution/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grow your career in the Linux arena</title>
		<link>http://www.synaq.com/news-releases/grow-your-career-in-the-linux-arena</link>
		<comments>http://www.synaq.com/news-releases/grow-your-career-in-the-linux-arena#comments</comments>
		<pubDate>Wed, 19 Oct 2005 10:00:19 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=659</guid>
		<description><![CDATA[SYNAQ Wants You! We&#8217;re Hiring!
19 October 2005
We have positions available for:
 1) Linux Network Administrator
 2) Account / Sales Manager 
If you have relevant experience in the Linux arena and believe you have what it takes then please send through your CV to careers@synaq.com
]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">SYNAQ Wants You! We&#8217;re Hiring!</h3>
<p><em>19 October 2005</em></p>
<p>We have positions available for:</p>
<p> 1) Linux Network Administrator</p>
<p> 2) Account / Sales Manager </p>
<p>If you have relevant experience in the Linux arena and believe you have what it takes then please send through your CV to careers@synaq.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/grow-your-career-in-the-linux-arena/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Benefit Recovery Services opts for Linux PABX system</title>
		<link>http://www.synaq.com/news-releases/benefit-recovery-services-opts-for-linux-pabx-system</link>
		<comments>http://www.synaq.com/news-releases/benefit-recovery-services-opts-for-linux-pabx-system#comments</comments>
		<pubDate>Thu, 22 Sep 2005 10:00:10 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=657</guid>
		<description><![CDATA[BRS choses Asterisk to run their call centre
22 September 2005
Local provider of identification and recovery services for the benefit of pension and provident fund trustees, Benefit Recovery Services, has taken its investment in Linux and Open Source to another level. The company has implemented Asterisk from its Open Source PABX IT partner and managed Linux [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">BRS choses Asterisk to run their call centre</h3>
<p><em>22 September 2005</em></p>
<p>Local provider of identification and recovery services for the benefit of pension and provident fund trustees, Benefit Recovery Services, has taken its investment in Linux and Open Source to another level. The company has implemented Asterisk from its Open Source PABX IT partner and managed Linux services provider, Synaq.</p>
<p><span id="more-657"></span>Benefit Recovery Services (BRS)is owned by a consortium of shareholders and was established to identify and recover unclaimed monies that lie in financial service companies, find untraced beneficiaries to ensure appropriate distribution and assist pension and provident fund trustees, fund administrators &amp; former members in implementing the requirements and principles of the Pension Funds Second Amendment Act, 2001.</p>
<p>The company operates two call centres, one to log and follow up on incoming calls and the other to manage external or outgoing calls. Management invested in Synaq&#8217;s customised kick-start CD called ShrinkWrap that automatically configured each terminal at the 60-seat call centre with a<br />
custom Linux installation providing each agent with only the necessary tools and eliminating the need for human intervention.</p>
<p>&#8220;We were very much a Microsoft house and this proved to be prohibitive to our growth. We made a decision to modify our HTML-based call centre and leverage off browser services. Stability and ease of implementation were also key factors behind the decision,&#8221; explains Ian Lewin, Executive<br />
Director at BRS.</p>
<p>According to Lewin the company&#8217;s back-end was started in SQL and has remained so in order to<br />
effectively manage its database of approximately 7,5 million individuals.</p>
<p>&#8220;Our background lies in SQL and we haven&#8217;t changed in this respect. However, as far as the front-end of the business is concerned, we have moved from XP to Linux. Synaq provided a roll-out CD called ShrinkWrap that automatically configures each seat when required. We can now upscale or downscale our call centre as the need arises at minimal cost,&#8221; says Lewin.</p>
<p>In the natural development of the company, BRS soon realized that its incoming or registration call centre, viewed very much in the light of a &#8217;step child&#8217; to the company and non-core entity, was actually a very important division that could not be ignored.</p>
<p>&#8220;We started to scout for solutions that could handle incoming calls, monitor, transfer and voice record them. Asterisk was the one solution with the necessary features, and made the most sense from a costing and facilities perspective. We have implemented it and it runs very well. As a result the management of the incoming call centre and related resources is greatly enhanced,&#8221; says Lewin.</p>
<p>BRS management has realized the potential in Asterisk and its ideal placement as a VoIP switch. &#8220;It actually represents a key alternative to our problematic switchboard. It is the perfect solution for VoIP, saves costs because it has a built-in recording system and is stable, Open Source, measurable and works,&#8221; adds Lewin.</p>
<p>Yossi Hasson, sales and marketing director at Synaq, considers the investment a major boost for BRS and its position within its specialised market. &#8220;BRS management has opted for the very best-of-the-best in Linux-based solutions. This will definitely enhance business processes and we look<br />
forward to continuing the mutually beneficial relationship going forward,&#8221; says Hasson.</p>
<p>Synaq is currently helping BRS with the migration of its outbound call call centre to an Asterisk solution.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/benefit-recovery-services-opts-for-linux-pabx-system/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synaq</title>
		<link>http://www.synaq.com/news-releases/synaq-6</link>
		<comments>http://www.synaq.com/news-releases/synaq-6#comments</comments>
		<pubDate>Thu, 15 Sep 2005 10:00:09 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=655</guid>
		<description><![CDATA[Synaq setting the benchmark
15 September 2005
Thanks again for the hard and excellent work, your company is really setting the benchmark on quality and service delivery for all the other MTNNS business partners
]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Synaq setting the benchmark</h3>
<p><em>15 September 2005</em></p>
<p>Thanks again for the hard and excellent work, your company is really setting the benchmark on quality and service delivery for all the other MTNNS business partners</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-6/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synaq and Integr8 IT provide technological innovation at Digital Mall</title>
		<link>http://www.synaq.com/news-releases/synaq-and-integr8-it-provide-technological-innovation-at-digital-mall</link>
		<comments>http://www.synaq.com/news-releases/synaq-and-integr8-it-provide-technological-innovation-at-digital-mall#comments</comments>
		<pubDate>Tue, 23 Aug 2005 10:00:04 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=653</guid>
		<description><![CDATA[Great partnership yields exponential results for Digital Mall
23 August 2005
Synaq and Integr8 IT provide technological innovation at Digital Mall
Managed Linux services provider Synaq has played a key role in ensuring improved levels of benefit and a substantially higher return on the investment in ICT infrastructure for Digital Mall, the Proudly South African relationship marketing solutions [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Great partnership yields exponential results for Digital Mall</h3>
<p><em>23 August 2005</em></p>
<p>Synaq and Integr8 IT provide technological innovation at Digital Mall</p>
<p>Managed Linux services provider Synaq has played a key role in ensuring improved levels of benefit and a substantially higher return on the investment in ICT infrastructure for Digital Mall, the Proudly South African relationship marketing solutions and multi-channel commerce provider.</p>
<p><span id="more-653"></span>Synaq and Integr8 IT took over the management of IT networking services at Digital Mall in March 2005. Digital Mall operates a relatively complex ICT infrastructure, incorporating both Microsoft and Open Source (Linux) platforms and required proactive service levels.</p>
<p>“An efficient, effective ICT environment is absolutely mission-critical to the day-to-day operations of the company,” Yaron Assabi, Chief Executive Officer at Digital Mall. “Without a proactive approach to our infrastructure, it is difficult for us to provide the unprecedented service levels that our customers demand.”</p>
<p>A primary objective of the Linux managed services provider was to implement its e-mail security solution PinPoint in order to address the issue of spam on Digital Mall’s diverse internet connections and application services infrastructure.</p>
<p>“The fact that Digital Mall was receiving up to 250 000 spam mails a month was a mitigating factor behind the lines being maxed out, problematic and very slow. Implementing PinPoint immediately reduced 92% of their e-mail traffic and bandwidth going down their diginet line and this provided an improved browsing capability and utilisation of their bandwidth,” explains Yossi Hasson, sales and marketing director at Synaq.</p>
<p>“Our role was then extended to upgrade firewalls, implemented a Linux proxy server and added restriction of browsing policies in order to better control use of infrastructure,” adds Hasson.</p>
<p>Synaq partnered with national network infrastructure management specialist Integr8 IT. Technicians from Integr8 IT implemented a SUS server and performed an Exchange 2003 migration.</p>
<p>Says Bennie Strydom, project manager at Integr8 IT, “All Digital Mall’s development work is on Windows, so the Microsoft environment is crucial. The company is also plugged into Integr8 IT’s nerve centre and we currently provide them with 24 x 7 x 365 proactive support.”</p>
<p>“We have also implemented our advanced network monitoring solution, SEM and will also now begin to proactively monitor their entire environment. Part of the Digital Mall team has been added to the SMS notification service, the company now has the ability to generate availability reports and analyse trends and know about problems before they occur.,” adds Hasson. “Our various solutions resulted in greater bandwidth utilisation, a significant cost saving, more leverage and return on investment.”</p>
<p>“Jointly Synaq and Integr8 IT offer a cost effective and complimentary service. It is a huge challenge to find an IT manager with both Linux and Microsoft skills and the combination of both companies’ skills sets and experience has covered my requirements, without the cost of employing an IT manager that is familiar with both environments. We are very happy with the services we are receiving and look forward to a long term partnership with both Synaq and Integr8 IT,” says Assabi.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-and-integr8-it-provide-technological-innovation-at-digital-mall/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synaq is hiring</title>
		<link>http://www.synaq.com/news-releases/synaq-is-hiring-2</link>
		<comments>http://www.synaq.com/news-releases/synaq-is-hiring-2#comments</comments>
		<pubDate>Mon, 18 Jul 2005 10:00:49 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=651</guid>
		<description><![CDATA[Young? Driven? Got Root? Get Hired!
18 July 2005
Have you got what it takes to work in a young, dynamic, technical environment?
Are you passionate, self motivated, hard working and skilled in the Linux arena?
Synaq are looking to hire and if you think you&#8217;ve got what it takes then drop us your CV by emailing careers@synaq.com
We&#8217;re looking [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Young? Driven? Got Root? Get Hired!</h3>
<p><em>18 July 2005</em></p>
<p>Have you got what it takes to work in a young, dynamic, technical environment?<br />
Are you passionate, self motivated, hard working and skilled in the Linux arena?</p>
<p>Synaq are looking to hire and if you think you&#8217;ve got what it takes then drop us your CV by emailing careers@synaq.com</p>
<p>We&#8217;re looking for highly skilled Linux Network Administrators. You need to have at least 3 years of Linux administration experience .</p>
<p>Good Luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-is-hiring-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An open source approach to security</title>
		<link>http://www.synaq.com/news-releases/an-open-source-approach-to-security</link>
		<comments>http://www.synaq.com/news-releases/an-open-source-approach-to-security#comments</comments>
		<pubDate>Thu, 14 Jul 2005 10:00:49 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=647</guid>
		<description><![CDATA[David Jacobson&#8217;s View on Security in the Open Source World
14 July 2005
Internet threats have clearly become a lot more sophisticated and malicious. The frequency and level of attacks on corporate networks and systems around the world have forced businesses to adopt a more vigilant approach towards security, and to review the way applications are configured, [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">David Jacobson&#8217;s View on Security in the Open Source World</h3>
<p><em>14 July 2005</em></p>
<p>Internet threats have clearly become a lot more sophisticated and malicious. The frequency and level of attacks on corporate networks and systems around the world have forced businesses to adopt a more vigilant approach towards security, and to review the way applications are configured, be discerning in selecting software applications and emphasise security as a top priority in business.</p>
<p><span id="more-647"></span>Any operating system is prone to security vulnerabilities. Attacks originate from insecure software. Companies like to acquire extra security applications such as intrusion detection systems and firewalls and throw money at the problem, but these applications also have vulnerabilities and the real solution lies in running secure code and being strategic about configuration and assembly.</p>
<p>For example, if an application, such as the DNS server, is compromised, but is well configured, the attacker will only have access to modify the DNS settings and will not gain sufficient control to take over the entire server. Many commercial applications are monolithic in design and everything is interlinked, so if one service is compromised, it means the entire server is left vulnerable.</p>
<p>The only way to achieve the required level of trust is to be open source, an approach that the majority of commercial suppliers are not willing to take. In the case of open source, a key consideration to keep in mind is the fact that the technology has been reviewed many times over by some of the world&#8217;s best and brightest in the field of computer security.</p>
<p>The perception that a Linux environment and open source software statistically has more vulnerabilities in comparison with other operating systems is only half true.</p>
<p>Due largely to the ‘open’ nature of this environment, source code is made available for scrutiny by many parties. This means that vulnerabilities are picked up immediately and announced . And even if nothing is done by the original developers to fix the problem, it is almost guaranteed that someone, somewhere will create a patch and release it.</p>
<p>This is one of the key advantages of Linux environment, from a security point of view. The other is that it is flexible, modular and built from the ground up with security in mind, so the risk and consequences of a security compromise are reduced.</p>
<p>A significant aspect of Linux is that it is not as vulnerable to viruses.</p>
<p>Linux is an extremely flexible operation system and does not just set standards &#8211; standards are at the heart of its design.</p>
<p>It has made significant inroads within the server domain and is progressing within the desktop space, but common challenges &#8211; such as skills, short term business benefit over security requirements and general misconception &#8211; mean a long journey ahead for the local market in terms of adoption.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/an-open-source-approach-to-security/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Call centre conversion to Linux at the click of a button</title>
		<link>http://www.synaq.com/news-releases/call-centre-conversion-to-linux-at-the-click-of-a-button</link>
		<comments>http://www.synaq.com/news-releases/call-centre-conversion-to-linux-at-the-click-of-a-button#comments</comments>
		<pubDate>Fri, 17 Jun 2005 10:00:45 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=645</guid>
		<description><![CDATA[Overnight conversion results in substantial savings
17 June 2005
Synaq, national provider of managed Linux services, recently transformed the call centre operation housed within Benefit Recovery Services (BRS) from a Windows-dominated environment to that of Linux.
The Johannesburg-based Linux services provider created a customised kick-start CD called ShrinkWrap that automatically configured each terminal at the 60-seat call centre [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Overnight conversion results in substantial savings</h3>
<p><em>17 June 2005</em></p>
<p>Synaq, national provider of managed Linux services, recently transformed the call centre operation housed within Benefit Recovery Services (BRS) from a Windows-dominated environment to that of Linux.</p>
<p><span id="more-645"></span>The Johannesburg-based Linux services provider created a customised kick-start CD called ShrinkWrap that automatically configured each terminal at the 60-seat call centre with a custom Linux installation providing each agent with only the necessary tools and eliminating the need for human intervention.</p>
<p>Benefit Recovery Services is owned by a consortium of shareholders and was established to identify and recover unclaimed monies that lie in financial service companies, find untraced beneficiaries to ensure appropriate distribution and assist pension and provident fund trustees, fund administrators &amp; former members in implementing the requirements and principles of the Pension Funds Second Amendment Act, 2001.</p>
<p>The company’s fully-equipped call centre and administration section is dependent on efficient ICT infrastructure that is cost effective to manage and maintain, with no risk of downtime.</p>
<p>Synaq was brought in to convert the existing infrastructure from Windows machines to Linux desktops without impacting on the daily operation of the business. The company adopted and ran a unique installation method that worked automatically and seamlessly to derive the desired results.</p>
<p>“We managed to migrate BRS’ call centre operation within hours by implementing ShrinkWrap, a CD manufactured and designed for this purpose. The implementation saved on licence renewals, hardware upgrades, anti-virus software and most importantly, time,” explains David Jacobson, technical director at Synaq. “The design and use of the CD is an innovative method in implementing Linux and Open Source Software. It not only makes very good technological sense, but very powerful business sense as well.”</p>
<p>Ian Lewin, Executive Director at BRS, said the company featured a back-end system that runs off HTML and the chief reason for the deployment of the new operating system software on user systems is to leverage off the Firefox browser facility.</p>
<p>“Microsoft licensing was prohibitive to our growth. We opted to go the Linux route in order to prevent any downtime when we re-wrote our Windows-based recording software to that of a Linux system. The results have been phenomenal – not a single machine has been down since installation and we have quite literally saved in the region of R2 000 per machine,” says Lewin.</p>
<p>Jacobson adds that the straightforward installation and short-term results of this migration project demonstrates that a Linux investment can add value within certain environments, conducive to this technology and infrastructure.</p>
<p>“We advocate open source technology within the framework of an ICT infrastructure as a viable alternative. As our involvement with BRS proves, there is often no impact on the business in terms of downtime and the Linux route can lead to a significant saving,” he concludes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/call-centre-conversion-to-linux-at-the-click-of-a-button/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome Andre Fourie</title>
		<link>http://www.synaq.com/news-releases/welcome-andre-fourie</link>
		<comments>http://www.synaq.com/news-releases/welcome-andre-fourie#comments</comments>
		<pubDate>Mon, 13 Jun 2005 10:00:50 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=643</guid>
		<description><![CDATA[Synaq adds to their technical team
13 June 2005

Synaq would like to welcome our newest recruit to the technical team.
Andre Fourie has joined the Synaq team on the technical front adding to Synaq&#8217;s arsenal to ensure that we constantly deliver far and beyond our customer&#8217;s expectations.
He brings with him years of Linux experience, a whacky sense [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Synaq adds to their technical team</h3>
<p><em>13 June 2005</em></p>
<p>
Synaq would like to welcome our newest recruit to the technical team.</p>
<p>Andre Fourie has joined the Synaq team on the technical front adding to Synaq&#8217;s arsenal to ensure that we constantly deliver far and beyond our customer&#8217;s expectations.</p>
<p>He brings with him years of Linux experience, a whacky sense of humour and drinks black coffee with 7 sugars&#8230; (now thats wired!).</p>
<p>Welcome aboard Andre!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/welcome-andre-fourie/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synaq</title>
		<link>http://www.synaq.com/news-releases/synaq-5</link>
		<comments>http://www.synaq.com/news-releases/synaq-5#comments</comments>
		<pubDate>Mon, 06 Jun 2005 10:00:58 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=641</guid>
		<description><![CDATA[Aqua Gaming
06 June 2005

The solution SYNAQ had implemented not only reduced the amount of strain on our servers, it also increased the productivity of our Call Centre, therefore ensuring a quick turnaround on client requests.
]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Aqua Gaming</h3>
<p><em>06 June 2005</em></p>
<p>
The solution SYNAQ had implemented not only reduced the amount of strain on our servers, it also increased the productivity of our Call Centre, therefore ensuring a quick turnaround on client requests.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LinuxWorld iPod Winner</title>
		<link>http://www.synaq.com/news-releases/linuxworld-ipod-winner</link>
		<comments>http://www.synaq.com/news-releases/linuxworld-ipod-winner#comments</comments>
		<pubDate>Wed, 01 Jun 2005 10:00:06 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=639</guid>
		<description><![CDATA[Robert Graham wins the iPod mini
01 June 2005

During the LinuxWorld expo Synaq offered a draw to win an iPod mini. To enter, all you needed to do was drop your business card into a bowl.
We received 844 entries and pulled out one lucky winner. Robert Graham from Weather SA is the proud owner of a [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Robert Graham wins the iPod mini</h3>
<p><em>01 June 2005</em></p>
<p>
During the LinuxWorld expo Synaq offered a draw to win an iPod mini. To enter, all you needed to do was drop your business card into a bowl.</p>
<p>We received 844 entries and pulled out one lucky winner. Robert Graham from Weather SA is the proud owner of a new iPod mini.</p>
<p>Robert said &#8220;I&#8217;ve never won anything before and definitely didn&#8217;t expect to win this&#8221;</p>
<p>Well Robert, with Synaq, anything&#8217;s possible!<br />
Well done and enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/linuxworld-ipod-winner/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Market in tune with the advancement in Linux</title>
		<link>http://www.synaq.com/news-releases/market-in-tune-with-the-advancement-in-linux</link>
		<comments>http://www.synaq.com/news-releases/market-in-tune-with-the-advancement-in-linux#comments</comments>
		<pubDate>Mon, 23 May 2005 10:00:43 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=637</guid>
		<description><![CDATA[Post LinuxWorld
23 May 2005

The first LinuxWorld event to be held in South Africa went off smoothly and received a very warm response from visitors says Yossi Hasson, sales and marketing director at Synaq, a local provider of managed Linux services and exhibitor.
LinuxWorld was billed as an additional attraction of the annual Futurex exhibition, and visitors [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Post LinuxWorld</h3>
<p><em>23 May 2005</em></p>
<p>
The first LinuxWorld event to be held in South Africa went off smoothly and received a very warm response from visitors says Yossi Hasson, sales and marketing director at Synaq, a local provider of managed Linux services and exhibitor.</p>
<p>LinuxWorld was billed as an additional attraction of the annual Futurex exhibition, and visitors were given the opportunity to interact with businesses operating within the open source software market.</p>
<p><span id="more-637"></span>&#8220;Judging from the number of visitors and the amount and level of questions posed to exhibitors, such as ourselves, it is clear that the local market is very interested in open source technology and the potential that it does possess,&#8221; says Hasson. &#8220;The impact of the event on the market is that companies now know that Linux isn&#8217;t just a buzz-word being covered in the media, but rather a real, viable alternative and option. What this mainly means is that the customer once again has the biggest freedom yet &#8211; freedom of choice.&#8221;</p>
<p>According to Hasson, ongoing endorsement of open source software by popular industry icon&#8217;s such as Mark Shuttleworth has helped to reinforce interest within the local market.</p>
<p>&#8220;This exhibition and the ongoing marketing efforts around this developing market instill a sense of confidence among businesses. Generally, it suggests that if they were to implement a Linux-based solution, they would have a number of companies to turn to in the event of problems or support issues,&#8221; adds Hasson.</p>
<p>From a Synaq point of view, LinuxWorld provided an opportunity to engage with its target market and showcase its product offering and expertise. It also strengthened the company&#8217;s credibility in the marketplace.</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/market-in-tune-with-the-advancement-in-linux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>German Spam infecting worldwide mailboxes</title>
		<link>http://www.synaq.com/news-releases/german-spam-infecting-worldwide-mailboxes</link>
		<comments>http://www.synaq.com/news-releases/german-spam-infecting-worldwide-mailboxes#comments</comments>
		<pubDate>Mon, 16 May 2005 10:00:45 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=632</guid>
		<description><![CDATA[Pinpoint protects against German email invasion
16 May 2005
Mailboxes worldwide are being infected with hundreds of German emails prompting the recipients to visit a website.
On viewing this website the recipients machine becomes infected with a virus that begins forwarding the email onto the recipients address book, turning that machine into a spam &#8220;zombie&#8221; station.

 South African [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Pinpoint protects against German email invasion</h3>
<p><em>16 May 2005</em></p>
<p>Mailboxes worldwide are being infected with hundreds of German emails prompting the recipients to visit a website.</p>
<p>On viewing this website the recipients machine becomes infected with a virus that begins forwarding the email onto the recipients address book, turning that machine into a spam &#8220;zombie&#8221; station.</p>
<p>
 <span id="more-632"></span>South African companies have been hard hit by this German invasion prompting IT technicians to frantically try and restore systems and reduce the impact of the virus. In some cases, machines have had to be formatted in order to prevent the virus from spreading further.</p>
<p>In response to this threat, Pinpoint Securemail was updated with multiple new spam checks (German Spam specific) therefore ensuring that customers behind Pinpoint are not affected by the German email invasion. The update required no user intervention, no change in infrastructure and no network downtime allowing Pinpoint customers to truly continue with business as usual.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/german-spam-infecting-worldwide-mailboxes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Going, going, LinuxWorld!</title>
		<link>http://www.synaq.com/news-releases/going-going-linuxworld</link>
		<comments>http://www.synaq.com/news-releases/going-going-linuxworld#comments</comments>
		<pubDate>Fri, 06 May 2005 10:10:14 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=630</guid>
		<description><![CDATA[Managed Linux Services under spotlight at LinuxWorld
06 May 2005
LinuxWorld, the global event focused on Linux and Open Source Software, will be running in conjunction with the Futurex exhibition in May. This is the first time LinuxWorld will be hosted in South Africa, and Synaq, a leading provider of Managed Linux Services, anticipates a strong reaction [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Managed Linux Services under spotlight at LinuxWorld</h3>
<p><em>06 May 2005</em></p>
<p>LinuxWorld, the global event focused on Linux and Open Source Software, will be running in conjunction with the Futurex exhibition in May. This is the first time LinuxWorld will be hosted in South Africa, and Synaq, a leading provider of Managed Linux Services, anticipates a strong reaction from the local market.</p>
<p><span id="more-630"></span>Synaq has tailored its offering to highlight what Yossi Hasson, sales and marketing director at Synaq, describes as ‘clear-cut advantages behind open source technology and more specifically Managed Linux Services, catering to the needs of operations across the board, from small-to-medium sized companies right through to large enterprises.</p>
<p>“There is no doubt that the popularity of Linux and open source technology is on the rise. Our key objective is not only to interact with resellers and prospective partners, but also to showcase the potential behind a range of solutions including Asterisk, an open source PABX solution with VoIP capabilities, PinPoint Securemail, a comprehensive anti-virus and overall e-mail protection service, and a host of other Managed Linux Services including network optimisation,” says Hasson. “We have the added advantage of LinuxWorld attracting our target market. We also aim to reach those who may be considering an investment in open source technology, but require more details in order to make an informed decision.”</p>
<p>The key message that Synaq wants to communicate to the market is that open source software in conjunction with managed Linux services is a credible alternative that is easily managed, cost effective and can enhance the networking and communication, and other critical business operations for a business.</p>
<p>“If one looks at the SME environment, for instance, we have on board straightforward technology that is simple and cost-effective to implement and manage. LinuxWorld provides us with an opportunity to showcase powerful solutions such as our monitoring solution SEM, among others,” adds Hasson.</p>
<p>The SYNAQ stand can be found at stand A8 at LinuxWorld. LinuxWorld will be running from the 17th till the 20th May 2005.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/going-going-linuxworld/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sober.P worm causes global havok</title>
		<link>http://www.synaq.com/news-releases/sober-p-worm-causes-global-havok</link>
		<comments>http://www.synaq.com/news-releases/sober-p-worm-causes-global-havok#comments</comments>
		<pubDate>Fri, 06 May 2005 10:00:03 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=628</guid>
		<description><![CDATA[Sober.P worm causing worldwide havok &#8211; Pinpoint customers are smiling though  
06 May 2005

The Sober.P worm has caused worldwide havok infecting hundreds and thousands of machines with the new worm variant causing machines to automatically forward the virus to people in their address book.
The virus has propogated so fast that according to some reports [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Sober.P worm causing worldwide havok &#8211; Pinpoint customers are smiling though <img src='http://www.synaq.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </h3>
<p><em>06 May 2005</em></p>
<p>
The Sober.P worm has caused worldwide havok infecting hundreds and thousands of machines with the new worm variant causing machines to automatically forward the virus to people in their address book.</p>
<p>The virus has propogated so fast that according to some reports constituted up to 4% of all email traffic around the globe.</p>
<p>However, Pinpoint customers have been smiling.</p>
<p><span id="more-628"></span>Pinpoint Securemail, Synaq&#8217;s enterprise email security solution protects customers on the Internet level, utilising 3 concurrent anti-vrius engines ensuring that any new virus variant is stopped within minutes of the world becoming aware of them.<br />
Pinpoint stops viruses before they reach your network. Eliminating the potential risk and saving customers bandwidth.</p>
<p>From inception of the virus Pinpoint Securemail has blocked over 15 000 emails on behalf of our customers, constituting over 8% of all email traffic and over 60% of all viruses detected.</p>
<p>To date, no Pinpoint customer has reported being infected by the Sober.P worm (or any other email borne virus) and are not experiencing any unusual slow down in their network speeds.</p>
<p>
Source: Pinpoint Securemail, 06/05/2005</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/sober-p-worm-causes-global-havok/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synaq is hiring!</title>
		<link>http://www.synaq.com/news-releases/synaq-is-hiring</link>
		<comments>http://www.synaq.com/news-releases/synaq-is-hiring#comments</comments>
		<pubDate>Wed, 13 Apr 2005 10:00:52 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=626</guid>
		<description><![CDATA[Synaq is hiring!
13 April 2005
SYNAQ is rapidly expanding&#8230; We&#8217;re looking for young, vibrant, goal orientated, passionate and motivated Linux network administrators.

 
Candidates must have sufficient Linux network administration experience. Iptables, Squid, Snort, Samba &#8211; these must be the things you dream about at night   PHP and MySQL experience an added bonus!
If your hard [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Synaq is hiring!</h3>
<p><em>13 April 2005</em></p>
<p>SYNAQ is rapidly expanding&#8230; We&#8217;re looking for young, vibrant, goal orientated, passionate and motivated Linux network administrators.</p>
<p>
 <span id="more-626"></span></p>
<p>Candidates must have sufficient Linux network administration experience. Iptables, Squid, Snort, Samba &#8211; these must be the things you dream about at night <img src='http://www.synaq.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  PHP and MySQL experience an added bonus!</p>
<p>If your hard working, passionate, able to work well under pressure and very technical then send your cv to: careers@synaq.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-is-hiring/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing Enterprise Monitoring</title>
		<link>http://www.synaq.com/news-releases/introducing-enterprise-monitoring</link>
		<comments>http://www.synaq.com/news-releases/introducing-enterprise-monitoring#comments</comments>
		<pubDate>Fri, 04 Mar 2005 10:00:55 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=624</guid>
		<description><![CDATA[Stay on the pulse of your network
04 March 2005

SYNAQ introduces the most flexible, customisable and advanced enterprise monitoring solution available today.
Built entirely on popular open source applications, our monitoring solution enables companies to monitor what they never thought imaginable.
With built in notifications via sms or email, ability to monitor custom proprietary files, SNMP support, detailed [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Stay on the pulse of your network</h3>
<p><em>04 March 2005</em></p>
<p>
SYNAQ introduces the most flexible, customisable and advanced enterprise monitoring solution available today.<br />
Built entirely on popular open source applications, our monitoring solution enables companies to monitor what they never thought imaginable.<br />
With built in notifications via sms or email, ability to monitor custom proprietary files, SNMP support, detailed web-interface and more, our monitoring solution ensures that you&#8217;ll always be on top of your enterprise network.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/introducing-enterprise-monitoring/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SYNAQ adds 3rd line of Virus defence to Pinpoint Securemail</title>
		<link>http://www.synaq.com/news-releases/synaq-adds-3rd-line-of-virus-defence-to-pinpoint-securemail</link>
		<comments>http://www.synaq.com/news-releases/synaq-adds-3rd-line-of-virus-defence-to-pinpoint-securemail#comments</comments>
		<pubDate>Thu, 03 Mar 2005 10:10:50 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=622</guid>
		<description><![CDATA[3rd Layer of Email Virus Defence
03 March 2005

Synaq has increased the level of email virus defence that customers will receive when utilising the enterprise wide Pinpoint Securemail Email Security solution.
In an increased effort to curb the growing number of viruses attached to emails, Synaq has incorporated a 3rd layer of virus defence onto the Pinpoint [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">3rd Layer of Email Virus Defence</h3>
<p><em>03 March 2005</em></p>
<p>
Synaq has increased the level of email virus defence that customers will receive when utilising the enterprise wide Pinpoint Securemail Email Security solution.</p>
<p>In an increased effort to curb the growing number of viruses attached to emails, Synaq has incorporated a 3rd layer of virus defence onto the Pinpoint Securemail solution.</p>
<p><span id="more-622"></span><br />
Bitdefender AV, the while known and widely utilised anti-virus engine has been added to the Pinpoint Securemail suite, now giving Pinpoint customers 3 concurrent anti-virus checks on every email processed. The combined efforts of McAfee, ClamAV and Bitdefender ensures that every email Pinpoint customers receive is clean and virus free.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-adds-3rd-line-of-virus-defence-to-pinpoint-securemail/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pinpoint Securemail</title>
		<link>http://www.synaq.com/news-releases/pinpoint-securemail-5</link>
		<comments>http://www.synaq.com/news-releases/pinpoint-securemail-5#comments</comments>
		<pubDate>Thu, 03 Mar 2005 10:00:45 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=620</guid>
		<description><![CDATA[Three Layers of Virus Defence
03 March 2005

Pinpoint Securemail utilises 3 concurrent anti-virus engines to scan all emails for known and unknown virus threats, ensuring that all emails delivered to you are not only Spam but also Virus free.
]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Three Layers of Virus Defence</h3>
<p><em>03 March 2005</em></p>
<p>
Pinpoint Securemail utilises 3 concurrent anti-virus engines to scan all emails for known and unknown virus threats, ensuring that all emails delivered to you are not only Spam but also Virus free.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/pinpoint-securemail-5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pinpoint Securemail</title>
		<link>http://www.synaq.com/news-releases/pinpoint-securemail-4</link>
		<comments>http://www.synaq.com/news-releases/pinpoint-securemail-4#comments</comments>
		<pubDate>Tue, 15 Feb 2005 10:10:29 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=618</guid>
		<description><![CDATA[Pinpoint processing over 1 million emails
15 February 2005

Pinpoint SecureMail processes over1 000 000 emails per month ensuring the most accurate email security solution that protects your enterprise on the Internet level before reaching your network.
]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Pinpoint processing over 1 million emails</h3>
<p><em>15 February 2005</em></p>
<p>
Pinpoint SecureMail processes over1 000 000 emails per month ensuring the most accurate email security solution that protects your enterprise on the Internet level before reaching your network.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/pinpoint-securemail-4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pinpoint Securemail processing over 1 million mails per month</title>
		<link>http://www.synaq.com/news-releases/pinpoint-securemail-processing-over-1-million-mails-per-month</link>
		<comments>http://www.synaq.com/news-releases/pinpoint-securemail-processing-over-1-million-mails-per-month#comments</comments>
		<pubDate>Tue, 15 Feb 2005 10:00:19 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=615</guid>
		<description><![CDATA[Over 1 million and still climbing
15 February 2005

Synaq&#8217;s flagship enterprise email security solution, Pinpoint Securemail, now processes over 1 million emails per month for our customers protecting them from all email borne threats and reducing their load and bandwidth usage by eliminating the threats on the Internet level before reaching their network.
Of the 1 million [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Over 1 million and still climbing</h3>
<p><em>15 February 2005</em></p>
<p>
Synaq&#8217;s flagship enterprise email security solution, Pinpoint Securemail, now processes over 1 million emails per month for our customers protecting them from all email borne threats and reducing their load and bandwidth usage by eliminating the threats on the Internet level before reaching their network.</p>
<p><span id="more-615"></span>Of the 1 million emails processed per month, on average 630 000 are Spam (63%), 40 000 are Viruses (4%) and 72 000 are blocked due to bad content (7.2%) With over 1 million emails being processed per month (and still climbing) you can be ensured that Pinpoint Securemail is one of the most accurate email security solutions available today!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/pinpoint-securemail-processing-over-1-million-mails-per-month/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spam could reach 95%</title>
		<link>http://www.synaq.com/news-releases/spam-could-reach-95</link>
		<comments>http://www.synaq.com/news-releases/spam-could-reach-95#comments</comments>
		<pubDate>Fri, 11 Feb 2005 10:00:15 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=613</guid>
		<description><![CDATA[Spam on the rise
11 February 2005

Spam could soon reach 95% The global junk mail plague is to get dramatically worse as spammers use victims&#8217; PCs as anonymous proxies to send e-mail via their Internet service providers&#8217; mail relay.
According to anti-spam organisation Spamhaus, spam could account for 95% of all e-mail sent by mid-2006. &#8220;New versions [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Spam on the rise</h3>
<p><em>11 February 2005</em></p>
<p>
Spam could soon reach 95% The global junk mail plague is to get dramatically worse as spammers use victims&#8217; PCs as anonymous proxies to send e-mail via their Internet service providers&#8217; mail relay.</p>
<p><span id="more-613"></span>According to anti-spam organisation Spamhaus, spam could account for 95% of all e-mail sent by mid-2006. &#8220;New versions of proxy packages released by Russian spammers operating in the US now have a feature which instructs the hijacked proxy to send the spam out via the mail relay of the ISP to which the proxy is downstream,&#8221; the company says. Before this explosion in proxy-generated spam, most e-mail traffic arriving at ISPs&#8217; mail servers came mainly from two sources: sent directly by the spammer, or sent by the spammer through a hijacked computer (proxy), Vnunet reports. But Spamhaus warns that the source of incoming spam is changing, and ISPs are seeing far more spam coming directly from the major mail relays of other ISPs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/spam-could-reach-95/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SYNAQ Launches New Website</title>
		<link>http://www.synaq.com/news-releases/synaq-launches-new-website</link>
		<comments>http://www.synaq.com/news-releases/synaq-launches-new-website#comments</comments>
		<pubDate>Thu, 10 Feb 2005 10:00:20 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=611</guid>
		<description><![CDATA[www.synaq.com &#8211; for all your Linux needs
10 February 2005

The much anticipated and sort after SYNAQ website (http://www.synaq.com) has officially been launched. The dynamic website contains all the updated info on SYNAQ, our customers, services and solutions along with the latest Linux news worldwide.
]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">www.synaq.com &#8211; for all your Linux needs</h3>
<p><em>10 February 2005</em></p>
<p>
The much anticipated and sort after SYNAQ website (http://www.synaq.com) has officially been launched. The dynamic website contains all the updated info on SYNAQ, our customers, services and solutions along with the latest Linux news worldwide.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-launches-new-website/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pinpoint Securemail</title>
		<link>http://www.synaq.com/news-releases/pinpoint-securemail-3</link>
		<comments>http://www.synaq.com/news-releases/pinpoint-securemail-3#comments</comments>
		<pubDate>Wed, 09 Feb 2005 10:00:31 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=609</guid>
		<description><![CDATA[Its all about enterprise email security and a whole lot more
09 February 2005

70% of all email today is Spam! That is the reality of the matter and situations are only getting worse. To date, front line defense solution have repeatedly failed in protecting your enterprise from Spam, Viruses and Phishing attempts.
It is for these reasons [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Its all about enterprise email security and a whole lot more</h3>
<p><em>09 February 2005</em></p>
<p>
70% of all email today is Spam! That is the reality of the matter and situations are only getting worse. To date, front line defense solution have repeatedly failed in protecting your enterprise from Spam, Viruses and Phishing attempts.</p>
<p>It is for these reasons that SYNAQ developed Pinpoint Securemail.</p>
<p><span id="more-609"></span></p>
<p>Built entirely on Open Source Technologies. Pinpoint Securemail is a flagship enterprise email security solution that protects your organisation on the Internet Level requiring no additional hardware, software or technical skills eliminating all email threats before it reaches your network, increasing security and reducing bandwidth consumption.</p>
<p>To date Pinpoint Securemail processes over 1 000 000 emails per month and protects over 13 000 mailboxes nationwide.</p>
<p>Take us to the test, evaluate Pinpoint with our 30 day free trial.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/pinpoint-securemail-3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>German rail, runs Linux</title>
		<link>http://www.synaq.com/news-releases/german-rail-runs-linux</link>
		<comments>http://www.synaq.com/news-releases/german-rail-runs-linux#comments</comments>
		<pubDate>Thu, 03 Feb 2005 10:00:12 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=603</guid>
		<description><![CDATA[German rail, runs Linux
03 February 2005
The German national railway says it has moved all its 55 000 Lotus Notes users onto the Linux open source operating system.
PC World quotes the operating company as saying the move is expected to deliver cost savings, greater flexibility and integration benefits. The company has already shifted its vital train [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">German rail, runs Linux</h3>
<p><em>03 February 2005</em></p>
<p>The German national railway says it has moved all its 55 000 Lotus Notes users onto the Linux open source operating system.</p>
<p><span id="more-603"></span>PC World quotes the operating company as saying the move is expected to deliver cost savings, greater flexibility and integration benefits. The company has already shifted its vital train time-tabling system from HP Non-Stop to Linux. Next, it will move various SAP systems, including sales support, from Unix to Linux. By the end of the year, all remaining critical systems will run on Linux.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/german-rail-runs-linux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SYNAQ welcomes two new members to the team</title>
		<link>http://www.synaq.com/news-releases/synaq-welcomes-two-new-members-to-the-team</link>
		<comments>http://www.synaq.com/news-releases/synaq-welcomes-two-new-members-to-the-team#comments</comments>
		<pubDate>Tue, 01 Feb 2005 10:00:58 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=601</guid>
		<description><![CDATA[Synaq experiences rapid growth in 2005
01 February 2005

Synaq would like to welcome two of its&#8217; newest members to the team. Johann Scheepers and Christopher Graham have both joined SYNAQ as Linux Network Administrators expanding our technical team enabling SYNAQ to focus on expanding their offering and maintaining their extremely high levels of service that customers [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Synaq experiences rapid growth in 2005</h3>
<p><em>01 February 2005</em></p>
<p>
Synaq would like to welcome two of its&#8217; newest members to the team. <span id="more-601"></span>Johann Scheepers and Christopher Graham have both joined SYNAQ as Linux Network Administrators expanding our technical team enabling SYNAQ to focus on expanding their offering and maintaining their extremely high levels of service that customers have become accustomed to. Good luck guys and welcome aboard!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-welcomes-two-new-members-to-the-team/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pinpoint Securemail</title>
		<link>http://www.synaq.com/news-releases/pinpoint-securemail-2</link>
		<comments>http://www.synaq.com/news-releases/pinpoint-securemail-2#comments</comments>
		<pubDate>Tue, 25 Jan 2005 10:30:37 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=599</guid>
		<description><![CDATA[Spam Volume to Grow
25 January 2005

The volume of Spam will grow at an average rate of 54% over the next four years, and by 2008, 71% of all email in Europe will be Spam.
]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Spam Volume to Grow</h3>
<p><em>25 January 2005</em></p>
<p>
The volume of Spam will grow at an average rate of 54% over the next four years, and by 2008, 71% of all email in Europe will be Spam.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/pinpoint-securemail-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synaq</title>
		<link>http://www.synaq.com/news-releases/synaq-4</link>
		<comments>http://www.synaq.com/news-releases/synaq-4#comments</comments>
		<pubDate>Tue, 25 Jan 2005 10:15:40 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=597</guid>
		<description><![CDATA[Economic Value Proposition
25 January 2005

The economic value proposition we&#8217;ve seen in initial Linux deployments sometimes represents a 40 to 50 percent reduction in total cost of ownership, and that is a value proposition that we can&#8217;t ignore.
]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Economic Value Proposition</h3>
<p><em>25 January 2005</em></p>
<p>
The economic value proposition we&#8217;ve seen in initial Linux deployments sometimes represents a 40 to 50 percent reduction in total cost of ownership, and that is a value proposition that we can&#8217;t ignore.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synaq</title>
		<link>http://www.synaq.com/news-releases/synaq-3</link>
		<comments>http://www.synaq.com/news-releases/synaq-3#comments</comments>
		<pubDate>Tue, 25 Jan 2005 10:12:25 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=595</guid>
		<description><![CDATA[Bachmann Reference
25 January 2005

For any Linux solution we would strongly recommend SYNAQ to any company out there.
]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Bachmann Reference</h3>
<p><em>25 January 2005</em></p>
<p>
For any Linux solution we would strongly recommend SYNAQ to any company out there.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synaq</title>
		<link>http://www.synaq.com/news-releases/synaq-2</link>
		<comments>http://www.synaq.com/news-releases/synaq-2#comments</comments>
		<pubDate>Tue, 25 Jan 2005 10:10:17 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=593</guid>
		<description><![CDATA[Allcare Reference
25 January 2005

SYNAQ as a company delivers large value to any enterprise reliant on their IT infrastructure for the success of their business. The saving we experienced in terms of time and money make SYNAQ&#8217;s Managed Linux Services a compelling argument for any company out there.
]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Allcare Reference</h3>
<p><em>25 January 2005</em></p>
<p>
SYNAQ as a company delivers large value to any enterprise reliant on their IT infrastructure for the success of their business. The saving we experienced in terms of time and money make SYNAQ&#8217;s Managed Linux Services a compelling argument for any company out there.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pinpoint Securemail</title>
		<link>http://www.synaq.com/news-releases/pinpoint-securemail</link>
		<comments>http://www.synaq.com/news-releases/pinpoint-securemail#comments</comments>
		<pubDate>Tue, 25 Jan 2005 10:02:31 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=591</guid>
		<description><![CDATA[Pinpoint will eliminate &#8230;
25 January 2005

Pinpoint SecureMail will eliminate the majority of all email threats before reaching your companies network without the need for any additional hardware, software or technical skills.
]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Pinpoint will eliminate &#8230;</h3>
<p><em>25 January 2005</em></p>
<p>
Pinpoint SecureMail will eliminate the majority of all email threats before reaching your companies network without the need for any additional hardware, software or technical skills.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/pinpoint-securemail/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Products</title>
		<link>http://www.synaq.com/news-releases/products-2</link>
		<comments>http://www.synaq.com/news-releases/products-2#comments</comments>
		<pubDate>Tue, 25 Jan 2005 10:01:53 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=589</guid>
		<description><![CDATA[Enterprise Monitoring
25 January 2005

SYNAQ&#8217;s enterprise monitoring enables a proactive rather then reactive approach to managing your companies IT infrastructure
]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Enterprise Monitoring</h3>
<p><em>25 January 2005</em></p>
<p>
SYNAQ&#8217;s enterprise monitoring enables a proactive rather then reactive approach to managing your companies IT infrastructure</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/products-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synaq</title>
		<link>http://www.synaq.com/news-releases/synaq</link>
		<comments>http://www.synaq.com/news-releases/synaq#comments</comments>
		<pubDate>Tue, 25 Jan 2005 10:00:21 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=587</guid>
		<description><![CDATA[Synaq&#8217;s Managed Linux Services
25 January 2005

SYNAQ&#8217;s Managed Linux Services enables your company to benefit from the power and flexibility of Linux and Open Source Software whilst ensuring that all management and support is professionally and effectively handled ensuring overall peace of mind
]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Synaq&#8217;s Managed Linux Services</h3>
<p><em>25 January 2005</em></p>
<p>
SYNAQ&#8217;s Managed Linux Services enables your company to benefit from the power and flexibility of Linux and Open Source Software whilst ensuring that all management and support is professionally and effectively handled ensuring overall peace of mind</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Products</title>
		<link>http://www.synaq.com/news-releases/products</link>
		<comments>http://www.synaq.com/news-releases/products#comments</comments>
		<pubDate>Sun, 14 Nov 2004 10:00:19 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=581</guid>
		<description><![CDATA[Pinpoint Five Reasons
14 November 2004
Five Reasons to chose Pinpoint Securemail
 1) Stops all email borne threats (spam, viruses, phishing attempts)
 2) Protects your enterprise on the internet level
 3) No need for any additional hardware, software or technical skills
 4) Simple MX change and your protected
 5) Free 30 day trial




Pinpoint Five Reasons


14 November 2004


Five [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Pinpoint Five Reasons</h3>
<p><em>14 November 2004</em></p>
<p>Five Reasons to chose Pinpoint Securemail<br />
 1) Stops all email borne threats (spam, viruses, phishing attempts)<br />
 2) Protects your enterprise on the internet level<br />
 3) No need for any additional hardware, software or technical skills<br />
 4) Simple MX change and your protected<br />
 5) Free 30 day trial</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="newssynopsis">Pinpoint Five Reasons</td>
</tr>
<tr>
<td class="newsdate">14 November 2004</td>
</tr>
<tr>
<td>Five Reasons to chose Pinpoint Securemail <br />
 1) Stops all email borne threats (spam, viruses, phishing attempts) <br />
 2) Protects your enterprise on the internet level <br />
 3) No need for any additional hardware, software or technical skills <br />
 4) Simple MX change and your protected <br />
 5) Free 30 day trial</td>
</tr>
</tbody>
</table>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/products/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SYNAQ: Introducing Managed Linux Services</title>
		<link>http://www.synaq.com/news-releases/synaq-introducing-managed-linux-services</link>
		<comments>http://www.synaq.com/news-releases/synaq-introducing-managed-linux-services#comments</comments>
		<pubDate>Wed, 01 Sep 2004 10:00:29 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[News Releases]]></category>

		<guid isPermaLink="false">http://wp.synaq.com/?p=576</guid>
		<description><![CDATA[Introducing SYNAQ&#8217;s Managed Linux Services
01 September 2004
A new young, dynamic and innovative company has officially opened its doors with a unique new offering, Managed Linux Services.
With over 8 years of in-depth Linux and Open Source Software experience, SYNAQ aims to provide companies with the power and flexibility that Linux has proved to bring to enterprises [...]]]></description>
			<content:encoded><![CDATA[<h3 class="synaq_orange">Introducing SYNAQ&#8217;s Managed Linux Services</h3>
<p><em>01 September 2004</em></p>
<p>A new young, dynamic and innovative company has officially opened its doors with a unique new offering, Managed Linux Services.</p>
<p><span id="more-576"></span>With over 8 years of in-depth Linux and Open Source Software experience, SYNAQ aims to provide companies with the power and flexibility that Linux has proved to bring to enterprises while ensuring that all maintanence and support is effectively and efficiently handled using our unique, customer centric, Managed Linux Services approach. SYNAQ&#8217;s new offices are located in the business hub of Johannesburg on Grayston Drive in Sandton.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.synaq.com/news-releases/synaq-introducing-managed-linux-services/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.synaq.com/feed ) in 4.13706 seconds, on Sep 8th, 2010 at 1:35 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Sep 8th, 2010 at 2:35 pm UTC -->