summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Pazdziora <jpazdziora@redhat.com>2014-05-14 13:04:58 +0200
committerJan Pazdziora <jpazdziora@redhat.com>2014-05-14 13:04:58 +0200
commitc7957d8fde923d44b46181fe9a173e8a82398cdf (patch)
tree00f044aa91745458e407cb19d08bd1af44652374
parent6e6625aefb69c7e5f38eab3621aae4efb742eca8 (diff)
downloadmod_intercept_form_submit-c7957d8fde923d44b46181fe9a173e8a82398cdf.tar.gz
mod_intercept_form_submit-c7957d8fde923d44b46181fe9a173e8a82398cdf.tar.xz
mod_intercept_form_submit-c7957d8fde923d44b46181fe9a173e8a82398cdf.zip
Document the runtime dependency on pam_authenticate_with_login_password.
-rw-r--r--README22
1 files changed, 22 insertions, 0 deletions
diff --git a/README b/README
index 4dece4d..d58b1f5 100644
--- a/README
+++ b/README
@@ -124,6 +124,28 @@ When building from sources, command
should build and install the module.
+Dependency on mod_authnz_pam
+----------------------------
+
+Module mod_intercept_form_submit has soft (runtime) dependency on
+function pam_authenticate_with_login_password with prototype
+
+ authn_status pam_authenticate_with_login_password(
+ request_rec * r, const char * pam_service,
+ const char * login, const char * password,
+ int steps
+ );
+
+This function is typically provided by module mod_authnz_pam, and is
+called to achieve the actual authentication via the PAM stack. When
+mod_authnz_pam is not loaded and thus this function not available,
+error
+
+ mod_intercept_form_submit: pam_authenticate_with_login_password
+ not found; perhaps mod_authnz_pam is not loaded
+
+is logged and authentication does not take place.
+
License
-------