Secure Exchange 2010 email

Hi
Does anyone have any advice on the best way to secure Exchange emails? Can they be encrypted?
Thanks
Shane 

Hi,
To be able to encrypt messages sent to external users, I would like to consider
S/MIME encryption or 3<sup>rd</sup> part solution.
S/MIME is a widely accepted method for sending digitally signed and encrypted messages. S/MIME allows you to encrypt emails and digitally sign them. When you use S/MIME with an email message, it helps the people who receive that message to
be certain that what they see in their inbox is the exact message that started with the sender. It will also help people who receive messages to be certain that the message came from the specific sender and not from someone pretending to be the sender.
Plan for e-mail messaging cryptography in Outlook 2010
https://technet.microsoft.com/en-us/library/cc179061.aspx
Secure Mail
https://technet.microsoft.com/en-us/library/cc962043.aspx
Hope this will be helpful for you.
Best Regards.

Similar Messages

  • Exchange 2010 Emails relay to different server

    Hi Guys
    We are having some trouble in emails. We have hosted exchange for customer. The same Exchange Server(2010) hosts emails for company as well.
    We migrate the email and accounts to hosted exchange from other mail server(exchange,google etc)
    I need to migrate a new customer to hosted exchange but before that I need to migrate few accounts for testing. The issues I need to address is that as soon as I will migrate one mailbox to our hosted exchange, any emails sent to that users from our company
    email address will be routed internally. 
    For Example
    There is a customer with email : [email protected] and is hosted within their own exchange(ExchangeServe1)
    We have a Hosted Exchange(ExchangeServer2) server which hosts our emails and we offer email solution to customers.
    When I will migrate [email protected] into our Exchange server(Exchange Server2) and if after migration I want to send some email from my company email address(Exchange Server2)  exchange will do internal routing and forward email to [email protected] which is
    in the same exchange server(ExchangeServer2).
    But I want exchange to forward email to existing customer exchange server(ExchangeServer1).
    We are not changing MX record yet so incoming emails from anywhere else would be fine except when we will send emails from our company emails addresses to abc.com domain.
    So my question, How do I configure our exchange that it does not send emails to an organization configured in the same exchange server.

    you can do this manually with a contact on the old exchange server and a transport rule to forward a copy to the new server you will have to come up with a unique name for the new server at least on a temporary basis maybe a sub domain.
    you could also remove the allowed domain name of this customer from your server this is how exchange determined delivery.

  • Exchange 2010 email access from iPhone 4

    Hi,
    We have Exchange 2010 in our network and we are publishing OWA & Outlook Anywhere using TMG 2010 with GoDaddy Public Certificate.
    Everything works well.
    I can access the OWA & Outlook Anywhere from Non Domain machines without any issues but when it comes to iPhone it just doesn't work.
    I followed the procedure to configure iPhone from this link and selected the manual configuration option but i get the 
    http://maketecheasier.com/connect-exchange-account-from-iphone/2011/02/14
    I get Server‘
    field added to the previous fields in the settings.
    Is there any configuration required on TMG for iPhone email access?
    Please suggest.
    Regards,
    Maqsood
    Maqsood Mohammed Senior Systems Engineer MCITP-Enterprise Admin & ITILv3 Foundation Certified

    Hi,
    We have Exchange 2010 in our network and we are publishing OWA & Outlook Anywhere using TMG 2010 with GoDaddy Public Certificate.
    Everything works well.
    I can access the OWA & Outlook Anywhere from Non Domain machines without any issues but when it comes to iPhone it just doesn't work.
    I followed the procedure to configure iPhone from this link and selected the manual configuration option but i get the 
    http://maketecheasier.com/connect-exchange-account-from-iphone/2011/02/14
    I get Server‘
    field added to the previous fields in the settings.
    Is there any configuration required on TMG for iPhone email access?
    Please suggest.
    Regards,
    Maqsood
    Maqsood Mohammed Senior Systems Engineer MCITP-Enterprise Admin & ITILv3 Foundation Certified
    Please can you give some info about the Godday certificate you bought.

  • Exchange 2010 Email not Syncing, but Contacts and Calendar do???

    Anyone have any feedback on this? I have tried deleting and readding my Exchange 2010 account several times and same result.
    No emails are displaying at all. However, all of my contacts are appearing in the contacts app and so are calendar entries. Also, when I go into the settings and choose which folders to have push email, I see a list of all of my exchange folders, so I know it is seeing the server.
    Any idea why the emails are not appearing? I have tried all combinations of different settings and can't get them to appear.
    Thanks

    Are either of you part of protected groups in active directory/exchange? Such as the built ins. i.e Domain Admin/Account Operator etc?

  • Exchange 2010 - Email signature setup with Transport Rule - Want to disable the rule for iOS devices

    So we decided to have a company wide email signature which pulls user info from AD to fill in the HTML template. What I have found out is that iOS devices send email as plain text which displays the HTML content with strings of text in emails send from
    those devices. The only way I have found to make this work is have the user keep the default "Send from my iPhone" signature and exclude the rule based on that text in the body. Is there a cleaner option in case our users decide to change their default
    signature on their iOS devices?

    I can't find a clean answer for you.
    You might use the Set-TransportRule cmdlet and one of the exception clauses to look for something in the header.  I looked at an ActiveSync-generated header from my Droid (I don't have an iPhone to try this out on) and I see this:
    Message-ID: [email protected]
    The clause:
    -ExceptIfHeaderMatchesPatterns "Message-ID:\s(\S|\s)*email.android.com"
    should exclude messages sent from Droids.  Of course, I can't say that it'll exclude all of them so you'll have to experiment and use trial and error.
    http://technet.microsoft.com/en-us/library/bb123534(v=exchg.150).aspx
    http://technet.microsoft.com/en-us/library/aa997187(v=exchg.141).aspx
    You may need to experiment with the rule because I haven't tested it.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • Exchange 2010 Email Alias

    Is there a way (preferably with Powershell) to find out when the last time an email was sent to a persons email alias as opposed to the primary email address?
    Any help would be appreciated.

    Hi,
    Based on my knowledge, when we use Get-MessageTrackingLog cmdlet to find out when the last time an email was sent to a user, we usually use
    Recpients parameter specifies the recipient's SMTP e-mail addresses of the messages. And there are
    no other parameters we can specify the recipient's alias instead of primary email address.
    In addition, here is the script to find out when the last time an email was sent to a user with email SMTP address.
    $UserList = Get-mailbox -Resultsize 10
    $MasterList = @()
    foreach ($User in $UserList) {
    $MyObject = New-Object PSObject -Property @{
    EmailAddress = $null
    MailboxSize = $null
    LastSent = $null
    $ErrorActionPreference = 'SilentlyContinue'
    $MyObject.LastSent = ((Get-TransportServer | Get-MessageTrackingLog -Recipients $user.PrimarySmtpAddress | sort timestamp)[-1]).timestamp
    $MyObject.EmailAddress = ($User).PrimarySmtpAddress
    $MyObject.MailboxSize = (Get-MailboxStatistics $User).TotalItemSize
    $ErrorActionPreference = 'Continue'
    $MasterList += $MyObject
    $MasterList
    Note: Searching message tracking logs across the organization is very slow.  I specified "resultsize 10" below so you can see how the script works.  Once you're happy, change "10" to "unlimited".
    Best regards.

  • Exchange 2010 Google Apps Split Delivery

    The situation I'm facing is a little confusing. 
    Our organization has Exchange 2010 email accounts in place for all staff with an address scheme of
    [email protected]
    We recently signed up for Google Apps and are using the same domain name for those accounts as well. 
    These accounts are for our students with the address scheme of
    [email protected].
    With using the same domain name we are looking to a split delivery solution I’m assuming to make this work. 
    In theory what we are looking for would be that if an email is sent to a recipient at mydomain.com it would come through our Exchange server. 
    It would look for the intended email account.  If it were for a staff member an account would be present and the mail would stop there. 
    However if it were for a student it would not find the account and then pass through to Google’s servers by way of a send receiver.
    I have set up the send receivers according to the documentation from the following website:
    http://community.spiceworks.com/how_to/show/38537-ms-exchange-and-google-apps-split-delivery-for-single-domain-name-k-12-school-sample-shown
    These steps include-
     Setting the accepted domain from “Authoritative” to “Internal Relay”
    Setting up a send connector to point to Google’s servers with a cost of 1 to make it priority. 
    Since we currently have a send connector setup to route email out through our spam filter, that would go to a cost of 2.
    The issue seems to be that when the send connector that is pushing the mail to Google’s servers is set to a cost of 1, giving it priority, it then creates a send loop for the staff members sending
    email from Exchange. 
    The Google student accounts do not receive any mail from outside without a send connector in place to tell the emails to go to the Google servers to look for those accounts since our MX records
    point to our spam filter.  I know I have read multiple place that it would be easier to have the MX records point to Google for the domain and then set up routing on that end to push email to unknown accounts to our Exchange server, however
    we would like to route it the opposite of that.
    Please let me know if I have overlooked anything, however at this point I’m stumped. 
    Thank you for your time.

    What are the namespaces on the two connectors ?
    Cheers,
    Rhoderick
    Microsoft Senior Exchange PFE
    Blog:
    http://blogs.technet.com/rmilne 
    Twitter:   LinkedIn:
      Facebook:
      XING:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Exchange 2010 - Resource Mailbox won't send external notification email

    Exchange 2010 with SP1. These mailboxes used to respond to outside booking requests, when we were running Exchange 2007.  I've verified that -ProcessExternalMeetingMessages is set to $true.  The mailbox responds to internal requests with an email. 
    All users are allowed to make "Resource In-Policy Requests".
    I've tried booking from an email address that was setup as a Contact in Exchange - still no luck.
    Any ideas?
    Thanks.

    Martin
    Agency
    Could you share what settings did you use for SMTP connectors?
    I have tried:
    Authentication – Externally Secured
    Permission Group – Exchange Servers
    I can send emails via these connectors, but Room Mailbox still deletes requests from external sender.
    Both organizations have Exch 2010 sp3 RU6, and AD forest 2008R2 level.

  • After server move Exchange 2010 not sending emails

    We moved the servers to a different building and after getting everything set back up we're unable to send emails. The only thing that really should have changed would have been our external IP address. We've updated all of our DNS records to point to our new IP.When I go to "Microsoft Exchange with Database Availability Group Events" event log I see the error:The Microsoft Exchange Mail Submission service is currently unable to contact any Hub Transport servers in the local Active Directory site. The servers may be too busy to accept new connections at this time."When I go to Queue Viewer the "Last Error" listed is:451 4.4.0 Primary target IP address responded with "421 4.4.2 Connection dropped due to SocketError." Attempted failover to alternate host, but that did not succeed. Either there are no alternate hosts, or delivery failed...
    This topic first appeared in the Spiceworks Community

    Hi,
    Based on the description, SharePoint users can send internal emails to each other, however, they couldn't send external emails to Internet.
    Make sure the Authentication is set to TLS and Externally Secured, and the Permission Groups to Anonymous users and Exchange servers. Here is a related article for your reference.
    Configuring outgoing email in SharePoint 2010 with Exchange 2010 – Step by Step Guide
    http://sharepointgeorge.com/2010/configuring-outgoing-email-sharepoint-2010/
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make
    sure that you completely understand the risk before retrieving any suggestions from the above link.
    If the issue persists, I recommend you check Queue Viewer to see if these messages are stuck in queue. Besides, please enable message tracking and check message tracking log to narrow down the issue. About message tracking, please refer to
    Understanding Message Tracking.
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • Security mails from Microsoft cant be delivered to Exchange 2010

    Hi there,
    I have strange issue with delivering e-mails from Microsoft account team to my Exchange 2010 users.
    That is single Exchange 2010 server scenario with Microsoft antispam features installed.
    There is one setting that is affecting behavior of that: Sender-ID filtering. If it is configured as reject messages, the authentication e-mails are rejected with error:
    550 5.7.1
    Missing purported responsible address,MissingPRA,No valid PRA
    I was doing some research around the Sender-ID filter and found this:https://technet.microsoft.com/en-us/library/aa997242(v=exchg.141).aspx pointing
    to this:
    http://www.ietf.org/rfc/rfc4407.txt
    (see chapter 2, points 5 and 6)
    And Im thinking that the From: header is too long for the filter having 133 characters...
    From: =?windows-1250?Q?T=FDm,=20kter=FD=20se=20star=E1=20o=20=FA=E8ty=20Microsoft?= <[email protected]>
    See https://tools.ietf.org/html/rfc2822 chapter 2.1.1
    And if from header is not read properly, there is no other chance to define PRA.
    Im attaching the header with some privacy related edits (*)
    And also connection to my previos post:
    https://social.technet.microsoft.com/Forums/cs-CZ/63366c5f-5028-4b86-8cd9-815b2474083e/authentication-email-from-onedrive-is-not-delivered-to-exchange-2010?forum=exchangesvrsecuremessaging
    Received: from BAYIDSTOOL3E005 ([65.54.190.61]) by BAY004-OMC1S28.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751);
    Wed, 21 Jan 2015 03:50:31 -0800
    Message-ID: <[email protected]>
    X-Message-Routing: sKFde7CS5BHygFZaC4gFZWeHmOM+Rjf1iOmv8meDbQqeD+9kHFgbAflrz5UYy6v/Ov/vRliTx0hzi7ScTgwYCoH5DCu2Fahk9R9SdBH5Nsa5oB9Sz/gjNEAPF3tI/C3nFECX7BGzTiSSOg8TKAUbuCEwYGg==
    Return-Path: [email protected]
    Date: Wed, 21 Jan 2015 03:50:31 -0800
    From: =?windows-1250?Q?T=FDm,=20kter=FD=20se=20star=E1=20o=20=FA=E8ty=20Microsoft?= <[email protected]>
    Subject: =?windows-1250?Q?Bezpe=E8nostn=ED=20k=F3d=20=FA=E8tu=20Microsoft?=
    To: <t*****f@jv*******ms.cz>
    X-Priority: 3
    X-MSAMetaData: Cn0c88Cz0sGsI0Nfm6RO9sA/7VbWGUJeVNx9a4NXy37JI18dwFph0xDWcW8LScCF+MW2Lz28gPZz9dv7HW6EgfszNl0B6YfvjoqD5EXhCIrXhZTYSSbIB1Ix/LTVnuXoQieHLbzlKEn/wPNttCFyHop5rh2n8Sm26X38Eqj+/+Nh4VXFdEZ2I+gyInEElCSMfg==
    MIME-Version: 1.0
    Content-Type: multipart/alternative;
    boundary="------=_Next_Part_0490624281.535"
    X-OriginalArrivalTime: 21 Jan 2015 11:50:31.0736 (UTC) FILETIME=[757B2B80:01D03570]
    Do anyone knows the limits of header lines in the Exchange 2010 Antispam Filters?

    I have tested it deeply and strange thing gets even stranger:
    If I send entire email with telnet the difference between error and accepting message by server is comma in From: header. so:
    Message is not accepted with that line:
    From: =?windows-1250?Q?T=FDm,=20kter=FD=20se=20star=E1=20o=20=FA=E8ty=20Microsoft?= <[email protected]>
    Message is accepted if I delete a comma:
    From: =?windows-1250?Q?T=FDm=20kter=FD=20se=20star=E1=20o=20=FA=E8ty=20Microsoft?= <[email protected]>

  • Exchange 2010 can't send or receive email with attachments.

    Hello,
    We have an Exchange 2010 server, running under Windows 2008R2. Both the server and Exchange are current for Windows and Exchange updates. Exchange is on SP3 installed about a month ago with no errors reported in the event logs.
    The problem is that attachments over about 1 MB do not send or receive and no error message is returned. If I send an email message with a 3 MB attachment to myself, it reports as sent in Outlook. On the Exchange server the message queue shows nothing in
    the queue. I try to use Exchange mail flow tracking tool and it hangs when selecting “messages received from” option. I gave up waiting after 5 minutes for the display to populate.
    As the server is set attachments should be able to send and receive up to 20 MB.
    I checked and verified all settings I could find related to this. I checked with the Exchange Management Console per the following article:
    http://www.msexchange.org/articles-tutorials/exchange-server-2010/management-administration/managing-limits-exchange-server-2010-part1.html
    I also checked using the Exchange Power Shell using the following article:
    http://eightwone.com/2010/09/29/exchange-message-size-limits/
    Both show that all settings are suitable. Details are below
    I would appreciate feedback on this problem.
    Thank you!
    Details from the articles noted above:
    First test was to attach a 3 mb text file in Outlook sent from my in house account to my in house account. After 5 minutes the test message was not received nor was there an error message returned.
    Checked The Exchange server mail queue and there was nothing in the queue. Checked the Exchange mail flow tracking tool and it hung when selecting “messages received from” option.
    Reviewed and verified settings per the following 2 articles:
    Article #1
    http://www.msexchange.org/articles-tutorials/exchange-server-2010/management-administration/managing-limits-exchange-server-2010-part1.html
    Organization Configuration>Hub Transport>General Settings>Global Settings>Transport Settings set to max receive size (KB) = 20480
    Settings set to max send size (KB) = 20480
    Organization Configuration> Hub Transport> Send Connectors tab.
    Maximum message size (KB) set to 20480
    Exchange Management Console> Server Configuration> Hub Transport> and then on the right side, select the desired server.
    A list of all Receive Connectors will be shown below
    There are 3 receive Connectors
    #1) named Client XXXXXXXXXX
    Maximum message size (KB) set to 20480
    #2) named Default  XXXXXXXXXX
    Maximum message size (KB) set to 20480
    #3) named relay
    Maximum message size (KB) set to 20480
    Use Exchange Management Shell to check settings
    #1) Get-ADSite
    Returns:
    Name                           HubSiteEnabled
    Default-First-Site-Name        False
    #2) Get-ADSiteLink
    Name                      ADCost     ExchangeCost    Sites
    DEFAULTIPSITELINK         100                        {xxxx.local/Configuration/Si...
    #3) Get-ADSiteLink | select Max*
    MaxMessageSize
    unlimited
    Exchange Management Console>Expand Organization Configuration>Click on Hub Transport item>Click on Transport Rules tab
    No rules
    Article #2 
    http://eightwone.com/2010/09/29/exchange-message-size-limits/
    COMMAND: Get –TransportConfig
    results:
    ClearCategories                     : True
    ConvertDisclaimerWrapperToEml       : False
    DSNConversionMode                   : UseExchangeDSNs
    ExternalDelayDsnEnabled             : True
    ExternalDsnDefaultLanguage          :
    ExternalDsnLanguageDetectionEnabled : True
    ExternalDsnMaxMessageAttachSize     : 10 MB (10,485,760 bytes)
    ExternalDsnReportingAuthority       :
    ExternalDsnSendHtml                 : True
    ExternalPostmasterAddress           :
    GenerateCopyOfDSNFor                : {}
    HygieneSuite                        : Standard
    InternalDelayDsnEnabled             : True
    InternalDsnDefaultLanguage          :
    InternalDsnLanguageDetectionEnabled : True
    InternalDsnMaxMessageAttachSize     : 10 MB (10,485,760 bytes)
    InternalDsnReportingAuthority       :
    InternalDsnSendHtml                 : True
    InternalSMTPServers                 : {}
    JournalingReportNdrTo               : <>
    LegacyJournalingMigrationEnabled    : False
    MaxDumpsterSizePerDatabase          : 18 MB (18,874,368 bytes)
    MaxDumpsterTime                     : 7.00:00:00
    MaxReceiveSize                      : 20 MB (20,971,520 bytes)
    MaxRecipientEnvelopeLimit           : 500
    MaxSendSize                         : 20 MB (20,971,520 bytes)
    MigrationEnabled                    : False
    OpenDomainRoutingEnabled            : False
    Rfc2231EncodingEnabled              : False
    ShadowHeartbeatRetryCount           : 12
    ShadowHeartbeatTimeoutInterval      : 00:15:00
    ShadowMessageAutoDiscardInterval    : 2.00:00:00
    ShadowRedundancyEnabled             : True
    SupervisionTags                     : {Reject, Allow}
    TLSReceiveDomainSecureList          : {}
    TLSSendDomainSecureList             : {}
    VerifySecureSubmitEnabled           : False
    VoicemailJournalingEnabled          : True
    HeaderPromotionModeSetting          : NoCreate
    Xexch50Enabled                      : True
    COMMAND: 
    Set-TransportConfig –MaxReceiveSize 20MB –MaxSendSize 20MB
    C:\Windows\system32>Set-TransportConfig -MaxReceiveSize 20MB -MaxSendSize 20MB
    WARNING: The command completed successfully but no settings of 'Transport Settings' have been modified.
    COMMAND: 
    Get-SendConnector
    Identity                                AddressSpaces                         
     Enabled
    Internet                                {SMTP:*;1}                             
    True
    COMMAND: 
    Set-SendConnector -Identity Internet -MaxMessageSize 20MB
    WARNING: The command completed successfully but no settings of 'Internet' have been modified.
    COMMAND: 
    Get-ReceiveConnector
    Identity                                Bindings                                Enabled
    XXXXXXXXXX\Default XXXXXXXXXX           {0.0.0.0:25}                           
    True
    XXXXXXXXXX \Client XXXXXXXXXX     {:::587, 0.0.0.0:587}                   True
    XXXXXXXXXX \relay                        {0.0.0.0:25}                           
    True
    COMMAND: 
    Get-ReceiveConnector | fl Identity,MaxMessageSize
    Identity       : XXXXXXXXXX \Default XXXXXXXXXX
    MaxMessageSize : 20 MB (20,971,520 bytes)
    Identity       : XXXXXXXXXX \Client XXXXXXXXXX
    MaxMessageSize : 20 MB (20,971,520 bytes)
    Identity       : XXXXXXXXXX \relay
    MaxMessageSize : 20 MB (20,971,520 bytes)
    COMMAND: 
    Get-AdSiteLink | fl Name,*max*
    Name           : DEFAULTIPSITELINK
    MaxMessageSize : unlimited
    COMMAND: 
    Get-RoutingGroupConnector <ConnectorID> | FL Name, *Max*
    No routing group connectors are installed
    Individual
    Recipient Configuration > Mailbox>Properties of the User> Activate tab Mail Flow Settings> Properties>Message Size Restrictions settings:
    Set to 20480 for send and receive for all.
    Re-tested and had the same problem. 
    Post on Technet.

    ExchangeITPro,
    Thank you for your reply.
    >what SP are you at?
    As noted in the first paragraph: "We have an Exchange 2010 server, running under Windows 2008R2. Both
    the server and Exchange are current for Windows and Exchange updates. Exchange is on SP3 installed about a month ago with no errors reported in the event logs."
    >try restarting the transport services.
    Done previously as well as the entire server. No change.

  • Delete emails from a specific folder in Exchange 2010 SP1

    Hi all,
     Since Exchange 2010 SP1 does not have “-DeleteContent” parameter in mailboxexportrequest any more, how do we delete emails from a specific folder of a user mailbox? (Personal folder, not default folders).
    Please note that the ASQ for searchquery in Search-Mailbox does not support “folder”.
    If going for retention policy, is there a way to tag a retention policy to a specific folder of a user mailbox without user attention?
    William Yang
    William Yang

    Hi William,
    Yes, you may not run the Search-Mailbox to delete items in specific folder at the moment. Hope it will be back soon.
    You can create a Personal tag, users can apply personal tags to folders they create. But users have to select related Retention Policy using Outlook or OWA manually.
    For more information, please see:
    Understanding Retention Tags and Retention Policies
    http://technet.microsoft.com/en-us/library/dd297955.aspx
    Frank Wang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]

  • TS3276 i am having trouble with my exchange emails. I use the latest exchange 2010 and am having trouble downloading all my emails on the macbook

    I use a microdost exchange 2010 in my office.  I just bought a macbook pro and try to syn my office mail.  While it has been set up properlly and it has started downloading some of my older emails, it is taking very long and does not download all the mails especially the new ones.  The ones it has downloaded take a long time to load and open.
    I bought the laptop to use it on the go. What is the solution? Please help.
    Thanks.

    Startup your Mac while holding down the Option key. That should prompt the Startup Manager window where you can select the startup disk then click Restart.
    If the startup disk is not available from that window, you may be able to repair the disk.
    Help here >  A flashing question mark appears when you start your Mac

  • Exchange SBS2003: Email that is deleted in Outlook 2010 is not deleted on iPhone 4, or marked read after upgrading to 6.0.1.  Win 7 64bit.  2 Other users in our office with iPhone 4 and iPhone 4s aren't having this issue.  They didn't upgrade to 6.0.1.

    Exchange SBS2003: Email that is deleted in Outlook 2010 is not deleted on iPhone 4, or marked read after upgrading to 6.0.1.  Win 7 64bit.  2 other users in our office with iPhone 4 and iPhone 4s aren't having this issue.  They didn't upgrade to 6.0.1 though.  Mail that is deleted or read on the iPhone 4 is deleted or marked read in Outlook 2010.  So it's a one-way problem.

    Exchange SBS2003: Email that is deleted in Outlook 2010 is not deleted on iPhone 4, or marked read after upgrading to 6.0.1.  Win 7 64bit.  2 other users in our office with iPhone 4 and iPhone 4s aren't having this issue.  They didn't upgrade to 6.0.1 though.  Mail that is deleted or read on the iPhone 4 is deleted or marked read in Outlook 2010.  So it's a one-way problem.

  • Windows 8.1 Mail app and Exchange 2010 EAS partnership - "Make Windows user account an Administrator" to meet security requirements?

    As the title says,  I have a new Windows 8.1 based device which I'm trying to connect to my Exchange 2010 box (SP3 Update Rollup 2).  I currently have my iphone set up as an EAS client with no problems.  I have an EAS policy on my mailbox
    with the following settings surrounding passwords :
    Require Password, Require Encryption, Allow Simple Password, Time without user input - 10 minutes.  Allow non-provisional devices is also checked.
    The Windows 8.1 device has Bitlocker enabled, which meets the encryption requirement - I know this because the 1st time I tried this it moaned about Bitlocker needing to be enabled to meet requirements, though at that time the local user account on the Windows
    8.1 device was an admin level account so it never mentioned this issue, it worked normally.
    Now, while using a std user account on the Windows 8.1 device and trying to connect up via EAS, it complains that my local windows user account must be an ADMIN level account to meet the security requirements...?
    Anyone encountered this?

    Did anyone solve this problem? I'm also struggling with this issue.
    this is still a problem. I'm just hitting it now and it's not doing much for management's love of Microsoft devices.
    Evidently, it has to be an admin to set the policies on the device to match the policies on the EAS. And once set, a user can be changed back.
    But this is seriously not cool. Don't the "app" folks and the enterprise folks talk to each other?

Maybe you are looking for