Deleted emails stay on server Nokia E51

Hi, I'm using Nokia Messaging V5.1 on a nokia e51. It's working fine and the only hitch with it is when I delete a mail from my phone it's still on the server when I view mail from a desktop client. Anyone know how to set up the sync'ing so that when a mail is deleted from the phone it gets deleted from the server. My mail accounts are pop3.
Cheers,
pgriffin 

Nathan,
If your exchange server is set up to "never delete", your emails will stay. However, I have found that if I empty my "deleted mail" folder, they do not show back up in my inbox.
Try this.....hopefully it works for you.

Similar Messages

  • Deleting emails on the server..is that possible?

    Good Morning:
    I have a new iPod touch and 3 (long sad story) email accounts. One is a ,mac account, one is a gmail account and one is a POP account.
    I have tried fussing with the settings for two weeks now and I am close to giving up.
    I need my iPod Touch to delete the email from the servers when it downloads it or when I delete it from the iPod. It doesn't matter which as long as it does not stay on the server to be downloaded to my computer later as "new" email. I can't seem to make it work that way. No matter what, the email appears on my computer as a "new" email.
    I am going to be traveling for over a month and would like to be able to read my email once and not have to sort 6 thousand messages when I get back.
    What are the appropriate setting combinations to make this work?
    I thought I was a pretty savvy guy, but apparently not.
    Thanks for any instructions or help y'all can offer.

    I found the answer, not here but by pestering an Apple representative I know. As an aside, he was a bit confused as well. He called in his "team" and we got an answer.
    It turns out that even POP accounts are asked when to delete the messages off the server and the Touch treats POP accounts a bit like an IMAP account. If you tell it to remove deleted emails off the server after one day, which is as close as the Touch comes to behaving like a POP account and pulling messages off the server immediately, it will remove them after one day, not immediately, like a typical POP connection.
    If I pull email from my POP account to the Touch on Monday morning and delete it on the Touch, it will be there for my laptop to pull and remove from the server Monday afternoon, but by Tuesday, the laptop wouldn't see it. Does that make sense?

  • How can I increase the time deleted emails stay in the trash folder?

    Sometimes I find that I need to refer back to an email that was deleted. Right now the emails are dumped from the trash folder very quickly. I would like to let the deleted emails stay in the trash folder for a much longer period of time.

    Is this on Comcast email? Another email site?
    Usually this is set in the options for the site, and not in Firefox itself.
    If you are retrieving mail into the Thunderbird email program, there actually is a different support forum for Thunderbird here: https://support.mozillamessaging.com/home

  • Delete email from Telus server

    I have an iPhone 3GS and I use a telus.net account. I have my phone set to delete the email from the server if deleted from the inbox but this is not happening.
    Thank you

    hi..anyone has solutions to this? i tried all methods but it does not delete from server

  • Delete Email from POP server

    Hi
    i am set my iphone 4 to delete email from my pop server after 7 days. However, it is noticed that the email remains in the server and not deleted.
    Do anyone face the same problem and is there any solution as i need the iphone to delete the email

    hi..anyone has solutions to this? i tried all methods but it does not delete from server

  • How to  delete email attachments from server

    Hi,
    I created an a CF template for sending e-mail which includes
    attachments. It has been tested on my dev box and is functioning
    fine as the attachment upload to a designated directory on the
    server. I would like the attachments to be purged once the e-mail
    has been forwarded to the recipent.
    In Macromedia's ColdFuision 7MX web application construction
    book page 913 "Interacting with Email" there is a CFC that will
    delete the file when the user ends their session.
    I am not sure how to write this to fit the code I am using.
    Here is the eMail form
    <!--- Mail_Form.cfm--->
    <html>
    <head>
    <title>Please enter your message</title>
    </head>
    <body>
    <form action="Send_Email.cfm" method="post"
    enctype="multipart/form-data">
    <table width="500" border="0" align="center">
    <tr>
    <td width = "500" colspan="2">Please enter your e-mail
    message:</td>
    </tr>
    <tr>
    <td width="250">To:</td>
    <td width="250"><input type="text" name="to_addr"
    value=""></td>
    </tr>
    <tr>
    <td>Subject:</td>
    <td><input type="text" name="subject"
    value=""></td>
    </tr>
    <tr>
    <td>Message:</td>
    <td><input textarea name="message" rows="5"
    cols="35"></textarea></td>
    </tr>
    <tr>
    <td width="250">Attachment #1:</td>
    <td width="250"><input type="file"
    name="attachment_1" value=""></td>
    </tr>
    <tr>
    <td width="250">Attachment #2:</td>
    <td width="250"><input type="file"
    name="attachment_2" value=""></td>
    </tr>
    <tr>
    <td width="250">Attachment #3:</td>
    <td width="250"><input type="file"
    name="attachment_3" value=""></td>
    </tr>
    <tr>
    <td width="250"> </td>
    <td width="250"><input type="submit"
    name="Send_Email" value="SendEmail"></td>
    </tr>
    </table>
    </form>
    Here is the form to send the attachment.
    <!--- Send_Email.cfm --->
    <!--- First make sure that the user uploaded attachments
    --->
    <cfif FORM.attachment_1 neq "">
    <!--- first actually upload the file --->
    <cffile action="upload"
    destination="D:\uploadsTEST\"
    filefield="attachment_1"
    nameconflict="makeunique">
    <!--- now create a temporary holder for the attachment
    later on --->
    <cfset attachment_local_file_1 =
    "d:\uploadsTEST\#file.serverfile#">
    </cfif>
    <!---Now repeat the process for the second and third
    attachment:--->
    <cfif FORM.attachment_2 neq "">
    <!--- first actually upload the file --->
    <cffile action="upload"
    destination="D:\uploadsTEST\"
    filefield="attachment_2"
    nameconflict="makeunique">
    <!--- now create a temporary holder for the attachment
    later on --->
    <cfset attachment_local_file_2 =
    "d\uploadsTEST\#file.serverfile#">
    </cfif>
    <cfif FORM.attachment_3 neq "">
    <!--- forst actually upload the file --->
    <cffile action="upload"
    destination="D:\uploadsTEST\"
    filefield="attachment_3"
    nameconflict="makeunique">
    <!--- now create a temporary holder for the attachment
    late on --->
    <cfset attachment_local_file_3 =
    "d:\uploadsTEST\#file.serverfile#">
    </cfif>
    <!---OK, you have now uploaded the file the server, now
    let's send
    out the email with the attachments:--->
    <cfmail FROM="[email protected]" to="#form.to_addr#"
    subject="#subject#"
    server="an001so-dby1c.pbi.global.pvt" port="25">
    #message#
    <cfsilent>
    <!--- <cfsilent> tag used to kill the white space
    in this area
    so your email is not cluttered with white space.--->
    <cfif FORM.attachment_1 neq "">
    <cfmailparam file="#attachment_local_file_1#">
    </cfif>
    <cfif FORM.attachment_2 neq "">
    <cfmailparam file="#attachment_local_file_2#">
    </cfif>
    <cfif FORM.attachment_3 neq "">
    <cfmailparam file="#attachment_local_file_3#">
    </cfif>
    </cfsilent>
    </cfmail>
    Here is the session application code to delete the file upon
    uploading
    <!---
    Filename: Application.cfc
    Executes for every page request
    --->
    <cfcomponent output="false">
    <!--- Name the application. --->
    <cfset this.name="attachmentPurge">
    <!--- Turn on session management. --->
    <cfset this.sessionManagement=true>
    <cfset this.clientMangment=true>
    <cffunction name="onSessionEnd" output="false"
    returnType="void">
    <!--- Look for attachments to delete --->
    <cfset var attachDir = expandPath("Attach")>
    <cfset var getFiles = "">
    <cfset var thisFile = "">
    <!--- Get a list of all files in the directory --->
    <cfdirectory directory="#attachDir#" name="getFiles">
    <!--- For each file in the directory --->
    <cfloop query="getFiles">
    <!--- If it's a file (rather than a directory) --->
    <cfif getFiles.type neq "Dir">
    <!--- Get full filename of this file --->
    <cfset thisFile =
    expandPath("Attach\#getFiles.Name#")>
    </cfif>
    </cfloop>
    </cffunction>
    </cfcomponent>
    The tutorial only explains how to delete the attachment when
    the recipient checks there mail
    in the POP server.
    Assuming that the sender is in a session would the code be
    written to delete the attached file from the directory on
    the server one the e-mail is sent.
    Can someone explain how to automatically delete email
    attachments from a designated directory or provide me with the code
    that would handle this after an email is sent with attachment.
    Thanks,
    Tony

    I don't know why your dos code didn't run. It could be
    addressing. My limited experience with cfdirectory/cffile/cfexecute
    is to type out the complete path at least once.
    Good books?
    Hard to say, depends on what else you are new at. If you are
    new to html, then htmlgoodies.com has good tutorials. So does
    webmonkey.com. If you have trouble with sql, I have heard good
    things about the SAMS book, Teach Yourself SQL in 10 Minutes by Ben
    Forta. I learned javascript by buying the book Teach Yourself
    Javascript in 24 Hours. The O'Reilly books are also good. I learned
    awk with one of those books.
    Glad you liked the fish pics. The camera is specified on most
    of the pages. If it says Reefmaster, I used an external strobe. If
    it says Sony I either used the camera flash only or natural light.
    By the way, that is not a Cold Fusion site. It's strictly html and
    javascript.

  • How do I stop my iphone from deleting emails from the server and visa versa

    I have the iphone 4, recently my phone started sending email info to the server. Meaning it deletes emails from my hotmail account if I delete them off my phone and visa versa. I know there is a setting under advanced setting, I don't have that button. I showed someone in the apple store and she said it was a software issue and to wipe my phone and back it up from my back up, this didn't help anything, neither did re setting the settings. I don't even have the spot in the settings where I can put in the pop3 information. This is a new thing my phone started doing and I don't understand why I don't have the same setting buttons as everyone else. Any advice? The only other thing I can think is wiping my phone and starting over but I don't want to lose the data in my aps
    I'm on the newest software version, this started happening just before I did that update.

    POP3 settings won't appear if an IMAP service can be found. Basically, you're going to have to set up the account with bogus information so that the phone can't find the server by itself. Then, when it can't, you'll be presented with the advanced settings where you can set it up as POP3 and enter the settings you want to use.
    POP3 is considered pretty much obsolete these days. The whole point of IMAP is to allow you replicate the server based mail store completely so that all information is available across all of your devices. If you don't want things crowding your in-box, but don't want to delete it entirely, why not just set up folders and move things where you want them to be once you read them?

  • IPhone 4 deleting email from Yahoo server

    Just upgraded to iPhone 4 from the original one. Noticed that when I delete email from my Yahoo account, the messages are also deleted from the server and can not be retrieved from my iMac/iBook. This did NOT happen with my old iPhone. Tried re-entering my Yahoo account but it is still happening. Any suggestions? Thanks

    Found the solution. Delete the Yahoo account. Create a new "Yahoo" account using the "Other" e-mail account setting. Called it "Yahoo1". After providing the normal Yahoo set-up information, my iPhone went into the "verifying" mode and after some time (checking the settings with Yahoo) it created the account on my iPhone. Went to the "advanced" setting and got a different screen then with the original Yahoo account. This screen had an option "delete from server", which I set for never and now everything is working fine.
    Again, I did NOT get this screen when using the normal default Yahoo account set-up. Only using "other" did I get this option.

  • Deleted email from the server

    I know about downloading and removing email from the server by using the "Remove copy from server after retrieving a message" option in the Account preferences tab but I want to keep all of my messages on the server for a few weeks but want to delete spam from the server immediatly. does someone have a script or is there a setting that i'm missing.
    Thanks
    Bill

    Please see the following link. Answer is at the bottom. Ray Tollett
    http://discussions.apple.com/message.jspa?messageID=5292324#5292324

  • HT3228 deleting emails from pop server

    It would appear that the new operating system has not continued to allow email messages to be deleted from a pop server by an Ipad or Iphone or am I not looking in the right places to change the applicable settings?

    Yes, they have changed the settings in iOS5
    Check this page: http://windowslivehelp.com/solution.aspx?solutionid=6ae4b9c2-1c01-4e9c-bdc5-12da 8728f4c2
    My POP account still has this option, but it's not a hotmail account. Maybe you should set up the IMAP version for hotmail accounts.

  • Deleting email messages from server and device

    I had to wipe my 8830 due to a major sync problem but I no longer have the option to delete from the server when I delete email messages. I checked the user's guide and throughout my device. Where do I find this setting please?

    Ok, here is the Knowledge Base article relating to your need.
    http://www.blackberry.com/btsc/KB13509
     From your MESSAGES folder > Menu > Options > Email Reconciliation > Message Services.
    If those settings are not present on your device... you probably have some Service Book problems (as in not present or corrupt).
    Do this: First, look at Options > Advanced > Servcie Books and delete ALL service books releated to any email account.
    Then, with the BlackBerry device powered ON, remove the battery a few seconds and then reinsert the battery to reboot
     Then do this:
    1. Options > Advanced > Host Routing Table > Menu > Register.
    2. Resend your service books from your carrier BIS site.
    http://www.blackberryfaq.com/index.php/Where_can_I​_log_into_my_BIS_account%3F
    3. With the BlackBerry device powered ON, remove the battery a few seconds and then reinsert the battery to reboot
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Deleting email messages from server

    I have set my (POP3) mail box to delete messages from its server immediately on download. But messages are not being deleted from the server. Any ideas as to why this should be?
    Thanks
    Andy

    Ok, here is the Knowledge Base article relating to your need.
    http://www.blackberry.com/btsc/KB13509
     From your MESSAGES folder > Menu > Options > Email Reconciliation > Message Services.
    If those settings are not present on your device... you probably have some Service Book problems (as in not present or corrupt).
    Do this: First, look at Options > Advanced > Servcie Books and delete ALL service books releated to any email account.
    Then, with the BlackBerry device powered ON, remove the battery a few seconds and then reinsert the battery to reboot
     Then do this:
    1. Options > Advanced > Host Routing Table > Menu > Register.
    2. Resend your service books from your carrier BIS site.
    http://www.blackberryfaq.com/index.php/Where_can_I​_log_into_my_BIS_account%3F
    3. With the BlackBerry device powered ON, remove the battery a few seconds and then reinsert the battery to reboot
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Deleting emails from the server?

    I tried to email a video as an attachment to 5 recipients.  I did this 5 times in a row with different videos attached to each.  They got jammed up and never went out. I deleted them on my macbook pro and they do not show up in my outbox. Now I can't send or receive email on either my laptop or my iphone.  My iphone worked for awhile, but now no.  I think I need to delete them on the 'server'...how do i do this?  Help!!

    Log on to the Web based email system of your email provider. Then delete whatever you want.

  • Delete Emails from Web Server

    Hello,
    Is it possible to delete my emails from the BB web-server before they are "pushed" to my handheld? I have not used my phone in a while due to some travels and it is unnecessary for all my messages to get downloaded to my handheld.
    Thank you for your help,
    NL

    Which mail ID you're using?
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

  • Deleted email stays in Inbox

    I have deleted an email but it will not remove from the "From" column. It has changed color from black to manila but I cannot get rid of it in the Inbox.

    Try rebuilding the mailbox -
    click on the inbox in the list on the left
    In the Mailbox menu - choose Rebuild
    The other possibility is that you are using IMAP email which will change the color of a deleted message to show that the next time Mail syncs with the server that message will be deleted.

Maybe you are looking for

  • 3rd party software for syncing media to blackberry phones

    Not spam. I wanna say that right out front. I'm not trying to sell anything but I do have an app that can add a lot of value to windows users who need to sync Android G1's, Blackberry's, a PSP, iPhones, iPods and dang near any device.This is somethin

  • Parse Exception : java.text.ParseException: Unparseable date

    I have inherited a UDF in some mapping that on the whole, works okay... but it throws an error after mapping a few dates: Parse Exception : java.text.ParseException: Unparseable date: "2010-03-18T00:00:00.000Z" Parse Exception : java.text.ParseExcept

  • How to create an array with a resultset

    Hello, Can somebody suggest a good way to put the result set of a query of a standard table into an array? The result set will have 0 to many rows. I can copy the rows into the array one row at a time, but I don't know what size array to create at th

  • Database will not update! grr

    I am using an excel database to store a string "Verb" and a number "Type". Heres the thing: The update works IF excel has the database open and is displaying it. Then when i click the save button, I can see in excel that my verb has popped up. Then,

  • Acrobat SDK 9: how is AVAppOpenDialog a replaceable method in DMSIntegration sample?

    When I try to replace the Open Dialog call in PluginImportReplaceAndRegister(void), the error received is: "Attempt to replace an unreplaceable selector" and indeed, it is not in the list of replaceable methods in the Core API reference.  gcbAVAppOpe