<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title />
	
	<link>http://graymattertech.com</link>
	<description />
	<pubDate>Fri, 12 Jun 2009 16:59:59 +0000</pubDate>
	
	<language>en</language>
	
		<copyright>All content is copyright</copyright>
		<itunes:author>Bob O'Haver</itunes:author>
		<itunes:summary>Tips and Info. as a weekly radio show from Great Barrington MA. "Computer Therapy" talks about how to live Green in a rural setting and work anywhere. Telecommuting, VIOP, SEM, Etc</itunes:summary>
		<itunes:explicit>no</itunes:explicit>
		<itunes:block>No</itunes:block>
		
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/graymattertech" /><feedburner:info uri="graymattertech" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><media:copyright>All content is copyright</media:copyright><media:thumbnail url="http://computertherapyonline.com/CT/ct.xml" /><media:keywords>SEM,talk,technology,internet,kids,business,ecommerce,web,content,gagets,SEO,computer,repair</media:keywords><media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">Technology/Podcasting</media:category><itunes:owner><itunes:email>bob@graymattertech.com</itunes:email><itunes:name>Bob O'Haver</itunes:name></itunes:owner><itunes:image href="http://computertherapyonline.com/CT/ct.xml" /><itunes:keywords>SEM,talk,technology,internet,kids,business,ecommerce,web,content,gagets,SEO,computer,repair</itunes:keywords><itunes:subtitle>Computer Therapy - Making Technology Make Sense</itunes:subtitle><itunes:category text="Technology"><itunes:category text="Podcasting" /></itunes:category><item>
		<title>Graymatter Tech Tip:  301 Redirect in Apache</title>
		<link>http://feedproxy.google.com/~r/graymattertech/~3/5wsiaQSc4R4/</link>
		<comments>http://graymattertech.com/2008/07/301-redirect-in-apache/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 01:42:42 +0000</pubDate>
		<dc:creator>bob@graymattertech.com (Bob O'Haver)</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://graymattertech.com/70/301-redirect-in-apache/</guid>
		<description><![CDATA[Apache Redirects Overview

You redirect an old or out dated page to another location. There are two ways of doing this:&#160; a permanent command (301) or temporary command (302). (...)]]></description>
			<content:encoded><![CDATA[<h1>Apache Redirects Overview</h1>

<p>You redirect an old or out dated page to another location. There are two ways of doing this:&nbsp; a permanent command (301) or temporary command (302).</p>

<p>There is some information you need to get together:</p>

<p>&nbsp;</p>

<p>
<li>Two resources - one old page or website, and a new page     or website.</li>
<li>When someone goes to your old page they will be redirected by the server to go to the new page.</li>
<li>while this is happening the server tells the brower that this is a permanent or temporary state.<span id="more-70"></span></li>
</p>

<p>Controlling the &quot;status&quot; argument in the redirect directive (which  sets whether it&#039;s a 301 or 302) in Apache is only available in version 1.2  and above, use version 2 or above for maximum stability, security and usefulness.</p>

<h3>Mod_Rewrite and the Apache Redirect</h3>

<p>If you have the mod_rewrite extension installed (it comes with most Apache  installs as a default) you can use it to dynamically change URL&#039;s using  arguments on the fly - this is NOT a 301 redirect, but rather it&#039;s related  behavior. For example, if you wanted to redirect <i>.htm</i> files from an old  server to their equivalent <i>.php</i> files on a new one using a 301 redirect,  you would use a combination of mod_rewrite and the redirect directive to do the  redirection + URL change.</p>

<p>You could do it on a file by file basis by making a really long list of possible  redirects in the .htaccess file by hand without mod_rewrite, but that would be a  real pain on a server with a lot of files, or a completely dynamic system.  Therefore these 2 functions are often used together.</p>

<h3>Syntax for a 301 Redirect</h3>

<p>The syntax for the redirect directive is:</p>

<p class="code">Redirect /olddirectory      http://www.newdomain.com/newdirectory</p>

<p>If the client requests <i>http://myserver/service/test.txt</i>, it will be  told to access <i>http://www.yourdomain.com/service/test.txt</i> instead.</p>

<p><strong>Note:</strong> Redirect directives take precedence over Alias and  ScriptAlias directives, irrespective of their ordering in the configuration  file. Also, <em>URL-path</em> must be a fully qualified URL, not a relative  path, even when used with .htaccess files or inside of &lt;Directory&gt; sections.  If you use the redirect without the status argument, it will return a status  code of 302 by default. This default behaviour has given me problems over the  years as an SEO, so it&#039;s important to remember to use it, like this:</p>

<p class="code">Redirect permanent /one http://www.newdomain.com/two</p>

<p>or</p>

<p class="code">Redirect 301 /two http://www.newdomain.com/other</p>

<p>Both of which will return the 301 status code. If you wanted to return a 302 you  could either not specify anything, or use &quot;302&quot; or &quot;temp&quot; as the status argument  above.  You can also use 2 other directives - RedirectPermanent <em>URL-path URL </em> (returns a 301 and works the same as Redirect permanent /URL PathURL) and  RedirectTemp <em>URL-path URL </em>(same, but for a 302 status)<em>.</em></p>

<p><em style="font-style: normal;">For more global changes, you would use  redirectMatch, with the same syntax:</em></p>

<p class="code">RedirectMatch 301 ^(.*)$ http://www.newdomain.com</p>

<p><b>or</b></p>

<p>RedirectMatch permanent ^(.*)$ http://www.newdomain.com  These arguments will match any file requested at the old account, change the  domain, and redirect it to the file of the same name at the new account.  You would use these directives in either the .htaccess file or the httpd file.  It&#039;s most common to do it in the .htaccess file because it&#039;s the easiest and  doesn&#039;t require a restart, but the httpd method has less overhead and works  fine, as well.</p>

<h2>Simple Domain 301 Redirect Checklist</h2>

<p>This assumes you just have a new domain (with no working pages under it) and  want it to redirect properly to your main domain.</p>

<p><b>1.</b> Ensure that you have 2 accounts - the old site and the new site (they  do not have to be on different IP&#039;s or different machines).  <b>2.</b> Your main (proper or canonical) site should be pointed at the new site  using DNS. All your other domains should be pointed at the old site using DNS.  Parking them there is fine at this point.</p>

<p><b>3.</b> Find the .htaccess file at the root of your old account. Yes, it  starts with a &quot;.&quot; We will be working with this file. The new site does not need  any changes made to it - the old site does all the redirection work.</p>

<p><b>4.</b> Download the .htaccess file and open it in a text only editor.</p>

<p><b>5a.</b> Add this code:</p>

<p class="code">Redirect 301 / http://www.newdomain.com/</p>

<p><b>6.</b> Then upload the file to your root folder and test your new redirect.  Make you you also check it using a HTTP Header viewer just to be sure it shows  as a 301.</p>

<h3>Control Panel Method</h3>

<h4>cPanel redirect</h4>

<ul>
    <li>Log into your cPanel, and look for &quot;Redirects&quot; under Site Management</li>
    <li>Put in the current directory into the first box</li>
    <li>Put the new directory in the second box</li>
    <li>Choose the type (temporary or permanent) temporary=302 and permanent=301</li>
    <li>Click &quot;Add&quot; and you&#039;re done</li>
</ul>

<p>You can only do 302 redirects (or frame forwarding - bad!) using the <b>Plesk</b>  control panel - use .htaccess for 301&#039;s instead.</p>

<p>If you use <b>Ensim</b>, the only way to redirect is by using the .htaccess file  (no control panel option at this time).</p>

<h2>Basic Old Website to New Website Redirection</h2>

<p>This is used when you have an existing website (with pages) and want to move it  to a new domain, while keeping all your page names and the links to them.</p>

<p><b>1.</b> Ensure that you have 2 websites - the old site and the new site, and  that they are on different accounts (they do not have to be on different IP&#039;s or  different machines).</p>

<p><b>2.</b> Your main (proper or canonical) site should be pointed at the new site  using DNS. All your old domains should be pointed at the old site using DNS.</p>

<p><b>3.</b> Find the .htaccess file at the root of your old account. Yes, it  starts with a &quot;.&quot;&nbsp; We will be working with this file. The new site does not  need any changes made to it - the old site does all the redirection work.</p>

<p><b>4.</b> Download the .htaccess file and open it in a text only editor.</p>

<p><b>5a.</b> If you have mod_rewrite installed, add this code:</p>

<p class="code">Options +FollowSymLinks   RewriteEngine on   RewriteCond %{HTTP_HOST} !^newdomain\.com   RewriteRule ^(.*)$ http://www.newdomain.com/$1 [R=301,L]</p>

<p><b>5b.</b> If you don&#039;t have mod_rewrite installed, you really should. If you  can&#039;t install it, then you can use this code instead:</p>

<p class="code">RedirectMatch 301 ^(.*)$ http://www.newdomain.com</p>

<p><b>6.</b> Then upload the file to your root folder and test your new redirect.  Make you you also check it using a HTTP Header viewer just to be sure it shows  as a 301.</p>

<hr />

<h2>FrontPage on Apache</h2>

<p align="left">After you&#039;ve done the basic Apache 301 redirection described in  this article, <font color="#000000" class="mo">you will also need to change the  .htaccess files in:&nbsp;&nbsp;</font></p>

<p class="code">_vti_bin  _vti_bin /_vti_adm  _vti_bin/ _vti_aut</p>

<p>Replace &quot;Options None&quot; to &quot;Options +FollowSymLinks&quot;&nbsp;</p>

<p>Those folders are part of your FrontPage extensions on the server, so you  will have to use FTP to get to them, since FrontPage hides these folders by  default to prevent them from accidentally being messed with by novice users.</p>

<h2>More Complicated Redirects</h2>

<p>You can&#039;t use a control panel in Apache currently for these - .htaccess only.</p>

<h3>Redirecting everything to a single page</h3>

<p>This is common when you are totally changing the new website from the old and  you just want all your links and requests form the old site to be directed to a  spot on your new site (usually the home page). You actually need to do it on a  page by page basis.</p>

<p class="code">Redirect 301 /oldfile1.htm http://www.newdomain.com  Redirect 301 /oldfile2.htm http://www.newdomain.com  Redirect 301 /oldfile3.htm http://www.newdomain.com</p>

<h3>Redirection while changing the filename</h3>

<p>This example will redirect all the files on the old account that end in html to  the same file on the new account, but with a php extension. You can also use  this technique within the <b>same</b> account if you want to change all your  extensions but don&#039;t want to lose your incoming links to the old pages. This is  common when people switch to from static htm files to dynamic ones while keeping  the same domain name, for example.</p>

<p>Just change the &quot;html&quot; and &quot;php&quot; parts of the below example to your specific  situation, if needed.</p>

<p class="code">RedirectMatch 301 (.*)\.html$ http://www.newdomain.com$1.php</p>

<h3>Redirection while changing the filename, but keeping the GET arguments</h3>

<p>Sometimes, you will want to change to a different CMS, but keep your database  the same, or you want to switch everything but you like the arguments and don&#039;t  want to change them.</p>

<p class="code">RedirectMatch 301 /oldcart.php(.*)  http://www.newdomain.com/newcart.php$1</p>

<p>This will result in &quot;http://www.olddomain.com/oldcart.php?Cat_ID=Blue&quot; being  redirected to &quot;http://www.newdomain.com/newcart.php?Cat_ID=Blue&quot;</p>

<h2>URL Forwarding</h2>

<p>Many ISP&#039;s and domain registrars offer a service called URL Forwarding, or  something similar. This term has no proper meaning and can mean pretty much  anything that the registrar&#039;s marketing team or tech&#039;s decide it should mean or  do. Most commonly, it&#039;s a 302 redirect. Sometimes it&#039;s a CNAME, park or even a  frame. Always check to see what type of &quot;forwarding&quot; is actually done.</p>

<p>If they don&#039;t know, consider switching to a company with more technical  skill, or asking to see a demonstration URL and then checking it with an Http  Header viewer.</p>

<h2>CNAME Record</h2>

<p>There is one other type of redirect, and that is by using the CNAME function,  which is actually an alias for one domain to another. A common example is when  someone uses CNAME to point <i>www.mcanerin.com </i>to just plain <i> mcanerin.com. </i>This apparently works just fine, and it technically tells the  visitor that mcanerin.com is the main (canonical) domain and that <i>www</i>  version is an alias.</p>

<p>In Apache, the header response for this is a 301. So yes, a CNAME can be used  as a &quot;poor man&#039;s&quot; 301 redirect. There are 2 serious problems, though. First, you  can&#039;t CNAME the &quot;origin point&quot; - the actual domain name itself - only sub  domains, like www, ftp, mail, etc.</p>

<p>The second problem is that because it&#039;s really easy to mess up CNAMES by  accidentally setting up an infinite loop, they are not really recommended unless  you know exactly what you are doing. For example, using a CNAME record will  often break your email unless you are really careful and know exactly what you  are doing. In general, avoid using CNAME.</p>

<p>The only time it&#039;s really useful is when you want to alias a sub domain under  the current domain to an external domain.</p>

<h2>Conclusion</h2>

<p>This type of redirection works great if you are using Apache and have access  to your .htaccess file. If you don&#039;t (and don&#039;t want to switch hosts) then you  will have to use redirection scripting to accomplish this. More for a later post.</p>

<p class="rightalign"><b><br />
</b></p>

<hr />

<div style="text-align: right; color: rgb(204, 204, 204); font-size: x-small;" class="flockcredit">Blogged with the <a title="Flock Browser" target="_new" style="color: rgb(153, 153, 153); font-weight: bold;" href="http://www.flock.com/blogged-with-flock" class="external">Flock Browser</a></div>

<!-- technorati tags begin -->

<p style="font-size: 10px; text-align: right;">Tags: <a rel="tag" href="http://technorati.com/tag/301" class="external" target="_blank">301</a>, <a rel="tag" href="http://technorati.com/tag/302" class="external" target="_blank">302</a>, <a rel="tag" href="http://technorati.com/tag/%20redirects" class="external" target="_blank"> redirects</a></p>

<!-- technorati tags end -->
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/graymattertech?a=5wsiaQSc4R4:A-X2MOk_mCA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=5wsiaQSc4R4:A-X2MOk_mCA:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=5wsiaQSc4R4:A-X2MOk_mCA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=5wsiaQSc4R4:A-X2MOk_mCA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=5wsiaQSc4R4:A-X2MOk_mCA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=5wsiaQSc4R4:A-X2MOk_mCA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=5wsiaQSc4R4:A-X2MOk_mCA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=5wsiaQSc4R4:A-X2MOk_mCA:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/graymattertech/~4/5wsiaQSc4R4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://graymattertech.com/2008/07/301-redirect-in-apache/feed/</wfw:commentRss>
	
	<feedburner:origLink>http://graymattertech.com/2008/07/301-redirect-in-apache/</feedburner:origLink></item>
		<item>
		<title>Graymatter Tech Tip:  Install Quicktime player on your computer.</title>
		<link>http://feedproxy.google.com/~r/graymattertech/~3/LK8Z9Y9HdFs/</link>
		<comments>http://graymattertech.com/2007/05/install-quicktime/#comments</comments>
		<pubDate>Tue, 08 May 2007 10:47:50 +0000</pubDate>
		<dc:creator>bob@graymattertech.com (Bob O'Haver)</dc:creator>
		
		<category><![CDATA[How Do I?]]></category>

		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://graymattertech.com/?p=57</guid>
		<description><![CDATA[Install Instructions for Mac OS 


    Go to the QuickTime download page (opens in a new window)
    Select your operating system, Macintosh is selected by default
    You do not need to fill out the form fields, click the Download QuickTime button
    You should now have the QuickTime installer on your desktop, or default download location
    Double click the installer to run through it, selecting Recommended if it is not already selected
    
        When asked for a registration name, organization and number leave these fields blank and continue
    
    
        You will be asked to restart, once you restart you are ready to use QuickTime 7! (...)]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://www.apple.com/quicktime/download/" class="external"><img width="88" height="31" border="0" alt="" src="http://www.berkshirefilm.com/pcdb/media/qt.gif" /></a></p>

<p><font face="Verdana, Arial, Helvetica, sans-serif" class="heading">Install Instructions for Mac OS </font></p>

<ol class="body">
    <li>Go to the QuickTime <a target="_blank" href="http://www.apple.com/quicktime/download/" class="external">download page</a> (opens in a new window)</li>
    <li>Select your operating system, Macintosh is selected by default</li>
    <li>You do not need to fill out the form fields, click the Download QuickTime button</li>
    <li>You should now have the QuickTime installer on your desktop, or default download location</li>
    <li>Double click the installer to run through it, selecting <strong>Recommended</strong> if it is not already selected
    <ul>
        <li>When asked for a registration name, organization and number leave these fields blank and continue</li>
    </ul>
    <ul>
        <li>You will be asked to restart, once you restart you are ready to use QuickTime 7!</li>
    </ul>
    </li>
</ol>

<p><font face="Verdana, Arial, Helvetica, sans-serif" class="heading">Install Instructions for Windows</font></p>

<ol class="body">
    <li>Go to the QuickTime <a target="_blank" href="http://www.apple.com/quicktime/download/" class="external">download page</a> (opens in a new window)</li>
    <li>Select your operating system, Windows is selected by default</li>
    <li>You do not need to fill out the form fields, click the Download QuickTime button</li>
    <li>On the next page click the Get QuickTime button
    <ul>
        <li>This page is also used to verify if QuickTime is on your computer</li>
    </ul>
    </li>
    <li>When asked were to save the installer, select Desktop for convenience</li>
    <li>You should now have the QuickTime installer on your desktop</li>
    <li>Double click the installer to run through it, selecting <strong>Recommended</strong> if it is not already selected
    <ul>
        <li>When asked for a registration name, organization and number leave these fields blank and continue</li>
        <li>Leave the default installation locations the way they are</li>
    </ul>
    <ul>
        <li>You will be asked to restart, once you restart you are ready to use QuickTime 7</li>
    </ul>
    <p>&nbsp;</p>
    </li>
</ol>

<p>&nbsp;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/graymattertech?a=LK8Z9Y9HdFs:foec7aDpYUM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=LK8Z9Y9HdFs:foec7aDpYUM:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=LK8Z9Y9HdFs:foec7aDpYUM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=LK8Z9Y9HdFs:foec7aDpYUM:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=LK8Z9Y9HdFs:foec7aDpYUM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=LK8Z9Y9HdFs:foec7aDpYUM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=LK8Z9Y9HdFs:foec7aDpYUM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=LK8Z9Y9HdFs:foec7aDpYUM:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/graymattertech/~4/LK8Z9Y9HdFs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://graymattertech.com/2007/05/install-quicktime/feed/</wfw:commentRss>
	
	<feedburner:origLink>http://graymattertech.com/2007/05/install-quicktime/</feedburner:origLink></item>
		<item>
		<title>Graymatter Tech Tips:  Email Deliverability</title>
		<link>http://feedproxy.google.com/~r/graymattertech/~3/toMWeDkl7vQ/</link>
		<comments>http://graymattertech.com/2007/04/email-deliverability-tips/#comments</comments>
		<pubDate>Wed, 11 Apr 2007 15:06:21 +0000</pubDate>
		<dc:creator>bob@graymattertech.com (Bob O'Haver)</dc:creator>
		
		<category><![CDATA[Email Marketing]]></category>

		<category><![CDATA[How Do I?]]></category>

		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://graymattertech.com/?p=56</guid>
		<description><![CDATA[[by: Tom Kulzer] 

Ensuring requested opt-in email is delivered to subscriber inboxes is an increasingly difficult battle in the age of spam filtering. (...)]]></description>
			<content:encoded><![CDATA[<p>[by: Tom Kulzer] <br />
<br />
Ensuring requested opt-in email is delivered to subscriber inboxes is an increasingly difficult battle in the age of spam filtering. Open and click thru response rates can be dramatically affected by as much as 20-30% due to incorrect spam filter classification.</p>

<h2>Permission</h2>

<p>Confirming that the people who ask for your information have actually requested to be on your list is the number one step in the battle for deliverability. You should be using a process called confirmed opt-in or verified opt-in to send a unique link to the attempted subscriber when they request information. Before adding the person to your list they must click that unique link verifying that they are indeed the same person that owns the email address and requested to subscribe.</p>

<h2>Subscriber Addresses</h2>

<p>When requesting website visitors to opt-in ask for their &quot;real&quot; or &quot;primary&quot; email address instead of a free email address like Yahoo or Hotmail. Free emails tend to be throw away accounts and typically have a shorter lifetime than a primary ISP address.</p>

<h2>List Maintenance</h2>

<p>Always promptly remove undeliverable addresses that bounce when sending email to them. An address that bounces with a permanent error 2-3 times in a 30 day period should be removed from the list. ISP&#039;s track what percentage of your newsletters bounce and will block them if you attempt to continually deliver messages to closed subscriber mailboxes.</p>

<h2>Message Format</h2>

<p>Usage of HTML messages to allow for text formatting, multiple columns, images, and brand recognition is growing in popularity and is widely supported by most email client software. Most spam is also HTML formatted and thus differentiating between requested email and spam HTML messages can be difficult. A 2004 study by AWeber .com shows that plain text messages are undeliverable 1.15% of the time and HTML only messages were undeliverable 2.3%. If sending HTML it is important to always send a plain text alternative message, also called text/HTML multi-part mime format.</p>

<h2>Content</h2>

<p>Many ISP&#039;s filter based on the content that appears within the message text.</p>

<ul><strong>Website URL:</strong><br />
    Research potential newsletter advertisers before allowing them to place ads in your newsletter issues. If they have used their website URL to send spam, just having their URL appear in your newsletter could cause the entire message to be filtered. <br />
    <br />
    <strong>Words/phrases:</strong><br />
    Choose your language carefully when crafting messages. Avoid hot button topics often found in spam such as medication, mortgages, making money, and pornography. If you do need to use words that might be filtered, don&#039;t attempt to obfuscate words with extra characters or odd spelling, you&#039;ll just make your messages appear more spam like. <br />
    <br />
    <strong>Images:</strong><br />
    Avoid creating messages that are entirely images. Use images sparingly, if at all. Commonly used open rate tracking technology uses images to calculate opens. You may choose to disable open rate tracking to avoid being filtered based on image content. <br />
    <br />
    <strong>Attachments:</strong><br />
    With viruses running rampant and spreading thru the usage of malicious email attachments many users are wary of attached documents. It&#039;s often better to link to files via a website URL to reduce recipient fear of attachments and reduce the overall message size. </ul>

<pre><code>&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;CAN-SPAM Compliance&lt;/h2&gt;
&lt;p&gt;The January 2004 Federal CAN-SPAM law introduced a number of rules regarding the delivery of email. It's important you have your legal counsel review your practices and ensure you are in compliance. The two most important rules include having a valid postal mail address listed in all commercial messages and a working unsubscribe link that is promptly honored to remove the subscriber from future messages.&lt;/p&gt;
&lt;h2&gt;Reputation&lt;/h2&gt;
&lt;p&gt;Reputation services are often used by large ISP's as a way to vet email senders regarding their email practices and policies. Businesses listed with these services are then given less stringent filtering or no filtering at all. Several reputation services are:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;http://www.isipp.com/iadb.php&lt;/li&gt;
    &lt;li&gt;http://www.bondedsender.com&lt;/li&gt;
    &lt;li&gt;http://www.habeas.com&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Relationships &amp;amp; Whitelisting&lt;/h2&gt;
&lt;p&gt;Contact with major ISP's and email providers is essential in letting them know about your requested subscriber email. Many large providers such as AOL and Yahoo have specific whitelisting programs and postmaster website areas to ensure your email is delivered as long as you meet their policies and procedures in handling your opt-in list. &lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.deliverymonitor.com/"&gt;Email deliverability&lt;/a&gt; is about ensuring requested opt-in email is delivered to the intended recipient. While no single tip will enable you to get 100% of your email delivered each one utilized as a group can go a long way to reaching that goal. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Tom Kulzer, CEO and Founder of Newtown, PA based AWeber Communications, Inc. an opt-in email service provider. With 7 years managing opt-in follow up and newsletters for small businesses, email deliverability is an integral part of day to day operations. Learn more about &lt;a href="http://www.aweber.com/?220679" onclick="exit=false"&gt;AWeber email marketing&lt;/a&gt; and &lt;a href="http://www.deliverymonitor.com/"&gt;email deliverability tracking&lt;/a&gt; at &lt;a href="http://www.deliverymonitor.com/"&gt;DeliveryMonitor.com&lt;/a&gt;&lt;/p&gt;
</code></pre>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/graymattertech?a=toMWeDkl7vQ:vYqE6XeoViM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=toMWeDkl7vQ:vYqE6XeoViM:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=toMWeDkl7vQ:vYqE6XeoViM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=toMWeDkl7vQ:vYqE6XeoViM:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=toMWeDkl7vQ:vYqE6XeoViM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=toMWeDkl7vQ:vYqE6XeoViM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=toMWeDkl7vQ:vYqE6XeoViM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=toMWeDkl7vQ:vYqE6XeoViM:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/graymattertech/~4/toMWeDkl7vQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://graymattertech.com/2007/04/email-deliverability-tips/feed/</wfw:commentRss>
	
	<feedburner:origLink>http://graymattertech.com/2007/04/email-deliverability-tips/</feedburner:origLink></item>
		<item>
		<title>Putting The "Service" Back In "Customer Service"</title>
		<link>http://feedproxy.google.com/~r/graymattertech/~3/nsvsXkBTXMQ/</link>
		<comments>http://graymattertech.com/2007/04/putting-the-service-back-in-customer-service/#comments</comments>
		<pubDate>Wed, 11 Apr 2007 14:17:36 +0000</pubDate>
		<dc:creator>bob@graymattertech.com (Bob O'Haver)</dc:creator>
		
		<category><![CDATA[E-Commerce]]></category>

		<category><![CDATA[Email Marketing]]></category>

		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://graymattertech.com/?p=55</guid>
		<description><![CDATA[By Sean Cohen

The future of customer service is here.  Technology has made seeking  out support faster and easier than ever. (...)]]></description>
			<content:encoded><![CDATA[<h2>By Sean Cohen</h2>

<p>The future of customer service is here.  Technology has made seeking  out support faster and easier than ever.  But, has your digital age  company sacrificed true service in the name of automation?   <br />
<br />
Today, finding customer support is as simple as writing an e-mail  or picking up the phone.  But, even though you&#039;re not face-to-face  with your customers, you still leave a lasting impression.  Do you  come across as caring and competent, or menacing and mechanical? <br />
<br />
Offering stand-out service on the Internet isn&#039;t as hard as it  is <em>rare</em>.  Take these simple steps towards old-style service in  the digital age:</p>

<ul><a href="http://www.aweber.com/article-cs.htm#pers" class="external" target="_blank">Give Each Customer a Personal Response</a><br />
    <a href="http://www.aweber.com/article-cs.htm#clear" class="external" target="_blank">Be Clear, But Sincere</a><br />
    <a href="http://www.aweber.com/article-cs.htm#live" class="external" target="_blank">Offer Live Customer Support</a><br />
    <a href="http://www.aweber.com/article-cs.htm#all" class="external" target="_blank">Make Sure Your Support Reps Have All the Answers</a><br />
</ul>

<p><a name="pers"></a></p>

<h3>Give Each Customer a Personal Response</h3>

<ul> When a customer sits down to e-mail your company, it&#039;s because he  needs help.  He chooses e-mail because it&#039;s quick, but his request  still warrants a satisfying and personal response!   <br />
    <br />
    Companies eager to save time and money often take automation too far  in their customer support.  Each customer has a unique question, and  deserves a unique answer.  Even if you save time by copying and  pasting stock replies, change the opening and closing to make the  message sound less robotic.   <br />
    <br />
</ul>

<p><a name="clear"></a></p>

<h3>Be Clear, But Sincere</h3>

<ul> When responding to customers&#039; e-mail, be sincere and to the point.   Before sending a message, try turning the tables.  Ask yourself,  &quot;Would this answer satisfy <em>me</em> if I were the customer?&quot;   <br />
    <br />
    Take that extra moment to give your customer the help he  deserves.  It might mean the difference between a satisfied customer  and a credit card chargeback! <br />
    <br />
</ul>

<p><a name="live"></a></p>

<h3>Offer Live Customer Support</h3>

<ul> E-mail has become an acceptable form of communication.  But, live  customer support is still necessary.  The plethora of information  available online can be overwhelming to customers, especially those  new to the Internet! <br />
    <br />
    Single your company out from the crowd by providing customers with  a real person to talk to.  Live phone support is an invaluable way  to foster trust.  When your customer has reached the end of his  Internet rope, and just needs <em>help</em>, your toll free number is the  answer he&#039;s looking for. <br />
    <br />
</ul>

<p><a name="all"></a></p>

<h3>Make Sure Your Support Reps Have All The Answers</h3>

<ul> The presence of phone support will do no good if your staff doesn&#039;t  know your product!  Customer support reps should be warm and friendly,  and willing to help with any aspect of your product.   <br />
    <br />
    What a good feeling it is to talk to someone who feels confident in  his product.  It&#039;s even better if he&#039;s knowledgeable enough to solve  your problem without transferring you all around the company! <br />
    <br />
</ul>

<h3>Provide Stand-Out Service; Gain Lifelong Customers</h3>

<ul> Too many e-businesses skimp on customer service, hiding behind  web sites and message boards.  Customer support is an integral  part of <em>every</em> company, even those operating solely online.  Be  one of the few to offer stellar service, and gain customers for life! <br />
    <br />
</ul>

<p>Customer Service is becoming a lost art, but Sean Cohen wants to make sure that never  happens at AWeber Communications!  <a onclick="exit=false" href="http://www.aweber.com/?220679" class="external" target="_blank">Find out what service is meant to be.</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/graymattertech?a=nsvsXkBTXMQ:wf08jhOHgDw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=nsvsXkBTXMQ:wf08jhOHgDw:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=nsvsXkBTXMQ:wf08jhOHgDw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=nsvsXkBTXMQ:wf08jhOHgDw:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=nsvsXkBTXMQ:wf08jhOHgDw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=nsvsXkBTXMQ:wf08jhOHgDw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=nsvsXkBTXMQ:wf08jhOHgDw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=nsvsXkBTXMQ:wf08jhOHgDw:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/graymattertech/~4/nsvsXkBTXMQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://graymattertech.com/2007/04/putting-the-service-back-in-customer-service/feed/</wfw:commentRss>
	
	<feedburner:origLink>http://graymattertech.com/2007/04/putting-the-service-back-in-customer-service/</feedburner:origLink></item>
		<item>
		<title>Graymatter Tech Tip:  How to set up your Mac Mail</title>
		<link>http://feedproxy.google.com/~r/graymattertech/~3/Om2Y-fQrZDg/</link>
		<comments>http://graymattertech.com/2007/02/how-to-set-up-your-mac-mail/#comments</comments>
		<pubDate>Fri, 02 Feb 2007 01:48:08 +0000</pubDate>
		<dc:creator>bob@graymattertech.com (Bob O'Haver)</dc:creator>
		
		<category><![CDATA[How Do I?]]></category>

		<category><![CDATA[MAC Issues]]></category>

		<guid isPermaLink="false">http://graymattertech.com/?p=44</guid>
		<description><![CDATA[This is a reprint of the Apple support pages all of the links on this page bring you to Apple support.
Thank you Apple Inc.


It&#039;s easy to set up and begin using Mac OS X&#039;s Mail application. (...)]]></description>
			<content:encoded><![CDATA[<p><br />
This is a reprint of the Apple support pages all of the links on this page bring you to Apple support.<br />
Thank you Apple Inc.<br />
<br />
<br />
It&#039;s easy to set up and begin using Mac OS X&#039;s Mail application.</p>

<p><strong>Tip</strong>: If you entered your email account information when you registered Mac OS X, you don&#039;t need to set up Mail again.<br />
<br />
<strong>How to set up Mail</strong><br />
</p>

<p><strong>Tip:</strong> For Mac OS X 10.4 or later setup information, see <a href="http://docs.info.apple.com/article.html?path=Mail/2.0/en/ml89.html" class="external" target="_blank">this page</a>, and also <a href="http://docs.info.apple.com/article.html?path=Mail/2.0/en/ml807.html" class="external" target="_blank">this one</a>.</p>

<p>First, gather some information about your email account. Your Internet service provider or network administrator provides the information:</p>

<ul>
    <li>Type of email account you have (IMAP, POP, or UNIX) </li>
    <li>Your email address </li>
    <li>Your account password</li>
    <li>Mail server (&quot;host&quot;) name or names</li>
    <li>SMTP password (if required)</li>
</ul>

<p><br />
<strong>Tip: </strong>Some Internet service providers may use one mail server for incoming and outgoing mail. Others may use two servers. If only one server is used, use the same server name twice where it is required by Mail. Examples of names would be &quot;pop-mail.apple.com&quot; and &quot;smtp-mail.apple.com&quot;. <br />
<br />
Next, follow these steps to configure Mail:</p>

<ol>
    <li>Open Mail.</li>
    <li>Choose <strong>Preferences </strong>from the <strong>Mail </strong>menu. If you have not yet set up any accounts, the Mail Setup window appears, and you can skip to Step 7.</li>
    <li>Click the Accounts icon in the Mail Preferences window. </li>
    <li>Click Create Account.</li>
    <li>Choose the correct account type from the pop-up menu.</li>
    <li>In the Description field, type any name you would like to use to identify the account. This is the name that will appear in your list of accounts. </li>
    <li>Using the rest of the information you gathered, complete the rest of the fields. If your Internet provider gave you an SMTP password, be sure to click the checkbox to enable the &quot;Use authentication when sending mail&quot; option. If your Internet service provider does not require this, simply leave the two fields below the checkbox empty.</li>
    <li>If desired, click the Account Options tabs to change the default account behavior.</li>
    <li>Click OK when you are finished.</li>
</ol>

<p><br />
Repeat these steps for any other accounts you want to set up.<br />
<br />
If you&#039;ve set things up but can&#039;t seem to get or send email, you might need to contact your ISP for assistance, or visit any online help or support websites they offer. <br />
<br />
<strong>How to delete an account</strong><br />
<br />
<strong>Tip</strong>: Before deleting an account, save any messages you don&#039;t want to erase in a different location, such as the desktop or the On My Mac mailbox. If you are switching from a POP account to an IMAP account, set up the IMAP account first, then drag messages you want to save from the POP mailbox(es) to the IMAP mailbox(es), before deleting the POP account.</p>

<ol>
    <li>Choose <strong>Preferences </strong>from the <strong>Mail </strong>menu.</li>
    <li>Click Accounts.</li>
    <li>Select the account you want to delete.</li>
    <li>Click Remove.</li>
</ol>

<p><br />
<strong>How to import messages and addresses</strong><br />
<br />
You can import mail from <a href="http://www.info.apple.com/kbnum/n61459" class="external" target="_blank"><u>another Mac email application</u></a>, from a <a href="http://www.info.apple.com/kbnum/n106778" class="external" target="_blank"><u>Windows PC</u></a> or other computer, and your contacts into <a href="http://www.info.apple.com/kbnum/n25330" class="external" target="_blank"><u>Address Book</u></a>.<br />
<br />
<strong>How to set up Mail for .Mac email</strong><br />
<br />
If you&#039;ve got a .Mac (pronounced &quot;dot Mac&quot;) account, you can easily use Mail to <a href="http://www.info.apple.com/kbnum/n75109" class="external" target="_blank"><u>send and receive messages</u></a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/graymattertech?a=Om2Y-fQrZDg:CSEU8lfW048:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=Om2Y-fQrZDg:CSEU8lfW048:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=Om2Y-fQrZDg:CSEU8lfW048:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=Om2Y-fQrZDg:CSEU8lfW048:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=Om2Y-fQrZDg:CSEU8lfW048:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=Om2Y-fQrZDg:CSEU8lfW048:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=Om2Y-fQrZDg:CSEU8lfW048:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=Om2Y-fQrZDg:CSEU8lfW048:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/graymattertech/~4/Om2Y-fQrZDg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://graymattertech.com/2007/02/how-to-set-up-your-mac-mail/feed/</wfw:commentRss>
	
	<feedburner:origLink>http://graymattertech.com/2007/02/how-to-set-up-your-mac-mail/</feedburner:origLink></item>
		<item>
		<title>How Do I Set Up Outlook 2003</title>
		<link>http://feedproxy.google.com/~r/graymattertech/~3/dNFRjIdEJ0Y/</link>
		<comments>http://graymattertech.com/2007/02/how-do-i-set-up-outlook-2003/#comments</comments>
		<pubDate>Fri, 02 Feb 2007 00:48:04 +0000</pubDate>
		<dc:creator>bob@graymattertech.com (Bob O'Haver)</dc:creator>
		
		<category><![CDATA[How Do I?]]></category>

		<guid isPermaLink="false">http://graymattertech.com/?p=42</guid>
		<description><![CDATA[This tutorial shows you how to set up Microsoft Outlook to work with your e-mail account. (...)]]></description>
			<content:encoded><![CDATA[<p>This tutorial shows you how to set up Microsoft Outlook to work with your e-mail account. This tutorial focuses on setting up Microsoft Outlook 2003, but these settings are similar in other versions of Microsoft Outlook. You can set up previous versions of Microsoft Outlook by using the settings in this tutorial.</p>

<h4>To Set Up Your E-mail Account in Microsoft Outlook&nbsp;</h4>

<h4>&nbsp;1. In Microsoft Outlook, select Tools &gt; E-mail Accounts.     <img width="473" height="369" src="/UserFiles/Image/o1.png" /></h4>

<p>2. On the E-mail Accounts wizard window, select &quot;Add a new e-mail account&quot; and click Next.</p>

<p><img width="474" height="370" src="/UserFiles/Image/o2.png" /><br />
</p>

<p>3. For your server type, select &quot;POP3&quot; and click Next.</p>

<p>&nbsp;<img width="471" height="367" src="/UserFiles/Image/o3.png" /></p>

<ol>
<li>On the Internet E-mail Settings (POP3) window, enter your information as follows:</li>
</ol>

<ol>     <dl><dt>Your Name</dt><dd>Enter your first and last name.</dd><dt>E-mail Address</dt><dd>Enter your e-mail address.</dd><dt>User Name</dt><dd>Enter your e-mail address, again.</dd><dt>Password</dt><dd>Enter the password you set up for your e-mail account.</dd><dt>Incoming mail server (POP3)</dt><dd>Your incoming server is mail.<em>mydomain.com</em>, where &quot;mydomain.com&quot; is the name of your domain.</dd><dt>Outgoing mail server (SMTP)</dt><dd>Enter smtpout.secureserver.net or mail.mydomain.com for your outgoing mail server.&nbsp; Make sure you look at the email I have sent you to determine which outgoing server you need to enter.<br />
    </dd></dl>
    <p>Click &quot;More Settings.&quot; </p>
    <p class="note"><strong>NOTE:</strong> if you are using &quot;smtpout.secureserver.net&quot; it is an SMTP relay server. In order to use this server to send e-mails, you must first activate SMTP relay on your e-mail account. Log on to your Manage Email Accounts page to set up SMTP relay. If you do not have SMTP relay set up and your Internet Service Provider (ISP) allows it, you can use the outgoing mail server for your Internet Service Provider. Contact your Internet Service Provider to get this setting.</p>
    <p class="note"><strong>NOTE: </strong>if you are useing mail.mydomian.com see instructions below.<br />
    </p>
    <p align="left" class="note"><img width="488" height="380" src="/UserFiles/Image/o5.png" />     </p>
</ol>

<ol>
<li>On the Internet E-mail Settings window, select the &quot;Outgoing Server&quot; tab. <br />
&nbsp;&nbsp;&nbsp; Select &quot;My outgoing server (SMTP) requires authentication.&quot;<br />
&nbsp;&nbsp;&nbsp; If you did not change the SMTP relay section, select &quot;Use same settings as my incoming mail server&quot;. If you changed the user name and &nbsp;&nbsp;&nbsp; password in the SMTP relay section of your Manage Email Accounts page, select &quot;Log on using&quot; and enter the user name and &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; password. The following example assumes you did not change your SMTP relay section in your Manage Email Accounts page. <br />
<img src="/UserFiles/Image/o6.png" />     6. Select the &quot;Advanced&quot; tab and change the &quot;Outgoing server (SMTP)&quot; port to 80 or 3535. <br />
<img src="/UserFiles/Image/o7.png" /><br /></li>
<li>Click Next. <br />
<img width="474" height="369" src="/UserFiles/Image/o4.png" />     <br /></li>
<li>Click Finish. <br /></li>
<li>Click OK. <br />
<img width="476" height="373" src="/UserFiles/Image/o8.png" /></li>
</ol>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/graymattertech?a=dNFRjIdEJ0Y:TYTiPOtBPqk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=dNFRjIdEJ0Y:TYTiPOtBPqk:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=dNFRjIdEJ0Y:TYTiPOtBPqk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=dNFRjIdEJ0Y:TYTiPOtBPqk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=dNFRjIdEJ0Y:TYTiPOtBPqk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=dNFRjIdEJ0Y:TYTiPOtBPqk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=dNFRjIdEJ0Y:TYTiPOtBPqk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=dNFRjIdEJ0Y:TYTiPOtBPqk:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/graymattertech/~4/dNFRjIdEJ0Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://graymattertech.com/2007/02/how-do-i-set-up-outlook-2003/feed/</wfw:commentRss>
	
	<feedburner:origLink>http://graymattertech.com/2007/02/how-do-i-set-up-outlook-2003/</feedburner:origLink></item>
		<item>
		<title>How to Set Up Outlook Express</title>
		<link>http://feedproxy.google.com/~r/graymattertech/~3/ZEmOApk_zoQ/</link>
		<comments>http://graymattertech.com/2007/02/how-to-set-up-outlook-express/#comments</comments>
		<pubDate>Fri, 02 Feb 2007 00:24:57 +0000</pubDate>
		<dc:creator>bob@graymattertech.com (Bob O'Haver)</dc:creator>
		
		<category><![CDATA[How Do I?]]></category>

		<guid isPermaLink="false">http://graymattertech.com/?p=41</guid>
		<description><![CDATA[Before you can use Outlook Express to send and receive e-mail, you need to set up an account. (...)]]></description>
			<content:encoded><![CDATA[<p>Before you can use Outlook Express to send and receive e-mail, you need to set up an account. You can have more than one account&mdash;for business, online shopping, and so on&mdash;and each person who uses your computer may have their own, completely separate account. Outlook Express gracefully handles it all.<a name="EEB"></a> </p>

<h2>Start Outlook Express</h2>

<p>There are many ways to start Outlook Express, but here&#039;s a sure-fire way to find and start it.</p>

<table cellspacing="0" cellpadding="0" border="0" class="numberedList">
    <tbody>
        <tr valign="top">
            <td nowrap="nowrap" align="right" class="listNumber">
            <p>1.</p>
            </td>
            <td>
            <p>Click the <strong>Start</strong> button. </p>
            </td>
        </tr>
        <tr valign="top">
            <td nowrap="nowrap" align="right" class="listNumber">
            <p>2.</p>
            </td>
            <td>
            <p>Point to <strong>All Programs</strong>. </p>
            </td>
        </tr>
        <tr valign="top">
            <td nowrap="nowrap" align="right" class="listNumber">
            <p>3.</p>
            </td>
            <td>
            <p>Click <strong>Outlook Express</strong>.</p>
            <p>These first three steps are shown in the image below: </p>
            <div style="width: 335px;"><img width="327" height="192" border="0" alt="Opening Outlook Express from the Start menu" src="/UserFiles/Image/OE4.jpg" /><br />
            <p class="figureCaption">              Opening Outlook Express from the Start menu              </p>
            </div>
            </td>
        </tr>
        <tr valign="top">
            <td nowrap="nowrap" align="right" class="listNumber">
            <p>4.</p>
            </td>
            <td>
            <p>If asked whether you&#039;d like to open this particular account automatically every time you start Outlook Express, click <strong>Yes</strong> (if you do) or <strong>No</strong> (if you don&#039;t).</p>
            <p>If you don&#039;t want to be asked this question again, click to check the <strong>Always perform this check&#8230;</strong> box. </p>
            </td>
        </tr>
        <tr valign="top">
            <td nowrap="nowrap" align="right" class="listNumber">
            <p>5.</p>
            </td>
            <td>
            <p>Check <strong>When Outlook Express starts, go directly to my Inbox</strong>.</p>
            <p>Outlook Express directs all incoming mail to the Inbox, so it makes sense to bypass this opening page.</p>
            <p>If you don&#039;t see the list of folders and contacts on the left, click <strong>Layout</strong> on the <strong>View</strong> menu. Click <strong>Contacts</strong> and <strong>Folder List</strong> to check them, and then click <strong>OK</strong>. </p>
            <div style="width: 285px;"><img width="285" height="250" border="0" alt="Outlook Express list of folders" src="/UserFiles/Image/OE5.jpg" /><br />
            <p class="figureCaption">               Outlook Express list of folders              </p>
            </div>
            <p><strong>Quick</strong>&nbsp;<strong>start</strong>. You&#039;ll notice that when you use Outlook Express regularly, Windows XP will put the Outlook Express icon on the Start menu (along with other programs you&#039;ve used recently). In that case, just click the <strong>Outlook</strong>&nbsp;<strong>Express</strong> icon in the <strong>Start</strong> menu to open the program.</p>
            </td>
        </tr>
    </tbody>
</table>

<div style="margin-top: 3px; margin-bottom: 10px;"><a href="http://www.microsoft.com/windows/ie/ie6/using/howto/oe/setup.mspx#top" class="external" target="_blank"><img width="7" height="9" border="0" alt="Top of page" src="http://www.microsoft.com/library/gallery/templates/MNP2.Common/images/arrow_px_up.gif" /></a><a href="http://www.microsoft.com/windows/ie/ie6/using/howto/oe/setup.mspx#top" class="topOfPage external" target="_blank"></a></div>

<p><a name="E6D"></a></p>

<h2>Set Up an Outlook Express E-Mail Account</h2>

<p>The Internet Connection Wizard makes short work of setting up your online mailbox by walking you through each step for every e-mail account you set up.</p>

<table cellspacing="0" cellpadding="0" border="0" class="numberedList">
    <tbody>
        <tr valign="top">
            <td nowrap="nowrap" align="right" class="listNumber">
            <p>1.</p>
            </td>
            <td>
            <p>Before you get going, make sure you know your email address along with the following information. (You may need to contact your ISP, Internet Service Provider, to get it.)</p>
            <p><strong>First, information about the e-mail servers: </strong></p>
            <table cellspacing="0" cellpadding="0" border="0">
                <tbody>
                    <tr>
                        <td valign="top" class="listBullet">&bull;</td>
                        <td class="listItem">
                        <p>The type of e-mail server you use: POP3 (most e-mail accounts), HTTP (such as Hotmail), or IMAP </p>
                        </td>
                    </tr>
                    <tr>
                        <td valign="top" class="listBullet">&bull;</td>
                        <td class="listItem">
                        <p>The name of the incoming e-mail server </p>
                        </td>
                    </tr>
                    <tr>
                        <td valign="top" class="listBullet">&bull;</td>
                        <td class="listItem">
                        <p>For POP3 and IMAP servers, the name of the outgoing e-mail server (generally SMTP) </p>
                        </td>
                    </tr>
                </tbody>
            </table>
            <p><strong>Second, information about your account: </strong></p>
            <table cellspacing="0" cellpadding="0" border="0">
                <tbody>
                    <tr>
                        <td valign="top" class="listBullet">&bull;</td>
                        <td class="listItem">
                        <p>Your account name and password</p>
                        <p>(For some solid advice about making a secure password, read the <a href="http://www.microsoft.com/athome/security/privacy/password.mspx" class="external" target="_blank">Create strong passwords</a> article.) </p>
                        </td>
                    </tr>
                    <tr>
                        <td valign="top" class="listBullet">&bull;</td>
                        <td class="listItem">
                        <p>Find out if your ISP requires you to use Secure Password Authentication (SPA) to access your e-mail account&mdash;yes or no is all that&#039;s required. </p>
                        </td>
                    </tr>
                </tbody>
            </table>
            </td>
        </tr>
        <tr valign="top">
            <td nowrap="nowrap" align="right" class="listNumber">
            <p>2.</p>
            </td>
            <td>
            <p>Start Outlook Express, and on the <strong>Tools</strong> menu, click <strong>Accounts</strong>.</p>
            <p>If the Internet Connection Wizard starts up automatically, skip ahead to step 4. </p>
            </td>
        </tr>
        <tr valign="top">
            <td nowrap="nowrap" align="right" class="listNumber">
            <p>3.</p>
            </td>
            <td>
            <p>Click <strong>Add</strong>, and then click <strong>Mail</strong> to open the Internet Connection Wizard. </p>
            <div style="width: 300px;"><img width="300" height="170" border="0" alt="Mail option from the Add button" src="/UserFiles/Image/OE1.jpg" /><br />
            <p class="figureCaption">               Mail option from the Add button              </p>
            </div>
            </td>
        </tr>
        <tr valign="top">
            <td nowrap="nowrap" align="right" class="listNumber">
            <p>4.</p>
            </td>
            <td>
            <p>On the <strong>Your Name</strong> page of the wizard, type your name as you want it to appear to everyone who gets e-mail from you, and then click <strong>Next</strong>.</p>
            <p>Most people use their full name, but you can use any name&mdash;even a nickname&mdash;that people will recognize. </p>
            </td>
        </tr>
        <tr valign="top">
            <td nowrap="nowrap" align="right" class="listNumber">
            <p>5.</p>
            </td>
            <td>
            <p>On the <strong>Internet Explorer Address</strong> page, type your e-mail address, and then click <strong>Next</strong>. </p>
            </td>
        </tr>
        <tr valign="top">
            <td nowrap="nowrap" align="right" class="listNumber">
            <p>6.</p>
            </td>
            <td>
            <p>On the <strong>E-mail Server Names</strong> page, fill in the first block of information that you gathered from your ISP in step 1, and then click <strong>Next</strong>. </p>
            <div style="width: 304px;"><img width="304" height="250" border="0" alt="Internet Connection Wizard's E-mail Server Names" src="/UserFiles/Image/OE3.jpg" /><br />
            <p class="figureCaption">               Internet Connection Wizard&#039;s E-mail Server Names              </p>
            </div>
            <p><strong>Note:</strong> If you chose HTTP as your incoming e-mail server&mdash;as for a Hotmail or MSN account&mdash;this wizard page changes slightly so you can identify your HTTP mail service provider. </p>
            </td>
        </tr>
        <tr valign="top">
            <td nowrap="nowrap" align="right" class="listNumber">
            <p>7.</p>
            </td>
            <td>
            <p>On the <strong>Internet Mail Logon</strong> page, type your account name and password. </p>
            <div style="width: 326px;"><img width="326" height="250" border="0" alt="Internet Connection Wizard's Internet Mail Logon" src="/UserFiles/Image/OE2.jpg" /><br />
            <p class="figureCaption">               Internet Connection Wizard&#039;s Internet Mail Logon              </p>
            </div>
            <p><strong>Note:</strong> If you&#039;re concerned about break-ins to your e-mail, click to clear the check in the <strong>Remember Password</strong> box. You&#039;ll then be prompted for the password each time you send or retrieve mail. </p>
            </td>
        </tr>
        <tr valign="top">
            <td nowrap="nowrap" align="right" class="listNumber">
            <p>8.</p>
            </td>
            <td>
            <p>Click <strong>Next</strong>, and then click <strong>Finish</strong>.</p>
            <p>You&#039;re ready to send your first e-mail! </p>
            <p><strong>Unsure if your new e-mail account is working?</strong> Send an e-mail message to a friend. If they get the message, your account is ready to roll! But if you run into problems setting up your account, Outlook Express offers help. Search for troubleshooting topics from <strong>Contents and Index </strong>on the <strong>Help</strong> menu.</p>
            </td>
        </tr>
    </tbody>
</table>

<div style="margin-top: 3px; margin-bottom: 10px;"><a href="http://www.microsoft.com/windows/ie/ie6/using/howto/oe/setup.mspx#top" class="external" target="_blank"><br />
</a><a href="http://www.microsoft.com/windows/ie/ie6/using/howto/oe/setup.mspx#top" class="topOfPage external" target="_blank"></a></div>

<p><a name="EGAAC"></a></p>

<h2>Set Up a Web-based E-Mail Account</h2>

<p>The e-mail that you get in a Hotmail account and other Web-based accounts is not stored on your hard disk, but is kept on the account-provider&#039;s computer. That&#039;s what makes it possible to access your account from any computer in the world over the Internet. Here&#039;s how you set yourself up.</p>

<table cellspacing="0" cellpadding="0" border="0" class="numberedList">
    <tbody>
        <tr valign="top">
            <td nowrap="nowrap" align="right" class="listNumber">
            <p>1.</p>
            </td>
            <td>
            <p>Go to the Web site and follow the setup instructions&mdash;for example, <a href="http://www.hotmail.com/" class="external" target="_blank">http://www.hotmail.com/</a> for Hotmail. </p>
            </td>
        </tr>
        <tr valign="top">
            <td nowrap="nowrap" align="right" class="listNumber">
            <p>2.</p>
            </td>
            <td>
            <p>Set up Outlook Express to use the account, by following the instructions above in Set up an Outlook Express e-mail account. </p>
            <p><strong>If you share your computer with someone else</strong>, take advantage of Fast User Switching. A feature of Windows XP, it lives up to its name by enabling you to switch among users on a single computer without closing any programs you are running or logging off.</p>
            <table cellspacing="0" cellpadding="0" border="0">
                <tbody>
                    <tr>
                        <td valign="top" class="listBullet">&bull;</td>
                        <td class="listItem">
                        <p>To turn Fast User Switching on, open <strong>User Accounts</strong> in Control Panel. Click <strong>Change the way users log on or off</strong>. Make sure the <strong>Use Fast User Switching</strong> box is checked. </p>
                        </td>
                    </tr>
                    <tr>
                        <td valign="top" class="listBullet">&bull;</td>
                        <td class="listItem">
                        <p>Then, to switch users, click <strong>Start</strong>, click <strong>Log off</strong> and then click <strong>Switch User</strong>. On the Welcome screen, click the user account you want to switch to. That&#039;s it! </p>
                        </td>
                    </tr>
                </tbody>
            </table>
            </td>
        </tr>
    </tbody>
</table>

<div style="margin-top: 3px; margin-bottom: 10px;"><a href="http://www.microsoft.com/windows/ie/ie6/using/howto/oe/setup.mspx#top" class="external" target="_blank"><br />
</a><a href="http://www.microsoft.com/windows/ie/ie6/using/howto/oe/setup.mspx#top" class="topOfPage external" target="_blank"></a></div>

<p><a name="EUBAC"></a></p>

<h2>Close Outlook Express</h2>

<p>In closing, Outlook Express works just as all other Windows programs do. </p>

<table cellspacing="0" cellpadding="0" border="0">
    <tbody>
        <tr>
            <td valign="top" class="listBullet">&bull;</td>
            <td class="listItem">
            <p>On the <strong>File</strong> menu, click <strong>Exit</strong>. </p>
            <p><strong>Tip:</strong> For a fast way out, press ALT+F4.</p>
            </td>
        </tr>
    </tbody>
</table>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/graymattertech?a=ZEmOApk_zoQ:MAi2aW6bEOI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=ZEmOApk_zoQ:MAi2aW6bEOI:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=ZEmOApk_zoQ:MAi2aW6bEOI:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=ZEmOApk_zoQ:MAi2aW6bEOI:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=ZEmOApk_zoQ:MAi2aW6bEOI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=ZEmOApk_zoQ:MAi2aW6bEOI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=ZEmOApk_zoQ:MAi2aW6bEOI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=ZEmOApk_zoQ:MAi2aW6bEOI:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/graymattertech/~4/ZEmOApk_zoQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://graymattertech.com/2007/02/how-to-set-up-outlook-express/feed/</wfw:commentRss>
	
	<feedburner:origLink>http://graymattertech.com/2007/02/how-to-set-up-outlook-express/</feedburner:origLink></item>
		<item>
		<title>How do I designs Websites</title>
		<link>http://feedproxy.google.com/~r/graymattertech/~3/KuVgh_7s7wM/</link>
		<comments>http://graymattertech.com/2006/05/how-are-web-sites-created/#comments</comments>
		<pubDate>Sat, 13 May 2006 01:03:50 +0000</pubDate>
		<dc:creator>bob@graymattertech.com (Bob O'Haver)</dc:creator>
		
		<category><![CDATA[How Do I?]]></category>

		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://graymattertech.com/?p=29</guid>
		<description><![CDATA[The normal process for creating a web site is to call a designer and then: 

1. They create a design as a picture and you look at it, they make the changes that you want and you approve it. (...)]]></description>
			<content:encoded><![CDATA[<p>The normal process for creating a web site is to call a designer and then: </p>

<p>1. They create a design as a picture and you look at it, they make the changes that you want and you approve it. This process takes 1 to 2 weeks. </p>

<p>2. Then you go to work creating all of the content for the site and sending it to the designer.  This process takes anywhere from 1 to 4 weeks. </p>

<p>3. The designer is busy creating pages and adding your content.  This is generally the same 1 to 4 weeks as above. </p>

<p>4. The designer is sending you links to a test site so you can watch the process. </p>

<p>5. A few times in the process you call the designer and let them know that you had a thought.  This can add 1 to 4 weeks to the process. </p>

<p>6. Now it is 6 to 8 week later.  Your site is done and ready to launch.  The money had been spent and the designer says they are done.  But you have one more change in the content.  Designer says find but there will be a charge to make the change. It is that point that you realize that you need this designer or some designer to change the content on your website and you will have to pay, and pay, and pay.  </p>

<p>Ask Bob how you will now have to pay every time.  We can help you create sites that look great and you can change any time you want. Just by clicking on a link and start typing.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/graymattertech?a=KuVgh_7s7wM:-Xc4PbLOAq8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=KuVgh_7s7wM:-Xc4PbLOAq8:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=KuVgh_7s7wM:-Xc4PbLOAq8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=KuVgh_7s7wM:-Xc4PbLOAq8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=KuVgh_7s7wM:-Xc4PbLOAq8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=KuVgh_7s7wM:-Xc4PbLOAq8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=KuVgh_7s7wM:-Xc4PbLOAq8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=KuVgh_7s7wM:-Xc4PbLOAq8:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/graymattertech/~4/KuVgh_7s7wM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://graymattertech.com/2006/05/how-are-web-sites-created/feed/</wfw:commentRss>
	
	<feedburner:origLink>http://graymattertech.com/2006/05/how-are-web-sites-created/</feedburner:origLink></item>
		<item>
		<title>Websites that work for all of us.</title>
		<link>http://feedproxy.google.com/~r/graymattertech/~3/jtrPJ3VKCdw/</link>
		<comments>http://graymattertech.com/2006/05/websites-that-work-for-all-of-us/#comments</comments>
		<pubDate>Thu, 04 May 2006 23:41:24 +0000</pubDate>
		<dc:creator>bob@graymattertech.com (Bob O'Haver)</dc:creator>
		
		<category><![CDATA[Computer Therapy]]></category>

		<category><![CDATA[How Do I?]]></category>

		<guid isPermaLink="false">http://graymattertech.com/?p=25</guid>
		<description><![CDATA[Blogging is everywhere and what is that blogging thing? It is many, many people have a lot of time on there hands to write them and read them. (...)]]></description>
			<content:encoded><![CDATA[<p>Blogging is everywhere and what is that blogging thing? It is many, many people have a lot of time on there hands to write them and read them.  The software that is behind the blog is what you should be looking at.  Wordpress is the biggest creator of blogs in the world.  So thats what we are going to talk about.  There is better blogging software, but Wordpress is the one.  Don&#039;t get me wrong everyone of my blogs are on wordpress. That is the program I teach. Another good reason to talk about Wordpress as a CMS (Content Management System).  There are a few themes that try to create a CMS.  When they get it, people will have the power to update their own sites and not have to pay a high price.  Ask me how.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/graymattertech?a=jtrPJ3VKCdw:icbl6gY4rVQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=jtrPJ3VKCdw:icbl6gY4rVQ:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=jtrPJ3VKCdw:icbl6gY4rVQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=jtrPJ3VKCdw:icbl6gY4rVQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=jtrPJ3VKCdw:icbl6gY4rVQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=jtrPJ3VKCdw:icbl6gY4rVQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=jtrPJ3VKCdw:icbl6gY4rVQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=jtrPJ3VKCdw:icbl6gY4rVQ:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/graymattertech/~4/jtrPJ3VKCdw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://graymattertech.com/2006/05/websites-that-work-for-all-of-us/feed/</wfw:commentRss>
	
	<feedburner:origLink>http://graymattertech.com/2006/05/websites-that-work-for-all-of-us/</feedburner:origLink></item>
		<item>
		<title>Lecture to the Berkshire Chamber on Blogging, Websites and Collaboration</title>
		<link>http://feedproxy.google.com/~r/graymattertech/~3/nIom8BovkpE/</link>
		<comments>http://graymattertech.com/2006/04/lecture-to-the-chamber-on-blogging-websites-and-collaboration/#comments</comments>
		<pubDate>Fri, 21 Apr 2006 00:40:26 +0000</pubDate>
		<dc:creator>bob@graymattertech.com (Bob O'Haver)</dc:creator>
		
		<category><![CDATA[Berkshire Hills MA]]></category>

		<category><![CDATA[Local Chambers]]></category>

		<category><![CDATA[Tech &amp; Society]]></category>

		<guid isPermaLink="false">http://graymattertech.com/?p=23</guid>
		<description><![CDATA[Today we will cover.


    Blogs
    Websites
    Collaboration Tools


Goals For Today


    Gain a cursory understanding of current technologies. (...)]]></description>
			<content:encoded><![CDATA[<p><strong>Today we will cover.</strong></p>

<ul>
    <li>Blogs</li>
    <li>Websites</li>
    <li>Collaboration Tools</li>
</ul>

<p><strong>Goals For Today</strong></p>

<ul>
    <li>Gain a cursory understanding of current technologies.</li>
    <li>Begin formulating an idea of how these technologies can improve your business.</li>
</ul>

<p><strong>Introduction</strong></p>

<ul>
    <li>There are over 100,000 blogs worldwide. Google indexes 4.3 billion distinct web pages. More than 100 Internet collaboration tools are currently on the market. In this discussion we will review the use of these technologies to effectively build your business, increase website traffic and online purchases, and provide better customer service.</li>
</ul>

<p><strong>Blogs and Blogging</strong></p>

<ul>
    <li>What are Blogs?</li>
    <li>If I want to look at blogs where can I go?</li>
</ul>

<ul>
    <li>Bloglines.com</li>
    <li>Blogger.com</li>
    <li>Do a Google search.</li>
</ul>

<ul>
    <li>What are they used for?</li>
</ul>

<ul>
    <li>Dairies</li>
    <li>Customer Relations tool.  FAQs</li>
    <li>Build community on my website.</li>
    <li>Audio and Video Podcasts</li>
</ul>

<p><li>Why are there so many?</p>

<ul>
    <li>100 million worldwide 35 million in the US</li>
</ul>

<p></li>
<li>How do I get one?</p>

<ul>
    <li>Create one on your site.</li>
    <li>Is it part of your hosting package?</li>
    <li>What types of blogs are there?</li>
    <li>Do I have to update my blog everyday?</li>
</ul>

<ul>
    <li>Can I use it to make money?</li>
</ul>

<p></li></p>

<ul>
    <li>Google Adsense</li>
</ul>

<ul>
    <li>Yahoo! Publisher</li>
</ul>

<p><strong>Website</strong></p>

<ul>
    <li>Do I need a website?</li>
    <li>What types of websites are there?</li>
    <li>Can I use my Blog as my website?</li>
    <li>Do I need to have both a website and a blog?</li>
    <li>How much does it cost to have one?</li>
</ul>

<ul>
    <li>Hosting Costs?</li>
</ul>

<ul>
    <li>Domain Costs?</li>
</ul>

<ul>
    <li>Design Costs?</li>
</ul>

<ul>
    <li>How do I get people to go to my website?</li>
</ul>

<ul>
    <li>Search Engine Optimization.</li>
</ul>

<ul>
    <li>Search Engine Marketing.</li>
</ul>

<p><li>Why should I change (update) my website?</li>
<li>What is dynamic content?</li>
<li>How often should I change my website?</li>
<li>How much of my website should change?</li>
<li>Should I sell products on the web?</li>
<li>What is POS (Point-Of-Sale) software?</li>
<strong>Collaboration Tools</strong></p>

<ul>
    <li>Until recently Collaboration tools were used exclusively by wealthy corporations and individuals.</li>
</ul>

<ul>
    <li>What Are Collaboration Tools?</li>
</ul>

<ul>
    <li>VoIP</li>
    <li>Video Conferencing</li>
    <li>Shared Desktop</li>
    <li>Shared Disk</li>
    <li>Whiteboard</li>
</ul>

<ul>
    <li>What is the cost range?</li>
</ul>

<ul>
    <li>$15 to $100 monthly</li>
</ul>

<ul>
    <li>Where do I find them?</li>
</ul>

<ul>
    <li>Do a web search.</li>
    <li>Talk to someone who has tested these tools.</li>
    <li>Call Verizon Business or look on Microsoft&rsquo;s site.</li>
</ul>

<ul>
    <li>Why would I use them?</li>
    <li>Situations that call for long distance or &lsquo;virtual&rsquo; working environments such as:</li>
</ul>

<ul>
    <li>Meetings or Presentations</li>
    <li>Day to day collaboration with a client or co-worker</li>
    <li>Training</li>
</ul>

<p><strong>Recap</strong></p>

<ul>
    <li>Do I need a Blog?</li>
    <li>What would I use it for?</li>
    <li>Could I use it to sell product on the web?</li>
    <li>I have a website now what do I want out of it?</li>
    <li>Could I do more work with less traveling/ driving by using collaboration tools?</li>
</ul>

<p><strong> O&rsquo;Haver + Company For further information call: Bob O&rsquo;Haver <a title="Mail to Bob" target="_blank" href="mailto:bob@ohaver.net"> Bob@ohaverco.com</a> <span fn_index="0" info="Call +14135286386;0;+14135286386;0;" onmouseup="SetCallButtonPressed(this, 0,0)" onmousedown="SetCallButtonPressed(this, 1,0)" onmouseover="SetCallButton(this, 1,0);skype_active=CheckCallButton(this);" onmouseout="SetCallButton(this, 0,0);HideSkypeMenu();" context="413 528-6386" rtl="false" class="skype_tb_injection" id="__skype_highlight_id"><span title="Change country code ..." onclick="javascript:if(1){doRunCMD(event, 'chdial','0');}else{doRunCMD(event, 'call','+14135286386');}event.preventBubble();return false;" onmouseout="SetCallButtonPart(this, 0);" onmouseover="SetCallButtonPart(this, 1);" class="skype_tb_injection_left" id="__skype_highlight_id_left"><span style="background-image: url(chrome://skype_ff_toolbar_win/content/cb_normal_l.gif);" class="skype_tb_injection_left_img" id="__skype_highlight_id_left_adge"><img height="11" src="chrome://skype_ff_toolbar_win/content/cb_transparent_l.gif" style="height: 11px; width: 7px;" class="skype_tb_img_adge" /></span><span class="skype_tb_injection_left_img" id="__skype_highlight_id_left_img"><img style="width: 16px;" src="chrome://skype_ff_toolbar_win/content/famfamfam/us.gif" title="" class="skype_tb_img_flag" name="skype_tb_img_f0" /><img width="1" height="1" src="chrome://skype_ff_toolbar_win/content/space.gif" style="margin: 0px; padding: 0px; height: 1px; width: 1px;" class="skype_tb_img_space" /><img width="1" height="1" src="chrome://skype_ff_toolbar_win/content/space.gif" style="margin: 0px; padding: 0px; height: 1px; width: 1px;" class="skype_tb_img_space" /><img src="chrome://skype_ff_toolbar_win/content/arrow.gif" title="" class="skype_tb_img_arrow" name="skype_tb_img_a0" /><img width="1" height="1" src="chrome://skype_ff_toolbar_win/content/space.gif" style="margin: 0px; padding: 0px; height: 1px; width: 1px;" class="skype_tb_img_space" /><img width="1" height="1" src="chrome://skype_ff_toolbar_win/content/space.gif" style="margin: 0px; padding: 0px; height: 1px; width: 1px;" class="skype_tb_img_space" /></span></span><img width="1" height="1" src="chrome://skype_ff_toolbar_win/content/space.gif" style="margin: 0px; padding: 0px; height: 1px; width: 1px;" class="skype_tb_img_space" /><span title="Call this phone number in United States of America with Skype: +14135286386" onclick="javascript:doRunCMD(event, 'call','+14135286386');event.preventBubble();return false;" onmouseout="SetCallButtonPart(this, 0)" onmouseover="SetCallButtonPart(this, 1)" class="skype_tb_injection_right" id="__skype_highlight_id_right"><span class="skype_tb_innerText" id="__skype_highlight_id_innerText"><img width="1" height="1" src="chrome://skype_ff_toolbar_win/content/space.gif" style="margin: 0px; padding: 0px; height: 1px; width: 1px;" class="skype_tb_img_space" /><img width="1" height="1" src="chrome://skype_ff_toolbar_win/content/space.gif" style="margin: 0px; padding: 0px; height: 1px; width: 1px;" class="skype_tb_img_space" /><img width="1" height="1" src="chrome://skype_ff_toolbar_win/content/space.gif" style="margin: 0px; padding: 0px; height: 1px; width: 1px;" class="skype_tb_img_space" /><img width="1" height="1" src="chrome://skype_ff_toolbar_win/content/space.gif" style="margin: 0px; padding: 0px; height: 1px; width: 1px;" class="skype_tb_img_space" />413 528-6386</span><span style="background-image: url(chrome://skype_ff_toolbar_win/content/cb_normal_r.gif);" class="skype_tb_injection_left_img" id="__skype_highlight_id_right_adge"><img height="11" src="chrome://skype_ff_toolbar_win/content/cb_transparent_r.gif" style="height: 11px; width: 19px;" class="skype_tb_img_adge" /></span></span></span></strong> http://ohaverco.com This outline will be posted on my blog.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/graymattertech?a=nIom8BovkpE:d9Mlg1Wjfxk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=nIom8BovkpE:d9Mlg1Wjfxk:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/graymattertech?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=nIom8BovkpE:d9Mlg1Wjfxk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=nIom8BovkpE:d9Mlg1Wjfxk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=nIom8BovkpE:d9Mlg1Wjfxk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=nIom8BovkpE:d9Mlg1Wjfxk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/graymattertech?a=nIom8BovkpE:d9Mlg1Wjfxk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/graymattertech?i=nIom8BovkpE:d9Mlg1Wjfxk:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/graymattertech/~4/nIom8BovkpE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://graymattertech.com/2006/04/lecture-to-the-chamber-on-blogging-websites-and-collaboration/feed/</wfw:commentRss>
	
	<feedburner:origLink>http://graymattertech.com/2006/04/lecture-to-the-chamber-on-blogging-websites-and-collaboration/</feedburner:origLink></item>
	<media:credit role="author">Bob O'Haver</media:credit><media:rating>nonadult</media:rating><media:description type="plain">Computer Therapy - Making Technology Make Sense</media:description></channel>
</rss>
