<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

      <title>Comments on: LotusNotesHelpMeFilter</title>
      <link>http://ask.metafilter.com/67804/LotusNotesHelpMeFilter/</link>
      <description>Comments on Ask MetaFilter post LotusNotesHelpMeFilter</description>
	  	  <pubDate>Wed, 25 Jul 2007 14:53:29 -0800</pubDate>
      <lastBuildDate>Wed, 25 Jul 2007 14:53:29 -0800</lastBuildDate>
      <language>en-us</language>
	  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
	  <ttl>60</ttl>

<item>
  	<title>Question: LotusNotesHelpMeFilter</title>
  	<link>http://ask.metafilter.com/67804/LotusNotesHelpMeFilter</link>	
  	<description>Please help me figure out how to bulk-detach multiple files from thousands of emails in Lotus Notes 6.5. &lt;br /&gt;&lt;br /&gt; I am currently using Lotus Notes 6.5.  The email box I have just &apos;inherited&apos; contains over 1600 emails with attached Word documents.&lt;br&gt;
&lt;br&gt;
Please, please tell me that there is a way to download all of these files into one location besides individually opening each message and saving its respective attachment.</description>
  	<guid isPermaLink="false">post:ask.metafilter.com,2008:site.67804</guid>
  	<pubDate>Wed, 25 Jul 2007 14:07:49 -0800</pubDate>
  	<dc:creator>mockjovial</dc:creator>
	
	<category>lotus</category>
	
	<category>notes</category>
	
	<category>email</category>
	
</item>
<item>
  	<title>By: sanko</title>
  	<link>http://ask.metafilter.com/67804/LotusNotesHelpMeFilter#1015596</link>	
  	<description>I&apos;m not aware of any way to do it in the mail client directly, but you can do it with LotusScript.  Some info &lt;a href=&quot;http://searchdomino.techtarget.com/expert/KnowledgebaseAnswer/0,289625,sid4_gci1253284,00.html&quot;&gt;here&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
Sorry I can&apos;t help more, but it&apos;s been years since I have had the displeasure of working with that stuff.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.67804-1015596</guid>
  	<pubDate>Wed, 25 Jul 2007 14:53:29 -0800</pubDate>
  	<dc:creator>sanko</dc:creator>
</item>
<item>
  	<title>By: ml98tu</title>
  	<link>http://ask.metafilter.com/67804/LotusNotesHelpMeFilter#1015638</link>	
  	<description>I&apos;ve encountered this before with LN.  The IT department did it and saved everything on a network drive.  Can you ask the IT department to do it?  I&apos;m sure you&apos;re not the first there to have dealt with this.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.67804-1015638</guid>
  	<pubDate>Wed, 25 Jul 2007 15:31:36 -0800</pubDate>
  	<dc:creator>ml98tu</dc:creator>
</item>
<item>
  	<title>By: bedhead</title>
  	<link>http://ask.metafilter.com/67804/LotusNotesHelpMeFilter#1015717</link>	
  	<description>That script in the article that sanko linked to should work, but it&apos;s not a complete bit of code. It just does something to a document, but you have to get a handle on it first. &lt;br&gt;
&lt;br&gt;
I&apos;m sure someone has written a script to do this before. I&apos;ll see what I can find. As it stands, I am unaware of any way to do this out of the box without writing a script to do it.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.67804-1015717</guid>
  	<pubDate>Wed, 25 Jul 2007 17:09:06 -0800</pubDate>
  	<dc:creator>bedhead</dc:creator>
</item>
<item>
  	<title>By: Eddie Mars</title>
  	<link>http://ask.metafilter.com/67804/LotusNotesHelpMeFilter#1015726</link>	
  	<description>Here&apos;s some old script from the forums on &lt;a href=&quot;http://www-10.lotus.com/ldd/46dom.nsf/55c38d716d632d9b8525689b005ba1c0/ae562ace8f1ed8f485256ac3004ed7ab?OpenDocument&quot;&gt;Notes.Net&lt;/a&gt;.  &lt;br&gt;
&lt;br&gt;
To use this, go to your Inbox and click Create...Agent.&lt;br&gt;
Set the agent to run against selected documents and give it a name like Detach Files.&lt;br&gt;
Change the type of agent from Simple Actions to LotusScript, then paste the code below, overwriting what&apos;s there.&lt;br&gt;
&lt;br&gt;
Sub Initialize&lt;br&gt;
Dim session As New NotesSession&lt;br&gt;
Dim db As NotesDatabase&lt;br&gt;
Dim object As NotesEmbeddedObject&lt;br&gt;
Dim collection As NotesDocumentCollection&lt;br&gt;
Dim doc As NotesDocument&lt;br&gt;
Dim downloadfolder As String&lt;br&gt;
Set db = session.CurrentDatabase&lt;br&gt;
Set collection = db.UnprocessedDocuments&lt;br&gt;
&lt;br&gt;
downloadfolder = &amp;quot;c:\Mail\users\&amp;quot;&lt;br&gt;
If Dir(&amp;quot;c:\mail&amp;quot;,16)=&amp;quot;&amp;quot; Then Mkdir &amp;quot;c:\mail&amp;quot;&lt;br&gt;
If Dir(&amp;quot;c:\mail\users&amp;quot;,16)=&amp;quot;&amp;quot; Then Mkdir &amp;quot;c:\mail\users&amp;quot;&lt;br&gt;
&lt;br&gt;
Print &amp;quot;************************************************************************&amp;quot;&lt;br&gt;
For i = 1 To collection.Count&lt;br&gt;
Set doc = collection.GetNthDocument( i )&lt;br&gt;
filen=Evaluate(&amp;quot;@AttachmentNames&amp;quot;,doc)&lt;br&gt;
antalfiler=Evaluate(&amp;quot;@Attachments&amp;quot;, doc)&lt;br&gt;
UserName=db.FileName&lt;br&gt;
If Dir(&amp;quot;c:\mail\users\&amp;quot;+username,16)=&amp;quot;&amp;quot; Then Mkdir &amp;quot;c:\mail\users\&amp;quot;+username&lt;br&gt;
&lt;br&gt;
Print Str(i)+&amp;quot; (&amp;quot;+Str(collection.count)+&amp;quot;)&amp;quot;&lt;br&gt;
&lt;br&gt;
If antalfiler(0)&amp;gt;0 Then&lt;br&gt;
For filecounter=0 To antalfiler(0)-1&lt;br&gt;
x=x+1&lt;br&gt;
Print ( filen(filecounter))&lt;br&gt;
Set Object = doc.GetAttachment( filen(filecounter) )&lt;br&gt;
If ( object.Type = EMBED_ATTACHMENT ) Then&lt;br&gt;
fileCount = fileCount + 1&lt;br&gt;
If Dir(downloadfolder+username+&amp;quot;\&amp;quot;+ filen(filecounter))=&amp;quot;&amp;quot; Then&lt;br&gt;
extrachar=&amp;quot;&amp;quot;&lt;br&gt;
Else&lt;br&gt;
extrachar=Left(doc.universalid,4)+&amp;quot;---&amp;quot; &apos;in case attachmnet with same name exists in several documents&lt;br&gt;
End If&lt;br&gt;
Call object.ExtractFile (downloadfolder+&amp;quot;\&amp;quot;+username+&amp;quot;\&amp;quot;+extrachar+ filen(filecounter) )&lt;br&gt;
&apos; Call object.Remove &apos;delete the attachment from document&lt;br&gt;
&apos; Call doc.Save( True, False )&lt;br&gt;
End If&lt;br&gt;
Next filecounter&lt;br&gt;
End If&lt;br&gt;
&lt;br&gt;
Next&lt;br&gt;
&lt;br&gt;
Msgbox&amp;quot;Attachments: &amp;quot;+Str(fileCount )&lt;br&gt;
&lt;br&gt;
End Sub</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.67804-1015726</guid>
  	<pubDate>Wed, 25 Jul 2007 17:23:57 -0800</pubDate>
  	<dc:creator>Eddie Mars</dc:creator>
</item>
<item>
  	<title>By: Eddie Mars</title>
  	<link>http://ask.metafilter.com/67804/LotusNotesHelpMeFilter#1015736</link>	
  	<description>I should have read through this code more closely before posting it.  It ought to work just fine, but it&apos;s hard coded to put the files into c:\mail\users\$yourname.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.67804-1015736</guid>
  	<pubDate>Wed, 25 Jul 2007 17:31:15 -0800</pubDate>
  	<dc:creator>Eddie Mars</dc:creator>
</item>
<item>
  	<title>By: bedhead</title>
  	<link>http://ask.metafilter.com/67804/LotusNotesHelpMeFilter#1015867</link>	
  	<description>If you want to test this without the fear of b0rking your mail file, though the code looks good to me, do the following first:&lt;br&gt;
&lt;br&gt;
While in your inbox, go to File-Database-New Copy*. Specify where to put the copy, then after the copying is done open the copy and do what Eddie Mars says above, in the copied mail file.&lt;br&gt;
&lt;br&gt;
Oh, and you can modify where the attachments are stored by changing the &amp;quot;username&amp;quot; keyword to something you prefer instead, throughout the code.&lt;br&gt;
&lt;br&gt;
*For those familiar with Notes, I recommend creating a copy instead of a replica because deletions in a local replica will eventually synch up with the server, so if something goes wrong, you could lose the whole thing. I prefer to test in a copy just in case. YMMV.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.67804-1015867</guid>
  	<pubDate>Wed, 25 Jul 2007 20:59:10 -0800</pubDate>
  	<dc:creator>bedhead</dc:creator>
</item>
<item>
  	<title>By: drfu</title>
  	<link>http://ask.metafilter.com/67804/LotusNotesHelpMeFilter#1015948</link>	
  	<description>Funny you should ask this, I was just researching a product called  &lt;a href=&quot;http://software.emc.com/products/software_az/emailxtender_archive_edition.htm?hlnav=T&quot;&gt;EmailXtender &lt;/a&gt; today.&lt;br&gt;
&lt;br&gt;
 Apparently it can do exactly what you are after for both Notes and Exchange mail stores.  I don&apos;t know much about it yet (other than the corporate site rah-rah), but a client is threatening to send us mail in this format, and I haven&apos;t even see a nybble of the functionality. &lt;br&gt;
&lt;br&gt;
Pricing may be of the &amp;quot;If you have to ask...&amp;quot; variety (former Legato product, now merged with EMC), but if you need it, you need it.&lt;br&gt;
&lt;br&gt;
&lt;small&gt;If you do go with this, drop me a line and tell me all about it -- I&apos;m a really lazy researcher.&lt;/small&gt;</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.67804-1015948</guid>
  	<pubDate>Thu, 26 Jul 2007 01:32:11 -0800</pubDate>
  	<dc:creator>drfu</dc:creator>
</item>

    </channel>
</rss>
