$config.get

Gets the value of the named parameter.
Syntax
    $config{get}{parameter_name}
    $config.get{parameter_name}
DocumentationGets the value of the named parameter.

    Parameters:
      get, a flag used to indicate that the value of the named parameter is requested.
      parameter_name, the name of the parameter whos value is requested.
    Returns:
      the value of the named parameter.
    Throws:
      an java.lang.IllegalArgumentException if the parameter_name is not one of 'encoding.gzip.allow', 'mail.host', 'mail.port', 'session.allow', 'www'.
Examples
Set the parameter 'mail.host':

    $set{host}{www.some_host_name.com}

    if{$contains{$config{list}}{mail.host}} $//Checks if 'mail.host' is a valid parameter name.
      {
      if{$not{$equals{$get{host}}{$config{get}{mail.host}}}} $//Checks if the 'mail.host' parameter value is already the desired.
        {
        $config{set}{mail.host}{$get{host}}
        }
      }
GroupSpecial
Minimum required transaction-mode:NONE
Required scripting permission of the developerPERMISSION_FL_ADMINISTRATOR
Minimum parameters1
Maximum parameters 2