{
    #---------------------------------------------------------------------
    # Grab ValidFromGeoIP access list property of httpd-admin
    # SSL enabled virtual hosts should only allow access from IP's in
    # this list, as well as local networks.
    #---------------------------------------------------------------------
    
    $OUT = '';

    my $validFromGeoIP = ${'httpd-admin'}{'ValidFromGeoIP'};
    return unless defined $validFromGeoIP;
    $validFromGeoIP =~ s/,/|/g;
    $OUT .= "        SetEnvIf MM_COUNTRY_CODE ^($validFromGeoIP) AllowCountries\n";
    $externalSSLAccess .= " env=AllowCountries";
}
