How many email messges in your inbox

Aztech

Golden Member
Jan 19, 2002
1,922
0
0
I use Yahoo! for email. I haven't deleted anything since they went unlimited. I now have close to 12,000 in my Inbox and almost 8,000 unread. I'm just wondering how crazy that is and want to compare to others...

If you've got high numbers, post your quantities, followed by any comments. Like this:
Inbox = 12,000
Unread = 8,000
Man, I need to unsubscribe from a lot of stuff. But so many sites have benefits for signing up for their newsletters. It's hopeless!
 

Arcadio

Diamond Member
Jun 5, 2007
5,637
24
81
Total: 8401
Unread: 3197
Percentage of unread mail that comes from an online computer store: 95%
 

YOyoYOhowsDAjello

Moderator<br>A/V & Home Theater<br>Elite member
Aug 6, 2001
31,204
45
91
inbox 13,177
unread 0

I was going to empty it out and apply labels and such, but I decided that I'd rather just keep everything "just in case"
 

bignateyk

Lifer
Apr 22, 2002
11,288
7
0
3497 unread, out of 4902 total.

Note: I don't delete, or move any messages. All the unread messages are newsletters and other junk that isn't considered spam.
 

Snapster

Diamond Member
Oct 14, 2001
3,916
0
0
inbox + subfolders: 2761
unread: 0

That's just 2009, everything is archived off per year.
 

SparkyJJO

Lifer
May 16, 2002
13,357
7
81
Total: 3846
Unread: 0

I actually thought I'd have more than that in my inbox, I haven't cleared it out in a long time.
 

oznerol

Platinum Member
Apr 29, 2002
2,476
0
76
www.lorenzoisawesome.com
Gmail:

1 in inbox (as a reminder)
0 unread

I keep my inbox empty and archive everything. I have filters set up to auto-tag certain things. The search feature is flawless, so there's no point in having a cluttered inbox. Even if you don't label things, archiving and searching is much better than having a full inbox - especially if you try and sync your mailbox to other things.
 

Evadman

Administrator Emeritus<br>Elite Member
Feb 18, 2001
30,990
5
81
Inbox: ~1.2 million total emails (Estimate, because I don't want to count each folder)
Unread: ~200,000 (estimate because I don't want to count each folder) Highest folder is 154,458 unread as of this moment.
Total spam received, ever: 2. (great spam filter. Go us!)
Total size: 16.8 GB (not including archives)
Archived: 91k (compressed) email itself, and 6.75GB in attachments.
Total rules: 37
Coolest Rule: A script that saves the attachment to the file system, removes the file from the email itself, and notates in the email the stored location of the file in the file system. Saves space on the exchange server.

<edit>
Oh, so far today I have got a total of 119 (deleted 31 saved the rest) as of 10:38 AM CST.
 

armstrda

Senior member
Sep 15, 2006
426
0
0
Originally posted by: Evadman
Inbox: ~1.2 million total emails (Estimate, because I don't want to count each folder)
Unread: ~200,000 (estimate because I don't want to count each folder) Highest folder is 154,458 unread as of this moment.
Total spam received, ever: 2. (great spam filter. Go us!)
Total size: 16.8 GB (not including archives)
Archived: 91k (compressed) email itself, and 6.75GB in attachments.
Total rules: 37
Coolest Rule: A script that saves the attachment to the file system, removes the file from the email itself, and notates in the email the stored location of the file in the file system. Saves space on the exchange server.

<edit>
Oh, so far today I have got a total of 119 (deleted 31 saved the rest) as of 10:38 AM CST.

Mind sharing that script?
 

Evadman

Administrator Emeritus<br>Elite Member
Feb 18, 2001
30,990
5
81
Originally posted by: armstrda
Mind sharing that script?

Sure.

Sub SaveAndRemoveAttachments()

'Declaration
Dim CurrentItems, CurrentItem, EmailAttachments, myAttachment As Object
Dim SaveDirectory As String
Dim myOlApp As New Outlook.Application
Dim OutlookSess As Outlook.Explorer
Dim SelectedEmails As Outlook.Selection
Dim FSO As Object
Dim FolderCheck() As String
Dim Path As String

'SecurityManager.DisableOOMWarnings = True

'Ask for destination folder
SaveDirectory = InputBox("Destination", "Save Attachments", "C:\Archives\EmailAttachments\")

'leave if cancel pressed or no path passed in
If SaveDirectory = "" Then
Exit Sub
End If
SaveDirectory = Replace(SaveDirectory, "/", "\")

'check here to see if folder exists. If it doesn't use FSO to create it.
Set FSO = CreateObject("Scripting.FileSystemObject")

FolderCheck = Split(SaveDirectory, "\")
For i = 0 To UBound(FolderCheck)
Path = FSO.BuildPath(Path, FolderCheck(i))
If FSO.FolderExists(Path) = False Then
FSO.CreateFolder (Path)
End If
Next

On Error Resume Next

'work on selected items
Set OutlookSess = myOlApp.ActiveExplorer
Set SelectedEmails = OutlookSess.Selection

'get the selected items
For Each CurrentItem In SelectedEmails
Set EmailAttachments = CurrentItem.Attachments
If EmailAttachments.Count > 0 Then 'check if there are attachments
'add removal header
CurrentItem.Body = CurrentItem.Body & vbCrLf & vbCrLf & vbCrLf & "Removed Attachments:" & vbCrLf
For i = 1 To EmailAttachments.Count 'remove each attachment and add message stating removed
EmailAttachments(i).SaveAsFile SaveDirectory & DatePart("YYYY", CurrentItem.CreationTime) & Right("0" & DatePart("M", CurrentItem.CreationTime), 2) & Right("0" & DatePart("D", CurrentItem.CreationTime), 2) & "-" & Right("0" & DatePart("H", Now()), 2) & Right("0" & DatePart("N", CurrentItem.CreationTime), 2) & Right("0" & DatePart("S", CurrentItem.CreationTime), 2) & "_" & EmailAttachments(i).DisplayName
CurrentItem.Body = CurrentItem.Body & "File: " & EmailAttachments(i).DisplayName & " To: " & SaveDirectory & DatePart("YYYY", CurrentItem.CreationTime) & Right("0" & DatePart("M", CurrentItem.CreationTime), 2) & Right("0" & DatePart("D", CurrentItem.CreationTime), 2) & "-" & Right("0" & DatePart("H", Now()), 2) & Right("0" & DatePart("N", CurrentItem.CreationTime), 2) & Right("0" & DatePart("S", CurrentItem.CreationTime), 2) & "_" & EmailAttachments(i).DisplayName & vbCrLf
Next i

'Remove attachment from email
Do Until EmailAttachments.Count = 0
If IsEmpty(EmailAttachments) Then
Exit Do
End If
'remove it (use this method in Outlook 2000)
EmailAttachments(1).Delete 'EmailAttachments.Remove 1 for office XP
Loop
CurrentItem.Save 'save the email without attachment
End If
Next

'cleanup
Set CurrentItems = Nothing
Set CurrentItem = Nothing
Set EmailAttachments = Nothing
Set myAttachment = Nothing
Set myOlApp = Nothing
Set OutlookSess = Nothing
Set SelectedEmails = Nothing

'SecurityManager.DisableOOMWarnings = False
End Sub
 

Elganja

Platinum Member
May 21, 2007
2,143
24
81
inbox - 3 (like to keep a very clean inbox)
all mail - 29880

i never delete anything (just archive)
 

Beattie

Golden Member
Sep 6, 2001
1,774
0
0
Gmail:
Inbox: 20
Unread: 0

Who would leave unread messages? Also some of you need to learn to use the archiver.
 

dwil

Golden Member
Oct 9, 1999
1,384
0
0
Inbox: 2887
Unread : 27


I move mail to OLD after about 3 months (15,954 in there)