Reveal email items in Finder

I find the 'reveal in Finder' option in several apps (e.g. iTunes) very useful, but am not able to find this option to use in Apple Mail (Leopard Version). Is this possible?

But I find that they are maintained as .emix files; these open using Text Edit. In addition, I use Journler as a doc mgnt. tool, and pulling an .emix file to Journler also allows to see the email (as an email, rather than even a txt doc).

Similar Messages

  • Querying Exchange 2013 Mail server for email items using c# and Exchange Web Services

    I am trying to upgrade an existing application that reads Exchange 2003 using WebDAV. The mail server is to be upgraded to Exchange 2013, so I am checking how I can use EWS.
    I have a problem in that although I know the inbox has unread items with attachments, the query I am running against the
    FindItems object is returning empty (results.totalCount=0)
    Here is my code snippet:
    private static void GetAttachments(ExchangeService service)
    // Return a single item.
    ItemView view = new ItemView(100);
    ServicePointManager.ServerCertificateValidationCallback = CertificateValidationCallBack;
    ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP2);// .Exchange2007_SP1);
    service.UseDefaultCredentials = true;
    service.AutodiscoverUrl("[email protected]", RedirectionUrlValidationCallback);
    ItemView view = new ItemView(1);
    string querystring = "HasAttachments:true Subject:'ATTACHMENT TEST' Kind:email";
    // Find the first email message in the Inbox that has attachments.
    // This results in a FindItem operation call to EWS.
    FindItemsResults<Item> results = service.FindItems(WellKnownFolderName.Inbox, querystring, view);
    //FindItemsResults<Item> results = service.FindItems(WellKnownFolderName.Inbox, new ItemView(50));
    if (results.TotalCount > 0)
    // looping through all the emails
    for (Int16 iDx = 0; iDx < results.TotalCount-1; iDx++)
    EmailMessage email = results.Items[iDx] as EmailMessage;
    if (email.IsRead == false) {
    // Request all the attachments on the email message. This results in a GetItem operation call to EWS.
    email.Load(new PropertySet(EmailMessageSchema.Attachments));
    foreach (Attachment attachment in email.Attachments)
    if (attachment is FileAttachment)
    FileAttachment fileAttachment = attachment as FileAttachment;
    What I am supposed to be doing is reading all the unread emails in the target inbox (only one Exchange server) and taking the attachments on disk so I can then add them as attachments as new cases on SalesForce.
    Where am I going wrong?
    Also, this line:
    ItemView view = new ItemView(100);
    was:
    ItemView view = new ItemView(1);
    Surely that will only look for one email item, right?

    thanks, do you know why I would be getting an error message like 'The specified object was not found in the store'
    here is my code:
    ServicePointManager.ServerCertificateValidationCallback = CertificateValidationCallBack;
    ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP2);// .Exchange2007_SP1);
    service.Url = new Uri("https://sgexc.bocuk.local/EWS/Exchange.asmx");
    //creates an object that will represent the desired mailbox
    Mailbox mb = new Mailbox(@"[email protected]");
    //creates a folder object that will point to inbox folder
    FolderId fid = new FolderId(WellKnownFolderName.Inbox, mb);
    //this will bind the mailbox you're looking for using your service instance
    Folder inbox = Folder.Bind(service, fid);
    FindItemsResults<Item> findResults = service.FindItems(new FolderId(WellKnownFolderName.Inbox, new Mailbox("[email protected]")),new ItemView(10));
    it's happening on this line:
    Folder inbox = Folder.Bind(service, fid);
    and if I try to use AutoDiscoverURL then I just see my own inbox.

  • Finding old emails in the Finder

    Hi, there,
    My iMac is used for my business, so I keep (one can call it archive) many important emails in their specific folders, some emails are 4-5 years old.
    I'm wondering what is the system, or logic, based on how the operating system is keeping emails in the Finder... Of course, one can retrieve old emails (that were not trashed) thru Apple’s Mail itself, but the reason for asking is, I backup some of those mailboxes, the important stuff, as part of my routine nightly backup, and in case of emergency, I may need to sort them out manually thru the Finder (am I right?)...
    My questions:
    1.  For some odd reason I have TWO places where my Mac stores those emails: in my (User>Mail>V2> Mailboxes>specific mailbox) folder, and also in my (User>Library>Mail>V2> Mailboxes>specific mailbox) folder...   Is that normal?  The V2 folder in my User folder is 14 GB, while the V2 in the User>Library is 19 GB. I’m not even sure now WHICH of those 2 folders my backup software is archiving...
    2.  Every mailbox has a folder with a long name starting with CECD2235-.... and inside there are bunch of folder named with single digits, and inside each a “Messages” folder with the emails.  But there’s no logic how the system is sorting those folders, the emails are all over the place.... I sure can’t find an email based on the date it was received...
    3.  One of the annoying things in the Finder is, once I open a folder the “modification date” immediately changes to THE MINUTE IT WAS OPENED, so in the future I can’t rely on sorting those folders by dates...
    Some education here would be appreciated...

    Thanks, Eric...
    1.  So should I just DELETE that MAIL folder I have in my user folder?
    2.  Of course, I can sort any folder items in the Finder by name, date modified, size, etc., BUT as we all know so well, the OS has not been very good in sorting the CONTENT of a folder, especially with several nested folders down, depicting the TRUE date of modification of the LATEST file inside.... So here, the latest example, I'm opening now a folder whose modification date shows Jan. 27, 2015, but inside there are files (nested in a sub-folder) with mod. date of Jan. 29...
    3.  Normal, but ANNOYING... I guess no way to tell my Mac to stop this behavior, right?  It makes little sense...

  • Why do deleted Outlook emails remain in finder?

    Why do delete outlook emails remain in finder after deleting the emails in outlook?

    Apparently Outlook never really deletes mail.  You can rebuild the database and then delete the backup of the original database that gets created when you do the rebuild.  But I don't think there any other way.
    Use Outlook's help menu, type Rebuild, and select "Rebuild the office database" for instructions.
    Note, there is a way to permanently delete mail if it is still in the Deleted Items mail box.  That is to press the shift key while selecting the items to be permanently deleted.  You will get a dialog asking if it is ok to do that.

  • Get-Item: Cannot find path ' ' because it does not exist. While running Powershell script.

    I am trying to run a PowerShell script to upload files into a SharePoint site in an Azure environment...the script works fine on my local machine, but every time I run it in Azure (remotely), I get errors. Here is what my simple script looks like...
    if ( (Get-PSSnapin -Name Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue) -eq $null )
    Write-Host "Loading Sharepoint Module "
    [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")
    Add-PSSnapin -Name Microsoft.SharePoint.PowerShell
    if ( (Get-PSSnapin -Name Microsoft.SharePoint.PowerShell) -eq $null )
    Write-Host "Failed to load sharepoint snap-in. Could not proceed further, Aborting ..."
    Exit
    #Script settings
    $webUrl = "http://sampleWebUrl"
    $docLibraryName = "My Documents"
    $docLibraryUrlName = "My%20Documents"
    $localFolderPath = get-childitem "C:\Upload\Test Upload\My Documents\" -recurse
    $contentType = "ContenttType1"
    #Open web and library
    $web = Get-SPWeb $webUrl
    write-host "Web:" $web
    $docLibrary = $web.Lists[$docLibraryName]
    write-host "docLibrary:" $docLibrary
    $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()
    write-host "files:" $files
    If ($contentType = "ContenttType1")
    #Open file
    $fileStream = ([System.IO.FileInfo] (Get-Item $file.FullName)).OpenRead()
    # Gather the file name
    $FileName = $File.Name
    #remove file extension
    $NewName = [IO.Path]::GetFileNameWithoutExtension($FileName)
    #split the file name by the "-" character
    $FileNameArray = $NewName.split("_")
    $check = $FileNameArray.Length
    #Add file
    $folder = $web.getfolder($docLibrary.rootFolder.URL)
    write-host "Copying file " $file.Name " to " $folder.ServerRelativeUrl "..."
    $spFile = $folder.Files.Add($folder.Url + "/" + $file.Name, [System.IO.Stream]$fileStream, $true)
    $spItem = $spFile.Item
    write-host "Success"
    write-host "SP File:" $spFile
    write-host "SP Item" $spItem
    #populate columns
    $spItem["Column1"] = $FileNameArray[0]
    $spItem["Column2"] = $FileNameArray[1]
    $spItem.Update()
    $fileStream.Close();
    Again, I can run this on my local machine and it works just fine, but when I attempt to run it on the Azure environment I get this error...
    Get-Item : Cannot find path 'C:\powershellscripts\12653_B7045.PDF' because it does not exist.
    At C:\PowerShellScripts\Upload-FilesIntoSharePointTester.ps1:32 char:42
    +     $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()
    +                                          ~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (C:\powershellscripts\12653_B7045.PDF:String) [Get-Item], ItemNotFoundException
        + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetItemCommand
    What strikes me first is the fact that the file its looking for is in the "C:\Upload\Test Upload\My Documents\" directory, but the error keeps saying "C:\powershellscripts\" which is where my script resides and not the files I want to
    upload into SharePoint. When I step through the code, all the variables are holding the correct values. The $localFolderPath shows the name of files that I am attempting to upload, so it recognizes them. But once I step through this particular line of code,
    the error occurs...
    $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()
    Is this an error caused because I am remoting into the Azure environment? Has anyone dealt with this issue before? I would really appreciate the help. Thanks
    Update: quick thing I noticed is that these two lines of code are returning null values. Again, is this handled differently in Azure or remotely? I ask cause this is the way I know how to do this, locally.
    $docLibrary = $web.Lists[$docLibraryName]
    $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()

    "...square brackets are wildcard characters in Windows PowerShell..."
    When you use cd without a parameter it uses the -Path parameter. In this case you'll have to escape the square brackets so they are not considered wildcards. Each of the commands in the first example does the exact same thing.
    cd 'Learn PowerShell `[Do Whatever`]'
    cd -Path 'Learn PowerShell `[Do Whatever`]'
    cd (or Set-Location) also has a literal path parameter (-LiteralPath) that does not require using an escape character (`) before each of the brackets. Hope this helps.
    cd -LiteralPath 'Learn PowerShell [Do Whatever]'

  • HT1529 sending emails directly from Finder in Mountain Lion

    With Mountain Lion I cannot send emails directly from Finder! In older versions when I right-click on a file there is an option in the dialog box which appers: "send by email" or something like this, I can't remember exactly...but when I used to click on it the email window appears. How can I activate this option? in this new version it is only SHARE options which is not helpful.
    Thanks!

    I am having similar issues with my user account. It also is the same in Yosemite.
    Disc images, external hard drives etc dragged to trash (get eject icon) are simply ignored.
    Pressing Eject button in side bar of Finder are ignored.
    It seems to be a permission/account issue as:
    - using computer under a different account doesnt have this problem
    - transferring account over to another mac continues the problem on the new computer.
    Log file seems not to have any errors.

  • Shared Items in Finder??

    Hi
    Ive noticed seven shared iMac items in Finder, Ive no idea what they r or how to remove them. See attached file. Can anyone help?
    Thanks
    Baz

    You do reboot or somehow restart when you are on your different network, right?
    I suggest going to System Preferences (under the Apple logo in the menu bar), choose the "General" tab, and check "Close windows when quitting an application."

  • Copying Graphs and Pie Charts generated in Analysis View to Email item using Excel VBA Macro Code

    Hi
    I am currently working on an exce VBA macro code that would help me take snapshots of the Graphs and Pie charts generated in QC for a particular application and copy the same to an email item using excel VBA macro code.
    I was able to write the code to create an email item. But I have no clue of how i can take snapshot of the graphs in Analysis View using excel VBA
    Any help would be highly appreciated.
    Thanks in Advance
    Regards
    Amit

    useramit,
    You are in the consumer end products forum.  You will also want to ask your question over at the Enterprise Business Community.
    Click the plus sign (+) next to Discussion Boards to drop down all the options for servers, networking and any other professionally related problems.
    http://h30499.www3.hp.com/

  • Viewing items in Finder full screen

    I seem to remember reading somewhere that when viewing finder items in cover flow (at least I think it was in cover flow), you could make the item appear full screen size, or at least very large.
    Is this right? If so how?
    Thanks!
    DanK

    I believe you mean the slide show. select some items in Finder (in any view not just coverflow) and enter commandoptiony. this will get you to the slideshow view. you can also use Quicklook by hitting the space bar.

  • How can i turn off adding item to finder favorites automatically?

    one of Finder sidebar "FAVORITES" .
    it's good. but, i feel uncomfortable .
    it's automatically add item in Finder FAVORITES.
    how can i turn off ?

    There isn't anything that automatically adds to Favorites. Can you explain what you are doing when this happens?

  • Can i turn off email alerts for find my iphone

    How do you turn off email alerts for find my iphone?

    There is no way to turn it off, just reduce it. It is a new security feature. It depends on where you are logging in that is generating the email. If you are logging in from a computer browser, if you have cookies on, it should not generate the email except for the first time that you use that device. If it is from logging in to the Find My iPhone app on the iPhone or iPad, if you have a passcode lock set on the device, it will not generate the email, as you will not be logged out of the app on the phone. You just use the home button to get past the app and it stays logged in by not tracking. You open the app again and it will just take you right in without having the log in and will refresh itself.

  • Outlook 2013 not responding when creating a new email item in Windows 8

    This issue occurs intermittently. No add-ins are running. No anti-virus programs are running. Outlook does not respond and it must be restarted. This issue also affects reply email items and forwarding email items as well.

    Hi,
    Which type of email account are you using? POP3, IMAP or Exchange?
    If you are using a POP3 email account with an Exchange server account configured in the same profile, this issue may happen because the
    delivery folder selection is corrupt and you are referencing a nonexistent folder. To fix it, in Outlook 2013, click on the File tab >
    Info > Account Settings > Account Settings > Highlight your POP account, then click Change Folder. Select a proper folder to deliver to. For more information, please refer:
    http://www.slipstick.com/problems/outlook-crashes-when-you-reply-or-create-a-new-message/
    If above didn't apply, please follow the steps in the KB article below to troubleshoot the issue:
    http://support.microsoft.com/kb/2652320/en-us
    Hope this helps.
    Best Regards,
    Steve Fan
    TechNet Community Support

  • Items in Finder window will not show alphabetically while in columns view

    I am running a Mac Pro Yosemite 10.10.1
    a couple of weeks ago I had some kind of glitch since then it takes a long time to save items having a continuous spinning beach ball.
    Also in the Finder window items will no longer listed alphabetically while in columns view  they list fine in the other views.
    Is there an easy way to fix or  could I fix it by reinstalling the operating system?

    Hi tundrabob,
    Thanks for using Apple Support Communities. Based on what you stated, it sounds like Finder takes a while to save and you need to sort a window. I would recommend that you read these articles, they may be helpful in troubleshooting your issue.
    This article may help the spinning beach ball. 
    Resolve startup issues and perform disk maintenance with Disk Utility and fsck - Apple Support
    OS X Yosemite: Ways to view items in Finder windows
    Sort items: In any view, click the Item Arrangement button , then choose an option, such as Date Created or Size.
    OS X Yosemite: Reinstall OS X
    Cheers,
    Mario

  • HT2470 Is there a way to arrange the items in Finder by multiple options?

    I would really like them arranged by kind then name to help me find everything better.

    Hello mooncinders,
    Thanks for the question, and welcome to Apple Support Communities.
    In Finder, you can change the View Options by clicking the Action Menu > Show View Options. Depending on the view you are in, there will be various options in this menu. For example, you can choose Arrange By: Kind, then Sort By: Name. For more information, see this article:
    OS X Mountain Lion: Choose options for viewing items in Finder windows
    http://support.apple.com/kb/PH10801
    OS X Lion: Choose options for viewing items in Finder windows
    http://support.apple.com/kb/PH3919
    Thanks,
    Matt M.

  • HT5312 Dear sir.  I have problem in reseting my qusetion and answer in my account i have forgot  i cant send reset email i have already intered  rescue email  i cant find this option.

    reseting my qusetion and answer in my account i have forgot  i cant send reset email i have already intered  rescue email  i cant find this option.
    <Email Edited by Host>

    The option to send reset info only appears if you have a rescue email address (which is not the same thing as an alternate email address) set up on your account - if you've just added an address then it will be an alternate email address, a rescue email address can only be added by answering 2 of your questions. You will need to contact iTunes Support or Apple to get the questions reset.
    e.g. you can try contacting iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management , and then 'Forgotten Apple ID security questions'
    or try ringing Apple in your country and ask to talk to the Accounts Security Team : http://support.apple.com/kb/HE57
    When they've been reset you can then use the steps half-way down the page that you posted from to add a rescue email address for potential future use. Or you could use 2-step verification : http://support.apple.com/kb/HT5570

Maybe you are looking for