[Remove entries to the current 2.0 section below, when backported]
+ *) mod_setenvif: Remove "support" for Remote_User variable which
+ never worked at all. PR 25725. [André Malo]
+
*) minor mod_auth_basic and mod_auth_digest sync. mod_auth_basic
now populates r->user with the (possibly unauthenticated) user,
and mod_auth_digest returns 500 when a provider returns
on which the request was received (only with versions later
than 2.0.43)</li>
- <li><code>Remote_User</code> - the authenticated username (if
- available)</li>
-
<li><code>Request_Method</code> - the name of the method
being used (<code>GET</code>, <code>POST</code>, <em>et
cetera</em>)</li>
\e$B%j%/%(%9%H$r<u$1<h$C$?%5!<%P$N\e(B IP \e$B%"%I%l%9\e(B
(2.0.43 \e$B0J9_$N$_\e(B)</li>
- <li><code>Remote_User</code> -
- \e$BG'>Z$5$l$?%f!<%6L>\e(B (\e$B$b$7$"$l$P\e(B)</li>
-
<li><code>Request_Method</code> -
\e$B;HMQ$5$l$F$$$k%a%=%C%IL>\e(B (<code>GET</code>, <code>POST</code>
<em>\e$B$J$I\e(B</em>)</li>
<li><code><em>varname</em>=<em>value</em></code></li>
</ol>
- <p>\e$B$N$I$l$+$N7A<0$K$J$j$^$9!#\e(B</p>
+ <p>\e$B$N$I$l$+$N7A<0$K$J$j$^\e(B\e$B$9!#\e(B</p>
<p>\e$B:G=i$N7A<0$G$O!"CM$O\e(B "1" \e$B$K@_Dj$5$l$^$9!#\e(B
\e$BFs$DL\$O$b$7CM$,Dj5A$5$l$F$$$l$P$=$l$r<h$j=|$-$^$9!#\e(B
on which the request was received (only with versions later
than 2.0.43)</li>
- <li><code>Remote_User</code> - the authenticated username (if
- available)</li>
-
<li><code>Request_Method</code> - the name of the method
being used (<code>GET</code>, <code>POST</code>, <em>et
cetera</em>)</li>
\e$B%j%/%(%9%H$r<u$1<h$C$?%5!<%P$N\e(B IP \e$B%"%I%l%9\e(B
(2.0.43 \e$B0J9_$N$_\e(B)</li>
- <li><code>Remote_User</code> -
- \e$BG'>Z$5$l$?%f!<%6L>\e(B (\e$B$b$7$"$l$P\e(B)</li>
-
<li><code>Request_Method</code> -
\e$B;HMQ$5$l$F$$$k%a%=%C%IL>\e(B (<code>GET</code>, <code>POST</code>
<em>\e$B$J$I\e(B</em>)</li>
* (analogous to SERVER_ADDR set in ap_add_common_vars())
* remote_host Remote host name (if available)
* remote_addr Remote IP address
- * remote_user Remote authenticated user (if any)
* request_method Request method (GET, POST, etc)
* request_uri Requested URI
*
SPECIAL_NOT,
SPECIAL_REMOTE_ADDR,
SPECIAL_REMOTE_HOST,
- SPECIAL_REMOTE_USER,
SPECIAL_REQUEST_URI,
SPECIAL_REQUEST_METHOD,
SPECIAL_REQUEST_PROTOCOL,
else if (!strcasecmp(fname, "remote_host")) {
new->special_type = SPECIAL_REMOTE_HOST;
}
- else if (!strcasecmp(fname, "remote_user")) {
- new->special_type = SPECIAL_REMOTE_USER;
- }
else if (!strcasecmp(fname, "request_uri")) {
new->special_type = SPECIAL_REQUEST_URI;
}
val = ap_get_remote_host(r->connection, r->per_dir_config,
REMOTE_NAME, NULL);
break;
- case SPECIAL_REMOTE_USER:
- val = r->user;
- break;
case SPECIAL_REQUEST_URI:
val = r->uri;
break;