Deleting email from Iphone only not from gmail account

  I have business emeails that come through on my Iphone.  I want to delete them from my Iphone only.  Not delete them totally from gmail.  Can not find a way to do that.  What am I doing wrong?

You can do this when accessing the account as a POP account on the iPhone only with the correct settings for not removing messages from the server when deleted from the iPhone - if Gmail supports accessing the account as a POP account.
Accessing the account as a POP account with an email client on one computer or mobile device and as an IMAP or Exchange account on another can cause problems.

Similar Messages

  • Full page prints from iPhone but not from iPad using photo app with AirPrint ?

    Full page prints from iPhone but not from iPad using photo app with AirPrint ? iPad only prints 4x6 on full size paper. It's an HP 8600.

    I also have this problem printing photos from an iPad to an Epson WF-2540 printer. It prints only 4x6 and without border (so print starts at extreme top left corner of paper). Borderless printing is not selected on printer. Printing a square photo just crops to 4x6 size.

  • Selective Deletion from Infocube Only (Not from Aggregates)

    Hi,
    For the Selective Deletion, i used the FM 'RSDRD_SEL_DELETION' in program. But this FM deletes the data first from Infocube then from aggregate.Because of this, deletion took more time to delete and adjust the Aggregate.
    I need an way in which i can delete the data from Infocube only and after i reach to my reconcile period then i will deactivate and actiavted the aggregate, so the data will be consistent in Infocube and aggregate.
    is there any to Delete(Selective Deletion) the data only from the Infocube not from its aggregate (for the Performance Point of View)?
    Thanks in Advance.
    Regards,
    Himanshu.

    Hi
    You can try manual selective deletion which will delete data from cube only. check out the below thread.
    steps fro selective deletion for cubes and ODS
    If you want to delete data from FM only, then try to deactivate your aggregates before you start your selective deletion.
    Once deletion is done, you can reload the aggregates
    Regards,
    Venkatesh

  • How to delete email off iphone but keep on emil account

    how to delete email off iphone but keep on emil account

    Deleted it the same way you added the email account.

  • Delete exchange email from iphone but not from PC

    I just set up an exchange email with my outlook on my pc. We do not use gmail. I want to be able to have my calendar and contacts sync automatically. However, if I delete mail from my phone, I do NOT want it deleted from my computer. I've searched for answers and can't find any that solve the issue. The phone is 5s.

    I really hate to disappoint you, but IMAP and Exchange both act the same way. Mail is stored on the server, when mail arrives, it is synced to all devices. When mail is deleted, it is synced on all devices. You cannot store mail locally in an IMAP or Exchange account. The best answer to your dilemma is to set the amount of days to sync on the phone so you are only observing a smaller amount of mail versus removing the actual mail. Again, as Meg mentioned, you can always manage your mail on the computer and move mail out of the inbox into storage folders if you really want to keep the mail to view/search on the computer, but it would not necessarily be visible on the phone. You can set your Inbox sync to as low as 1 day, so you would only see a single day's mail on the phone, while retaining all of your mail on the server.
    Hope this helps.

  • Emails delete from iphone but not from my pc?

    Hello all,
    I have been noticing a problem lately but sadly cannot put my finger on when it started to occur because I was not paying enough attention to the details until it was too late.
    I have an iPhone 3GS with all the latest updates and such. I have a personal Yahoo! email account set up on my phone as well as my university Outlook email. This is an "outlook live" email that I access by going to outlook.com on a computer, not the kind of inbox that you have to download. I receive new emails from my Outlook account on my phone with no problem, but when I delete emails from my phone, then log on to my email on a computer, the emails are not deleted. I do most of my emailing from my phone, so I was shocked to log in to my email on my pc one day to discover that I had 132 emails even though I had deleted nearly every single email that I received. This appears to have started abruptly. I have had this account set up on my phone for many, many, many months and have not had any problems. I haven't changed my password or anything like that... Has anybody else experienced this problem and how did you fix it?

    This is possible with one of two ways.
    With an IMAP account that is accessed as an IMAP account with the iPhone's Mail app and the same with an email client used on your computer for accessing the account. If you don't use an email client on your computer for accessing the account, this will work when accessing the account via webmail access using a browser on your computer.
    It is possible to access a Yahoo account as an IMAP account with the iPhone's Mail app but it is not possible to access the account as an IMAP account with an email client on your computer. Yahoo doesn't support accessing a Yahoo account as an IMAP account with an email client on your computer.
    With a POP account along with the setting for the account on the iPhone to remove messages from the server after being downloaded when moved from the account's Inbox mailbox or in 7 days after a message has been downloaded.

  • Delete file from folder only (not from list)

    Hi all,
    I've searched a lot and didn't succeed so far, that's why I need your help. In a cloud context, I'm actually creating and uploading files (pdf and/or xml files) "on the go" to sharepoint folders via the SOAP API and this is perfectly working. But
    in a cloud context, I also need to decomission services which is translated into deleting files into Sharepoint.
    That's where it became complicated, because according to the API we cannot delete files if they are not part of a list structure, which is not my case. Is that true ?
    The only info I have when trying to delete a file via the SOAP Api is : its name, its folder, and the endpoint where the folder is. So my question remains simple I guess : is this possible ? If so, how to (a link to the SOAP body would be usefull)
    Thanks a lot
    Regards
    Baptiste

    Hi,
    According to your post, my understanding is that you want to delete file from folder.
    In SharePoint 2010, It is recommended to use Client Object Model to achieve it, the following code snippet for your reference:
    string siteURL = "http://siteurl";
    ClientContext context = new ClientContext(siteURL);
    //specific user
    NetworkCredential credentials = new NetworkCredential("username", "password", "domain");
    context.Credentials = credentials;
    Web web = context.Web;
    context.Load(web);
    context.ExecuteQuery();
    string relativeUrl =web.ServerRelativeUrl +"/DocumentLibraryName/FolderName/FileName";
    File file = web.GetFileByServerRelativeUrl(relativeUrl);
    context.Load(file);
    file.DeleteObject();
    context.ExecuteQuery();
    If you still want to use SOAP API, we can use the UpdateListItems method under Lists web service to achieve it.
    http://www.dhirendrayadav.com/2010/06/delete-list-items-using-web-service.html
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/61466984-1844-48a1-8c1e-1c59a0f9876a/move-and-delete-files-remotely-using-sharepoint-web-services-?forum=sharepointdevelopmentlegacy
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • Remove songs from iPhone but not from playlist in 7.1

    I use iTunes Match and I recently updated my iPhone 5 to iOS 7.1.  Before 7.1, when in the music app and I wanted to delete a song from my phone i was able to swipe from right to left and delete the song from my phone but it would still remain in the playlist, only it would now show a cloud icon.  Now in 7.1 when i swipe right to left and hit delete, it deletes the song from the playlist (song disappears) I am in and not from the phone, with no way to tehn add it to a playlist.  Is there any way to go back to way it previously worked?  How do I only delete a song from my phone withput removing it from a specific playlist?

    My settings are to show that all music is on and I disagree.  I used to be able to delete songs from the phone without removing them from a playlist.  Maybe it was before iOS 7 but I def could do it.  I would swipre and hit delete and the song would remain but now show a cloud icon.

  • How do I delete photos from iPhone but not from connected iPad and mac

    Too many photos on iPhone, but if I try to delete it says will delete from all devices, Mac and iPad.  I want to keep on Mac and iPad.  Is there a way to do this.

    connect iphone to a computer
    start itunes on computer
    navigate to iphone in itunes
    click photos tab on the content panel on the iphone
    set it to sync with a source which does not include photos you don't wish to
    be stored on your phone
    clikc sync

  • Can send email from iphone but not from mac.

    Hi. I'm using a mac desktop and the mail app. I can receive email, but not send. I checked my port and id/pswd and still cannot send. After the app tries to send, it says the server is offline.
    I am able to send email fine with my iphone.
    Any ideas would be appreciated. Thanks!

    I've checked this and mail connection doctor says I am connected  - think I am going to have to get someone in to help me as I have spent about 4 hours on this now :-(

  • ICal Server - User can log in from iPhone but not from Desktop Mac

    I've got quite the peculiar problem with iCal Server on OS X 10.6.6 - my users can log in and access the shared calendars using their iPhones. When I set up an the same account on their desktop Macs in iCal, I get an error message "The server did not recognize your user name or password for account <username@servername>".
    I'm positive that username and password are correct. The only thing I found about that in the log files was that the CalDAV server returns a 201 HTTP status code when accessing the account from the iPhone vs. a 407 status code when using iCal on their desktop Mac. The same accounts are used for Email, File Sharing and Address book, all of which run fine.
    Has anyone experienced a similar problem? Maybe even solved it?

    Solved it myself - there was a non-ASCII character in the account password. Strange that the iPhone didn't have a problem with that while iCal did. Now that I've changed the password to contain only ASCII characters, the problem is gone.

  • Delete contacts from icloud, but not from iphone

    I want to delete all my contacts and calendar appointments from iCloud, but not from my iphone, and i still want to have iCloud turned on in the future.
    I have tried to delete the iCloud account from my iphone but when i log in to iCloud.com from a computer the contacts are still there even though i deleted the iCloud account.
    How do i remove these things only from iCloud?

    I fixed it, i had to turn off the syncing of the contacts and the calendar on the phone and then delete them from iCloud. Obviously if i turn on the syncing of these items again the contacts and calendar appointments will reappear in iCloud.
    So problem solved.

  • Please help I just accidentally deleted a very very important note from my "Notes" on my iPhone 4s.  How can I get it back? Is there a "Trash" file somewhere for deleted notes?  Thank you, Susan

    Please help I just accidentally deleted a very very important note from my "Notes" on my iPhone 4s.  How can I get it back?
    Is there a "Trash" file somewhere for deleted notes?
    Thank you,
    Susan

    Had you never backed up the phone before? When you saw the iTunes logo and cable, the device was in recovery mode. The data was already lost. The only way to recover from that is to restore the device, which will delete all of your data. You will only be able to restore to your last backup, whenever that was. Sorry this happened, but this highlights the importance of doing regular backups. The backup is the only protection you have against a problem like this.

  • Delete Apps from MacBook but not from iPhone

    How can I delete Apps from iTunes but not from iPhone 3GS when I Sync them? The moment I delete the Apps from iTunes and then sync iPhone, iPhone deletes them as well.
    Please assist.

    If you intend to ever sync your phone with your Macbook then you can't delete the app from your Macbook, otherwise the apps will also delete from your iPhone (as you've discovered).

  • IPhoto on Mac not showing photostream. My photos from iPhone were not on my Mac, I tried to import using cable. Now the photos show in iCloud only.  It seems frozen. On trying to close iPhoto down got message that photos being imported. 6 hours ago

    I have IMac on Yosemeite, 500GB. IPhone 5 on 8.2. My photos, from iPhone, had not appeared via photo stream on my Mac. I had been away from a while But expected the photos to appear on the Mac. There were 1000 in Photostream and 1200 in Camera Roll. I used a cable to import the Camera Roll, it stopped importing after 1000 photos. The photos, though, are in iCloud and I don't know how to access them to put them to Events. There are 3 recent Photostream events showing up in IPhoto withOut any photos. I tried to import to Library but was directed to Finder and no access to iPhoto. I tried to shut down iPhoto but got a message telling me photos were being imported. That's 6 hours ago and I'm still getting the same message. I don't know what to do. I'm not an expert, just a user.

    HHi, thank you for the reply. I have checked my iPad and iPhone and neither has iCloud Photo Library (Beta) enabled. Turned off in both. Photostream is turned on.
    i tried to sort it out  by dragging all the photos to Events on the Mac and then deleting them from iCloud - (left hand side of iPhoto under the section 'Shared'). the photos now show up in Events. I did force quit but the issue remains. The message reads ' photos are bing imported to the library. Please wait for import to complete.'
    i can't empty iPhoto trash either. The message read "Delete error. Please wait for import to complete.'
    WHen I was moving the photos to the Events I always had a message about duplicates - to the effect that the photos already existed, did I want to import them? I clicked on Yes, import all duplicates. But when it showed the images - duplicates side by side - one showed the photo and the other was blank.
    I really don't know what to do! And I don't know how to handle my iOS devices. Is it to do with the large number of photos? Any help, advice appreciated.

Maybe you are looking for

  • How to refresh a portlet without refreshing whole page?

    hi I have 3 jsp portlets on a page. Now, I can write some javascript code in a jsp and refresh it after a predetermined interval of time. If i do this with the jsp portlet the whole page will get refreshed which is not something i want to do. i want

  • IMac keeps crashing every few days or sometimes weeks OS.10.9.4

    My iMac see info below, crashes when left alone for a period of time sometimes overnight, sometimes after an hour or so. When it crashes the screen goes black but the mouse is still movable & visible.  Nothing else works. The only fix is the button i

  • How to get data type of variable in program..

    Hi ABAP Guru. I need to know how to get data type of variable or any structure field.. because I got short dump when use command REPLACE ALL OCCURANCE ... with variable/structure field that has data type I or P, I think it should be used with data ty

  • Copy of an external drive to another.

    hello I have an external disk that contains ECC6 and BI 7, is it possible to copy the file containing these two applications with rfc connection and paste it into another external drive. Will it work? if so RFC connection can it work in the new exter

  • My iPod Touch connects to windows, but not my mac.

    Hi there,                I have just bought a Macbook Pro, and tried connecting my iPod Touch to it. It didn't work (nothing shows up on the iPod to say it's even connected). So I tried plugging it into my windows7 machine, and it works fine. I was w