<?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>Office of Information Technology Blog &#187; Email</title>
	<atom:link href="http://blog.oit.wvu.edu/category/email/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.oit.wvu.edu</link>
	<description>OIT’s technology blog for WVU faculty, staff and students</description>
	<lastBuildDate>Fri, 20 Nov 2009 20:25:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Automating the gMigrate Program</title>
		<link>http://blog.oit.wvu.edu/2009/08/04/automating-the-gmigrate-program/</link>
		<comments>http://blog.oit.wvu.edu/2009/08/04/automating-the-gmigrate-program/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 15:21:43 +0000</pubDate>
		<dc:creator>Roman Olynyk</dc:creator>
				<category><![CDATA[Calendars]]></category>
		<category><![CDATA[Groupwise]]></category>
		<category><![CDATA[How-To]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=1287</guid>
		<description><![CDATA[A technique to automate the GroupWise calendar migration program, gMigrate]]></description>
			<content:encoded><![CDATA[<p>Back in April 2009, I wrote about <a href="http://blog.oit.wvu.edu/2009/04/07/gmigrate/">Getting Your GroupWise Calendar on an iPod Touch (a penny-pincher’s solution)</a>. This trick lets you use a free program called gMigrate to migrate your GroupWise calendar over to Google Sync (Beta), which in turn synchronizes your calendar with your iPhone or Touch. This synchronization process is entirely manual, however. You have to run gMigrate whenever you update your GroupWise calendar and want to have that information to appear on your iPhone. Well, that&#8217;s not entirely true any more. With a little bit of Windows tweaking, I can show you how to automate this process.</p>
<p>In a nutshell, we are going to use a freeware scripting language called AutoIt to run the gMigrate program for us, and then we are going to use the <a href="http://blog.oit.wvu.edu/2009/08/04/creating-a-scheduled-task-in-windows">Windows Scheduled Tasks utility</a> to automatically run the script.</p>
<h2>AutoIt</h2>
<p><a href="http://www.autoitscript.com/autoit3/">AutoIt</a> is a freeware scripting language, which can be used to automate the Windows graphical user interface. It will work on Windows 2000, XP, 2003, Vista, and Windows Server 2008. One of AutoIt&#8217;s cool features is a Windows Info monitor, which you use to determine the ID numbers of command buttons. Once you know those IDs you can write an AutoIt script that will execute a program and interact with it by clicking specific command buttons. In addition, you can also complile the script into an executable file.</p>
<p>The download page for AutoIt is here: <a href="http://www.autoitscript.com/autoit3/downloads.shtml">http://www.autoitscript.com/autoit3/downloads.shtml</a>.</p>
<p>Assuming that you have already configured your gMigrate with your GroupWise and GMail account information, here is a simple script that will run gMigrate and click the appropriate command buttons:</p>
<blockquote><p>; gMigrate Automation by Roman Olynyk, 8/4/2009<br />
Run ( &#8220;C:\Program Files\gMigrate\CompanionLink.exe&#8221;)<br />
WinWaitActive(&#8221;gMigrate&#8221;, &#8220;&#8221;, 10)<br />
ControlClick (&#8221;gMigrate&#8221;, &#8220;&#8221;, &#8220;[ID: 1881]&#8220;)<br />
WinWaitActive ( &#8220;gMigrate&#8221;, &#8220;Completed Synchronization&#8221;, 20)<br />
ControlClick (&#8221;gMigrate&#8221;, &#8220;&#8221;, &#8220;[ID: 2]&#8220;)<br />
ControlClick (&#8221;gMigrate&#8221;, &#8220;&#8221;, &#8220;[ID: 1]&#8220;)</p></blockquote>
<p>I saved my script with the name &#8220;automigrate.AU3.&#8221; Here&#8217;s what this script does:</p>
<ol>
<li>Comments begin with semi-colons</li>
<li>The Run command needs the exact path. In this script I am using the default installation path for gMigrate. If your path is different, change it here.</li>
<li>The WinWaitActive command will wait for up to 10 seconds for the dialog box titled &#8220;gMigrate&#8221; to appear.</li>
<li>Once the dialog box appears, simulate a mouse click to the &#8221; Migrate&#8221; command button (ID 1881).</li>
<li>After clicking, wait for up to 20 seconds for the message &#8220;Completed Synchronization&#8221; to appear.</li>
<li>When &#8220;Completed Synchronization&#8221; dialog appears, click the OK button (ID 2).</li>
<li>Finally, clicking the OK button (ID 1) on the gMigrate dialog causes that program to close.</li>
</ol>
<p>That&#8217;s it. This is a bare-bones script. A more careful programmer can add proper error handling routines to allow for instances where the gMigrate program might fail. Also, this script will run as a foreground task, as I have not added any commands to hide its operation from the user.</p>
<p>You can test out the script by right-clicking over the AU3 file and selecting &#8220;Run Script&#8221; from the top of the menu. Once you are satisfied with the operation, you can go to the Tools menu of the SciTE4AutoIt3 program editor and run the complile command, which will convert your script into an executable file.</p>
<p>In a <a href="http://blog.oit.wvu.edu/2009/08/04/creating-a-scheduled-task-in-windows/">separate posting</a>, we&#8217;ll talk about how you can configure Scheduled Tasks in Windows to periodically run your migration script.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2009/08/04/automating-the-gmigrate-program/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating a Scheduled Task in Windows</title>
		<link>http://blog.oit.wvu.edu/2009/08/04/creating-a-scheduled-task-in-windows/</link>
		<comments>http://blog.oit.wvu.edu/2009/08/04/creating-a-scheduled-task-in-windows/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 14:54:40 +0000</pubDate>
		<dc:creator>Roman Olynyk</dc:creator>
				<category><![CDATA[Calendars]]></category>
		<category><![CDATA[Groupwise]]></category>
		<category><![CDATA[How-To]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=1272</guid>
		<description><![CDATA[The Windows Scheduled Task utility can be configured to run a script file that can migrate your GroupWise calendar to your iPhone or Touch]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.oit.wvu.edu/2009/08/04/automating-the-gmigrate-program/">Previously</a>, I showed you how you can use <strong>AutoIt</strong> to create a simple script that will click through the gMigrate program. Once you have turned your script into an executable file, you can now tell Windows to run it at certain intervals. The following instructions assume that you are using Windows XP.</p>
<ol>
<li>In the Windows XP Control Panel, select the <strong>Scheduled Tasks</strong> command.</li>
<li>With Scheduled Tasks open, double-click on the &#8220;Add Scheduled Task&#8221; icon, which should be at the top of the list of tasks.<br />
<img class="alignleft size-full wp-image-1274" src="http://blog.oit.wvu.edu/files/2009/08/scheduled_tasks.png" alt="scheduled_tasks" width="128" height="19" /></li>
<li>A Scheduled Task Wizard will appear; click <strong>Next&gt;</strong> to continue.</li>
<li>The Scheduled Task Wizard will display a list of programs from which you can select. Your automigrate program will not be in this list, so you must use the <strong>Browse</strong> command button to locate and select it.</li>
<li>Once you have selected the program, the wizard will ask you to type in a name for the task, followed by a group of radio buttons for when you would like this task performed. I chose &#8220;Daily.&#8221;<br />
<img class="alignnone size-medium wp-image-1275" src="http://blog.oit.wvu.edu/files/2009/08/automigrate_sched-300x221.png" alt="automigrate_sched" width="300" height="221" /></li>
<li>After clicking <strong>Next&gt;</strong> again, the Scheduled Task Wizard asks you to select the time and day when you would like the task to start. I&#8217;m configuring my task to run while I&#8217;m usually at work, so I chose a time in the morning after I&#8217;ve had a chance to settle in and possibly work with my calendar &#8212; say 9:30 a.m. Also, since I don&#8217;t normally work weekends, I can opt to run this task only on <strong>Weekdays</strong>.<br />
<img class="alignnone size-medium wp-image-1276" src="http://blog.oit.wvu.edu/files/2009/08/running_on_weekdays2-300x221.png" alt="running_on_weekdays2" width="300" height="221" /></li>
<li>The next dialog asks you to provide your username and password for you computer. When you have typed in that information, click the <strong>Next&gt;</strong> button.</li>
<li>The wizard will display a dialog box, which confirms when Windows will run this task. Notice that there&#8217;s a checkbox where you can &#8220;Open advanced properties for this task when I click Finish.&#8221; <strong>Select this checkbox</strong>, because it will allow you to set how often you want this task to run. As an added precaution, note that you can choose to stop the task if it is still running at the time you&#8217;ve selected.<br />
<img class="alignnone size-full wp-image-1277" src="http://blog.oit.wvu.edu/files/2009/08/confirmation_dialog.png" alt="confirmation_dialog" width="441" height="325" /></li>
<li>The Advanced Schedule Options let you set how many times a day you want the program to run.<br />
<img class="alignnone size-full wp-image-1278" src="http://blog.oit.wvu.edu/files/2009/08/advanced_schedule.png" alt="advanced_schedule" width="368" height="300" /></li>
<li>Once you click the <strong>Apply</strong> button, your scheduled task will run under the conditions that you have set for it.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2009/08/04/creating-a-scheduled-task-in-windows/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Getting Your GroupWise Calendar on an iPod Touch (a penny-pincher&#8217;s solution)</title>
		<link>http://blog.oit.wvu.edu/2009/04/07/gmigrate/</link>
		<comments>http://blog.oit.wvu.edu/2009/04/07/gmigrate/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 13:00:11 +0000</pubDate>
		<dc:creator>Roman Olynyk</dc:creator>
				<category><![CDATA[Calendars]]></category>
		<category><![CDATA[Groupwise]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod Touch]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=1041</guid>
		<description><![CDATA[Google Sync and gMigrate will let you display your GroupWise Calendar on your iPod Touch or iPhone.]]></description>
			<content:encoded><![CDATA[<p><em>A couple of months ago we posted about <a href="http://blog.oit.wvu.edu/2009/01/22/groupwise-email-on-your-iphone-or-ipod-touch/">accessing GroupWise email on an iPhone or iPod Touch</a>. At that time we did not know of a way to sync GroupWise calendars with these devices as well.  Since then we&#8217;ve found one method to do that and, though not perfect, it might be of interest to you.  It should be noted that this is</em><em> just a tip we&#8217;ve discovered and might be of use to some of you</em><em> and should be attempted at your own risk. This is not to be considered a support document. Let us know if you know of any other tips we should include on the blog for these devices.  Thanks! &#8211; Ed.</em></p>
<p>I depend upon my WVU GroupWise account to keep track of my appointments and tasks, but I’m not always at my PC.  Until recently, however, my only recourse for a portable calendar was to use <a href="http://oit.wvu.edu/training/instructions/groupwise/gwpdac701.php">PDA Connect</a> to synchronize my PalmPilot with GroupWise.</p>
<p>My latest device, an iPod Touch, appeared to support many PDA-like functions.  However, I quickly discovered that getting my GroupWise calendar onto the Touch was going to be expensive, vis-à-vis <a href="http://www.apple.com/mobileme/">Apple’s MobileMe</a> or <a href="http://www.companionlink.com/products/companionlink.html">CompanionLink</a>.  What’s a penny-pincher to do?</p>
<p>CompanionLink Software used to have a free product called <a href="http://www.companionlink.com/products/gmigrate.html">gMigrate</a>, which allowed me to port my GroupWise calendar data over to <a href="http://www.google.com/calendar/">Google Calendar</a>.  This is not a dynamic process:  I have to run gMigrate every time that I want to pass my GroupWise calendar over to Google calendar.</p>
<p>The &#8220;Eureka!&#8221; moment came when Google announced <a href="http://www.google.com/mobile/apple/sync.html">Google Sync (Beta) for the iPhone</a>.  This tool lets you synchronize the built-in calendar and contacts on an iPhone (and iPod Touch) with your Google account.  So, you can go from GroupWise to Google with gMigrate, and you can then go from Google to an iPod Touch with Google Sync.  Although this sounds rather complex, you can manage the entire process in just a few clicks – after the initial configuration, of course.</p>
<p>Ingredients:</p>
<ul>
<li>iPhone or iPod Touch</li>
<li>GroupWise account</li>
<li>Google account</li>
<li>Google Sync</li>
<li>gMigrate</li>
<li>WiFi access</li>
</ul>
<h2>Getting gMigrate</h2>
<p>Although gMigrate is no longer available directly from CompanionLink Software, you can still download it from a number of software repositories, such as <a href="http://download.cnet.com/gMigrate/3000-2064_4-10629569.html">Cnet’s download.com</a> or <a href="http://www.softpedia.com/get/Office-tools/Diary-Organizers-Calendar/gMigrate.shtml">Softpedia</a>.</p>
<p>Install gMigrate by running the executable setup launcher.  When you run gMigrate, configure it as follows:</p>
<p><img class="aligncenter size-full wp-image-1045" src="http://blog.oit.wvu.edu/files/2009/04/image001.jpg" alt="image001" width="231" height="276" /></p>
<ol>
<li>In the Email field, type in your Gmail username.</li>
<li>In the Password field, type in your Gmail password.</li>
<li>In the From field, click the selection arrow and select GroupWise 6.5.</li>
<li>Click on the Advanced button, which should display a GroupWise Login dialog:<br />
<img class="aligncenter size-full wp-image-1156" src="http://blog.oit.wvu.edu/files/2009/04/image002-gmigrate.jpg" alt="image002-gmigrate" width="356" height="269" /></p>
<ol type="a">
<li>Type in your GroupWise UserID and password</li>
<li>Click OK.</li>
</ol>
</li>
<li>Click on the Migrate button.  A CompanionLink Process dialog will indicate your progress.</li>
</ol>
<p><img class="aligncenter size-full wp-image-1043" src="http://blog.oit.wvu.edu/files/2009/04/image003.jpg" alt="image003" width="281" height="127" /></p>
<p>Successful completion is indicated by a dialog that looks like this:</p>
<p><img class="aligncenter size-full wp-image-1042" src="http://blog.oit.wvu.edu/files/2009/04/image004.jpg" alt="image004" width="207" height="127" />Google calendar should now be populated with calendar items from your GroupWise account.  Remember that you will have to run gMigrate each time that you want any changes in your GroupWise calendar to appear in Google Calendar (i.e., start gMigrate and click on the Migrate button).</p>
<h2>Getting Google Sync for iPhone</h2>
<p>Google Sync for iPhone uses the Microsoft Exchange ActiveSync protocol to synchronize the data on your iPod Touch with your Google Calendar.  It will support synchronization with up to five calendars and the contacts in your My Contacts group.</p>
<p>Setting up Google Sync is a fairly straightforward process, but you should be aware that Sync is a beta product.  In addition, the Sync setup will delete the existing contacts and calendar information on your iPhone or Touch.  Backup your data first!</p>
<p>It is not necessary for me to reproduce Google’s instructions here.  Just point your browser to <a href="http://www.google.com/support/mobile/bin/answer.py?answer=138740&amp;topic=14252">Sync: Set Up Your iPhone or iPod Touch</a>.</p>
<p>Once you’ve set up Google Sync, the synchronization should begin automatically if you have Push enabled on your device.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2009/04/07/gmigrate/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Sometimes MIME *can* be a terrible thing</title>
		<link>http://blog.oit.wvu.edu/2009/03/17/sometimes-mime-can-be-a-terrible-thing/</link>
		<comments>http://blog.oit.wvu.edu/2009/03/17/sometimes-mime-can-be-a-terrible-thing/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 17:53:55 +0000</pubDate>
		<dc:creator>Roman Olynyk</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Groupwise]]></category>
		<category><![CDATA[attachments]]></category>
		<category><![CDATA[mime]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=974</guid>
		<description><![CDATA[One little thing -- like a logo -- might double the size of your email.]]></description>
			<content:encoded><![CDATA[<p>If you are a GroupWise user, then you should continue reading this, because you could potentially reduce the size of your mail files – and those of any other GroupWise user you communicate with – by half.</p>
<div id="attachment_992" class="wp-caption alignleft" style="width: 178px"><img class="size-full wp-image-992" src="http://blog.oit.wvu.edu/files/2009/03/flyingwv2.png" alt="How can a 587-byte image like this double the size of my email?" width="168" height="149" /><p class="wp-caption-text">How can a 587-byte image like this double the size of my email?</p></div>
<p>Here’s the scenario:  you’re sending a five megabyte attachment, like a PDF, to a group of coworkers.   However, one of the people on your distribution list is “outside” of our mail.wvu.edu system – they’re at hsc.wvu.edu, for example.  The entire body of your message merely says “See attached” and includes your GroupWise signature file, which serves as your electronic business card.  Being the proud Mountaineer, your signature even sports a little 587-byte “flying WV” logo.</p>
<p>You send your mail, but a few seconds later a message comes back from Mailer-Daemon informing you that your message is undeliverable – “Message size exceeds fixed limit.”</p>
<p>“Now wait a minute!” you say.  “The PDF attachment was only 5mb, and the file size limit is supposed to be 10mb.  What gives?”</p>
<p>Would you believe that the 587-byte graphic in the body of your message has caused your mail file to double in size?</p>
<p>Normally, GroupWise would have treated the tiny graphic in the body of your message as part of a rich text message.  However, as soon as GroupWise determined that one of your email recipients was outside of our mail system, it wrapped the entire message, attachment and all, into a MIME.822 “envelope” and added that to the overall email package.  It did this so that any unknown mail client on the internet would be able to make sense of your message.</p>
<p>The only way to prevent this from happening is to avoid putting a graphic (or any other binary) in the body of your message when you are sending to an outside user.</p>
<p>This is not just a cautionary tale about how to exceed a 10mb size limit with a 5mb attachment.  Think about it:  each time that you send an email with a MIME.822 attachment you are doubling the size of an item in your Sent Items folder.  You are also doubling the size of the email that everyone else on your distribution list receives from you!  Sometimes MIME can be a terrible waste.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2009/03/17/sometimes-mime-can-be-a-terrible-thing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mandatory 10-Digit Dialing Starts Saturday!</title>
		<link>http://blog.oit.wvu.edu/2009/02/26/mandatory-10-digit-dialing-starts-saturday/</link>
		<comments>http://blog.oit.wvu.edu/2009/02/26/mandatory-10-digit-dialing-starts-saturday/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 15:14:00 +0000</pubDate>
		<dc:creator>Sarah Barnes</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[area codes]]></category>
		<category><![CDATA[psc]]></category>
		<category><![CDATA[telephone]]></category>
		<category><![CDATA[wv]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=848</guid>
		<description><![CDATA[We posted this in OIT News earlier this week, but wanted to make sure you remember to start dialing the area code with each call.

Reminder: 10-Digit Dialing Starts February 28
On February 28, all local calls placed from 293 prefix numbers at West Virginia University must include all 10 digits (9 + 304 area code + [...]]]></description>
			<content:encoded><![CDATA[<p>We posted this in OIT News earlier this week, but wanted to make sure you remember to start dialing the area code with each call.</p>
<blockquote>
<h2><a href="http://oit.wvu.edu/news/2009/02/23/reminder-10-digit-dialing-starts-february-28/">Reminder: 10-Digit Dialing Starts February 28</a></h2>
<p>On February 28, all local calls placed from 293 prefix numbers at West Virginia University must include all 10 digits (9 + 304 area code + the seven-digit phone number) to complete a call.</p>
<p>The 10-digit dialing requirement is a response to the West Virginia Public Service Commission approval of a new 681 area code assigned to new telephone numbers in West Virginia starting this year. At this time, new numbers may be assigned a 681 or 304 area code.</p>
<p>Inter campus calls will remain 3-xxxx. Long distance calls will continue to require 8 + area code + 7 digit number + TID.</p>
<p>Please refer to http://oit.wvu.edu/telecom/dialing.php to determine which prefixes are considered local calls from the 293 prefix.</p>
<p>What Will Remain the Same?</p>
<ul>
<li>Your telephone number, including current area code, will not change. WVU will retain the 304-293-XXXX block of telephone numbers.</li>
<li>Your local calls are still local calls, even though they must be dialed using ten digits.</li>
<li>Long distance dialing procedures will not change. Your TID will not change.</li>
</ul>
<p>If you have pre-programmed speed dial lists using seven digits in your phones, these will need to be updated with 10-digit numbers. WVU Telecommunications is working to update speed dials on Cisco IP phones. For more information, contact the WVU OIT Help Desk at oithelp@mail.wvu.edu or 293-4444.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2009/02/26/mandatory-10-digit-dialing-starts-saturday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GroupWise email on your iPhone or iPod Touch</title>
		<link>http://blog.oit.wvu.edu/2009/01/22/groupwise-email-on-your-iphone-or-ipod-touch/</link>
		<comments>http://blog.oit.wvu.edu/2009/01/22/groupwise-email-on-your-iphone-or-ipod-touch/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 17:31:42 +0000</pubDate>
		<dc:creator>Steven Marra</dc:creator>
				<category><![CDATA[Groupwise]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod Touch]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=669</guid>
		<description><![CDATA[Setting the Mail app on your iPhone or iPod Touch to get GroupWise email is quick and easy!
Please note this does not apply to the GroupWise calendar. At this time, the best way to access your GroupWise calendar on your Apple device is through Safari via https://wvugw.wvu.edu
Checklist:
-A 2nd generation iPhone or iPod Touch, or a [...]]]></description>
			<content:encoded><![CDATA[<p>Setting the Mail app on your iPhone or iPod Touch to get GroupWise email is quick and easy!</p>
<p><strong><em>Please note this does not apply to the GroupWise calendar. At this time, the best way to access your GroupWise calendar on your Apple device is through Safari via <a href="https://wvugw.wvu.edu/gw/webacc">https://wvugw.wvu.edu</a></em></strong></p>
<p>Checklist:</p>
<p>-A 2nd generation iPhone or iPod Touch, or a 1st generation iPhone or iPod Touch with the latest system update installed (version 2.2).</p>
<p>- You&#8217;ll need your username and password for the GroupWise email you want to access.</p>
<p>- You&#8217;ll need your Central ID username and password, too. If you don&#8217;t know yours, start here <a href="http://centralid.wvu.edu">http://centralid.wvu.edu</a></p>
<p>- Make sure your device has an active connection to the internet.</p>
<ol>
<li>Find and open <em>Settings<br />
</em><a href="http://blog.oit.wvu.edu/files/2009/01/settings.jpg"><img class="alignnone size-medium wp-image-672" src="http://blog.oit.wvu.edu/files/2009/01/settings.jpg" alt="" width="64" height="84" /><br />
</a></li>
<li>Select <em>Mail, Contacts, Calendars<br />
</em><a href="http://blog.oit.wvu.edu/files/2009/01/mailcontacts.jpg"><img class="alignnone size-medium wp-image-673" src="http://blog.oit.wvu.edu/files/2009/01/mailcontacts.jpg" alt="" width="300" height="42" /></a></li>
<li>Select <em>Add Account&#8230;<br />
</em><a href="http://blog.oit.wvu.edu/files/2009/01/account1.jpg"><img class="alignnone size-medium wp-image-681" src="http://blog.oit.wvu.edu/files/2009/01/account1.jpg" alt="" width="300" height="179" /></a></li>
<li>Choose <em>Other<br />
</em><a href="http://blog.oit.wvu.edu/files/2009/01/other.jpg"><img class="alignnone size-medium wp-image-675" src="http://blog.oit.wvu.edu/files/2009/01/other.jpg" alt="" width="300" height="60" /></a></li>
<li>Enter your account information:<br />
<a href="http://blog.oit.wvu.edu/files/2009/01/newaccount1.jpg"><img class="alignnone size-medium wp-image-686" src="http://blog.oit.wvu.edu/files/2009/01/newaccount1.jpg" alt="" width="300" height="227" /></a></p>
<ul>
<li><em>Name</em> = GroupWise</li>
<li><em>Address</em> is your GroupWise email address.</li>
<li><em>Password</em> is the password you use to access your GroupWise email.</li>
<li><em>Description</em> should fill in automagically.</li>
<li>Tap <em>Save</em> to continue.</li>
</ul>
</li>
<li>Under <em>Incoming Mail Server</em>, enter the <em>Host Name</em> <strong>gwpop.wvu.edu<br />
</strong><a href="http://blog.oit.wvu.edu/files/2009/01/accountinfo1.jpg"><img class="alignnone size-medium wp-image-680" src="http://blog.oit.wvu.edu/files/2009/01/accountinfo1.jpg" alt="" width="300" height="135" /></a><a href="http://blog.oit.wvu.edu/files/2009/01/accountinfo.jpg"></a></p>
<ul>
<li><em>User Name</em> is the name you use to log in to your GroupWise email.</li>
<li><em>Password</em> can be left alone. It carries over from earlier.</li>
</ul>
</li>
<li>Under <em>Outgoing Mail Server</em>, enter the <em>Host Name</em> <strong>exsmtp.systems.wvu.edu<br />
</strong><a href="http://blog.oit.wvu.edu/files/2009/01/outgoing2.jpg"><img class="alignnone size-medium wp-image-682" src="http://blog.oit.wvu.edu/files/2009/01/outgoing2.jpg" alt="" width="300" height="161" /></a><a href="http://blog.oit.wvu.edu/files/2009/01/outgoing.jpg"></a></p>
<ul>
<li><em>User Name</em> is your Central ID.</li>
<li><em>Password</em> is your Central ID password.</li>
<li>Tap <em>Save</em> to continue.</li>
</ul>
</li>
</ol>
<p>Now your device will attempt to log in and retrieve your email. Chances are, it will ask you to accept a security certificate. If it does, please do! Or, if it fails to access your account the 1st time, follow the prompts to try again.</p>
<p>Sometimes it takes a minute or two for everything to sync. Be patient =)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2009/01/22/groupwise-email-on-your-iphone-or-ipod-touch/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>ReadWriteWeb: Gmail Preferred By Students, But Nothing Beats Texting</title>
		<link>http://blog.oit.wvu.edu/2008/12/12/students-prefer-gmail-texting/</link>
		<comments>http://blog.oit.wvu.edu/2008/12/12/students-prefer-gmail-texting/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 15:48:27 +0000</pubDate>
		<dc:creator>Sarah Barnes</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[The Internet]]></category>
		<category><![CDATA[text messaging]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[web-based email]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=504</guid>
		<description><![CDATA[As a follow up to yesterday&#8217;s post on Web-based email, I saw this post today on ReadWriteWeb about student use of email and how they prefer texting.
Gmail Preferred By Students, But Nothing Beats Texting
Written by Sarah Perez / December 12, 2008
Today&#8217;s high-school and college students got their first email account at an average age of [...]]]></description>
			<content:encoded><![CDATA[<p>As a follow up to yesterday&#8217;s post on <a href="http://blog.oit.wvu.edu/2008/12/11/why-you-should-be-using-web-based-email/">Web-based email</a>, I saw this post today on <a href="http://www.readwriteweb.com/">ReadWriteWeb</a> about student use of email and how they prefer texting.</p>
<blockquote><p><strong><a href="http://www.readwriteweb.com/archives/gmail_preferred_by_students_but_nothing_beats_texting.php">Gmail Preferred By Students, But Nothing Beats Texting</a></strong></p></blockquote>
<blockquote><p>Written by Sarah Perez / December 12, 2008</p>
<p>Today&#8217;s high-school and college students got their first email account at an average age of 13. Most students have had one of their email addresses for 8 years and have an average of about 2.4 addresses each. But if you really want to reach these students, you should forget email. Send a text message instead.</p></blockquote>
<p><a href="http://www.readwriteweb.com/archives/gmail_preferred_by_students_but_nothing_beats_texting.php">Read the rest of the story here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2008/12/12/students-prefer-gmail-texting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why You Should be Using Web-Based Email</title>
		<link>http://blog.oit.wvu.edu/2008/12/11/why-you-should-be-using-web-based-email/</link>
		<comments>http://blog.oit.wvu.edu/2008/12/11/why-you-should-be-using-web-based-email/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 13:00:29 +0000</pubDate>
		<dc:creator>Sarah Barnes</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[The Internet]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[hotmail]]></category>
		<category><![CDATA[web-based email]]></category>
		<category><![CDATA[yahoomail]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=480</guid>
		<description><![CDATA[Even if younger generations are using it less, we all use email.  It still serves a purpose in our 21st Century lives.  Our professional lives depend on it.  In the early days of the Internet/WWW, having multiple email addresses was uncommon. Many of us were given email at our place of employment, so our work [...]]]></description>
			<content:encoded><![CDATA[<p>Even if younger generations are using it less, we all use email.  It still serves a purpose in our 21st Century lives.  Our professional lives depend on it.  In the early days of the Internet/WWW, having multiple email addresses was uncommon. Many of us were given email at our place of employment, so our work email address quickly became our main point of contact for everyone, work and personal relationships both.  Others may have started out by signing up with AOL or used the free email address included with their Internet service account.</p>
<p>I don&#8217;t have to tell you that web has changed a lot over the years and email&#8217;s role in it is no exception.  Web-based email has become the de-facto standard in email delivery and with good reason.  Here are several reasons why you should be using web-based email if you aren&#8217;t already.</p>
<ol>
<li><strong>Permanence</strong> &#8211; So what happened when you had to change ISPs or switched jobs?  All the sudden you had to tell everyone you had a different email address and they&#8217;d need to update their address books.  Annoying huh?  Your web-based email account is you wherever you go or rather you go wherever you want, it just waits for you.  <img src='http://blog.oit.wvu.edu/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   That is not to say that you won&#8217;t ever change your address again, it just makes it far easier to extricate yourself from a bad ISP or switch jobs without the headache of updating your email address as well.Web-based email also makes archiving and searching for old email easier than storing it locally.</li>
<li><strong>Protecting your privacy</strong> &#8211; Do you really want your personal shopping habits or financial information to be subject to review by your employer?  Email privacy is not a right that extends to employer sponsored email accounts.  Additionally, if you work for a public institution (such as WVU) your email is subject to Freedom of Information Act requests.</li>
<li><strong>Access</strong> &#8211; Why be tied down to one computer for all of your email?  For those of you still using a POP email client to access your email, you&#8217;re really missing out on a much more convienent way to manage your inbox.  Just log on to the web and send all the email you want.</li>
<li><strong>Features</strong> &#8211; There are some great features in many web-based email programs that most people never use &#8211; like the Send As feature in Gmail.  I can send email AS any of my email addresses (and I have a bunch) from a single account.  In other words, I can tell Gmail to change the &#8220;From&#8221; line in any email I send to be from any of my email accounts.  You have to verify that you own the account, but this is a  handy feature.  Occasionally, I&#8217;ll need to send something from my work email address, but don&#8217;t have time to access GroupWise.  I compose my email and tell it to &#8220;Send As&#8221; my @mail.wvu.edu email and that way replies are sent to that address instead of my Gmail account.</li>
<li><strong>Spam protection</strong> &#8211; In this area it really just makes sense to let the bigger companies manage the headache of spam filtering.  Why?  Because they do it best.  How much spam do I get in Gmail?  A lot, but it all goes directly to my spam folder very little, if any makes it to my inbox.  I never look at it unless I want to.  It is almost always right in figuring out what is spam and what is not.  Occasionally I&#8217;ll get a piece or two but if that is all I have to worry about, no problem.  YahooMail has good spam filtering as well, but I&#8217;m not sure if it is as good as Gmail&#8217;s. (YahooMail users: feel free to chime in here.)  Anyway &#8211; my point is that web-based email providers generally have great resources and methods of dealing with spam.</li>
<li><strong>Virus Protection</strong> &#8211; If it even makes it past the virus protection on the web-based email provider&#8217;s system, <strong>unless you click on that virus that someone emailed to you, it won&#8217;t be downloaded to your computer</strong>.  It&#8217;ll just sit on their server until you delete it.  You still have to practice diligence in determining what attachments are legitimate, but at least you won&#8217;t have to worry that the files are now on your system.</li>
</ol>
<p>So, OK, there are plenty of reasons to use web-based email.  What, you may ask, are the web-based email options out there?</p>
<p><a href="http://blog.oit.wvu.edu/files/2008/12/webmail-all.png"><img class="size-full wp-image-487 alignnone" src="http://blog.oit.wvu.edu/files/2008/12/webmail-all.png" alt="" width="155" height="68" /></a></p>
<p>The major players are <a href="http://gmail.com">GMail</a>, <a href="http://mail.yahoo.com">YahooMail</a>, <a href="http://hotmail.com">Hotmail</a>, <a href="http://aol.com">AOL</a>.</p>
<p>Some other web-based email websites are <a href="http://www.gmx.com">GMX</a>, <a href="http://lycos.com">Lycos</a>, <a href="http://zenbe.com">Zenbe</a>, <a href="http://www.me.com">MobileMe</a>, <a href="http://www.inbox.com/">Inbox.com</a>, <a href="http://www.mail2web.com/">Mail2Web</a>, <a href="http://mail.com">Mail.com</a>,<a href="http://fastmail.fm/"> FastMail.FM</a>, and many many more.<a href="http://fastmail.fm/"><br />
</a></p>
<p>What should one look for in a good web-based email service?</p>
<ul>
<li>Price (most are free)</li>
<li>Storage space (2-5GB is average, though this will probably just increase as time goes on.  None of these services want to lose users.)</li>
<li>Ease of use (no point in using it if it is complicated)</li>
<li>Features (Does it integrate with calendars?  Can you send mail as another account?  Can you download to a POP mail client? etc.)</li>
<li>Privacy Policy</li>
<li>Spam Control (Probably the most important.  How good are they at keeping out the spam?)</li>
</ul>
<p>What makes one preferable to another? I think this comes down to personal preference.  I, personally, prefer Gmail, but I know other people who are just as taken with YahooMail.  It really just depends on what about it appeals to you.  I&#8217;d say a good common sense assessment of the service is if it does something you don&#8217;t like or doesn&#8217;t do something you need, keep shopping.  If you are content, stay put.  <img src='http://blog.oit.wvu.edu/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Here are some other articles/lists on this topic:</p>
<ul>
<li><a href="http://email.about.com/od/freeemailreviews/tp/free_email.htm">Top 17 Free Email Services</a></li>
<li><a href="http://mashable.com/2007/09/06/email-toolbox/">75+ Email Services That Aren’t Gmail</a></li>
<li><a href="http://www.consumersearch.com/webmail-reviews">Web Email Reviews</a></li>
<li><a href="http://email.about.com/od/freeemailreviews/Find_the_Best_Free_Email_Accounts.htm">Find the Best Free Email Accounts</a></li>
<li><a href="http://www.emailaddresses.com/email_web.htm">Free Web-Based Email Services</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2008/12/11/why-you-should-be-using-web-based-email/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Spam plummets as gang leaves net (via the BBC)</title>
		<link>http://blog.oit.wvu.edu/2008/11/13/spam-plummets-as-gang-leaves-net-via-the-bbc/</link>
		<comments>http://blog.oit.wvu.edu/2008/11/13/spam-plummets-as-gang-leaves-net-via-the-bbc/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 15:13:38 +0000</pubDate>
		<dc:creator>Steven Marra</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[The Internet]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=346</guid>
		<description><![CDATA[An important note: There is a constant ebb and flow in the world of Spam and Phishing. When one side in the battle scores a victory, the other marshals its forces for another attack. This is just the latest in (what will continue to be) a long struggle to keep inboxes free from Spam and [...]]]></description>
			<content:encoded><![CDATA[<p class="first">An important note: There is a constant ebb and flow in the world of Spam and Phishing. When one side in the battle scores a victory, the other marshals its forces for another attack. This is just the latest in (what will continue to be) a long struggle to keep inboxes free from Spam and Phishing attempts.</p>
<p class="first">Since the following story was published, Spam at WVU dropped from 15 million instances on Wednesday (11/12/08) to 4 million on Thursday (11/13/08).</p>
<blockquote>
<p class="first"><strong>The closure of a web hosting firm that is believed to have had  spam gangs as clients has led to a drastic reduction in junk mail.</strong></p>
<p>Two US internet service providers have pulled the plug on the firm McColo  following an investigation by the Washington Post newspaper.</p>
<p>Anti-spam firm Ironport has seen junk mail levels drop by 70% since McColo  was taken offline on 11 November.</p>
<p>But, it warned, it will be a temporary respite from the menace of spam.</p></blockquote>
<p><a href="http://news.bbc.co.uk/2/hi/technology/7725492.stm">Read the rest of the story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2008/11/13/spam-plummets-as-gang-leaves-net-via-the-bbc/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A look into the system of spam [The Daily Athenaeum]</title>
		<link>http://blog.oit.wvu.edu/2008/09/24/a-look-into-the-system-of-spam-the-daily-athenaeum/</link>
		<comments>http://blog.oit.wvu.edu/2008/09/24/a-look-into-the-system-of-spam-the-daily-athenaeum/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 13:44:27 +0000</pubDate>
		<dc:creator>Sarah Barnes</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Groupwise]]></category>
		<category><![CDATA[MIX]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Scams]]></category>
		<category><![CDATA[The Internet]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[the daily athenaeum]]></category>
		<category><![CDATA[wvu]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=155</guid>
		<description><![CDATA[Our student newspaper posted a story on Monday about spam and how OIT deals with it.  The article details some impressive stats.  Spam is a touchy subject.  No one likes to get it and if even a little bit gets through, it seems like we have a problem.  The fact that WVU receives 10 MILLION+ [...]]]></description>
			<content:encoded><![CDATA[<p>Our <a href="http://www.da.wvu.edu">student newspaper</a> posted a story on Monday about spam and how OIT deals with it.  The article details some impressive stats.  Spam is a touchy subject.  No one likes to get it and if even a little bit gets through, it seems like we have a problem.  The fact that WVU receives 10 MILLION+ emails a day <em>and </em>95% of that is spam never ceases to amaze me.  I think it is also important to remember, as the article pointed out, that we do not filter email based on content.  We feel that would be inappropriate for an academic institution to do so.</p>
<p>One of the students quoted indicated they wished there was a way to mark an email as spam.  I have to admit, I&#8217;d like that too.   Unfortunately, that would be part of the application that you use to check email (MIX or GroupWise) and not under OIT control.</p>
<p>Here is the article from the DA.</p>
<blockquote><p><a href="http://www.da.wvu.edu/show_article.php?story_id=39076&amp;archive_date=2008-09-22"><strong>A look into the system of spam</strong></a><br />
By Danielle Clements</p>
<p>Every day, the Office of Information Technology receives about 10 million incoming e-mails from outside of the University. And of those 10 million e-mails, 95 percent are spam.</p>
<p>To block spam and other security issues, OIT utilizes specialized software specifically made for businesses, universities and other organizations.</p>
<p>As e-mails queue up in the system, the software check scans for e-mail and IP addresses which are &#8220;blacklisted.&#8221;</p></blockquote>
<p>Read the rest of the story online at the <a href="http://www.da.wvu.edu/show_article.php?story_id=39076&amp;archive_date=2008-09-22">The Daily Athenaeum</a>.</p>
<p>If you&#8217;d like to take some measures toward cutting down on the amount of spam you receive, take a look at our <a href="http://oit.wvu.edu/resources">online resources on this and other topics.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2008/09/24/a-look-into-the-system-of-spam-the-daily-athenaeum/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
