]> granicus.if.org Git - apache/blob - docs/manual/mod/mod_authn_anon.html.en
update transformation
[apache] / docs / manual / mod / mod_authn_anon.html.en
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
4         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
5               This file is generated from xml source: DO NOT EDIT
6         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
7       -->
8 <title>mod_authn_anon - Apache HTTP Server</title>
9 <link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
10 <link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
11 <link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" />
12 <link href="../images/favicon.ico" rel="shortcut icon" /></head>
13 <body>
14 <div id="page-header">
15 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p>
16 <p class="apache">Apache HTTP Server Version 2.1</p>
17 <img alt="" src="../images/feather.gif" /></div>
18 <div class="up"><a href="./"><img title="&lt;-" alt="&lt;-" src="../images/left.gif" /></a></div>
19 <div id="path">
20 <a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP Server</a> &gt; <a href="http://httpd.apache.org/docs-project/">Documentation</a> &gt; <a href="../">Version 2.1</a> &gt; <a href="./">Modules</a></div>
21 <div id="page-content">
22 <div id="preamble"><h1>Apache Module mod_authn_anon</h1>
23 <div class="toplang">
24 <p><span>Available Languages: </span><a href="../en/mod/mod_authn_anon.html" title="English">&nbsp;en&nbsp;</a> |
25 <a href="../ko/mod/mod_authn_anon.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
26 </div>
27 <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Allows "anonymous" user access to authenticated
28     areas</td></tr>
29 <tr><th><a href="module-dict.html#Status">Status:</a></th><td>Extension</td></tr>
30 <tr><th><a href="module-dict.html#ModuleIdentifier">Module Identifier:</a></th><td>authn_anon_module</td></tr>
31 <tr><th><a href="module-dict.html#SourceFile">Source File:</a></th><td>mod_authn_anon.c</td></tr>
32 <tr><th><a href="module-dict.html#Compatibility">Compatibility:</a></th><td>Available in Apache 2.1 and later</td></tr></table>
33 <h3>Summary</h3>
34
35     <p>This module provides authentication front-ends such as
36     <code class="module"><a href="../mod/mod_auth_basic.html">mod_auth_basic</a></code> to authenticate users similar
37     to anonymous-ftp sites, <em>i.e.</em> have a 'magic' user id
38     'anonymous' and the email address as a password. These email
39     addresses can be logged.</p>
40
41     <p>Combined with other (database) access control methods, this
42     allows for effective user tracking and customization according
43     to a user profile while still keeping the site open for
44     'unregistered' users. One advantage of using Auth-based user
45     tracking is that, unlike magic-cookies and funny URL
46     pre/postfixes, it is completely browser independent and it
47     allows users to share URLs.</p>
48
49     <p>When using <code class="module"><a href="../mod/mod_auth_basic.html">mod_auth_basic</a></code>, this module is invoked
50     via the <code class="directive"><a href="../mod/mod_auth_basic.html#authbasicprovider">AuthBasicProvider</a></code>
51     directive with the <code>anon</code> value.</p>
52 </div>
53 <div id="quickview"><h3 class="directives">Directives</h3>
54 <ul id="toc">
55 <li><img alt="" src="../images/down.gif" /> <a href="#anonymous">Anonymous</a></li>
56 <li><img alt="" src="../images/down.gif" /> <a href="#anonymous_logemail">Anonymous_LogEmail</a></li>
57 <li><img alt="" src="../images/down.gif" /> <a href="#anonymous_mustgiveemail">Anonymous_MustGiveEmail</a></li>
58 <li><img alt="" src="../images/down.gif" /> <a href="#anonymous_nouserid">Anonymous_NoUserID</a></li>
59 <li><img alt="" src="../images/down.gif" /> <a href="#anonymous_verifyemail">Anonymous_VerifyEmail</a></li>
60 </ul>
61 <h3>Topics</h3>
62 <ul id="topics">
63 <li><img alt="" src="../images/down.gif" /> <a href="#example">Example</a></li>
64 </ul></div>
65 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
66 <div class="section">
67 <h2><a name="example" id="example">Example</a></h2>
68     <p>The example below is combined with "normal" htpasswd-file based
69     authentication and allows users in additionally as 'guests' with the
70     following properties:</p>
71
72     <ul>
73       <li>It insists that the user enters a userID.
74       (<code class="directive"><a href="#anonymous_nouserid">Anonymous_NoUserID</a></code>)</li>
75
76       <li>It insists that the user enters a password.
77       (<code class="directive"><a href="#anonymous_mustgiveemail">Anonymous_MustGiveEmail</a></code>)</li>
78
79       <li>The password entered must be a valid email address, <em>i.e.</em>
80       contain at least one '@' and a '.'.
81       (<code class="directive"><a href="#anonymous_verifyemail">Anonymous_VerifyEmail</a></code>)</li>
82
83       <li>The userID must be one of <code>anonymous guest www test
84       welcome</code> and comparison is <strong>not</strong> case
85       sensitive. (<code class="directive"><a href="#anonymous">Anonymous</a></code>)</li>
86
87       <li>And the Email addresses entered in the passwd field are
88       logged to the error log file.
89       (<code class="directive"><a href="#anonymous_logemail">Anonymous_LogEmail</a></code>)</li>
90     </ul>
91
92     <div class="example"><h3>Example</h3><p><code>
93       &lt;Directory /foo&gt;
94       <span class="indent">
95         AuthName "Use 'anonymous' &amp; Email address for guest entry"<br />
96         AuthType Basic<br />
97         AuthBasicProvider file anon<br />
98         AuthUserFile /path/to/your/.htpasswd<br />
99         <br />
100         Anonymous_NoUserID off<br />
101         Anonymous_MustGiveEmail on<br />
102         Anonymous_VerifyEmail on<br />
103         Anonymous_LogEmail on<br />
104         Anonymous anonymous guest www test welcome<br />
105         <br />
106         Order Deny,Allow<br />
107         Allow from all<br />
108         <br />
109         Require valid-user<br />
110       </span>
111       &lt;/Directory&gt;
112     </code></p></div>
113 </div>
114 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
115 <div class="directive-section"><h2><a name="Anonymous" id="Anonymous">Anonymous</a> <a name="anonymous" id="anonymous">Directive</a></h2>
116 <table class="directive">
117 <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Specifies userIDs that are allowed access without
118 password verification</td></tr>
119 <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>Anonymous <var>user</var> [<var>user</var>] ...</code></td></tr>
120 <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>directory, .htaccess</td></tr>
121 <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>AuthConfig</td></tr>
122 <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
123 <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_authn_anon</td></tr>
124 </table>
125     <p>A list of one or more 'magic' userIDs which are allowed
126     access without password verification. The userIDs are space
127     separated. It is possible to use the ' and " quotes to allow a
128     space in a userID as well as the \ escape character.</p>
129
130     <p>Please note that the comparison is
131     <strong>case-IN-sensitive</strong>.<br />
132     It's strongly recommended that the magic username
133     '<code>anonymous</code>' is always one of the allowed
134     userIDs.</p>
135
136     <div class="example"><h3>Example:</h3><p><code>
137       Anonymous anonymous "Not Registered" "I don't know"
138     </code></p></div>
139
140     <p>This would allow the user to enter without password
141     verification by using the userIDs "anonymous",
142     "AnonyMous", "Not Registered" and "I Don't Know".</p>
143
144     <p>As of Apache 2.1 it is possible to specify the userID as
145     "<code>*</code>". That allows <em>any</em> supplied userID to be
146     accepted.</p>
147
148 </div>
149 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
150 <div class="directive-section"><h2><a name="Anonymous_LogEmail" id="Anonymous_LogEmail">Anonymous_LogEmail</a> <a name="anonymous_logemail" id="anonymous_logemail">Directive</a></h2>
151 <table class="directive">
152 <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Sets whether the password entered will be logged in the
153 error log</td></tr>
154 <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>Anonymous_LogEmail On|Off</code></td></tr>
155 <tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>Anonymous_LogEmail On</code></td></tr>
156 <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>directory, .htaccess</td></tr>
157 <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>AuthConfig</td></tr>
158 <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
159 <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_authn_anon</td></tr>
160 </table>
161     <p>When set <code>On</code>, the default, the 'password' entered
162     (which hopefully contains a sensible email address) is logged in
163     the error log.</p>
164
165 </div>
166 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
167 <div class="directive-section"><h2><a name="Anonymous_MustGiveEmail" id="Anonymous_MustGiveEmail">Anonymous_MustGiveEmail</a> <a name="anonymous_mustgiveemail" id="anonymous_mustgiveemail">Directive</a></h2>
168 <table class="directive">
169 <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Specifies whether blank passwords are allowed</td></tr>
170 <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>Anonymous_MustGiveEmail On|Off</code></td></tr>
171 <tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>Anonymous_MustGiveEmail On</code></td></tr>
172 <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>directory, .htaccess</td></tr>
173 <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>AuthConfig</td></tr>
174 <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
175 <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_authn_anon</td></tr>
176 </table>
177     <p>Specifies whether the user must specify an email address as
178     the password. This prohibits blank passwords.</p>
179
180 </div>
181 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
182 <div class="directive-section"><h2><a name="Anonymous_NoUserID" id="Anonymous_NoUserID">Anonymous_NoUserID</a> <a name="anonymous_nouserid" id="anonymous_nouserid">Directive</a></h2>
183 <table class="directive">
184 <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Sets whether the userID field may be empty</td></tr>
185 <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>Anonymous_NoUserID On|Off</code></td></tr>
186 <tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>Anonymous_NoUserID Off</code></td></tr>
187 <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>directory, .htaccess</td></tr>
188 <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>AuthConfig</td></tr>
189 <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
190 <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_authn_anon</td></tr>
191 </table>
192     <p>When set <code>On</code>, users can leave the userID (and
193     perhaps the password field) empty. This can be very convenient for
194     MS-Explorer users who can just hit return or click directly on the
195     OK button; which seems a natural reaction.</p>
196
197 </div>
198 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
199 <div class="directive-section"><h2><a name="Anonymous_VerifyEmail" id="Anonymous_VerifyEmail">Anonymous_VerifyEmail</a> <a name="anonymous_verifyemail" id="anonymous_verifyemail">Directive</a></h2>
200 <table class="directive">
201 <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Sets whether to check the password field for a correctly
202 formatted email address</td></tr>
203 <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>Anonymous_VerifyEmail On|Off</code></td></tr>
204 <tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>Anonymous_VerifyEmail Off</code></td></tr>
205 <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>directory, .htaccess</td></tr>
206 <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>AuthConfig</td></tr>
207 <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
208 <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_authn_anon</td></tr>
209 </table>
210     <p>When set <code>On</code> the 'password' entered is checked for
211     at least one '@' and a '.' to encourage users to enter valid email
212     addresses (see the above <code class="directive"><a href="#anonymous_logemail">Anonymous_LogEmail</a></code>).</p>
213
214 </div>
215 </div>
216 <div class="bottomlang">
217 <p><span>Available Languages: </span><a href="../en/mod/mod_authn_anon.html" title="English">&nbsp;en&nbsp;</a> |
218 <a href="../ko/mod/mod_authn_anon.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
219 </div><div id="footer">
220 <p class="apache">Copyright 1999-2004 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
221 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div>
222 </body></html>