Create folder mail with pop3

Hi all,
I have not found a way to create sub folders within my pop3 email account, any answers please.
Already tried: created sub folder in hotmail which pulled through into laptop email account, no joy.
Fletcher

Apple's MobileMe account is an IMAP account.
A Gmail account can be accessed as a POP, IMAP, or Exchange account.
A Yahoo account created with the Yahoo account preset on an iOS device is created/accessed as an IMAP account but Yahoo does not support accessing a Yahoo account as an IMAP account with an email client on your computer or with any other device that I'm aware of.
Microsoft now supports accessing a Hotmail or Live Mail account as an Exchange account with an iOS device. This requires creating the account as a new account.

Similar Messages

  • Windows 2003 - create folder name with yesterday's date

    Hello friends..
    please advise,
    I want to create folder name with yesterday's date and then move yesterday's date files to this folder...so for example;
    if today is 2014_07_17 then create folder as below (2014_07_16)
    d:\test\214_07_16
    then move all files extension .txt from d:\test\*.txt to d:\test\2014_07_17
    thanks in advance...

    These ones may help.
    Use PowerShell to Create a Bunch of Folders Based upon the
    Date
    Using the Move-Item Cmdlet
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Receive mail with POP3 and saving to file using XI

    Hello! I'm new to XI, could you help me with this "simple" task: Receive mail with POP3 and saving to file.
    Thanks!

    Hi,
    you will need:
    Mail Sender Adapter
    http://help.sap.com/saphelp_nw04s/helpdata/en/23/c093409c663228e10000000a1550b0/frameset.htm
    and File Receiver Adapter
    http://help.sap.com/saphelp_nw04s/helpdata/en/bc/bb79d6061007419a081e58cbeaaf28/frameset.htm
    Regards
    Patrick

  • Create folder view with files and tasks

    Good day to you,
    we want to support our software development procces with Vibe. What we are doing is, we make changes to the source code and protocol corresponding things in certain files.
    We think in so called "releases" and every release consists of tasks and a list of changes. This list is held in an excel file, so I would like to create a folder view, which consists of tasks and files.
    So far I could create a custom folder view with attachments at the top and a task list at the bottom, based on the task family.
    The problem is, the attachment view as a standard folder view does not allow colleborative editing of attached files. You can only view and download attached files, but not open them via Office addin. Therefore you can not lock or version files, which is mandatory for collaborative work.
    I would like to mix the file folder view with it's possibilities with a task folder view.
    Any ideas?
    Warm regards
    bitschnau

    There's no out of the box way to achieve what you're looking for.
    Two solutions:
    1. Your users would need to open the entry first and then click on the "edit this file" link.
    2. You could code your own folder view or landing page element and build what you need.
    HTH
    Cheers
    Erik
    PS: Feel free to contact me offlist if you need professional support.

  • CSDT creating folder named with ID as name

    Hi,
    We have a problem with the CSDT plugin, when we use the plugin to create a new template from within Eclipse.
    For som reason, when creating a template from within Eclipse, the path to the Template is created like this ("injecting" a folder named with the ID of the element).
    /opt/fatwireCS/export/envision/cs_workspace/368618232028/src/jsp/cs_deployed/admin/services/something.jsp
    The actual path to the element should be:
    /opt/fatwireCS/export/envision/cs_workspace/src/jsp/cs_deployed/admin/services/something.jsp
    We currently fix this, by manually copying the file and the folders into the OWS folders-structure, and then sync with Contentserver. We can sync just fine with contentserver, and we use the plugin as the development tool for OWS, but we do have this funny behaviour with the folder named with the asset-ID.
    Anyone who knows a reason and/or solution?

    Hi Jakob,
    It's suspected that this issue is related to symbolic links. Are you using any symbolic links to access the workspace? If so, try not using symbolic links and see if the problem goes away.
    Do let us know if it helps, please.
    Kind regards,
    Stephan.

  • Creating folder dynamically with host command or any solution?

    I am working on storing BFILES against thier record. I need to know that how can i perform following tasks if i use host command or any other way if i can do this.
    1.     As there can be many categories agaist which i need to store files, first i need a separate folder for each category, I am looking for some solution that whenever any user creats new category then against that categoy a folder must be auto created.
    2.     when i insert records against any category then files should be stored in their specific directory.
    I hope It will clear to readers that whta i am looking for.
    I am using forms 10.1.2.3, on XP SP-3, WEBUTIL CONFIGURED.
    Regards
    Naveed

    I already made the changes in webutil file, but if you can please tell that does it Support UNC path,
    I changed webutil.cfg as follow
    transfer.appsrv.write.1=c:\temp,\\sermachine\test
    transfer.appsrv.read.1=c:\temp,\\sermachine\test
    but when i run the form i got following error,
    WUC-8: Server side logging was requested but no log file was specified - logging is disables
    Now i don't know that what should I change to work it with on UNC path.
    Thanks in Advance.
    Edited by: 853604 on Aug 18, 2011 10:41 AM

  • Create folder sync with automator

    I have a few machines runnign 10.4.11 in our office that we are trying to back up to a NAS.
    However, I can't seem to get any sort of workflow via Automator to work. Does anyone have any advice on how to set up a workflow that creates a weekly backup? On my iMac (10.6.8) Automator has a really easy setup for this, but 10.4.11 is quite a bit different and I can't figure it out.
    Thanks!

    Hi Benjamin,
    I think have iCal weekly execute an Applescript that backs up the folder is the way to go in 10.4.x

  • Creating folder names with variables in applescript?

    im trying to make folders and name them with structured names but im getting an error and im not sure what im doing wrong.
    the error i get is:
    Finder got an error: Can’t make "/Users/USERNAME/Desktop/Fake Server/Project Name" into type item.
    ----------------------these variables are just used for my example, the actual script asks for input and makes that into the variables -------------------
    set the_folder to "Macintosh HD:Users:USERNAME:Desktop:Fake Server"
    set theChosenOne to "Selected"
    set Code to "ABCD"
    set Number1 to "12345"
    set projLocation to (POSIX path of the_folder & "/" & theChosenOne)
    set folderTags to Code & " " & Number1
    tell application "Finder"
    make new folder at projLocation with properties {name:folderTags & " artfile"}
    end tell

    The following should work:
    set the_folder to "/Users/USERNAME/Desktop/Fake Server"
    set theChosenOne to "Selected"
    set Code to "ABCD"
    set Number1 to "12345"
    set projLocation to POSIX file (the_folder & "/" & theChosenOne)
    set folderTags to Code & " " & Number1
    tell application "Finder"
        make new folder at projLocation with properties {name:folderTags & " artfile"}
    end tell
    Message was edited by: Pierre L.

  • Synchronisation of Mail with POP3 account

    I have two email accounts, Mobile Me (now upgraded to iCloud) and a POP3 account from my ISP.  I had set things so that my MobileMe mailbox automatically read my POP3 account so that all incoming messages ended in my MobileMe mailbox.  This had the advantage of synchronisation between Macbook, iPhone and iPad.  The MobileMe/POP3 account synchronisation has recently stopped working.  I can't think of an event that might have caused this.
    I want to investigate but I can't remember how I set it up in the first place.  Can anybody help?
    I have a work around involving a rule in Mac Mail but this only works when Mail is running on the Mac whereas the previous solution didn't.

    I don't know if they will give you the certificate... but this is the process for adding certs for securing emails.
    Otherwise, try Outlook 2011.
    http://www.thebrokendesk.com/post/sending-encrypted-emails-on-mac-osx-mavericks/
    http://www.hoylen.com/articles/it/email/security/mail.html

  • You Can't Create A Mail Folder For POP Accounts?

    I can't believe that I am unable to create a folder for a POP email account so that I can file and manage my email on the iPhone 3g! Which rocket scientist at Apple made this decision? What happend to the "manage email on iPhone" Use Case?
    So, how do i use the iPhone for email if all i can do is load the last 200 emails into the inbox?

    You cannot have POP3 mailboxes on the iPhone. You can have IMAP mailboxes but you must create them on another client such as your desktop.
    Even if you could create POP3 mailboxes there would be no way to sync them with your desktop. the POP3 protocol does not support mailboxes; it was developed at a time when having mail on your desktop was unusual, and no one at the time ever thought you would have more than one computer to read mail with.
    One workaround is to get a free gmail account and set it to read your ISP mail. You can then set up the iPhone to sync with gmail via IMAP.

  • How can I create a mail folder where my gmail folders are

    Hi all, I have Mail with my Gmail account. My 'labels' have appeared as folders in my Mail. That's all great and I've learned how to use them effectively so that they all sync when going back to gmail.
    However I cannot create a new 'folder/label' where all the others are. I can only create a new folder as a subfolder and then move it.
    Is there a way to create another 'folder/label' where the existing ones are.
    See this screenshot, so I'd like to create a folder where 'Adobe' and 'Airmiles' folders are and not as a sub folder of 'Adobe/Airmiles' or of [Google Mail].
    Can I do that? I am able to create the folder as a sub folder and then drag and drop where I want it but ideally want to avoid this step.
    Thanks in advance
    Hayley

    Not in Mail. If you referring to not having to use the menu, you can click the + sign at the bottom to create new mailboxes. But you still have to fill in the window with location and name. You can right click to create a new mailbox on an existing one, but not in the main account itself and you still have to fill in the info. It would create a sub folder.
    You can also try it at the gmail website. There might be shortcuts there.

  • Yahoo Mail folder behaviour with Apple Mail 5.0

    I think it's great that Apple Mail 5.0 now has IMAP functionality with Yahoo Mail but I have one query that I'm hoping someone can help me out with.
    If I send mail with Yahoo Mail, using Apple Mail, it creates a new sent messages folder where my messages are put after being sent. What I would like to do however, is use the Sent folder, which Yahoo uses by defaul when using the web interface.
    Is there any way to get Apple Mail 5.0 to do this?
    Any help/ideas/suggestions

    I just did that for the "sent" folder that was showing up under the list of Yahoo folders.  It seems as if all email sent from my phone were going into that folder. Once I did that, the folder popped up under the Sent with the paper airplane icon.
    However, then it moved all of the ones that HAD been in the sent folder with the paper airplane (sent locally on the Mac) to a "Sent Messages (Yahoo!)" folder under "On My Mac".
    I'm assuming the paper airplane section is IMAP.  But now I still have sent items in 2 places:
    Sent (paper airplane)>Yahoo
    On My Mac>Sent Messages (Yahoo!)
    How do I resolve this so that ALL Yahoo email (whether sent from my iPhone or locally on the Mac--or even the web interface) goes to the same sent folder?

  • Mail with 6MB attachments created a 69 MB Monster, up and down, no end!

    Yesterday I sent a mail with about 6 MB of data, I couldn't wait until mail did its usual play with stupid upload to .Mac, upload to draft, re-download to drafts again, re-download to sent messages and so on. Today mail does nothing but trouble, everytime I start mail it wants endlessly to down- and upload a monster of a 69 MB file that I've never created and there is nothing to see, wheter to delete nor to refuse. Activity shows only that nothing goes forward and this task blocks anything else, I can't recieve mails, I can't send mails this way. This issue let go down anything with mail on my iMac! What can I do???

    Couldn't wait means I couldn't wait until it finishes this endless story!
    After a week of absence there is still the same problem. Ever and ever again it copies a 69 MB Monster to my drafts folder, I waited up to 5 of the same mail listed in the drafts folder and there was still no end. Deleting the files from drafts doesn't do anything, it shows "copy mail" in the activity window and there is no hope to end that task in hours! Then, after a while there is a timeout with .Mac.
    H O R R I B L E ! ! !

  • When deleting a user created folder from On My Mac in Mac Mail the sent messages that are part of conversations that reside there are not deleted, only the received mail gets deleted.

    When deleting a user created folder from On My Mac in Mac Mail the sent messages that are part of conversations that reside there are not deleted, only the received mail gets deleted. Any way for both the received and sent mail that resides there to be deleted?
    I create a lot of project folders where i keep all my conversations regarding the project. Once the project is finished i would like to just delete the folder and get rid of all the emails associated with it but when i delete the folder i've noticed that only received messages are deleted. Now I am stuck trying to sort through my sent folder for messages that were returned there after the conversations was supposedly deleted.

    Mail/Preferences/Viewing - un-check include related messages, delete the folder, then go back and reset yo include.

  • Create Folder in INBOX using Java Mail coding

    I want to create a folder in my INBOX and want to copy the incoming mails to the created folder and delete the incoming mails from my INBOX , By using POP3 protocol.

    For POP3, the only folder available is the INBOX. If you are using IMAP, you can have other folders available.

Maybe you are looking for

  • US iPhone 3G vs AUS iPhone 3G

    Question - If I buy an iPhone 3G unit in the US is it compatible and will it work in Australia on an Australian mobile phone network? Any suggestions?

  • Help requierd on mail sender adapter

    i m workin on a scenario to send email from a mail server inbox to XI.i need to configure mail sender adapter....need step by step help on that. regards, latika.

  • Using Execute Immediate in Forms9i (9.0.2.9.0)

    Hi People, I'm having trouble using the EXECUTE IMMEDIATE option from within a trigger in Forms 9i. Trigger compilation results in the error, "this feature is not supported in client-side programs". The Forms version is 9.0.2.9.0, The PL/SQL version

  • "Always open in column view" does not hold

    "Always open in column view" does not hold the preference when applied to my hard drive. I select Macintosh HD and choose the column view. I go to View > Open View Options and check "Always open in column view". Then if I click on a different folder

  • Active style  Property in tab canvas - forms 10g

    Hi , I have develop form in 10g and it has tab canvas, i set the active style property to bold . but in runtime it doesn't show the bold font in the tab title . please help out. Regrads Mani