Clients mails being stripped

Hi
I have a clients machine, the server is running Small Business Server 2011, and ESET file security, so the exchange is excluded, the client also has mimecast, so I have created the mailbox on my side and there are intermittent mails that are stripped and
sent through blank, 
I also looked on OWA and it was the same story, mails are blank, so we got access to the mail on mimecast and on inspection the mail is all there, so its being stripped once it hits the server,
all anti-spam had already been disabled on the server months ago, so that cant be the problem. 
Please help.

Hi
I have seen problems like this on Exchange with ESET file security. You should rather run the Exchange version of ESET.
Uninstall ESET, reboot your server and then test. You already have redundancy with Mimecast and Exchange 2013 has a builtin anti spam feature.
Hope this helps. Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

Similar Messages

  • Mail.app Stripping File Extensions

    Greetings,
    I have had a very odd issue with Apple Mail stripping away file extensions from the end of attachments. Several folks I send to have issues opening these attachments and have to add the suffix onto the end of the filename (and yes they were on the end when sent). They are using both Macs and Windows boxes.
    I have tried to correct the issue in numerous ways including:
    - Defaulting Mail to send Windows friendly attachments
    - Defaulting my OS to always show file extensions
    - Trying numerous SMTP servers
    - Trying both my .Mac account and Earthlink account
    - Using different ISPs to send on all of the accounts and servers listed above
    - Sending in both RTF and plain text messaging
    The only way I have been successful in retaining the suffix has been to send through both the Earthlink and .Mac webmail services. The test file I have been using then arrives with no issues.
    All of the above makes me pretty sure it is a Mail.app issue. I am about to install Entourage (ick) but would prefer to find a solution. After lots of searching I am throwing it out there to see if anyone else has had the same issue.
    Any thoughts?
    PPC iMac and MacBook Pro   Mac OS X (10.4.10)  

    OK, here is the latest. Anyone else feel free to pipe in with possible solutions!
    - Sending to a Mac and receiving in Mailsmith from Mail.app results in the file extension being stripped away. The person I sent to has no issues with anyone else sending her files
    - Sending to the same Mac and using Mail instead of Mailsmith results in the extension being preserved.
    - I set up Outlook Express on my Parallels partition and it seemed to preserve the extension when I sent it from Mail.
    So it looks like there is some issue with Apple Mail and some e-mail clients. The ones I know I have had problems sending to are Mailsmith on Mac and Goldmine on Windows. At this point I am thinking it is not a server based problem.
    If anyone has any possible solutions I would appreciate the input.

  • TS3276 attachments are being stripped

    Recently attachments are being stripped from incoming email messages. If I open the same message on my Blackberry PlayBook all the attachments are there. I have even had the sender resend the email and the same attachments come through fine on the second attempt. Nothing about the account or mail settings have changed that I'm aware of and the problem seems very random.

    My wife texted me this morning and said my texts to her Blackberry are coming up with weird looking text and it has 15 attachments added to it. So weird because it's a brand new text message (not carried over from a previous one) and I've never sent an attachment before by text to anyone in the past from my iphone.
    I did turn the MMS off after she told me about this, not sure what was sent in terms of an attachment as she cannot open them up.

  • Send a OBIEE report to non OBIEE user (Client) Mail in OBIEE11g

    Hi Frenz,
    i`m fresher to OBIEE, i need the step for "Send a OBIEE report to non OBIEE user (Client) Mail in OBIEE11g". searched in on-line got only OBIEE 10g Documents that one also followed but no result.Please help Me....the Step to config a Mail for external user.
    Thnaks,

    Have the SMTP server configured by your admin and create agent privilege given to your role. Then Schedule an Agents to yourself/Testuser with the report to be sent to external user as its Content. Set up the Delivery Profile of the recipient. In the set up for email device - delivery profile specify the external email address. This might be useful
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/bi/bi11115/delivers/alerts.htm
    Thanks.

  • Trailing 0's being stripped

    I have an application that allows folks to enter version numbers and they should be able to enter 1.10 but that 0 is getting stripped. This is a custom tabular application and I am using collections. The database column is a VARCHAR2. How do I prevent those trailing 0's from being stripped? Below is the code to create the collection, the populate it.
    declare
       la_cks wwv_flow_global.vc_arr2;
    begin
       if htmldb_application.g_fcs.count > 0 then
          la_cks := htmldb_application.g_fcs;
       else
          la_cks := htmldb_application.g_f07;
       end if;
       htmldb_collection.create_or_truncate_collection('UPDATE_DTL');
       htmldb_collection.create_or_truncate_collection('INSERT_DTL');
       for i in 1..htmldb_application.g_f01.count
       loop
          if htmldb_application.g_f01(i) is not null then
             htmldb_collection.add_member(
                 p_collection_name => 'UPDATE_DTL'
                ,p_c001 => htmldb_application.g_f01(i)
                ,p_c002 => htmldb_application.g_f02(i)
                ,p_c003 => htmldb_application.g_f03(i)
                ,p_c004 => htmldb_application.g_f04(i)
                ,p_c005 => htmldb_application.g_f05(i)
                ,p_c006 => htmldb_application.g_f06(i)
                ,p_c007 => la_cks(i));
          else
             htmldb_collection.add_member(
                 p_collection_name => 'INSERT_DTL'
                ,p_c001 => htmldb_application.g_f01(i)
                ,p_c002 => htmldb_application.g_f02(i)
                ,p_c003 => htmldb_application.g_f03(i)
                ,p_c004 => htmldb_application.g_f04(i)
                ,p_c005 => htmldb_application.g_f05(i)
                ,p_c006 => htmldb_application.g_f06(i)
                ,p_c007 => la_cks(i));    
          end if;
       end loop;
    end;_______________________________________________________________________________________________
    DECLARE
       l_cks   wwv_flow_global.vc_arr2;
       j       PLS_INTEGER             := 1;
       vrow    BINARY_INTEGER;
    BEGIN
       -- Get original MD5 checksum
       SELECT wwv_flow_item.md5 (sak_co_impl_plan_dtl
                               , sak_co_impl_plan_hdr
                               , cde_co_impl_type
                               , nam_path
                               , nam_file
                               , num_version
                                ) cks
       BULK COLLECT INTO l_cks
         FROM t_co_impl_plan_dtl
        WHERE sak_co_impl_plan_hdr = :p30_sak_co_impl_plan_hdr;
       IF HTMLDB_APPLICATION.g_fcs.COUNT > 0
       THEN
          -- Compare the original checksun, l_cks,
          -- with submitted checksun, htmldb_application.g_fcs
          -- If they are different, raise an error
          FOR i IN 1 .. l_cks.COUNT
          LOOP
             IF HTMLDB_APPLICATION.g_fcs (i) != l_cks (i)
             THEN
                ROLLBACK;
                raise_application_error
                            (-20001
                           ,    'Current version of data in database hs changed '
                             || 'since user initiated update process.'
                RETURN;
             END IF;
          END LOOP;
       ELSE
          -- Compare the original checksun, l_cks,
          -- with submitted checksun, htmldb_application.g_fcs
          -- If they are different, raise an error
          FOR i IN 1 .. l_cks.COUNT
          LOOP
             IF HTMLDB_APPLICATION.g_f07 (i) != l_cks (i)
             THEN
                ROLLBACK;
                raise_application_error
                            (-20001
                           ,    'Current version of data in database hs changed '
                             || 'since user initiated update process.'
                RETURN;
             END IF;
          END LOOP;
       END IF;
       -- update t_co_impl_plan_dtl
       FOR i IN 1 .. HTMLDB_APPLICATION.g_f01.COUNT
       LOOP
          IF HTMLDB_APPLICATION.g_f01 (i) IS NOT NULL
          THEN
             UPDATE t_co_impl_plan_dtl
                SET cde_co_impl_type =
                       REPLACE (HTMLDB_APPLICATION.g_f03 (i), '%' || 'null%'
                              , NULL)
                  , nam_path = HTMLDB_APPLICATION.g_f04 (i)
                  , nam_file = HTMLDB_APPLICATION.g_f05 (i)
                  , num_version = HTMLDB_APPLICATION.g_f06 (i)
              WHERE sak_co_impl_plan_dtl = HTMLDB_APPLICATION.g_f01 (i);
          ELSE
             IF (HTMLDB_APPLICATION.g_f02 (i) IS NOT NULL) AND (REPLACE (HTMLDB_APPLICATION.g_f03 (i), '%' || 'null%', NULL) IS NOT NULL)
             THEN
                INSERT INTO t_co_impl_plan_dtl
                            (sak_co_impl_plan_dtl
                           , sak_co_impl_plan_hdr
                           , cde_co_impl_type
                           , nam_path
                           , nam_file
                           , num_version
                     VALUES (seq_co_impl_plan_dtl.NEXTVAL
                           , HTMLDB_APPLICATION.g_f02 (i)
                           , REPLACE (HTMLDB_APPLICATION.g_f03 (i)
                                    , '%' || 'null%'
                                    , NULL
                           , HTMLDB_APPLICATION.g_f04 (i)
                           , HTMLDB_APPLICATION.g_f05 (i)
                           , HTMLDB_APPLICATION.g_f06 (i)
             END IF;
          END IF;
       END LOOP;
       FOR i IN 1 .. apex_application.g_f30.COUNT
       LOOP
          vrow := apex_application.g_f30 (i);
          DELETE t_co_impl_plan_dtl
           WHERE sak_co_impl_plan_dtl = HTMLDB_APPLICATION.g_f01 (vrow);
       END LOOP;
    END;Edited by: kims on Aug 24, 2010 7:52 AM

    Please edit your post so that the code extract is wrapped in *\...\* tags as described in the FAQ. That will make it easier to read and hopefully stop the subscripts being converted into icons...
    Note that you should always provide the information requested in the forum sticky threads:
    - APEX version?
    - DB version and edition?
    - Web server architecture (EPG, OHS or APEX listener)?
    - Browser(s) used?

  • Outlook mail being received but blank screen when I open the app

    Outlook mail being received but blank screen when I open the app

    This seems to be going on around here for a couple of days. I have seen several discussions about the mail app opening to a bank screen with different variations and issues after the blank screen appears. I wish I could say that my suggestion is the definitive fix, but I can't. Give it a try anyway and see what happens.
    Close the mail app completely and reset your iPad. Not data will be lost.
    In order to close the mail app, you have to drag the app up from the multitasking display. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the mail app then swipe "up" on the app preview thumbnail to close it.
    Next, reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • RTP stream being stripped

    How can I check to see if 802.1Q VLAN tagging information is being stripped from the RTP stream by the workstation's NIC?

    Some network cards strip the dot1q headers, so your packet capture won't  have this data. If you're not seeing dot1q headers please check the  following link from wireshark:
    http://wiki.wireshark.org/CaptureSetup/VLAN#head-81781716144f2855ab0aff2f8b752e95f2562efb
    Apply the previous settings to the machine you're capturing with.

  • Hyperlinks being stripped

    So I upgraded to Excel 2008 only to discover that it is stripping all the hyperlinks out of any of my work spreadsheets that I open.
    So, I went over to Numbers and opened the same spreadsheet. The first two columns of this spreadsheet are lists of numbers, all hyperlinked to a web page. Well, in Numbers the first cell's hyperlink is still there, but all the rest have been stripped!
    There's nothing complicated about this spreadsheet, its simply 7 columns of info, the first two columns being numbers that have hyperlinks to web pages. Thats it, wasn't created with any macro's or anything. My IS guy created them in perl using Spreadsheet::WriteExcel, using the write_url() function, and everything looks fine in his copy of excel 2k8 or my copy of Excel 2004.
    I really don't want to have to keep using Excel 2004 if I don't have to. Since MS was stupid enough to break their own software and these spreadsheets seem to TRY to open correctly in Numbers, does anyone have any idea why the hyperlinks are being stripped out so I can at least use this?

    Hello
    In a not so old thread (02/13) I passed a list of Numbers error messages related to exchanges with XL.
    http://discussions.apple.com/thread.jspa?messageID=6587857
    You may copy them in a doc for future ref
    Some of these messages are related to hyperlinks.
    Here they are.
    +Couldn’t export hyperlinks outside table cells+
    +Hyperlinks in cells that don’t contain text weren’t imported.+
    +Hyperlinks on shapes aren’t supported and were removed.+
    +Hyperlinks within workbooks and hyperlinks to other files aren’t supported and were removed.+
    Maybe they explain what you get.
    Yvan KOENIG (from FRANCE mercredi 19 mars 2008 18:14:31)

  • Upgraded client not being installed after CU4 upgrade

    I upgraded our SCCM 2012 R2 environment to CU4 yesterday.
    If I use the auto-created packages to upgrade existing clients, it works just fine.
    However - when I do a client push to a new machine, it installs the old version of the client.
    I see this at the start of the ccmsetup log:   'CcmSetup version: 5.0.7958.1501' - which is encouraging, but then a few lines later, I get this:  'Retrieved site version '5.00.7958.1000' from AD for site 'PS1'' - and it then proceeds
    to install the lower version of the client.
    If I look at the record for the MP in the System area of AD, sure enough, it's still listed as 5.00.7958.1000 in the object attributes.
    <ClientOperationalSettings><Version>5.00.7958.1000</Version>
    How do i get AD to recognise that I've upgraded so that the newer version of the client is used during client push?

    If you are referring to the ccmsetup version, that's not the client version, that's simply the ccmsetup bootstrap version and is not specifically indicative of the actual client version being deployed.
    '5.00.7958.1000' is correct for the MP as that corresponds to 2012 R2 and is the client version pushed by the site. Changing this in no way would affect the client agent version installed by ccmsetup. ccmsetup does not try to install the CU, as mentioned,
    that's simply the version of ccmsetup, not the client agent.
    This is semantics for sure, but CUs aren't upgrades, they are updates.
    If you want to avoid all of this, use a startup script to deploy your client agent instead so that you can use the PATCH property and include msp for the CU during client install.
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • How to connect client mail through java mail.

    Hi all,
    I want to open client Mail with specified file as attachement. Is it possible to do thru java mail API. other wise can any one suggest me how can i proceed this.
    Kindly do needfull
    Thanks and Regards,
    Mohan Rao

    You can both send attachments and receive attachments using JavaMail API. There's a tutorial on the JGuru site that gives a good overview - http://java.sun.com/developer/onlineTraining/JavaMail/ .
    Good Luck :)
    &#8734; brew.man &#8734;

  • How to stop outgoing mail being copied back into MY inbox??

    how to stop outgoing mail being copied back into MY inbox??

    looked there     but my automaticcally cc myself is NOT ticked
    See nothing else to help in Composing prewference. any other suggestions please

  • Outgoing mail being rejected

    Why is My outgoing mail being rejected by servers?

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    iPad Mail
    http://www.apple.com/support/ipad/mail/
     Cheers, Tom

  • Cannot log in to Spotify on Mac desktop - 'Your client is being updated'

    I have been trying to log into Spotify for about half an hour now, but it is not letting me. When I launched it this morning, I noticed I had been signed off, and as I am the only person using my laptop (MacBook Pro 15" Retina 2013) I know I haven't signed off before this.  I have been trying to log in since, but all I am getting is a message saying either 'Your client is being updated' or 'Service temporarily unavailable', the latter only once. I have trying restarting Spotify a number of times, without luck. Can anybody help with this please? 

    I had the same issue just now, it looked exactly like the screenshot posted by dryyden. The cient had been running fine, playing music, as all of a sudden the playback stopped and I saw the login screen with the red "your client is being updated" banner. I left the client at that state and after a short while Spotify restarted itself and launched as version 1.0.11. I had to log in again, but everything's working fine now. Is this a new update mechanism? Are we now interrupted as soon as an update arrives and it's forceably installed while we're listening to music? That would be pretty rude...

  • Using gmail - multiple copies of mail being written are forwarded to the trash -did not have this issue with 10.6.8 -

    I have two Imacs - the master one is plugged in directly into the modem, it runs with 10.6.8 and works fine (this computer is not connected to Icloud)- the other  is connected to a router which is connected to the master unit and the modem. that unit was upgraded to 10.9.4 and it is connected to Icloud - both Imacs use gmail accounts for e-mail.
    The "slave" unit running on 10.9.4 creates multiple copies of mail being written and sends those copies to the trash file. We have had up to fifty copies of one e-mail in the trash. That computer worked fine under OSX10.6.8 - We have visited the apple store genius bar with this Imac, and consulted the apple phone support service to no avail.
    while it does take a long time to transmit the e-mails, addressees get only one copy. Your help will be appreciated.
    Gerald

    9/16/14 update - another call to apple phone support revealed that this is a known issue that has no solution at this time.

  • Mail being marked as read after I have read it - iOS

    I have an issue where mail is being marked as unread immediately after I've read it on my iPad (3rd Gen) and iPhone 5 both running latest iOS 7. Any ideas?
    I can see the blue dot, then I open the mail, the dot disappears temporarily, then while the mail is still open and I'm reading it the blue dot comes back. Its happening with two accounts setup as IMAP on both my devices.
    Could this be a problem with the server on the side of my mail client? For what it's worth I have the same two accounts setup on my MacBook Pro as IMAP and have no such issue.
    Any help would be great!

    This reply to is to correct the title of my question. It should read "Mail is being marked as UNREAD" after I have read it"

Maybe you are looking for