We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 928beff commit eb3197bCopy full SHA for eb3197b
src/cgi/wwsympa.fcgi.in
@@ -1106,7 +1106,13 @@ while ($query = CGI::Fast->new) {
1106
# N.B. As of 6.2.15, the http_host parameter will match with the host name
1107
# and path locally detected by server. If remotely detected host name
1108
# and / or path should be differ, the proxy must adjust them.
1109
+ # N.B. As of 6.2.34, wwsympa_url parameter may be optional.
1110
$robot = Sympa::WWW::Tools::get_robot('http_host', 'wwsympa_url');
1111
+ unless (Conf::get_robot_conf($robot, 'wwsympa_url')) {
1112
+ print "Status: 404 Not Found\n";
1113
+ print "\n\n";
1114
+ next;;
1115
+ }
1116
1117
# Default robot.
1118
$param->{'default_robot'} = 1
0 commit comments