Export all SMTP address into a CSV from Exchange 2007 and 2010 (PowerShell)

In the Exchange Power Shell :

Get-Mailbox -ResultSize Unlimited |Select-Object DisplayName,ServerName,PrimarySmtpAddress, @{Name=“EmailAddresses”;Expression={$_.EmailAddresses |Where-Object {$_.PrefixString -ceq “smtp”} | ForEach-Object {$_.SmtpAddress}}} | Export-Csv  c:smtp.csv –NoTypeInformation

The file smtp.csv will be located in c:

You might want to change the path.

 

Sage CRM 7.0, 7.1 and Complete Sage Accpac Integration

Hi,

For freak security users like me 🙂 This is the required open port if you deploy on a Web Server Sage CRM 7.x and a complete Sage Accpac Integration.

 

Sage CRM=> Default Port 80 and 443, depending on what port you are using for HTTP and HTTPs.
Sage Accpac Web Deploy (Open OE/AR windows from CRM) => Default Port 9000-9180 and can be expanded during web deployment setup. Accpac opens one port per UI opened.

Crystal Web Reporting (Print OE from CRM) => default port 80.

Sage Accpac Portal => whatever HTTP you are using, plus 10015 (server) and 10020 (AJP).

 

More information after the break

Thanks,

 

 

Sage Accpac ERP 300 or ERP 200 – 100 – 500 or Version 6.0 5.6 5.5

Hi,

If you have a customer and they want to implement SQL replication on a Sage Accpac Database (please check the title for all the possible version, change doesn’t change their product name often :S )

They might received an error the table A4WCHARORDER cannot be added to the replication because it doesn’t have a PK (Primary Key). All the table can be replicated except the A4WCHARORDER.

According to Sage Senior support Team :

Sage 300 generates this table A4WCHARORDER if it doesn’t exist. So this is not important to backup.
To clarify, it is still actively used to “figure how the database collation sort between min and max characters”.

Sage support “One Way” Replication not Both Way….. This is by design…

Thanks,

 

Sage CRM 7.0 / 7.1 Http Error 503 Service Unavailable

When you install Sage CRM 7.0 and 7.1 on 2008 R2 or SBS 2011 you might have issue : http error 503 service unavailable.

You will notice the CRM App Pool and the CRMRewriter App pool is stopped.

In the Event log you will have an event id : 2282

IIS-W3SV-WP

The  module DLL ‘C:program filesMicrosoftExchanger ServerV14Binkerbauth.dll’ could not be loaded due to a configuration problem. The current configuration only supports loading images built for a x86 processor architecture.

This might occurred with several DLL.

The kerbauth.dll only work 64 bit.

In the applicationHost.config file for IIS (located in C:WindowsSystem32inetsrvconfig). Stop IIS and edited the file. In the globalModules section, add at the end of the line for kerbauth, and added the precondition=”bitness64” attribute as follows:

<add name=”kerbauth” image=”C:Program FilesMicrosoftExchange ServerV14Binkerbauth.dll” preCondition=”bitness64″ />

Those DLL might need the same :

Both were listed in the <isapiFilters> section of the applicationHost.config file:

<filter name=”Exchange OWA Cookie Authentication ISAPI Filter” path=”C:Program FilesMicrosoftExchange ServerV14ClientAccessowaauthowaauth.dll” enabled=”true” preCondition=”bitness64″ />

<filter name=”Exchange ActiveSync ISAPI Filter” path=”C:Program FilesMicrosoftExchange ServerV14ClientAccesssyncbinAirFilter.dll” enabled=”true” preCondition=”bitness64″ />

Restart IIS and CRM.

 

Horde Session Error

If you received an error when you open Horde email client :

A fatal error has occurred
Session cookies will not work without a FQDN and with a non-empty cookie domain. Either use a fully qualified domain name like “http://www.example.com” instead of “http://example” only, or set the cookie domain in the Horde configuration to an empty value, or enable non-cookie (url-based) sessions in the Horde configuration.
Details have been logged for the administrator.

In the file :
/usr/local/cpanel/base/horde/config/conf.php

Change the value for $conf[‘session’][‘usr_only_cookies’] = false

Exim Forward email to a specific Route

In the WHM, go to : Exim Configuration Editor, Advanced Editor

In the Router Section Add the 4 lines  (Look at the screen shot)

static_route:
driver = manualroute
transport = remote_smtp
route_data = ${lookup{$domain}lsearch{/etc/staticroutes}}

After go into SSH and edit the following file :

nano /etc/staticroutes

The structure will be : (domainname: ip)

domain.com: 222.222.222.222

To ensure Exim will accept the domain to relay edit the following file :

nano /etc/secondarymx

The structure will be : (domainname)

domain.com

 

 

On the new Release of CPANEL, the screen shot is :

 

 

 

Sage CRM 7.0 C, 7.1 and Classic Outlook 2010 Plug In

Hi,

If you have any issue with the Classic Outlook 2010 Plug in, including installation or doesn’t display in Outlook 2010.

Ensure you have MSXML 4.0 Service Pack 2 installed on your computer

http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=19662

Choose your language

Download the first Link :

MSXML.msi                        (5.0 MB)

Thanks

 

 

Sage CRM 6.2, 7.0, 7.1 Error 500 Another solution!

Hi,

For users having issue with Sage CRM 6.2 and up. You can follow this instruction :

http://community.sagecrm.com/partner_community/b/hints_tips_and_tricks/archive/2010/08/19/the-error-is-in-the-details-making-sense-of-http-500-errors.aspx

 

But, I found another issue this issue is related to the UAC control. DISABLE IT and your CRM will work.

to disable UAC :

Start, run, msconfig, Tools Tab, change UAC setting, Launch, Lower the level to the floor, Apply and Reboot the Server.

Thanks,