Author Archives: ~ Kam

Pause or stop transport service: what’s the difference?

By | 9 August, 2012

The Microsoft Exchange Transport service is a service available both on the Microsoft Exchange Server 2007 Hub transport server role, and Edge transport server role. This service is the one responsible for sending mails to their final destinations, and stores those messages and items belonging to the transport dumpster in an Extensible Storage Engine database… Read More »

Configure https with self-sign certificate

By | 8 August, 2012

1. Tell Apache2 to enable the SSL module. # sudo a2enmod ssl 2. Generate our certificate… # cd /tmp # sudo openssl req -new > new.cert.csr …when prompted for info, fill it out. Here’s what I typed… US Florida Orlando SpacemanWorld (enter) Jack Spaceman jackh@spacemanxworld.net (enter) (enter) …and now we continue… # sudo openssl rsa… Read More »

Redirect domain.com to www.domain.com

By | 8 August, 2012

This is step to redirect domain.com to www.domain.com for Ubuntu and Apache2 environment : Requirement 1) enable mod vhost alias a2enmod vhost_alias 2) reconfigure virtual host <VirtualHost 10.9.192.212> ServerName domain.com ServerAlias domain.com ServerAdmin web@test.my Redirect / http://www.domain.com/ </VirtualHost> <VirtualHost 10.9.192.212> ServerName www.domain.com DocumentRoot /home/domain.com/www </VirtualHost> 3) Restart the apache’s services   Then you will success… Read More »

Resubmit Message in Unreachable Domain

By | 17 May, 2012

We have some issue with our AD lately and our email queue with Unrachable Domain status. After stable, we need to resubmit back the message. Suspend and resume not work and need to be done using below command : Then all message will be resubmit again. 🙂 Source : http://technet.microsoft.com/en-us/library/aa995987(v=exchg.80).aspx