New ios8 prevents me from deleting emails. Help

WWhen I delete emails they keep reappearing and error message says I cannot move to trash in new iOS downlad.

Hi Franders,
Welcome to Apple Support Communities.
Take a look at the article linked below, it describes a similar issue and provides a resolution that will work for most issues like the one you described.
iPhone and iPod touch - Unable to delete email messages
I hope this helps.
-Jason

Similar Messages

  • Prevent user or users from deleting emails in Outlook or OWA?

    Dear,
    I have a question, I have Exchange 2013 SP1, how I can prevent user/s from deleting emails (specifically sent items) from Outlook or OWA?
    Thanks
    Regards

    Hi,
    In your case, you can enable litigation hold for these users in your Exchange 2013 server. If you want to place all mailboxes on hold, you can use the following cmdlet:
    Get-Mailbox -ResultSize Unlimited -Filter {RecipientTypeDetails -eq "UserMailbox"} | Set-Mailbox -LitigationHoldEnabled $true -LitigationHoldDuration 2555
    For your reference:
    Litigation Hold and In-Place Hold in Exchange 2013 and Exchange Online
    http://blogs.technet.com/b/exchange/archive/2013/12/11/litigation-hold-and-in-place-hold-in-exchange-2013-and-exchange-online.aspx
    Hope this can be helpful to you.
    Best regards,
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Amy Wang
    TechNet Community Support

  • How to prevent iPhone 4 with iOS 5 from deleting email from the MSN server

    when I was running iOS 4 I could sent my iPhone to never delete emails from the server but I just noticed that after the update iOS 5 when I delete an emial from my iPhone it shows up as deleted in my Outlook on my laptop. I looked and was not able to find a setting to prevent my iPhone from deleting emails fromt the server.
    Am I missing something?

    Thank you for responding!  The music I no longer want, I removed.  This is why it's confusing me so much.  The music I've deleted from both my iPhone and my computer is STILL showing up in my Music on iTunes, under my iPhone in devices.  Does that make sense?  I'm not particularly down with the techie lingo.  Haha.

  • What is the orange tick on the icon attached to a "user"? I am trying to remove 2 users and I think the tick is preventing me from deleting.

    When transferring from an older imac, to my new one with mountain lion, I was persuaded to nominate about 3 account names. I really just want the whole lot under the one a/c name. So I am trying to delete 2 user names, but I think the orange ticks prevent me from deleting. Each of these user names is qualified by the description "standard". Help.......I cant find help anywhere else.

    >>What is the orange tick on the icon attached to a "user"?
    It means that the system thinks they're logged in.

  • How To Prevent ATV From Deleting Previously Synced Files?

    Hi,
    Due to the limited size of my laptop hard drive I have to move the downloaded movies and music video from iTunes to an external USB hard drive after syncing them with the ATV.
    I double click in iTunes the moved file to relocate it again on the external drive so it won't appear as a missing or deleted file.
    But just today, iTunes started to sync a new downloaded movie and erased all of the files that I removed from the laptop hard drive.
    So who can I prevent ATV from deleting those relocated files?
    Thanks.

    if itunes opens up and the external drive is not attached, it is going to flag any file it references on the external drive as unavailable. if the file is not made available and located by itunes before the apple tv syncs with itunes, then the file will also be made unavailable to the apple tv (correct me if i've got this wrong, but i'm fairly certain this is how it goes).
    itunes and apple tv utilize a sync relationship, and in any device/host sync relationship one or the other has to win during a database conflict.
    iTunes always wins if the file originates from itunes (i say this because when you purchase from the ATV, the ATV will push the file to iTunes that first time, but afterward if you remove it from iTunes it will be removed from the Apple TV. This is a little bit off subject but it is relevant as it is the only time the Apple TV gets to win). Otherwise, if it's not in iTunes, it won't be on the apple tv (when the two sync with each other).
    if you want to prevent the ATV from deleting the relocated files, make sure they are available in itunes when the ATV syncs with itunes.
    let us know if you make any observations where the files are available and this continues to happen.

  • Prevent user from deleting rows from all tables in his own schema

    Hi,
    How can I prevent user from deleting rows in all tables in his own schema.
    I want the user to not able to delete rows from any existing or new tables that might be added in the future.
    The user does not have the "DELETE ANY TABLE" system privilege.
    Please advise.
    Thanks.

    Nowadays, I'd also avoid triggers (if possible).
    Sometimes, when I daydream, I'm rewriting a few applications that I've contributed to as a newbie, and I'm very ashamed of it nowadays.
    From what I've experienced, in retrospective, the emphasis on teaching 'Oracle stuff' has been lying far too much on PL/SQL row-by-row oriented processing instead of letting Oracle 'crunch' sets at once.
    Most of my debugging hours ended up in discovering one or more database triggers 'doing stuff automagically'.
    Another nice blogpost: http://rwijk.blogspot.com/2007/09/database-triggers-are-evil.html
    Regarding OP's question:
    I would just rethink/reconsider this requirement completely.
    Correctly implementing privileges and roles seems the best way to go, yes.
    Triggers? Nah...
    pre-post-edit, noticed thread got updated just before posting
    Don't know what you mean with 'namedropping', but I think it's legitimate to point other readers to interesting Oracle related opinions/articles that do have a technical background and lots of interesting examples.
    post dreaded OTN outage edit (from here)
    Again: I would just rethink/reconsider this requirement completely.
    Both trigger/vpd are being used to hide a design flaw here.

  • Prevent user from deleting someone else data

    I have a table
    create table T(
    infoID number primary key,
    info varchar2(4000),
    user varchar2(1)
    and users a,b,c with object priveleges on table T.
    What is the best way to prevent user from deleting someone else data?
    1. Create a view for each user to interacat with ( where user='a') and revoke privileges from table T.
    2. Use procedures or trigers to catch a bad user.
    3. ?

    Leo is certainly correct that VPD will solve the issue you have described. however another option also exists without the need to create a separate view for each user (as you described) or the use of VPD, the option would be to do something like the following.
    create user ownera identified by ownera;
    create user usera identified by usera;
    create user userb identified by userb;
    create user userc identified by userc;
    grant connect, resource to ownera;
    grant create view to ownera;
    grant connect to usera, userb, userc;
    conn ownera/ownera
    create table mytable ( id number primary key,
    userid varchar2(8) not null, mod_date date not null, text varchar2 (100));
    create sequence mytable_seq;
    create or replace trigger biu_mytable_trg
    before insert or update on mytable
    for each row
    begin
         select mytable_seq.nextval into :new.id from dual;
         :new.userid := user;
         :new.mod_date := sysdate;
    end;
    create or replace view v_mytable as
    select * from mytable where userid=user;
    grant select, insert, update, delete on v_mytable to usera, userb, userc;
    try inserting and selecting as the various userX users.
    Good luck.

  • How do I prevent iCloud from deleting my iTunes library?

    How do I prevent iCloud from deleting my iTunes library?

    I don't think it can do that. Only you can delete it.
    Actually this article explains the process to upgrade your music very well.
    http://www.macworksinc.com/guides/itunes-match-definitive-answers-what-is-it-how -do-i-use-it-and-is-it-safe/

  • After adding a new account, I can't delete emails from the inbox of this account.

    I just added a sixth account to my Thunderbird installation. There was no problem adding the account and I can send and receive emails without problem. However, I cannot delete emails from the inbox. What should I do to correct this?

    It is a POP account.
    I just backed up the profile.
    I don't know the size of the inbox nor how to see what it is nor change it. However, the inbox for this account is currently empty. (Yes, I know this post is about not being able to delete emails from the inbox, so how can it be empty? In my research I found a post of someone with the same problem who discovered he could move emails from the inbox to another folder and then delete that folder (not the individual mails in the folder, but only the entire folder). That is how I emptied the inbox, but it is a very cumbersome work around that I shouldn't have to do.

  • 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?

  • HT1923 In trying to delete the Apple file in the Program/Common File I can delete all contents except the Internet Services folder.  Thus preventing me from deleting the Apple FIle.  Error message says I need permission to delete this file.  How do I proc

    Trying to delete the Apple Folder from Program Files/Common Files.  I can delete all the contents except for the Internet Services folder which prevents me from making the deletion.  The error message says "you need permission to delete this file".
    Discovered this problem when trying to upgrade from my 3G iPhone to a new 5S iPhone unsucessfully.

    See note 3 of Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Trying to export inbox to a new mac. exported folder has deleted emails. Why?

    using import/export tool to export mail box. My exported inbox has thousands of previous deleted emails. can't work out where they are coming from
    Ditto my sent folder

    Simply create a new profile and copy the old one over it.
    http://kb.mozillazine.org/Moving_your_profile_folder_-_Thunderbird#Create_a_new_profile_and_copy_the_old_one_over_it

  • Prevent users from sending emails to wrong users

    Hi
    I was looking for a possible way of stopping users from sending emails to the wrong person.
    Wonder if this can be achived by group policy or creating rules and alert.
    What im actually looking for is when the user is about to send out the email they get a pop up message saying you about to send email to such person would you like to send now?
    hoping there is some sort of a solution for these problem :)
    cheers  

    Yes, some more details please.
    The closest thing I can think of is (in Exchange 2010 - no available in 2003 or 2007) is Mailtips:
    http://technet.microsoft.com/en-us/library/dd297974.aspx
    But I'm not sure that's quite what you're looking for.
    And how could any software know if the person is the right person?
    It would have to read the person's mind and realize they are about to make a mistake by sending the message to X instead of Y.
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you.
    Hi Le Pivert,
    I can understand your opinion an outlook will have to be that smart to realize that the email is about to be sent to a wrong person.
    What i was look for is something like a pop up notification when click on send it has a pop up message saying you are about to send this email click yes or no to cancel.
    Something like when receiving emails outlook sends the notification.
    I guess the above cant be achive through the outlook may have to be a third party software it there is any.
    Cheers
    KB
    I would look at these offerings if you are looking at Outlook Add-ins
    http://www.slipstick.com/addins/auto-process/special-function-automatic-message-processing-tools/
    If you thinking about server side solutions, Exchange has mailtips, hub transport rules, moderated groups etc... And of course 3rd party stuff is out there as well.

  • How do I stop ActiveSync from deleting emails on server

    Hi, 
    We came across a problem where users are deleting emails from their activesync devices accidentally. We need to stop it besides providing them activesync facility.
    Is there any way we can restrict sync of email deletion from activesync devices so the sync from Device to Server remains disabled. What we want is 
    Server --> Device Sync Enable
    Device --> Server SYnc Disable
    Hasan

    Hi
    You will have to look at a POP3 account that leaves the mail on the server.
    I have not seen a setting in active sync that stop mail from being deleted. If you make a change on your phone it will update the mailbox.
    Mails will be in the deleted items. How are users "accidently" deleting mail when you actually have to press the delete/trash button?

  • How do I keep my iPod from deleting emails on other devices?

    My wife and I share the same POP and iCloud account. When I delete email from my iTouch it deletes emails on all of our Macs. How do I keep this from happening?
    I have my iPod set to delete on iPod only. Settings> Mail, Contacts, Calendar> my POP account or IMAP> Out going Mail Server, Advanced> Mailbox Behaviors, Deleted Mailbox> and I have selected the setting: On My iPod.
    I've been trying to find a way to change this behaiveour with out any luck. I have some friends with the same problem.
    Thanks!

    A POP account does not syncronize the account among messages.
    Could it be that your are deleting the messages from the server when you get the mail on your iPo
    in Settings> Mail, Contacts, Calendar> my POP account or IMAP> Out going Mail Server, Advanced> Mailbox Behaviors, Deleted Mailbox> set it to nerver remove messages from the server.

Maybe you are looking for

  • Error coming while installing Cisco Prime 4.2 on Windows Server 2008 R2

    Hi, I'm trying to install Cisco Prime 4.2 on Windows Server 2008 R2. While initiating the installation, message box "Error: csv not found" appears, and the installation terminates. Is there any csv template need to be copied at any location before ha

  • Sorting TreeMap

    Hi, I've been trying to work this out and can't seem to find a solution. I have a treemap of object and I want to sort them by their names, such as lastname. These object hold all these datas. I wrote myself a comparator class like this: import java.

  • Importing orf files in Photoshop 10

    every time I try to import .orf files from my Olympus E-PL5 into PS10 it says that it doesn't recognize the file. I don't know how to fix it. PS10 says there are no updates available and that it supports .orf files but it doesn't work. I'm using Wind

  • I updated Safari above what is permitted on OSX 10.7.5. How do I fix this?

    I have a computer that is running 10.7.5 and I updated safari to version 6 but apparently it is not supported on this version of OSX but now I cannot revert back to an older version because for some reason it prevents me from doing so. Does anybody k

  • Message type NEU in POs

    Hi, how can I set SAP so that it will create automatically two message type NEU one in italian and the other one in english ? Regards