=====================================================================================================================================
3.25	smtp	(Not support AMI)
	
	abstract: BMC SMTP Email commands, including Sender Information, Destination Email Addresses, SMTP (email) Server Settings
		  and SMTP Authentication. You can used following command format to set above four options.
	usage	:
		  java -jar GbtUtility-2.1.76.jar [options] smtp set info <your information>
		  java -jar GbtUtility-2.1.76.jar [options] smtp set email <Alert Number> <on|off> <destination addr> <description>
		  java -jar GbtUtility-2.1.76.jar [options] smtp set server <port> <server IP>
		  java -jar GbtUtility-2.1.76.jar [options] smtp set auth <on|off> <username> <password> <STARTTLS Mode> <SASL Mode>
		  java -jar GbtUtility-2.1.76.jar [options] smtp get <info | email | server | auth>
	
*************************************************************************************************************************************
3.25.1	Set commands arguments details	:
	"info"			 : Set sender information
	<your information>	 : Write SMTP sender information.
	Example :
		  by node list	 : java -jar GbtUtility-2.1.76.jar smtp set info MergePoint-EMS@gigabyte.intra
		  by single host : java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 smtp set info MergePoint-EMS@gigabyte.intra
		  by scan host	 : java -jar GbtUtility-2.1.76.jar -S rmcp,10.1.27.1,10.1.27.150 smtp set info MergePoint-EMS@gigabyte.intra

	"email"			 : Set email destination you want to send message. There are four different destination you can set.
		  		   Alert Number from 1 to 4.
	<Alert Number>		 : Number of email destination as same as BMC Web.
	<on|off>		 : Enable or disable this email destination.
	<destination addr>	 : Destination email address.
	<description>		 : Email description (subject).
	<ipv4|ipv6>		 : Set destination email address is Ipv4 or Ipv6 type.
	Example :
		  by node list	 : java -jar GbtUtility-2.1.76.jar smtp set email 1 on example@mail.com MergePoint ipv4
		  by single host : java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 smtp set email 2 off example@mail.com MergePoint ipv6
		  by scan host	 : java -jar GbtUtility-2.1.76.jar -S rmcp,10.1.27.1,10.1.27.150 smtp set email 3 on example@mail.com MergePoint ipv6

	"server" 		 : Set SMTP (email) Server
	<port>			 : SMTP server port.
	<server IP>		 : SMTP server IP address support IPv4 and IPv6.
	Example :
		  by node list	 : java -jar GbtUtility-2.1.76.jar smtp set server 5000 10.1.27.125
		  by single host : java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 smtp set server 2345 10.1.27.125
		  by scan host	 : java -jar GbtUtility-2.1.76.jar -S rmcp,10.1.27.1,10.1.27.150 smtp set server 1258 10.1.27.125

	"auth"			 : Set SMTP SMTP Authentication
	<on|off>		 : Enable or Disable the SMTP server
	<username>		 : Set SMTP server user account
	<password>		 : Set SMTP server password
	<STARTTLS Mode> 	 : There are 3 different STARTTLS Mode you can set as follow : auto, on, off
	<SASL Mode>		 : There are 5 different SASL mode you can set as follow : auto, plain, login, htlm, md5
	Example :
		  by node list	 : java -jar GbtUtility-2.1.76.jar smtp set auth on GIGABYTE password auto md5
		  by single host : java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 smtp set auth off GIGABYTE password off md5
		  by scan host	 : java -jar GbtUtility-2.1.76.jar -S rmcp,10.1.27.1,10.1.27.150 smtp set auth on GIGABYTE password on htlm
*************************************************************************************************************************************
3.25.2	Get commands arguments details	:

	usage	:
		  java -jar GbtUtility-2.1.76.jar [options] smtp get <info | email | server | auth>

	Example :
		  by node list	 : java -jar GbtUtility-2.1.76.jar smtp get auth
		  by single host : java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 smtp get info
		  by scan host	 : java -jar GbtUtility-2.1.76.jar -S rmcp,10.1.27.1,10.1.27.150 smtp get email
=====================================================================================================================================