summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 1319094 - the Requires(pre) httpd does not seem to be needed.mod_intercept_form_submit-1.0.0Jan Pazdziora2016-03-211-2/+4
|
* Tagging 0.9.8 release.mod_intercept_form_submit-0.9.8Jan Pazdziora2014-06-301-1/+6
|
* 1109923 - For Apache 2.4, separate module loading from configuration.Jan Pazdziora2014-06-303-9/+14
|
* Document the runtime dependency on pam_authenticate_with_login_password.Jan Pazdziora2014-05-141-0/+22
|
* Removal of forgotten commented piece of code.Jan Pazdziora2014-05-141-1/+0
|
* Update .spec for 0.9.7.mod_intercept_form_submit-0.9.7Jan Pazdziora2014-05-131-1/+6
|
* The latest lookup_identity_hook is fixups/APR_HOOK_LAST while we are ↵Jan Pazdziora2014-05-122-19/+2
| | | | fixups/APR_HOOK_MIDDLE, no need to call explicitly.
* Compile to C99.Jan Pazdziora2014-05-091-1/+1
| | | | | | Addressing warning: ISO C90 forbids specifying subobject to initialize warning: ISO C90 forbids mixed declarations and code
* Fixing typo in documentation.Jan Pazdziora2014-04-161-1/+1
|
* Add support for InterceptFormLoginRealms.mod_intercept_form_submit-0.9.6Jan Pazdziora2014-04-153-2/+58
|
* Make the comment for filter_provides_in clearer.Jan Pazdziora2014-04-151-1/+2
| | | | | | | | | | MUST: Packages must not provide RPM dependency information when that information is not global in nature, or are otherwise handled (e.g. through a virtual provides system). e.g. a plugin package containing a binary shared library must not "provide" that library unless it is accessible through the system library paths. https://fedoraproject.org/wiki/Packaging:AutoProvidesAndRequiresFiltering#Summary
* Adding email address to changelog per ↵mod_intercept_form_submit-0.9.5Jan Pazdziora2014-01-301-34/+3
| | | | https://fedoraproject.org/wiki/Packaging:Guidelines#Changelogs.
* Using default Fedora build flags.Jan Pazdziora2014-01-301-1/+1
|
* Being specific about %files filename.Jan Pazdziora2014-01-301-1/+1
|
* Depend on httpd-mmn per ↵Jan Pazdziora2014-01-301-1/+2
| | | | https://fedoraproject.org/wiki/PackagingDrafts/ApacheHTTPModules#Run-Time_Dependencies.
* Dropping dot from summary per ↵Jan Pazdziora2014-01-301-1/+1
| | | | https://fedoraproject.org/wiki/Packaging:Guidelines#Tags.
* Amend documentation to show mod_authnz_pam loading.mod_intercept_form_submit-0.9.4Jan Pazdziora2014-01-163-5/+17
|
* Move the processing to the middle of the fixup phase to allow mod_headers to ↵mod_intercept_form_submit-0.9.3Jan Pazdziora2014-01-152-7/+12
| | | | process the result.
* If pam_authenticate_with_login_password is not available, skip calling it.mod_intercept_form_submit-0.9.2Jan Pazdziora2014-01-092-2/+11
|
* Declare all functions static for proper isolation.Jan Pazdziora2014-01-091-12/+12
|
* Use pam_authenticate_with_login_password from mod_authnz_pam.mod_intercept_form_submit-0.9.1Jan Pazdziora2014-01-093-62/+28
|
* In the log message, show the module name.Jan Pazdziora2013-12-061-2/+2
|
* Update .spec for version 0.9.mod_intercept_form_submit-0.9Jan Pazdziora2013-12-051-1/+5
|
* Strip parameters like charset from request's Content-Type.Jan Pazdziora2013-12-051-6/+14
|
* Unify the error reporting of PAM failures.Jan Pazdziora2013-11-211-18/+11
|
* Perform PAM account validation, not just authentication.Jan Pazdziora2013-11-212-0/+9
|
* Amending the workflow description.Jan Pazdziora2013-11-201-5/+17
|
* Update .spec for version 0.8.mod_intercept_form_submit-0.8Jan Pazdziora2013-11-191-1/+7
|
* Add support for InterceptFormClearRemoteUserForSkipped.Jan Pazdziora2013-11-192-0/+17
|
* Support redacting the password with InterceptFormPasswordRedact option.Jan Pazdziora2013-11-192-14/+114
|
* Do APR_BRIGADE_CONCAT into the cached brigade right after reading, it will ↵Jan Pazdziora2013-11-191-12/+4
| | | | ensure we will only have one brigade to work with when we attempt to clear the password.
* If there was no & in the bucket, the whole bucket might be continuation of ↵Jan Pazdziora2013-11-191-1/+6
| | | | the previous fragment.
* Call lookup_identity_hook from mod_lookup_identity if it exists, after the ↵Jan Pazdziora2013-11-192-4/+23
| | | | (new) r->user was set.
* Set EXTERNAL_AUTH_ERROR variable upon PAM error.Jan Pazdziora2013-11-192-3/+9
|
* Set the r->user as well (will show up in access_log).Jan Pazdziora2013-11-192-2/+5
|
* Fixing typo.Jan Pazdziora2013-11-082-2/+2
|
* Update .spec for version 0.7.mod_intercept_form_submit-0.7Jan Pazdziora2013-11-071-2/+6
|
* Amend documentation.Jan Pazdziora2013-11-073-0/+124
|
* No need to spell out the module name for APLOG_DEBUG, it is shown by Apache.Jan Pazdziora2013-11-071-7/+7
|
* If REMOTE_USER is already set (presumably by previous module), skip.Jan Pazdziora2013-11-072-2/+9
|
* Parse enough of input before CGI is forked.Jan Pazdziora2013-11-051-100/+129
| | | | | | | | We run intercept_form_submit_filter_prefetch, look for login and password, and run pam_authenticate if needed. We store the input in f->ctx->cached_brigade and in the intercept_form_submit_filter we just send the cached buckets out upon the first invocation, and passthrough during the following.
* Update .spec for version 0.6.mod_intercept_form_submit-0.6Jan Pazdziora2013-11-041-1/+4
|
* Simplify the code by using the predefined ap_set_string_slot function.Jan Pazdziora2013-11-041-27/+3
|
* Since apr_pcalloc initializes the memory, no need to set manually.Jan Pazdziora2013-11-041-5/+1
|
* Introduce InterceptFormLoginSkip to be able to specify login blacklists.Jan Pazdziora2013-11-042-0/+34
|
* Fixing typos.Jan Pazdziora2013-10-311-2/+4
|
* Adding and .spec file.mod_intercept_form_submit-0.5Jan Pazdziora2013-10-311-0/+61
|
* Example configuration file.Jan Pazdziora2013-10-311-0/+9
|
* README and LICENSE files.Jan Pazdziora2013-10-302-0/+280
|
* Apache module mod_intercept_form_submit.Jan Pazdziora2013-10-301-0/+335