Lines Matching defs:conf
75 authn_anon_config_rec *conf = apr_palloc(p, sizeof(*conf));
78 conf->users = NULL;
80 conf->nouserid = 0;
81 conf->anyuserid = 0;
82 conf->logemail = 1;
83 conf->verifyemail = 0;
84 conf->mustemail = 1;
85 return conf;
91 authn_anon_config_rec *conf = my_config;
99 if (!conf->anyuserid) {
101 conf->anyuserid = 1;
104 first = conf->users;
105 conf->users = apr_palloc(cmd->pool, sizeof(*conf->users));
106 conf->users->user = apr_pstrdup(cmd->pool, arg);
107 conf->users->next = first;
138 authn_anon_config_rec *conf = ap_get_module_config(r->per_dir_config,
143 if (!conf->users && !conf->anyuserid) {
150 if (conf->nouserid) {
154 else if (conf->anyuserid) {
158 anon_auth_user *p = conf->users;
177 && (!conf->mustemail || *sent_pw)
178 && ( !conf->verifyemail
181 if (conf->logemail && ap_is_initial_req(r)) {