Edited wiki page HowToSetupBuildbotForMelange through web user interface.
diff --git a/HowToSetupBuildbotForMelange.wiki b/HowToSetupBuildbotForMelange.wiki
index 43b2ade..915047e 100644
--- a/HowToSetupBuildbotForMelange.wiki
+++ b/HowToSetupBuildbotForMelange.wiki
@@ -54,6 +54,29 @@
 Now this is a bit tricky, since postfix can be hard to configure. But if you follow the below mentioned steps, things should go smoothly.
 
 {{{
-  $sudo apt-get install postfix mailutils libsasl2-2 ca-certificates libsasl2-modules
+  $ sudo apt-get install postfix mailutils libsasl2-2 ca-certificates libsasl2-modules
+
+  # Open the postfix config file.
+  $ sudo vim /etc/postfix/main.cf
+
+  # Add the following lines in there.
+  relayhost = [smtp.gmail.com]:587
+  smtp_sasl_auth_enable = yes
+  smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
+  smtp_sasl_security_options = noanonymous
+  smtp_tls_CAfile = /etc/postfix/cacert.pem
+  smtp_use_tls = yes
+
+  # Next Open postfix sasl_passwd file.
+  $ vim /etc/postfix/sasl_passwd
+
+  # Add the following line to it.
+  [smtp.gmail.com]:587    USERNAME@gmail.com:PASSWORD
+  # USERNAME being the buildbot's email id, and PASSWORD being well, password.
+
+
+
+
+
 
 }}}
\ No newline at end of file