Problem of where downloads/attachments go in Mail

Mail Attachment Download
I use the Mac's mail application, Mail. The default setting for where attachments are found is HOME >> Library >> Mail Downloads. I went into Mail Preferences and changed the downloads location to a folder I created, Attachments, which is a sub-folder in my main folder, Ken's Working Files. The path is as follows: HOME (named by me Ken) >> Documents >> Ken's Working Files >> Attachments. However, the attachments continue to be found in the default location, HOME >> Library >> Mail Downloads. Why can I not change the attachments download location to what I have specified in Mail Preferences?

I think attachments are saved in the folder homefolder/library/mail download when you open that attachment in Mail. that is just a setting/feature you cannot change.
You can save attachments to a designated location, and the default for that is the folder in homefolder/downloads. If you want to change the destination, then indeed go to mail>preferences>general and choose another path/location. Once that is done, the every time you right click on an attachment to save it you will have two options to save, the first being "Save Attachments..." where you have to choose the location, the secon being "Save XXXXX folder" XXXXX being the folder you have specified in mail>preferences>general
hope this helps

Similar Messages

  • I have been unable for the past few days to download attachments to E-mails on my Mac OS using Firefox

    I have been able to download attachments to E-mails for years. However, for the last several days the download process which seems okay but the attachment doesn't show up on the screen and a note appears about a blank document. When I switch to Safari, the downloads work fine. Therefore, I assume that the problem is with Firefox.

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • I can't drag and drop (download) attachments in Mac Mail

    The attachment, a PDF, will get stuck to the cursor for about 1 minute. Have to do a force quit. This is beyond a major headache. I have even tried right-clicking and doing a copy / paste. Seems like it won't copy to the clipboard (or whatever the Mac lingo is for that?)
    Mid 12 MPB, 10.9.2
    Thanks,
    Cmissle

    Hi thebunnyrules, I'm glad you've resolved your problem, but please be mindful of old topics and don't necrobump.
    https://wiki.archlinux.org/index.php/Fo … bumping.22
    Closing.

  • Can't download attachements on yahoo mail using firefox. IE will open them

    Can't download attachments on yahoo mail using firefox. IE will open them
    == This happened ==
    Every time Firefox opened
    == 5/4/2010

    You don't have to disable any addons or extentions!!!You guys are not going to believe this I figured out the problem it's really dumb...ok here goes the attachment uploader loads seperate so I got to thinking it's a popup so I went to options content and under block pop ups there is an option exceptions click on that and in the box type firefox.com and hit allow pow its fixed!!!!! :-)

  • Mail refuses to download attachments to where I want them.

    Although I've set Mail to download attachments to my desktop, it refuses to do this and downloads them into a thing called "Mail Downloads" in my Library folder.
    What am I doing wrong here?

    Thomas:
    Can you please provide guidance on where the Mail Downloads folder is actually located?  I'm now running Mail (v 5.3) on a new MBA under Lion 10.7.4 - but am totally unable to find that folder.
    Thanks
    Jim

  • Since the update to 7.0.1 I am unable to open download updates to IE 8. Nor can I download a fresh version of AOL 9.0vr or download attachments from web beased e-mails. Is there a problem with Firefox, please?

    I have several problems.
    1. I cannot download attachments from web based e-mail accounts (AOL & Tesco.Net) without Firefox crashing and having to be restarted.
    2. I can no longer start Internet Explorer 8
    3. I can't download a new version of IE 8 or AOL 9.0VR. The .exe files download and run but the remainder of the download and installation process does not happen.

    If you can’t use a Bluetooth accessory or car kit

  • When people text me pictures to my iphone5, I can not open them.  This was not a problem until I downloaded iOS 6.1.3.  I also can't open attachments from e-mails sent to me on my phone.

    When people text me pictures to my iphone5, I can not open them.  This was not a problem until I downloaded iOS 6.1.3.  I also can't open attachments from e-mails sent to me on my phone.

    Try a reset hold home/sleep buttons until Apple logo appears
    If that does not improve try a restore
    http://support.apple.com/kb/HT4137
    For your information
    We are NOT Apple here we are all users helping other users
    so emotion is ignored

  • Problem downloading attachments in Gmail

    Hello,
    I'm developing an application that sends mails with attachments from one gmail account to another gmail account and then I download those mails. The problem is that I can check the mails via pop3 and print their envelopes and that stuff but when I get the attachment via the dataHandler and getInputStream the message disappears from the message count and it's not possible to download it again, although if I enter to the gmail account the message is not even checked as read.
    Can you help me? Thanks.

    Ok so here it is the code for fetching mails with pop3. If I comment the "element.getDataHandler().getInputStream()" the mail doesn't disappear but then I can't get the attachment.
    public void connect() throws Exception {
              String SSL_FACTORY = "javax.net.ssl.SSLSocketFactory";
              Properties pop3Props = new Properties();
              pop3Props.setProperty("mail.pop3.socketFactory.class", SSL_FACTORY);
              pop3Props.setProperty("mail.pop3.socketFactory.fallback", "false");
              pop3Props.setProperty("mail.pop3.port", "995");
              pop3Props.setProperty("mail.pop3.socketFactory.port", "995");
              pop3Props.setProperty("mail.pop3.rsetbeforequit", "true");
              URLName url = new URLName("pop3", "pop.gmail.com", 995, "", this.username, this.password);
              this.session = Session.getInstance(pop3Props, null);
              this.store = new POP3SSLStore(this.session, url);
              this.store.connect();
    public void openFolder(String folderName) throws Exception {
              // Open the Folder
              this.folder = this.store.getDefaultFolder();
              this.folder = this.folder.getFolder(folderName);
              if (this.folder == null) {
                   throw new Exception("Invalid folder");
              // try to open read/write and if that fails try read-only
              try {
                   this.folder.open(Folder.READ_WRITE);
              } catch (MessagingException ex) {
                   this.folder.open(Folder.READ_ONLY);
    public void saveAttachment(String messageSubject, String path, String fileName) throws Exception {
    Message[] msgs = this.folder.getMessages();
              // Use a suitable FetchProfile
              FetchProfile fp = new FetchProfile();
              fp.add(FetchProfile.Item.ENVELOPE);
              this.folder.fetch(msgs, fp);
              for (Message element : msgs) {
                   if (element.getSubject().equals(messageSubject)){
                        System.out.println("MESSAGE " + element.getSubject() + ": Found! :)");
                        saveFile(path + fileName, element.getDataHandler().getInputStream());
                        break;
      public static void saveFile(String filename,
               InputStream input) throws IOException {
             if (filename == null) {
               filename = File.createTempFile("xx", ".out").getName();
             // Do no overwrite existing file
             File file = new File(filename);
             for (int i=0; file.exists(); i++) {
               file = new File(filename+i);
             FileOutputStream fos = new FileOutputStream(file);
             BufferedOutputStream bos = new BufferedOutputStream(fos);
             BufferedInputStream bis = new BufferedInputStream(input);
             int aByte;
             while ((aByte = bis.read()) != -1) {
               bos.write(aByte);
             bos.flush();
             bos.close();
             bis.close();
           }

  • How do you download attachments and once downloaded, where do you open it?  In the computer, it gets saved under Documents or Desktop, etc.  I can't seem to find those in iPad.

    How do you download attachments in iPad and once downloaded, where do you open it?

    do you have the evernote app?
    ok, well if you open a doc in mail app to preview it, it should say export to evernote, or another app that allows you to open files like good reader, ibooks, so it really just depends on the file type.
    if it is a picture then hold down on the photo and it will ask if you want to save it.

  • Default mail client does not automatically download attachments when they are over 130Kb

    Hi @ll,
    default mail client on Ipad does not automatically download attachments when they are over 130Kb
    Do you know if is possible to change this setting?

    We have this problem as well. Unfortunately after years of only supporting IE and finally rewriting our site to be standards compliant we are going to have to force users back to IE because of this issue. It's not feasible for us to walk users through changing the default viewer. The default should stay Adobe (if installed) until a more robust native version is available. I understand you want to promote free and open tools but if they don't work, it's just not good enough.

  • IPhone mail automatically downloads attachments when checking inbox, help ?

    Phone consuming massive amounts of data. Noticed when going to inbox attachements are fully downloaded before opening individual mail. Can't turn this off. Apple UK says this is normal. I can't beleive this. I have received mail On a handset for 10 yrs and every model prompted me to download attachments. Never used more than 100mb in a month. With iPhone I'm now using over 50mb per day. This is outrageous as email on the move is a necessity for me however I like to choose what I receive. Feels like I have bought an inkjet printer that takes rippoff cartridges. I've turned off push mail , set download remote images to off, set preview to 2 lines but did not help. If I go to inbox for a few seconds then exit, a while later I hear the message indicator sound , check my inbox again and there are my new messages with full attachments downloaded and waiting. When I open an individual message the attachment opens instantly , proving that it has already been downloaded. Is this normal?if so, please apple release a feature allowing me to choose to receive attachments or not

    Thnx for your assistance. You won't beleive this. Option 1 didn't work so before I went the clear device route I had a look at one of my associates iPhone. Turns out it does the same thing. We then checked another handset and same problem. Turns out both of them have been querying Vodacom because of massive data bills since they moved to iPhone. They didn't realize it was their mail attachments causing it until I pointed it out. The're milking us.
    Those screenshots you sent , are they from a 3gs running os 3.1.3?
    I cannot beleive Apple or Vodacom hasn't picked this up. Under these circumstances it makes the device unusable as a business tool for those who require access to email over mobile networks unless your prepared to throw huge money at a feature other manufacturers provide controls for. (no wonder blackberry has taken the business market here).

  • Mail app stopped downloading attachments

    All of a sudden I can't open pdf, doc, etc. attachments in my mail app on either my iphone or ipad. This only occurs in the Mail app. I downloaded the gmail app to get around this, but it's inconvenient. The mail app is so much better - when it works!
    Anyone else having this issue?
    All it does when I click on the attachment is pretend to open, then stop... or it will just blip like it's launching, then stop.
    This is so frustrating!

    By the way, my Mail App is version 5.3

  • In Mail, is there any way to prevent the ampersand 20 symbol in downloaded attachments?

    Long title, but as it suggests, every time I download an attachment in Mail that has a space in the title, Mail puts in %20 to replace the space (ascii symbol for space).  I'd like to prevent this and have attachments stored under the name they are sent.  Any way to do this?

    Is there any way to prevent the OS from querying the Superdrive when start
    No
    he OS queries the drive slot to see if there is a disc present.
    How can you tell? Based on the noise it makes?

  • If I change the nation setting of my iTunes in order to buy a song from the American iTunes store, then change my setting back to the Korean store (where you cannot buy music) will that create any problems with my downloaded content?

    If I change the nation setting of my iTunes in order to buy a song from the American iTunes store, then change my setting back to the Korean store (where you cannot buy music) will that create any problems with my downloaded content? I want to buy an album that I cannot get hold of in Korea, but it is available in the US iTunes store. However since most of my apps are downloaded from the Korean store I'll need to switch back in order to update them. Does anyone know if there are any issues in doing this. I'd rather find out before I spend money, change my store setting back to Korea, and then get told I can't listen to the music because I bought it from the US store and my iTunes is set to the Korean store.
    Cheers.

    You canot easily change your country settings.  The iTunes Store in a country is intended only for use by that country's residents, and only while they are in the country. To use the iTunes Store in a country you need a credit card (or other card type if acceptable in a country) issued in that country, billed to an address in that country, and also be physically present in that country when using the store.  You are also restricted to waiting 90 days between country changes.
    E.g., "The iTunes Service is available to you only in the United States, its territories, and possessions. You agree not to use or attempt to use the iTunes Service from outside these locations. Apple may use technologies to verify your compliance." - http://www.apple.com/legal/itunes/us/terms.html#SERVICE

  • I'm using OS 10.6.8 and Mail 4.5. When I receive mails with attachments which are visible the save button doesn't work. Some contacts have problems opening files sent by me using Mail too. This was never a problem on pre-Intel. A real Mac **** up !

    I'm using OS 10.6.8 and Mail 4.5. When I receive mails with attachments which are visible the save button doesn't work. And some contacts occasionally have problems opening files sent by me using Mail too. This was never a problem on pre-Intel Mac. A real Mac **** up ! Any ideas ?

    Can you drag and drop the attachments visible in the email to the Desktop OK or does that fail ?
    Re the sending: Are these recipients on Mac's or PC's as the file type could be an issue, if on Mac's then try setting the Mail Preferences Composing setting to Plain Text not Rich Text and see if that improves things.

Maybe you are looking for

  • Customer Workflows Not Working from SRM Inbox

    Hi everyone, We are upgrdaing our EBP v3.5 system to SRM 5.0 (SRM SERVER 5.5 SP 5). We are using integrated ITS and have many bespoke workflows which need to executeable in the SRM inbox via the integrated ITS and ultimately the portal (EP 7.0). We h

  • Major Bug in iPhoto '11 -- Blurry Photos in Books

    I spent the last week putting together a photo book as a Christmas gift for my wife. I was just about to hit the Purchase Book button when I noticed that several of the photos looked blurry. I attempted to double-click on them to examine them closely

  • Photoshop CS5 and Lightroom GUI

    Does anyone know about plans of redesign the Photoshop CS5 UI? In an older post Chris Cox said that it's on a feature request list. Can we take a look on that feature request list? Best regards R. Message was edited by: before&after

  • ADF treetable - Identify RightClick of selected vs unselected row

    Hello, We have a tree table with client and server Listeners set for selection and contextMenu types TreeTable is set to use contextMenu select = true Use Case 1 User selects a Row selection listener fires Use Case 2 User right clicks a selected Row

  • Audigy SE and Logitech Z-550

    I recently purchased the . When I go throught the sound test, both front speakers respond to the Left Front test, and no speakers respond to the Front Right test. All the other tests work fine. When playing a CD, only the left front and subwoofer are