Double emails

A

Aad Metz

I have update Entourage 2001 to 2004 (on my G4 OSX 10.3.6).
When I receive an email I get them twice.
So every email is listed twice.

Ofcourse I want only one email...:)

How can I solve this problem?
 
M

Matthew Fitzsimmons

I have the same problem, but it only happens occasionally. If you repair the
message list, it should fix it (until the next batch comes in). There's no
way to really fix the problem that I have found yet.
 
B

Barry Feldman

What do you mean by repair the message list, I'm having loads of
problems with the imap, .mac, mail on entourage.
 
M

Matthew Fitzsimmons

You can repair the message list by ctrl-clicking on an IMAP mailbox and
telling it to repair. See my other post in response to your other post. :)
 
A

Aad Metz

Oke,
So it doesn't work on my Pop-account?

Aad

Matthew Fitzsimmons said:
You can repair the message list by ctrl-clicking on an IMAP mailbox and
telling it to repair. See my other post in response to your other post. :)
 
D

Diane Ross

A

Aad Metz

Diane,
The srcipts seems to work only for E2001 and not for E2004..:)

Do you know how to contact to Allen?
 
B

Barry Wainwright

Diane,
The srcipts seems to work only for E2001 and not for E2004..:)

Do you know how to contact to Allen?

Here's one that works for E2004:

tell application "Microsoft Entourage"
set theMessages to current messages
if theMessages = {} then
set theFolder to selection
if class of theFolder is folder then
set mb to theFolder
else
display dialog "In the folder listing, please select the folder
you want to be scanned for duplicates" with icon stop buttons {"Quit"}
default button 1
return -99

end if
else
set mb to storage of item 1 of theMessages
end if
set theName to name of mb
say "Removing duplicates from mail folder: " & theName
set y to count messages of mb
say "Number of messages to check, " & y
set IDlist to {}
repeat with x from y to 1 by -1
try
set theHeaders to (get headers of message x of mb)
set AppleScript's text item delimiters to {"Message-"}
set temp to text item 2 of theHeaders
set AppleScript's text item delimiters to {return}
set theId to text 5 through -1 of text item 1 of temp
on error
set theId to ""
end try
if theId is in my IDlist then
delete message x of mb
else if theId ‚ "" then
copy theId to end of IDlist
end if
if x mod 100 = 0 then say "" & x
end repeat
set removedCount to y - (count messages of mb)
if removedCount is 0 then
say "Finished. No duplicates detected"
else
say "Finished. " & removedCount & " duplicates removed"
end if
set AppleScript's text item delimiters to {""}
end tell

Save the script as a compiled script & put it in the ŒEntourage Script Menu
Items¹ folder in your ŒMicrosoft User Data¹ folder. The script can be
manually run from the menu.
 
Top