Deleting emails from an Outlook client connecting to POP mailbox

9,021

Solution 1

You can do this in the advanced account options in Outlook Express:

  1. Go to Tools -> Accounts
  2. Highlight the rocketmail account and click Properties
  3. Go to the Advanced tab.
  4. Click the box that says "Leave a copy of messages on server". It should already be checked since you mentioned that's what you were already doing.
  5. Check the box that says "Remove from server when deleted from 'Deleted Items'"

As long as you permanently delete your messages (delete them from Deleted Items), Outlook Express will login in to the POP3 server and delete those messages.

Another one I like to use is the other check box on that page that says: "Remove from server after X days" Set X to whatever makes sense for you. In your case, I would set it to however long it takes you to read the 1000's of messages per day.

Regarding IMAP, it will work better for Synchronizing your messages, but you will notice that it requires a good solid connection to the Internet. Even though there is a local copy of the mailbox on your machine, it still trys to check into the server a lot to see if it needs to change things. This will make OE slow down noticeably. Also, depending on how big these messages are, Rocketmail is going to limit how many messages you can keep since IMAP stores the messages on their server.

The other thing annoying about IMAP is you can't change the pre-defined folders and you can't subfolder under those pre-defined folders. Hard to explain here, unless you try for yourself.

Solution 2

The simple answer is yes, but in application, probably no.

I'm going to go back to basics to try and explain what's going on. I'd say that this is from memory and might not be 100% technically accurate, but should be enough to make sense. No doubt the community will correct me (and fill in an gaps) :)

If we go back to the 90's (and I suppose earlier) when email and "the internet" was taking off, email systems are comparable to the postal system at a university with pidgin holes. POP3 is the Post Office Protocol (version 3). EG:

  1. The Sender write a letter and wrap it in an envelope ready for sending.
  2. The Sender then takes the letter to a postbox.
  3. The letter gets routed to the recipients university's mail room.
  4. The mail-room staff put the letter into the correct pidgin hole for the recipient.
  5. The Recipient goes to the mail room to check their pidgin hole for mail.
  6. The Recipient takes any mail back up to his dorm room to read through it.

so looking at our computers now

  1. The Sender writes an email in your mail client and specify an address and other attributes within the header (envelope).
  2. The Sender connects to your SMTP server and send give sent it the mail.
  3. The Sender's SMTP server will work out the recipients mail server and deliver the email to them.
  4. The Recipient's mail server routes the email to the correct mailbox for the username.
  5. The Recipient checks for mail. Connecting to the POP3 server we check our inbox for mail.
  6. If we find any email, we download it for reading.

Ok, so POP3 lets is access our pidgin hole and grab everything in there. It was absolutely fine when people were keeping all their post at home on the one computer.

Shortly after, we find ourselves in a situation where people suddenly want to access the same data from multiple devices in multiple locations; person with multiple email clients on different devices (phone, work, home...) and also this whole cloud computing jango where we access everything via the web, or even worse, where we want all three.

This is where POP3 falls on its ass. Although as you've realised, you can set it not to delete the email once it downloads it, you're actually overriding the default functionality and this leads to interesting problems.

Its like getting the university mail room to take a photocopy of all of your letters. They will, but when you next come to collect your post they have no way of knowing whats new or what you already have a copy of. It can also be slow and bad tempered.

So, we get IMAP(4) coming along which helps to fix this problem.

Instead of your mail client grabbing everything from the remote server and dumping it into some specified local folder (inbox) IMAP is working with a remote set of folders and files and just keeping a local cache updated with whats going on on the server.

With all of your email staying on the server it means its always available to access on multiple devices or via webmail. The other bonus is that when you're downloading mail via IMAP rather than POP, its a lot more clever about synchronisation so you don't end up re-downloading the same emails all the time. You can set up different sync options for different folders which can make managing lots of emails easier.


So, in closing:

Any way to stop this without deleting them on the webmail side

On the webmail side, I would try and create a new folder and then move all of the emails from this mailing list into it. Hopefully outlook will only be downloading your 'inbox' folder and will therefore skip all those other emails.

If you can create email rules or filters in your webmail then you might be able to set it up to do this automatically.

and would this happen with IMAP protocol?

If you were using IMAP then when you deleted all those emails from outlook they would have been deleted on the server as well (as its just synchronised folders).

There is a good chance that your web host won't let you do server side filtering, so you would have to go and sort through manually in the webmail each time. Using IMAP means that you could create server side folders in outlook and use that to move mail into correct folders.

The other bonus, is that you could tell outlook to use the server side "sent" and "drafts" folders, so you could start drafting something in outlook and finish it in the webmail, or view mail sent through the webmail in outlook.

Hope this makes some sense :S

Share:
9,021

Related videos on Youtube

blippy
Author by

blippy

Updated on September 17, 2022

Comments

  • blippy
    blippy almost 2 years

    I have POP setup so I can check my rocketmail.com webmail in Outlook Express. I signed up to a high volume mailing list that filled up my inbox with several thousand emails.

    I deleted them from Outlook but when I go to sync with rocketmail it starts downloading all the deleted mails again.

    Any way to stop this without deleting them on the webmail side and would this happen with IMAP protocol?

    thanks

  • BuildTheRobots
    BuildTheRobots over 14 years
    quick point: user wanted the emails stored server side and NOT locally. Also IMAP & Subfolders seems happy (last time I tried it was using courier as the server). As for needing a good connection its happy on my 2g connected phone.
  • Scott Lundberg
    Scott Lundberg over 14 years
    No problem, yes, I understand he wants to be able to check it in both places, but if he permanently deletes them from OE, than that would suggest to me that he never wants to see it again. Subfolders: I was referring to the fact that you can't create subfolders under the defaults (Inbox, Deleted, etc) you have to create them in their own root folder.
  • blippy
    blippy over 14 years
    you're intuition was correct Scott - MidnighToker thanks for the thorough explanation of pop3 and Imap very helpful - would vote up if I had enough rep!