-
Outlook Web Access is not showing the same content as in Outlook
I had a very interesting problem today that I’ve never experienced before with Exchange 2003 and OWA. Some users advised that when in OWA the mail shown is a month old and no new mail is shown in OWA newer than the previous month. All e-mail is visible and accessible in Outlook though. I logged onto OWA using the user’s credentials and noted the same. I then saw that the view in OWA is set to messages (which should show all messages) as per below: I then chose unread messages (which shows unread mail but not necessarily all or recent mail) as per below: This showed all unread mail but not the results we…
-
OWA redirect URL error or stating you should use HTTPS when no certs are used
We’ve had an issue where we log on to the OWA URL and the site either gives us a redirect URL error or ask us to use https:// instead of http:// when we are not using SSL/certs Eventually we logged into powershell and recreated all the OWA virtual directories. This solved the issue and we could access OWA again.
-
Unable to open items in mailbox
We had an issue where we were unable to open any new or old mail in any user’s mailbox. We then found that the antivirus software was reloaded on the Exchange servers and no exclusions where set. After stopping the antivirus software’s services we were able to open any mail as per usual. The exclusions where setup and services started. Exclusion list for Exchange 2003: EDB,MDB,LOG,NDX,ND4,ND3,ND2,MSL,ML,LDB,DGN,DBF,DBB Security Risk Extensions Ignore C:Program FilesExchsrvr Security Risk Folder Ignore D:Program FilesExchsrvr Security Risk Folder Ignore E:Program FilesExchsrvr Security Risk Folder Ignore C:Program FilesSymantecSMSMSE4.0ServerTemp Security Risk Folder Ignore C:Program FilesSymantecSMSMSE4.0Quarantine Security Risk Folder …
-
MSDTC cluster resource duplication error
I had an issue where a change caused my Exchange cluster to loose all it’s SAN connected disks and it kept failing over. When opening Cluster Administrator I received an error stating a duplicate MSDTC resource can’t run and within the cluster admin the MSDTC resource did not want to start. I then took all resources offline andshut down all the cluster nodes. Started up Node 1, then Node 2 and lastly node 3. I started all resources on the first node including the MSDTC resource. Then started resources on Node2 and all was fine again
-
OoO not working because AutoDiscover does not work
1 First: Always check Certificates and DNS 1.1 Check if your certificates are configured correctly and if they have expired. Open the Exchange Management Console and run: Get-ExchangeCertificate | fl Review your certificates and ensure that they have not expired 1.2 Check DNS A good way to test DNS is using NSLOOKUP. Open cmd and type nslookup and hit enter. (In our case we need to run nslookup to our client’s autodiscover address to test redirection as we user autodiscover redirect.) Type autodiscover.yourdomain.com (or .net etc.) this should return with the redirect address as per below screenshot. …
-
Renewing TLS Certificate on a Hub Transport Server
I received an event today advising me that the local TLS certificate has expired and needs to be renewed. Here is the event info. We need to renew this Certificate otherwise mailflow in Exchange 2007 will stop working. To do this open Exchange Management Shell and type the following: Get-ExchangeCertificate | fl You will be presented with all the certs installed on the server. You need to now find the cert that has expired. An example of an expired cert is: AccessRules : {System.Security.AccessControl.CryptoKeyAccessRule, System .Security.AccessControl.CryptoKeyAccessRule, System.Securi ty.AccessControl.CryptoKeyAccessRule} CertificateDomains : {XXXX01, XXXX01.domainname.local} HasPrivateKey : True IsSelfSigned : True Issuer : CN=SERVER01 NotAfter : 2010/12/28 09:33:12 AM NotBefore : 2009/12/28 09:33:12…
-
How to send mail using Telnet (This is to test SMTP mail sending issues)
Open a Command Prompt and type the following to test sending mail using SMTP: (This is used to test that SMTP is working and that port 25 is open.) telnet mail.domain.ext 25 HELO MAIL FROM: mail@domain.ext (this e-mail address should be the address from the domain that you are testing from) RCPT TO: mail@otherdomain.ext DATA Subject:-type subject here- then press enter twice (these are needed to conform to RFC 882) To tell the mail server that you have completed the message enter a single “.” on a line on it’s own.
-
How to setup Autodiscovery on Exchange 2007
This is how to setup Autodiscover for Exchange 2007 after the trusted certs have been setup: Create an AutoDiscover DNS Record on you DC – Open t DNS Manager. – Expand Forward Lookup Zones then expand domain.xx – Right-click domain.xx and select New Host(A) – Type autodiscover and the IP Address of the Exchange 2007 server, then click on add. – Click OK then click Done. Configure Exchange 2007 Server – On the Exchange server open Exchange Management Shell – Type the following: Set-OutlookProvider –id exch –ssl:$true and press Enter. – Then type the following: Set-OutlookProvider –id exch –server:servername and then press Enter.