<?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>mindykelly&#039;s blog</title>
	<atom:link href="http://vspug.com/mindykelly/feed/" rel="self" type="application/rss+xml" />
	<link>http://vspug.com/mindykelly</link>
	<description>Just another VSPUG - Virtual SharePoint User Group weblog</description>
	<lastBuildDate>Fri, 05 Dec 2008 18:39:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Extract a single version of a file from a MOSS SQL Server Database</title>
		<link>http://vspug.com/mindykelly/2008/12/05/extract-a-single-version-of-a-file-from-a-moss-sql-server-database/</link>
		<comments>http://vspug.com/mindykelly/2008/12/05/extract-a-single-version-of-a-file-from-a-moss-sql-server-database/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 18:39:00 +0000</pubDate>
		<dc:creator>mindy</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[I recently ran into a situation where MOSS was unable to open a particular historical version of a document in a document library. One example of an error was, right-clicking and choosing &#39;Save Target As&#8230;&#39; in Internet Explorer yielded: &#34;Internet Explorer cannot download &#60;file name&#62; from &#60;portal name&#62;. Internet Explorer was not able to open [...]]]></description>
			<content:encoded><![CDATA[<p>I recently ran into a situation where MOSS was unable to open a particular historical version of a document in a document library. One example of an error was, right-clicking and choosing &#39;Save Target As&#8230;&#39; in Internet Explorer yielded: &quot;Internet Explorer cannot download &lt;file name&gt; from &lt;portal name&gt;. Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later.&quot;</p>
<p>Helpful, right?</p>
<p>So I went in search of a method to extract this file from SQL. I found this VB Script: <a href="http://blogs.msdn.com/field_notes/archive/2008/06/23/recover-documents-from-moss-2007-database.aspx?CommentPosted=true#commentmessage">http://blogs.msdn.com/field_notes/archive/2008/06/23/recover-documents-from-moss-2007-database.aspx?CommentPosted=true#commentmessage</a>&nbsp;which extracts the current version of a document, but that&#39;s not what I needed.</p>
<p>I next did a SQL query to find all versions of the document:</p>
<p>SELECT dbo.AllDocs.TimeLastModified, dbo.AllDocs.DirName, dbo.AllDocs.LeafName, dbo.AllDocs.Version, dbo.AllDocStreams.Content<br />&nbsp;FROM dbo.AllDocs <br />&nbsp;INNER JOIN dbo.AllDocStreams<br />&nbsp;ON dbo.AllDocs.ID = dbo.AllDocStreams.ID<br />&nbsp;AND dbo.AllDocs.Level = dbo.AllDocStreams.Level<br />&nbsp;where dbo.AllDocs.LeafName=&#39;file name&#39;</p>
<p>Using the TimeLastModified column I identified the version # that I needed.</p>
<p>I then replaced &#39;AND IsCurrentVersion=1&#39; in the script with &#39;AND dbo.AllDocs.Version=&lt;version number from the column&gt;&#39; and successfully extracted the supposedly corrupt file that I needed!</p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/mindykelly/2008/12/05/extract-a-single-version-of-a-file-from-a-moss-sql-server-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some icons disappear in MOSS</title>
		<link>http://vspug.com/mindykelly/2008/05/16/some-icons-disappear-in-moss/</link>
		<comments>http://vspug.com/mindykelly/2008/05/16/some-icons-disappear-in-moss/#comments</comments>
		<pubDate>Fri, 16 May 2008 17:40:00 +0000</pubDate>
		<dc:creator>mindy</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[I ran into an interesting problem this week in SharePoint (MOSS). On some sub-web sites, the attachment (paperclip) icon disappeared. I also noted that some other miscellaneous icons were replaced with the ugly red X. However, this problem did not occur in the top level site in the collection. Odd.
I checked permissions all over the [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into an interesting problem this week in SharePoint (MOSS). On some sub-web sites, the attachment (paperclip) icon disappeared. I also noted that some other miscellaneous icons were replaced with the ugly red X. However, this problem did not occur in the top level site in the collection. Odd.</p>
<p>I checked permissions all over the place and couldn&#39;t find any reason why this would be happening. Then I discovered through a forum that the application pool settings do indeed affect permissions to virtual directories. A colleague had recently changed the primary application pool for our portal as a troubleshooting step with Microsoft support (we&#39;re experiencing some memory leak issues).</p>
<p>The changed application pool propogated down from the web site to the virtual directories, but not to the applications below (such as &#39;images&#39;). Voila! Changed the app pools on those applications to the new app pool and everything worked again.</p>
<p>Another SharePoint mystery solved!</p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/mindykelly/2008/05/16/some-icons-disappear-in-moss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advanced Search issue in MOSS</title>
		<link>http://vspug.com/mindykelly/2007/09/26/advanced-search-issue-in-moss/</link>
		<comments>http://vspug.com/mindykelly/2007/09/26/advanced-search-issue-in-moss/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 21:16:00 +0000</pubDate>
		<dc:creator>mindy</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[There are plenty of blogs and articles that explain how to add properties to Advanced Search in MOSS, so I&#39;m not going to get into that here.
What I have found is that there is an issue with the ModifiedBy property, where by default, the number of items found with this property is a big fat [...]]]></description>
			<content:encoded><![CDATA[<p>There are plenty of blogs and articles that explain how to add properties to Advanced Search in MOSS, so I&#39;m not going to get into that here.</p>
<p>What I have found is that there is an issue with the ModifiedBy property, where by default, the number of items found with this property is a big fat zero (0).</p>
<p>Finally, a solution that works!</p>
<p>The post is here: <a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2195994&amp;SiteID=1&amp;mode=1">http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2195994&amp;SiteID=1&amp;mode=1</a></p>
<p>I have copied Pritam Dahake&#39;s solution in case the forum post is somehow deleted:</p>
<p>Here are the steps to manually hook the Last Modified By field to the creawled field.</p>
<p align="left">1)&nbsp;Open Central administration -&gt; Shared Services -&gt; SharedServices (X being the number of the shared services provider for the site you are creating a mapping)&nbsp; &#8211; &gt; search settings -&gt; metadata property mappings <br />2)&nbsp;Click &#8220;Modifiedby&#8221; to edit the properties <br />3)&nbsp;Make sure&nbsp; &#8220;Include values from all crawled properties mapped&#8221; is selected<br />4)&nbsp;Click &#8220;add mapping&#8221; and select the &#8220;Office&#8221; category from the dropdown list. <br />5)&nbsp;look for a property named &#8220;OFFICE:8&#8243; , click &#8220;OK&#8221;<br />6)&nbsp;Click &#8220;add mapping&#8221; and select the &#8220;ows_Last_x0020_Modified(text)&#8221; from the ALL categories dropdown list, Click &#8220;OK&#8221;<br />7)&nbsp; Make sure the box is checked &#8220;Allow this property to be used in scopes&#8221;, click &#8220;OK&#8221;<br />8)&nbsp;Click on &#8220;Crawled Properties&#8221; link on the left side of the Shared Services Administration page. <br />9)&nbsp;Click On the &#8220;Office&#8221; Category.<br />10)&nbsp;The mapped property you just created should be listed in the &#8220;Mapped To&#8221; column of the Office:8(Text) category.<br />11)&nbsp;Click on the Office:8(Text) category to view the properties.<br />12)&nbsp;In the &#8220;name and information&#8221; section, you should see the &#8220;property Set ID:&#8221; value is&nbsp; &#39;F29F85E0-4FF9-1068-AB91-08002B27B3D9&#39; &#8230;<strong>This is very important!!!</strong><br />13)&nbsp;In the &#8220;Mappings to managed properties&#8221; section the managed property you edited in steps 2 &#8211; 7 should be listed. <br />14)&nbsp;The box to &#8220;Include values for this property in the search index&#8221; should be checked.<br />15)&nbsp;Click &#8220;OK&#8221; to exit this page.<br />16)&nbsp;Open &#8220;Shared Services administration&#8221; -&gt; &#8220;ShareservicesX&#8221; -&gt; &#8220;Search Settings&#8221; -&gt; &#8220;Content Sources and crawl schedules&#8221; <br />17)&nbsp;Click on &#8220;Local Office SharePoint Server sites&#8221; to expand the dropdown list and select &#8220;Start full crawl&#8221; <br />18)&nbsp;When the crawl has completed, navigate to the site collection -&gt; click on the search tab. <br />19)&nbsp;Select &#8220;Advanced Search&#8221; <br />20)&nbsp;In the properties dropdown list select &quot;Last Modified By&quot;<br />21)&nbsp;Select contains<br />22)&nbsp;Enter a name that you know has added / edited a document<br />23)&nbsp;Click the magnifier to execute the search<br />24)&nbsp;Get back results.</p>
<p align="left">&nbsp;WOOHOO to Pritam!</p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/mindykelly/2007/09/26/advanced-search-issue-in-moss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add a link to a document within a Document Library in MOSS</title>
		<link>http://vspug.com/mindykelly/2007/09/11/add-a-link-to-a-document-within-a-document-library-in-moss/</link>
		<comments>http://vspug.com/mindykelly/2007/09/11/add-a-link-to-a-document-within-a-document-library-in-moss/#comments</comments>
		<pubDate>Tue, 11 Sep 2007 20:27:00 +0000</pubDate>
		<dc:creator>mindy</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[Many people within my company have asked how they can add links to documents inside their document libraries so that there are not multiple copies of a single document floating around the system.
A quick and easy way to do this is to add a content type of Link to a Document and then use this [...]]]></description>
			<content:encoded><![CDATA[<p>Many people within my company have asked how they can add links to documents inside their document libraries so that there are not multiple copies of a single document floating around the system.</p>
<p>A quick and easy way to do this is to add a content type of <strong>Link to a Document</strong> and then use this content type for links.</p>
<p><strong><em>How to set this up:</em></strong></p>
<p>In your document library, go into <strong>Settings / Document Library Settings</strong></p>
<p>Click on <strong>Advanced Settings</strong> and ensure that <strong>Allow Management of Content Types?</strong> is set to <strong>Yes</strong>.</p>
<p>From the Settings page, click <strong>Add from existing site&nbsp;content types</strong></p>
<p>Select <strong>Link to a Document</strong>, click <strong>Add</strong> and click <strong>OK</strong></p>
<p>From within the document library, select the drop-down arrow next to <strong>New</strong> and choose <strong>Link to a Document</strong></p>
<p>Enter the document name and URL </p>
<ul>
<ul>
<li>
<div>You can get the URL from another document by choosing the target document&#39;s drop-down menu and selecting Send To E-Mail a Link</div>
</li>
<li>
<div>An email will open automatically&nbsp;</div>
</li>
<li>
<div>Copy and paste the link from the email into the <strong>URL</strong> field on the <strong>New Link to a Document</strong> form</div>
</li>
</ul>
</ul>
<p>Click <strong>OK</strong> and you will see the new document link in your document library view</p>
<p>[Note: Someone has documented these steps with pictures here! <a href="http://www.toddklindt.com/blog/Lists/Posts/Post.aspx?ID=49">http://www.toddklindt.com/blog/Lists/Posts/Post.aspx?ID=49</a>&nbsp;]</p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/mindykelly/2007/09/11/add-a-link-to-a-document-within-a-document-library-in-moss/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Alerts not working in MOSS</title>
		<link>http://vspug.com/mindykelly/2007/08/01/alerts-not-working-in-moss/</link>
		<comments>http://vspug.com/mindykelly/2007/08/01/alerts-not-working-in-moss/#comments</comments>
		<pubDate>Wed, 01 Aug 2007 18:49:00 +0000</pubDate>
		<dc:creator>mindy</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[Problem: Alerts on document libraries in MOSS work for portal administrators, but not for regular users. Regular users do receive the email notifying them that their alert has been set up.
Information: This was only happening on sites created with custom site definitions. Testing showed that the &#39;approval&#39; permission could be added to the Members or [...]]]></description>
			<content:encoded><![CDATA[<p><strong><u>Problem:</u></strong> Alerts on document libraries in MOSS work for portal administrators, but not for regular users. Regular users do receive the email notifying them that their alert has been set up.</p>
<p><strong><u>Information:</u></strong> This was only happening on sites created with custom site definitions. Testing showed that the &#39;approval&#39; permission could be added to the Members or other group of the site and alerts would then work for those users, but that is not a good solution for most environments.</p>
<p><strong><u>Solution:</u></strong> Not a pretty one, but the best that Microsoft could come up with. </p>
<blockquote>
<p><strong>On all document libraries on custom site definition sites, break permissions inheritance and then re-inherit</strong>. It seems that something was broken in the site definition with regard to permissions. MS developer support is investigating, but the cause is still unknown.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/mindykelly/2007/08/01/alerts-not-working-in-moss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MOSS 2007 Spell Check Issue</title>
		<link>http://vspug.com/mindykelly/2007/06/20/moss-2007-spell-check-issue/</link>
		<comments>http://vspug.com/mindykelly/2007/06/20/moss-2007-spell-check-issue/#comments</comments>
		<pubDate>Wed, 20 Jun 2007 15:05:00 +0000</pubDate>
		<dc:creator>mindy</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[For months we have been having a problem with spell check in my environment where non-admin users were unable to run spell check within MOSS and receive the error &#34;Spelling did not complete properly. If this problem persists, notify your system administrator.&#34;
In my case, users have Read access across the portal except to certain sub-sites [...]]]></description>
			<content:encoded><![CDATA[<p><font face="Times New Roman">For months we have been having a problem with spell check in my environment where non-admin users were unable to run spell check within MOSS and receive the error &quot;Spelling did not complete properly. If this problem persists, notify your system administrator.&quot;</font></p>
<p><font face="Times New Roman">In my case, users have <strong>Read</strong> access across the portal except to certain sub-sites where they are given <strong>Contribute</strong> and other permissions. As it turned out, the library for the custom dictionary that I had created also only had Read permissions for general users. <em><b>Changing their permissions to Contribute solved the problem</b></em>.</font></p>
<p><font face="Times New Roman">If you want to setup a custom dictionary in SharePoint you can do so on a Site Collection basis (i.e. one custom dictionary per site collection). To do so:</font></p>
<p style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;mso-list:l0 level2 lfo1;tab-stops:list 1.0in;"><span style="FONT-SIZE:10pt;FONT-FAMILY:&#39;Courier New&#39;;mso-fareast-font-family:&#39;Courier New&#39;;mso-bidi-font-size:12.0pt;"><span style="mso-list:Ignore;">o<span style="FONT:7pt &#39;Times New Roman&#39;;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><font face="Times New Roman">Create a new Document Library at the root of your site collection called &quot;Spelling&quot; </font></p>
<p style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;mso-list:l0 level2 lfo1;tab-stops:list 1.0in;"><span style="FONT-SIZE:10pt;FONT-FAMILY:&#39;Courier New&#39;;mso-fareast-font-family:&#39;Courier New&#39;;mso-bidi-font-size:12.0pt;"><span style="mso-list:Ignore;">o<span style="FONT:7pt &#39;Times New Roman&#39;;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><font face="Times New Roman">Upload a text document to this library called &quot;Custom Dictionary.txt&quot; </font></p>
<p style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;mso-list:l0 level2 lfo1;tab-stops:list 1.0in;"><span style="FONT-SIZE:10pt;FONT-FAMILY:&#39;Courier New&#39;;mso-fareast-font-family:&#39;Courier New&#39;;mso-bidi-font-size:12.0pt;"><span style="mso-list:Ignore;">o<span style="FONT:7pt &#39;Times New Roman&#39;;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><font face="Times New Roman">In the text document place one term per line. </font></p>
<p><font face="Times New Roman">These terms will no longer be detected as spelling mistakes when you do a spell check through the UI.</font></p>
<p><font face="Times New Roman">These instructions came directly from: </font><a href="http://mosschampions.com/blogs/moss/archive/2006/11/21/Configure-a-Custom-Dictionary-for-Spell-Check-in-SharePoint.aspx"><font face="Times New Roman">http://mosschampions.com/blogs/moss/archive/2006/11/21/Configure-a-Custom-Dictionary-for-Spell-Check-in-SharePoint.aspx</font></a></p>
<p><em><b><font face="Times New Roman">&nbsp;-Just make sure to give all users contribute access to this library!</font></b></em></p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/mindykelly/2007/06/20/moss-2007-spell-check-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#039;t name the URL for a sub-site &#039;CON&#039; in MOSS 2007</title>
		<link>http://vspug.com/mindykelly/2007/06/20/don-t-name-the-url-for-a-sub-site-con-in-moss-2007/</link>
		<comments>http://vspug.com/mindykelly/2007/06/20/don-t-name-the-url-for-a-sub-site-con-in-moss-2007/#comments</comments>
		<pubDate>Wed, 20 Jun 2007 15:04:00 +0000</pubDate>
		<dc:creator>mindy</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[In trying to create a team site for a department called &#8230;/Commercial/Content, I use short names (e.g. &#8230;/CML/CON). Apparently CON is some kind of a system no-no. I have not searched on this problem, so there may be information posted out there on this issue somewhere:
When creating a site in Microsoft Office SharePoint Server (MOSS) [...]]]></description>
			<content:encoded><![CDATA[<p><font face="Times New Roman">In trying to create a team site for a department called &#8230;/Commercial/Content, I use short names (e.g. &#8230;/CML/CON). Apparently CON is some kind of a system no-no. I have not searched on this problem, so there may be information posted out there on this issue somewhere:</font></p>
<p><font><font face="Times New Roman">When creating a site in Microsoft Office SharePoint Server (MOSS) 2007, the URL cannot be &#8230;./<strong>con</strong></font></font></p>
<p><font face="Times New Roman">The system allowed me to do it, and it created the site, but the page was 100% blank.</font></p>
<p><font face="Times New Roman">Microsoft, how about popping up an error or something when an illegal system name is used, rather than allowing the site to be created?</font></p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/mindykelly/2007/06/20/don-t-name-the-url-for-a-sub-site-con-in-moss-2007/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Incoming email on MOSS 2007</title>
		<link>http://vspug.com/mindykelly/2007/06/20/incoming-email-on-moss-2007/</link>
		<comments>http://vspug.com/mindykelly/2007/06/20/incoming-email-on-moss-2007/#comments</comments>
		<pubDate>Wed, 20 Jun 2007 15:02:00 +0000</pubDate>
		<dc:creator>mindy</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[This post is not about how to configure incoming email (there is a GREAT white paper on the subject here: http://www.combined-knowledge.com/Downloads%202007.htm&#160;). Instead, I will focus on an issue that I ran into while setting it up in a server farm environment with Microsoft Forefront Security. Forefront was installed on both of the front-end web servers.
When [...]]]></description>
			<content:encoded><![CDATA[<p><font face="Times New Roman">This post is not about how to configure incoming email (there is a GREAT white paper on the subject here: </font><a href="http://www.combined-knowledge.com/Downloads%202007.htm"><font face="Times New Roman">http://www.combined-knowledge.com/Downloads%202007.htm</font></a><font face="Times New Roman">&nbsp;). Instead, I will focus on an issue that I ran into while setting it up in a server farm environment with Microsoft Forefront Security. Forefront was installed on both of the front-end web servers.</font></p>
<p><font face="Times New Roman">When I followed the instructions in the white paper </font><a href="http://www.combined-knowledge.com/Downloads/Moss07incoming_e-mail.pdf"><font face="Times New Roman">How to configure Email Enabled Lists in Moss2007 beta 2 using Exchange 2003 in the domain for receiving both local and external e-mail to the list</font></a><font face="Times New Roman">&nbsp;(note that I opted to NOT automatically create distribution lists and contacts in Active Directory, so did not configure that piece) I found that email made it all the way to the inetputmailrootdrop folder on the connected front-end MOSS server and was picked up by the timer service, however, an error was consistently reported:</font></p>
<p><span style="COLOR:darkgreen;"><font face="Times New Roman">OWSTIMER.EXE (0&#215;0950)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />Windows SharePoint Services&nbsp;&nbsp; <br />E-Mail&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />6874 <br />Warning An error occurred while attempting to create an attachment for an <br />item sent via e-mail. The e-mail was sent to the list &quot;&lt;doc library name&gt;&quot;, <br />and the error was:</font></span></p>
<p><font face="Times New Roman">Useful, right?</font></p>
<p><font face="Times New Roman">Through some research and tons of troubleshooting, I disabled Forefront Security on the front-end MOSS servers. For those who are frustrated with it, the services will automatically restart unless you disable them. After disabling the Forefront services, I tried sending email to a document library again and received the following error message:</font></p>
<p><span style="COLOR:green;"><font face="Times New Roman">OWSTIMER.EXE (0&#215;0950)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />Windows SharePoint Services&nbsp;&nbsp; <br />E-Mail&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />6874 <br />Warning An error occurred while attempting to create an attachment for an <br />item sent via e-mail. The e-mail was sent to the list &quot;&lt;doc library name&gt;&quot;, <br />and the error was: Unknown server error number: d.</font></span></p>
<p><font face="Times New Roman">I uninstalled Forefront Security and the problem went away, I was able to successfully email documents to document libraries.</font></p>
<p><font face="Times New Roman">At this point I called Microsoft Technical support and was eventually transfered to Forefront security. They provided me with the following fix:</font></p>
<p><font face="Times New Roman">The FSCRealtimeScanner.exe (old AntigenRealtime.exe) is running as Network Service account as default.&nbsp; It does not have access to SPSTimer service.&nbsp; There is a hidden registry key &#8220;LegacyScanAccount&#8221;.&nbsp; When it is set to 1, FSCRealtimeScanner.exe will run as LocalSystem.</p>
<p>Do the following:</p>
<p>ú&nbsp; &nbsp; &nbsp;&nbsp; Stop FSCController service.&nbsp; Check task manager to make sure FSCController.exe and all the FSCRealtimeScanner.exe are shut down.<br />ú&nbsp; &nbsp; &nbsp;&nbsp; Run &#8220;iisreset /stop&#8221;<br />ú&nbsp; &nbsp; &nbsp;&nbsp; Run &#8220;net stop sptimerv3&#8243;<br />ú&nbsp; &nbsp; &nbsp;&nbsp; Add registry DWORD &#8220;LegacyScanAccount&#8221; with value 1 under <br />HKEY_LOCAL_MACHINESOFTWAREMicrosoftForefront Server SecuritySharePoint&nbsp; for 32 bit machine or HKEY_LOCAL_MACHINESOFTWARE <br />HKEY_LOCAL_MACHINESOFTWAREWow6432NodeMicrosoftForefront Server <br />SecuritySharePoint for 64 bit machine.<br />ú&nbsp; &nbsp; &nbsp;&nbsp; Run &#8220;net start sptimerv3&#8243;<br />ú&nbsp; &nbsp; &nbsp;&nbsp; Run &#8220;iisreset /start&#8221;<br />ú&nbsp; &nbsp; &nbsp;&nbsp; Send email to check if it works.&nbsp; FSCRealtimeScanner.exe should run as SYSTEM after you send an email to doc library.</font></p>
<p><font face="Times New Roman">This worked&#8230; of course it also created additional issues created by Forefront. More on those later.</font></p>
<p><font face="Times New Roman"><strong><span style="FONT-SIZE:12pt;mso-fareast-font-family:&#39;Times New Roman&#39;;mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA;">Update [3/14/07]:</span></strong><span style="FONT-SIZE:12pt;FONT-FAMILY:&#39;Times New Roman&#39;;mso-fareast-font-family:&#39;Times New Roman&#39;;mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA;"> I have given up on Forefront, after this fix, stsadm would not work and there was some kind of .Net problem. Removing Forefront fixed the problem. Unfortunately, I did not save the event logs and they have rolled over. *Heck*, this all happened the week I went on vacation.&nbsp;I now have Trend Portal Protect for MOSS installed and it appears to be working quite well.</span></font></p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/mindykelly/2007/06/20/incoming-email-on-moss-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
