Subversion Repositories wimsdev

Rev

Rev 23 | Rev 1373 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23 Rev 391
Line 2... Line 2...
2
 error=robot
2
 error=robot
3
 !exit
3
 !exit
4
!endif
4
!endif
5
 
5
 
6
!if $job=$empty
6
!if $job=$empty
7
 error=wrong request: bad job
7
 error=wrong request: no job
8
 !exit
8
 !exit
9
!endif
9
!endif
10
 
10
 
11
code=!word 1 of $code
11
code=!word 1 of $code
12
!if $code=$empty
12
!if $code=$empty
Line 35... Line 35...
35
	($ident_deny!=$empty and $job iswordof $ident_deny)
35
	($ident_deny!=$empty and $job iswordof $ident_deny)
36
 error=illegal job
36
 error=illegal job
37
 !exit
37
 !exit
38
!endif
38
!endif
39
 
39
 
-
 
40
 
40
!if $ident_type=$empty or $passwd != $ident_password or\
41
!if $ident_type=$empty or $passwd != $ident_password 
-
 
42
error=Identification Failure : bad login/pwd
-
 
43
 !exit
-
 
44
!endif
-
 
45
 
41
	$httpd_REMOTE_ADDR notwordof $ident_site or\
46
!if $httpd_REMOTE_ADDR notwordof $ident_site
-
 
47
error=Identification Failure : bad IP ($httpd_REMOTE_ADDR is not $ident_site)
-
 
48
 !exit
-
 
49
!endif
-
 
50
 
42
	($ident_agent!=$empty and $agent != $ident_agent) or\
51
!if ($ident_agent!=$empty and $agent != $ident_agent)
-
 
52
error=Identification Failure : $agent is a bad Agent
-
 
53
 !exit
-
 
54
!endif
-
 
55
 
43
	($ident_protocol=https and $protocol != https)
56
!if ($ident_protocol=https and $protocol != https)
44
 error=identification failure
57
error=Identification Failure : bad Protocol
45
 !exit
58
 !exit
46
!endif
59
!endif
47
 
-