Mail.app osx lion receive from hotmail does not display attachment

mail.app 5.2 (1257) osx lion 10.7.3 receiving mail from people sending with hotmail do not display attachment
the attachment counter says 2, in the message overview
but I only see one, not the one I want to see, when I click that message, and try to save as
the one I do see was mine, that returned because of reply to my message
the attachment attached in hotmail by the other person is not viewable or downloadable
in the message source the attachment is there...
--_98d1a076-fcb8-4b8d-93de-5fa8b8e59460_
Content-Type: multipart/alternative;
    boundary=_1ae32142-6165-4e42-b930-818ef81314da_
and
--_98d1a076-fcb8-4b8d-93de-5fa8b8e59460_
Content-Disposition: attachment;
    filename=some.pdf
Content-Type: application/pdf;
    name=some.pdf
Content-Transfer-Encoding: base64
JVBERi0xLjMKJcTl8uXrp/Og0MTGCjQgMCBvYmoKPDwgL0xlbmd0aCA1IDAgUiAvRmlsdGVyIC9G
bGF0ZURlY29kZSA+PgpzdHJlYW0KeAG1WNtu20YQfddXTIGiSABjsxcuyU2emqAuegXSCOgzLa2k
TSRS5pK2la/vWd5kq4q8BlobMGl7PGfmzNmZWd/SR7olkbKURM60MUaSznKWU6YTfK0t/U0lvfng
BS088e7TL/A3nMmEh4/+h9N3iqeMK2MozTXLZ4sdvZ+T0L3Z+Jzv6M21YIIEzVf06rvXNP9MP827
YL7lWCrFcgm/ijMhLzmWjA+Of3frTUPX29ZvYiAUMpea
and so on

how do you log into hotmail at work? via webmail interface? hotmail provides POP email access only when using an email clienet and you probably have Mail set to remove messages from server after downloading them. go to Mail preferences->account->advanced and check those settings. you can change them to leave messages on server or to remove them from server only when they are moved from the inbox.

Similar Messages

  • CRVS2010 beta - Date field from database does not display in report

    Hi there - can someone please help?!
    I am getting a problem where a date field from the database does not display in the report viewer (It displays on my dev machine, but not on the client machines...details given below)
    I upgraded to VS 2010
    I am using the CRVS2010 Beta
    My development machine is Windows 7 - and so is my fellow developer's
    We are using Microsoft SQL Server 2000
    We run the queries within VS and then we send the data table to VS using .SetDataSource
    We have a few reports which display the date on our dev machines (whether we run the EXE or from within Visual Studio)
    When we roll out to the client machines (running Windows XP SP3) then everything works, except that the date does not display (on quite a few reports)
    This is the only real issue I have had - a show stopper for me
    The rest works well - any input will be greatly appreciated
    Regards,
    Ridwan

    Hi Ridwan,
    After much testing I have it all working now using CRDB_adoplus.dll as a data source ( XML )
    Alter your Config file to look like this:
    <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0"/>
    </startup>
    Then using the code below, and CR requires the Schema to be able to read the date format.
    private void SetToXML_Click(object sender, EventArgs e)
    CrystalDecisions.CrystalReports.Engine.ReportDocument rpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    ISCDReportClientDocument rcd;
    rcd = rptClientDoc;
    string connString = "Provider=SQLOLEDB;Data Source=dwcb12003;Database=xtreme;User ID=sb;Password=password";
    string sqlString = "Select * From Orders";
    OleDbConnection oleConn = new OleDbConnection(connString);
    OleDbDataAdapter oleAdapter = new OleDbDataAdapter(sqlString, oleConn);
    //OleDbDataAdapter oleAdapter2 = new OleDbDataAdapter(sqlString2, oleConn);
    DataTable dt1 = new DataTable("Orders");
    oleAdapter.Fill(dt1);
    System.Data.DataSet ds = new System.Data.DataSet();
    // We need the schema to get the data formats
    ds.WriteXml("c:
    sc.xml", XmlWriteMode.WriteSchema);
    //Create a new Database Table to replace the reports current table.
    CrystalDecisions.ReportAppServer.DataDefModel.Table boTable = new CrystalDecisions.ReportAppServer.DataDefModel.Table();
    //boMainPropertyBag: These hold the attributes of the tables ConnectionInfo object
    PropertyBag boMainPropertyBag = new PropertyBag();
    //boInnerPropertyBag: These hold the attributes for the QE_LogonProperties
    //In the main property bag (boMainPropertyBag)
    PropertyBag boInnerPropertyBag = new PropertyBag();
    //Set the attributes for the boInnerPropertyBag
    boInnerPropertyBag.Add("File Path ", @"C:\sc.xml");
    boInnerPropertyBag.Add("Internal Connection ID", "{680eee31-a16e-4f48-8efa-8765193dccdd}");
    //Set the attributes for the boMainPropertyBag
    boMainPropertyBag.Add("Database DLL", "crdb_adoplus.dll");
    boMainPropertyBag.Add("QE_DatabaseName", "");
    boMainPropertyBag.Add("QE_DatabaseType", "");
    //Add the QE_LogonProperties we set in the boInnerPropertyBag Object
    boMainPropertyBag.Add("QE_LogonProperties", boInnerPropertyBag);
    boMainPropertyBag.Add("QE_ServerDescription", "NewDataSet");
    boMainPropertyBag.Add("QE_SQLDB", "False");
    boMainPropertyBag.Add("SSO Enabled", "False");
    //Create a new ConnectionInfo object
    CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo boConnectionInfo =
    new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
    //Pass the database properties to a connection info object
    boConnectionInfo.Attributes = boMainPropertyBag;
    //Set the connection kind
    boConnectionInfo.Kind = CrConnectionInfoKindEnum.crConnectionInfoKindCRQE;
    //*EDIT* Set the User Name and Password if required.
    boConnectionInfo.UserName = "";
    boConnectionInfo.Password = "";
    //Pass the connection information to the table
    boTable.ConnectionInfo = boConnectionInfo;
    //Get the Database Tables Collection for your report
    CrystalDecisions.ReportAppServer.DataDefModel.Tables boTables;
    boTables = rptClientDoc.DatabaseController.Database.Tables;
    //For each table in the report:
    // - Set the Table Name properties.
    // - Set the table location in the report to use the new modified table
    boTable.Name = "Orders";
    boTable.QualifiedName = "Orders";
    boTable.Alias = "Orders";
    rptClientDoc.DatabaseController.SetTableLocation(boTables[0], boTable);
    //Verify the database after adding substituting the new table.
    //To ensure that the table updates properly when adding Command tables or Stored Procedures.
    rptClientDoc.VerifyDatabase();
    MessageBox.Show("Data Source Set", "RAS", MessageBoxButtons.OK, MessageBoxIcon.Information);
    Thanks again
    Don

  • MobileMe Gallery from A3 Does not Display Key Photo

    When I post from Aperture 3 to MobileMe, the Gallery preview pic does not display the key photo anymore. Skimming still works, but the preview pic as seen in the gallery is not displayed. Instead of the preview picture, an icon is displayed that is gray with two stacked pictures.
    If I go to me.com and manage the gallery from there, I do see a preview picture but not the key photo. Instead, I see the first photo from the project.
    In Aperture 2, I did not see these behaviors.
    Anyone else seeing this problem?

    Ron Kaplan wrote:
    When I post from Aperture 3 to MobileMe, the Gallery preview pic does not display the key photo anymore. Skimming still works, but the preview pic as seen in the gallery is not displayed. Instead of the preview picture, an icon is displayed that is gray with two stacked pictures.
    If I go to me.com and manage the gallery from there, I do see a preview picture but not the key photo. Instead, I see the first photo from the project.
    In Aperture 2, I did not see these behaviors.
    Anyone else seeing this problem?
    Yes, I noticed this too.
    I can skim the gallery (like an event) but then it just gives a generic thumbnail as the key photo.

  • OUTLOOK Does Not Display Attachement Paper Clip in Inbox

    I have Outlook Home/Office/Bus 2013 and the paperclip does not display in the inbox SOME of the time. It's so unhelpful.
    But sure enough, if I open, there are the attachments. This never happened before I had 2013. Help. (5-2-15)

    What type of email account do you use?
    What file type are the attachments? Embedded images usually don't have the attachment icon.
    Diane Poremsky [MVP - Outlook]
    Outlook & Exchange Solutions Center
    Outlook Tips
    Subscribe to Exchange Messaging Outlook weekly newsletter

  • My Windows Hotmail does not showan attachment when I write an e-mail.

    When I go to Hotmail on Firefox, I cannot attach anything to my e-mails because the site does not show the attachment line.
    However, when I go to Safari, the attchment line is on my Hotmail e-mails.
    Help!

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode

  • IPhone 3G does not display attachment in email

    There is no better way to describe it. I received an email from Nimbuzz and I can't see the attachment. It just does not appear... And there is most definitely an attachment. I also don't see another file in its place, like the "Winmail.dat" file described by Apple in their support sections. Just nothing appears except for the text of the email. I have sent the very same attachment from another email address and it works fine. What could be wrong?

    WOW. So many of us! And to think that I was worried that I was being stupid for posting this problem. I don't know why though because I look stupid on a regular basis... I'm sure they will get to this problem before long.
    I'd bet that the team sits in meetings with huge lists of issues and decides which are the most critical issues that they can address (and resolve), given limited resources, in the time frame that they have been given before the next release. And actually, they are doing very well based on what we got with 2.1.
    Seriously folks. Apple has done some amazing work in the past years to which we owe kudos for huge industry altering technology leaps. But instead we stick to the negative and beat down on the team gutsy enough to lead the charge. Have we been spoiled and come to expect too much from the company? Maybe? Are we acting like spoiled children with all our non-constructive ********? Maybe. I'm grateful myself and here is why:
    I use my phone for:
    tunes in my car
    watching movies at night
    games when i'm bored
    surfing the web to find anything i need
    maps with directions to find my way
    entertainment for kids with light sabers and animal sounds
    remote controls for all kinds of stuff
    a phone for work and family
    audio books so I don't have to read
    so many apps i have 7 home screens
    and more good stuff everyday!
    Peace!
    Mat

  • Mail app crashes when receiving email from a particular sender

    HI All,
    Here is a problem I'm facing, Mail App crashes while receiving email from a particular sender. I'm testing our new Email Hosting solution "Rackspace" and it works fine with all other Email clients or on deveices (Android, Windows Phone & Blackbarry) but on Iphone 4s (IOS 6.1.4, i guess) it crashes the Mail App.
    The email I'm using is sending over to an email at ttv-asia.com domain. The user of ttv-asia.com is based in China and just to see if the problem is with the Iphone, I've tested the Iphone's Mail App in Hong Kong and it works normal.
    So now... Im confused and have no Idea on how ro fix this.
    ~Ray
    <Email Edited By Host>

    Sorted, it seems that livemail configured for exchange and having Google premier for exchange, results in the mail app on the iPhone crashing, when selecting an email in the Google exchange mail box, then calling up the folders , it crashes. switched off livemail mail, worked fine.
    Weird.
    Google vs Microsoft, with a little help from Apple ???????????

  • The past few days my Mail app has started downloading multiple copies of e-mails from all pop servers.  This is only happening on my Macbook not other macs.  Deleting mail from server does not help. I ran ClamXav found 2 viruses deleted problem continues

    opps.  Long title there... The past few days my Mail app has started downloading multiple copies of e-mails from all pop servers.  This is only happening on my Macbook not other macs.  Deleting mail from server does not help. I ran ClamXav found 2 viruses deleted those.  Checked for software update and installed suggested downloads.  Problem still contintues.  Any suggestions?

    Folks,
    even after having repaired the inbox folder under "properties" a few times, I still had some e-mails where the contents are different from the subject line.
    In other words in the inbox there are two e-mails: one with subject line "abc", and another one with subject line "def".
    When I display the e-mail with the subject line "abc", the contents are from the e-mail with the subject line "def" in the in-basket.
    What else can be done to correct this problem?
    Thanks and best regards.
    Fred Kunz-Shirzad
    Chemin Ronzeures 6A
    1297 Founex VD
    Switzerland
    [email protected]

  • Delayed email delivery using mail app in Lion

    I'm having issues with delayed email delivery using the mail app in Lion. Specifically I have an IMAP account (AOL) that is working fine on other macs running snow leopard and on both an iPhone and an iPad. I receive an email that shows up on all other devices but does not get delivered on the Macbook Air. Clicking get new messages does not delivery the email, even if other emails have been delivered in the interim. The only way to get the email to show up is to exit Mail and restart it - and then the email shows up, in the correct date/time order and the correct read status (since I had already read it on another device).
    This has happened twice now with my AOL account in the past 24 hours (I've only had the new Macbook Air since Monday). It might also be happening on my other IMAP email accounts but I have not noticed it yet. It's intermittant as I've received many other emails correctly and ontime.
    Anyone else seeing something similar? I've never seen this with earlier versions of Mac OS X or on devices running iOS.
    This is a Macbook Air running Lion 10.7.1. I have 4 IMAP accounts set up. Mail is set to check for email once a minute and I have my IMAP accounts set to use the IDLE command.

    I have the same problem, some photos are not loaded completely and partly grey. This occurs only in Mail.app but not in the web interface of the email provider. Did you find a solution, Florian? Does somebody else have a suggestion?
    Greetings from Finland

  • Printed Text is Small with Mail.app in Lion

    Has anyone been able to adjust the font size of the PRINT in Mail while using Lion? I swear I feel stupid, but I can't seem to adjust this all.
    I have to print out an email and the text is soooo small. It's like 3pt. Adjusting the message view font in prefs doesn't change a thing, nor does changing the print options like "Scale to Fit", "Rewrap Message to Fit", "Keep the Same Apparent Font Size", etc.
    I have the conversation view selected, but I opened a single email as well, and it ALWAYS prints like 3pt making the text unreadable.
    I finally had to forward the email to gmail and print from gmail. Sad.
    Any ideas on how to adjust the PRINT font size only?

    Yes, I tried this as well.
    If I increase the scale to let's say 400%, it does increase the font size, but makes the text no longer appdear on one page. It will change the flow of the text so that half a sentence on the right is cut off, and the remaining text is on the next page.
    In other words, it doesn't work.
    Just in case this helps, I'm printing to a HP 4240n, but I don't think that would be it.
    Even saving to a PDF in the print dialog causes the same issue.
    Does anyone print emails from Mail.app in Lion? Am I the only one?

  • When I open a word document attachment in mail for IOS 7.1.1 the previous jpeg is showing on the first page. When I open the attachment from mail in mac OS X the jpeg does not appear. Can anyone help?

    When I open a word document attachment in mail for IOS 7.1.1 the previous jpeg is showing on the first page. When I open the attachment from mail in mac OS X the jpeg does not appear. Can anyone help?

    gonsa47 wrote:
    When I open it in pages or word the correct company logo appears.
    Does the mail app display whatever is in the document without the ability to differentiate between hidden or non hidden images?
    The mail app will not display fillable form fields in PDF files that can be seen in real PDF apps. I say real PDF apps because the form fields in PDF apps will not appear in the iBooks app either. IMO, iBooks is not a real PDF app.
    So, I would say that the mail app cannot differentiate between hidden and non hidden items

  • Can I reinstall Mail.app on Lion 10.7?

    After trying to import my mail from Snow Leopard, my Mail.app in Lion 10.7 has become unresponsive – I can't open a Message Viewer Window, nor can I open preferences to make changes to my accounts.
    I'd like to reinstall Mail, but can't find a way to do this. Any suggestions?
    Thanks,

    Hello,
    I had the same problem this morning. After ugrading to 10.7.4 Mail.app could not import the messages, and hence, never started.
    The failure message stated "The import failed. An error occurred during the import. Make sure you have available space in your home folder and try again." There was no other option button but "Quit." So I quited, checked, and confirmed there were 414.19 GB available; and I used Finder and System Report for this purpose. Afterwards I tried again. The failure persisted.
    Ironically I wan't able to neither read from Webmail, nor access Mail.app. So I confirmed with the Data Center the server's status. Everything was up and running. Still, they restarted the server for the sake of certainty. The problems persisted.
    So I did as suggested here. And it worked smoothly.
    Since I use IMAP on my settings I went for a fresh configuration with all my mail accounts. And it worked smoothly.
    Thanks William for the tip.
    Thanks Shaun for marking the reply as the solution.
    Regards,

  • Messaging Server 4.1: Received mail is not returned to the sender if the receiving local account does not exist.

    I have found that received mail is not returned to the sender if the receiving
    local account does not exist. This problem occurs even if I use Console to
    enable the Return message to sender option under the error handling methods.
    In addition, I have used the configutil
    to confirm that I have set the value
    for Unknown account action to "13," which corresponds to the settings "Return
    message to sender," "Notify the postmaster via email," and "Log the error in
    the log file." Yet, in this situation, an error message is being sent to
    postmaster, but not to the sender, and the error is not being recorded in the
    log file.
    <P>
    Do the following steps:<BR>
    <P>
    <OL>
    <LI>From Console, open the appropriate Messaging Server.
    <LI>Click the Configuration tab.
    <LI>Open the Services folder.
    <LI>Select SMTP.
    <LI>Click the System tab.
    </OL>
    <P>
    Check the "Domain handled by this server exclusively" field to make sure that
    your mail domain is listed. If your mail domain is not listed, then Messaging
    Server will assume that there is another mail server that is handling the
    domain listed and will forward requests to this server.
    <P>
    For more information, please see the document <I>Messaging Server
    Administrator's Guide</I>, Chapter 3, Configuring SMTP Services at <BR>
    http://docs.iplanet.com/docs/manuals/messaging/nms41/ag/smtp.htm#1010371

    On Thu, 12 Dec 2013 16:16:02 +0000, lpphiggp wrote:
    > I'm seeing this XTCOM error occur all over our /var/log/messages for one
    > server, running SLES11sp2 / OES11/sp1;
    >
    > I don't really know what this is even for. We don't use NetStorage or
    > iPrint even, this server only does basic NCP file serving, DHCP, and
    > hosts a GroupWise PO.
    > Is this anything to be concerned about?
    If this:
    http://www.linuxquestions.org/questi...entication-vs-
    edirectory-825043/
    is to be believed, it seems to indicate that your NAM configuration on
    this server is not valid. I'm not seeing this message here on the OES
    servers I looked at, and NAM is working correctly here.
    David Gersic dgersic_@_niu.edu
    Knowledge Partner http://forums.netiq.com
    Please post questions in the forums. No support provided via email.
    If you find this post helpful, please click on the star below.

  • Best option to transfer entourage data to e-mail app on Lion?

    Just transffered data from mac running Snow Leopard to a new mac running Lion when I discovered that Entourage is not supported.  What are my options to get the entourage data into an e-mail app on Lion?

    Entourage 2008 is supported, what makes you think that it is not? unless you are using 2004 in which case you will need to upgrade to 2008.

  • HT204291 Using Azul media player app on my ipad  Apple tv will only display sound but not video from movies.  Any ideas on a fix.  I set mirroring to on but it still does not display video.  It will display photos and video recorded from my iphone.

    Using Azul media player app on my ipad  Apple tv will only display sound but not video from movies.  Any ideas on a fix.  I set mirroring to on but it still does not display video.  It will display photos and video recorded from my iphone.

    Here are the steps for AirPlay:
    Before starting Azul from your (running iOS 5.x/6.x) home screen where have have all your apps we need to turn on mirroring
    On your iPhone 4S/5 or iPad 2 or 3, double-click the Home  Button to view your recently-used apps.
    Swipe all the way to the right to until you see the  icon.
    Note: If the icon does not appear, go to the "If AirPlay Mirroring is not visible or available on your mobile iOS device" section.
    Tap the  icon to see the list of available AirPlay devices.
    Enable AirPlay Mirroring in this menu by tapping on an available Apple TV, then sliding the Mirroring slider to ON.
    Now you should be seeing your iPad/iPhone on your TV.
    Start up Azul now and using the settings icon on the top right corner go to the option that say "TV out" ON.
    When you do that you will see an Orange screen
    Now click "Done" and play the video you want to watch and it will AirPlay

Maybe you are looking for

  • Error 'Update Was Terminated' - While clearing an open item

    Hi, We are facing a problem where we receive an error - "Update Was Terminated" when we try to clear some entries for 3-4 vendors (posted in period 12 of year 2006. it happens only for those 3-4 vendors). We have identified the problem as follows: 1)

  • Rapport not working after upgrading to Firefox 12

    Hi, I upgraded to Firefox 12 a few days ago and just noticed my rapport icon has vamoosed from beside the address bar. I checked and Rapport is still working but I want that icon back! I've tried going to Trusteer's wesite and I keep getting redirect

  • SE 30  not being executed

    Hi all,    In our system , the transaction for runtime analysis is not being executed in DEV and QUA server (though it runs fine at PROD server) .   On executing SE 30 , ABAP Runtime Error comes as below Runtime errors :-  CONVT_NO_NUMBER Unable to i

  • Setting AFrame height to the height of a graphic inside aframe plus padding

    Hello fellows, I am trying to set a permanent bottom padding between an anchored frame and a graphic object (embedded Visio) that is inside the anchored frame. However, instead of getting that padding below the graphic, the aframe becomes really smal

  • Installing new hard drive on MacBook Pro...

    I had a friend install a new hard drive on my Mac since mine was clicking and going to break. But now I insert the start up disc and hold c upon start up, and then the screen stays gray. I know the hard drive was installed correctly but the disc won'