RE: UceArchive Folder

2008-02-07 Thread Eric Wittersheim
UCE Archive Explorer works well for me.

 

From: vbs [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 07, 2008 8:37 AM
To: MS-Exchange Admin Issues
Subject: UceArchive Folder

 

I turned on IMF a short while ago and have not thought about it util I
found thousands of messages filling up the UceArchive Folder. Though I
could delete them I would like to review them just to make sure that I
am not junking anything important.

 

I Googled and found an article on the MSExchange.Org site describing two
utilities to manage it. IMF Archive and IMF Companion. The first was a
redirect to gotdotnet.com but this site has been closed down. The other
site was still there but with the following:

...

I've stopped, temporary, the support and enhancement of IMFcompanion.
This is to give me time to update the current VB6 developed edition, to
a version that uses the .NET Framework version 2, using VisualStudio
2005. 

There are several reports of overflow errors which I want to cure
before going any further. And I expect this will go away using a more
state-of-the-art platform. 

---

I downloaded it anyway to give it a try and when I opened it immediately
recieved overflow errors.

 

Any one have any recommedations on some tool to manage the UceArchive
folder? I do not want to have to open thousands of emails with
OutlookExpress

 

Thanks

 

 

 


~ Ninja Email Security with Cloudmark Spam Engine Gets Image Spam ~
~ http://www.sunbeltsoftware.com/Ninja~

RE: UceArchive Folder

2008-02-07 Thread Roger Wright
I use IMF Manager daily but usually only handle less than a couple
thousand messages.  You may want to delete anything over XX days old
first to get down to a manageable level.



Roger Wright 
Network Administrator 
Evatone, Inc. 
727.572.7076  x388 
 

Institute:  An archaic school where football is not taught. 
  
  
From: vbs [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 07, 2008 9:37 AM 
To: MS-Exchange Admin Issues 
Subject: UceArchive Folder 
  
I turned on IMF a short while ago and have not thought about it util I
found thousands of messages filling up the UceArchive Folder. Though I
could delete them I would like to review them just to make sure that I
am not junking anything important.

  
I Googled and found an article on the MSExchange.Org site describing two
utilities to manage it. IMF Archive and IMF Companion. The first was a
redirect to HYPERLINK http://gotdotnet.comgotdotnet.com but this site
has been closed down. The other site was still there but with the
following:

... 
I've stopped, temporary, the support and enhancement of IMFcompanion.
This is to give me time to update the current VB6 developed edition, to
a version that uses the .NET Framework version 2, using VisualStudio
2005. 

There are several reports of overflow errors which I want to cure
before going any further. And I expect this will go away using a more
state-of-the-art platform. 

--- 
I downloaded it anyway to give it a try and when I opened it immediately
recieved overflow errors. 
  
Any one have any recommedations on some tool to manage the UceArchive
folder? I do not want to have to open thousands of emails with
OutlookExpress

  
Thanks 
  
  
  


~ Ninja Email Security with Cloudmark Spam Engine Gets Image Spam ~
~ http://www.sunbeltsoftware.com/Ninja~

RE: UceArchive Folder

2008-02-07 Thread Sam Cayze
I've never had success using any of those tools if the UCE Folder grows
over a few thousand messages...
 
Here is a vbs script that I did not write to manage that folder.  Tweak
it and schedule it!
 
 
 
' folder to start search in...
path = D:\Program Files\Exchsrvr\Mailroot\vsi 7\UceArchive
 
' delete files older than x days...
killdate = date() - 6
 
arFiles = Array()
set fso = createobject(scripting.filesystemobject)
 
' Don't do the delete while you still are looping through a
' file collection returned from the File System Object (FSO).
' The collection may get mixed up.
' Create an array of the file objects to avoid this.
'
SelectFiles path, killdate, arFiles, true
 
nDeleted = 0
for n = 0 to ubound(arFiles)
  '=
  ' Files deleted via FSO methods do *NOT* go to the recycle bin!!!
  '=
  on error resume next 'in case of 'in use' files...
  arFiles(n).delete true
  if err.number  0 then
wscript.echo Unable to delete:   arFiles(n).path
  else
nDeleted = nDeleted + 1
  end if
  on error goto 0
next
 
msgbox nDeleted   of   ubound(arFiles)+1 _
eligible files were deleted
 
  '=
  ' Email Results:
  '=
 

Set Msg = CreateObject(CDO.Message)
 
With Msg
 
  .To = Your Email
   .From = From Email
   .Subject = nDeleted   UCE (SPAM) Messages Deleted
   .TextBody = nDeleted   of   ubound(arFiles)+1 _
 eligible files were deleted.  This files were older than the
'KillDate' of  _
  vbCrLf  Killdate  vbCrLf  vbCrLf  These files exist in this
folder:   vbCrLf  path
   .Send
 
   
End With
 
 
 
 
 
 
 
sub SelectFiles(sPath,vKillDate,arFilesToKill,bIncludeSubFolders)
  on error resume next
  'select files to delete and add to array...
  '
  set folder = fso.getfolder(sPath)
  set files = folder.files
 
  for each file in files
' uses error trapping around access to the
' Date property just to be safe
'
dtlastmodified = null
on error resume Next
dtlastmodified = file.datelastmodified
on error goto 0
if not isnull(dtlastmodified) Then
  if dtlastmodified  vKillDate then
count = ubound(arFilesToKill) + 1
redim preserve arFilesToKill(count)
set arFilesToKill(count) = file
  end if
end if
  next
 
  if bIncludeSubFolders then
for each fldr in folder.subfolders
  SelectFiles fldr.path,vKillDate,arFilesToKill,true
next
  end if
end sub 
 
 
 
 
 
 
 
 
 
 



From: vbs [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 07, 2008 8:37 AM
To: MS-Exchange Admin Issues
Subject: UceArchive Folder


I turned on IMF a short while ago and have not thought about it util I
found thousands of messages filling up the UceArchive Folder. Though I
could delete them I would like to review them just to make sure that I
am not junking anything important.
 
I Googled and found an article on the MSExchange.Org site describing two
utilities to manage it. IMF Archive and IMF Companion. The first was a
redirect to gotdotnet.com but this site has been closed down. The other
site was still there but with the following:
...
I've stopped, temporary, the support and enhancement of IMFcompanion.
This is to give me time to update the current VB6 developed edition, to
a version that uses the .NET Framework version 2, using VisualStudio
2005. 
There are several reports of overflow errors which I want to cure
before going any further. And I expect this will go away using a more
state-of-the-art platform. 
---
I downloaded it anyway to give it a try and when I opened it immediately
recieved overflow errors.
 
Any one have any recommedations on some tool to manage the UceArchive
folder? I do not want to have to open thousands of emails with
OutlookExpress
 
Thanks
 
 

 


~ Ninja Email Security with Cloudmark Spam Engine Gets Image Spam ~
~ http://www.sunbeltsoftware.com/Ninja~

RE: UceArchive Folder

2008-02-07 Thread Joe Heaton
I'm using IMFCompanion, and have opened successfully with over 10,000
messages in the archive.
 
Joe Heaton
 



From: vbs [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 07, 2008 6:37 AM
To: MS-Exchange Admin Issues
Subject: UceArchive Folder


I turned on IMF a short while ago and have not thought about it util I
found thousands of messages filling up the UceArchive Folder. Though I
could delete them I would like to review them just to make sure that I
am not junking anything important.
 
I Googled and found an article on the MSExchange.Org site describing two
utilities to manage it. IMF Archive and IMF Companion. The first was a
redirect to gotdotnet.com but this site has been closed down. The other
site was still there but with the following:
...
I've stopped, temporary, the support and enhancement of IMFcompanion.
This is to give me time to update the current VB6 developed edition, to
a version that uses the .NET Framework version 2, using VisualStudio
2005. 
There are several reports of overflow errors which I want to cure
before going any further. And I expect this will go away using a more
state-of-the-art platform. 
---
I downloaded it anyway to give it a try and when I opened it immediately
recieved overflow errors.
 
Any one have any recommedations on some tool to manage the UceArchive
folder? I do not want to have to open thousands of emails with
OutlookExpress
 
Thanks
 
 

 


~ Ninja Email Security with Cloudmark Spam Engine Gets Image Spam ~
~ http://www.sunbeltsoftware.com/Ninja~

RE: UceArchive Folder

2008-02-07 Thread Steve Szabo
I've used IMF Companion in several situations for some time now, and have
not experienced any problems with it. I found one server were someone had
turned on IMF, and then ignored it. IMF opened and found 37,000 something
messages in UCEArchive. Had no problem other than the boring task of plowing
through all those messages. I notice on the site that the author states that
there have been some reports of buffer overflows, but there is no mention of
it other than that.

 

I do have a copy of IMF Archive, if you would like. It is a small file and I
could send it to you as an attachment. I did not like it so much, because it
does not allow for group deletes, nor does it handily preview test in
messages as does IMF Companion.

 

\\Steve// 

 

From: vbs [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 07, 2008 9:37 AM
To: MS-Exchange Admin Issues
Subject: UceArchive Folder

 

I turned on IMF a short while ago and have not thought about it util I found
thousands of messages filling up the UceArchive Folder. Though I could
delete them I would like to review them just to make sure that I am not
junking anything important.

 

I Googled and found an article on the MSExchange.Org site describing two
utilities to manage it. IMF Archive and IMF Companion. The first was a
redirect to gotdotnet.com but this site has been closed down. The other site
was still there but with the following:

...

I've stopped, temporary, the support and enhancement of IMFcompanion. This
is to give me time to update the current VB6 developed edition, to a version
that uses the .NET Framework version 2, using VisualStudio 2005. 

There are several reports of overflow errors which I want to cure before
going any further. And I expect this will go away using a more
state-of-the-art platform. 

---

I downloaded it anyway to give it a try and when I opened it immediately
recieved overflow errors.

 

Any one have any recommedations on some tool to manage the UceArchive
folder? I do not want to have to open thousands of emails with
OutlookExpress

 

Thanks

 

 

 


~ Ninja Email Security with Cloudmark Spam Engine Gets Image Spam ~
~ http://www.sunbeltsoftware.com/Ninja~