Displaying 8 results from an estimated 8 matches for "original_usernam".
Did you mean:
original_username
2014 May 03
1
%{orig_user} missing in checkpassword-Script
...lue = auth_request->session_pid == (pid_t)-1 ? NULL :
dec2str(auth_request->session_pid);
return ret_tab;
by
tab[26].value = auth_request->session_pid == (pid_t)-1 ? NULL :
dec2str(auth_request->session_pid);
if (auth_request->original_username != NULL) {
tab[27].value =
escape_func(auth_request->original_username, auth_request);
tab[28].value =
escape_func(t_strcut(auth_request->original_username, '@'), auth_request);
tab[29].value = strchr(auth_request->original_username,...
2017 Jul 13
1
System users lookup via PAM: strip the domain name?
Will %{original_username} set %d as well?
Sent from my Sprint Samsung Galaxy S8+.
-------- Original message --------From: Aki Tuomi <aki.tuomi at dovecot.fi> Date: 7/13/17 12:34 AM (GMT-06:00) To: Dovecot List <dovecot at dovecot.org>, Larry Rosenman <larryrtx at gmail.com> Subject: Re: System users...
2017 Jul 13
1
System users lookup via PAM: strip the domain name?
...cot at dovecot.org>, Larry Rosenman <larryrtx at gmail.com> Subject: Re: System users lookup via PAM: strip the domain name?
No.
It's just a placeholder, like %u or %d.
Aki
> On July 13, 2017 at 10:57 AM Larry Rosenman <larryrtx at gmail.com> wrote:
>
>
> Will %{original_username} set %d as well?
>
>
> Sent from my Sprint Samsung Galaxy S8+.
> -------- Original message --------From: Aki Tuomi <aki.tuomi at dovecot.fi> Date: 7/13/17? 12:34 AM? (GMT-06:00) To: Dovecot List <dovecot at dovecot.org>, Larry Rosenman <larryrtx at gmail.com> Subjec...
2017 Jul 13
1
System users lookup via PAM: strip the domain name?
...x at gmail.com> Subject: Re: System users lookup via PAM: strip the domain name?
> No.
>
> It's just a placeholder, like %u or %d.
>
> Aki
>
> > On July 13, 2017 at 10:57 AM Larry Rosenman <larryrtx at gmail.com> wrote:
> >
> >
> > Will %{original_username} set %d as well?
> >
> >
> > Sent from my Sprint Samsung Galaxy S8+.
> > -------- Original message --------From: Aki Tuomi <aki.tuomi at dovecot.fi> Date: 7/13/17? 12:34 AM? (GMT-06:00) To: Dovecot List <dovecot at dovecot.org>, Larry Rosenman <larryrtx at...
2011 Mar 25
1
Ignored proxy_maybe var and no local login when "host = Proxy FQDN"
...;& !str_uint_equals(port, request->local_port)){
T_BEGIN {
i_debug("%s", "PORTS DIFFERENT");
} T_END;
return FALSE;
}
return destuser == NULL ||
strcmp(destuser, request->original_username) == 0;
}
--
"You don't know where your shadow will fall",
Somebody.-
----------------------------------------------------------------
Olaf Reitmaier Veracierta <olafrv at gmail.com>
----------------------------------------------------------------
htt...
2009 May 17
2
Problem with domain part in user_query in dovecot 1.1.14
...ser_query so there is no domain part already. So one thing that had worked out for me was commenting the below code in src/auth/auth-request.c:
if (strcmp(request->user, value) != 0) {
/* remember the original username for cache */
if (request->original_username == NULL) {
request->original_username =
p_strdup(request->pool, request->user);
}
auth_request_log_debug(request, "auth",
&quo...
2017 Jul 13
1
System users lookup via PAM: strip the domain name?
I have a need for the following:
Real system users in /etc/{passwd,shadow} (actually PAM on FreeBSD) wirhOUT @domain in /etc/passwd
Virtual Users in SQL (with full user at domain in the DB)
When I have auth_username_format = %Ln I can?t auth the Virtual Users, and if I have auth_username_format = %Lu I can?t auth System users.
Is there a compromise somewhere?
Current doveconf ?n
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...auth_stream_reply_add(reply, "master_user",
request->master_user);
}
+
+ /* APPLE - urlauth */
+ if (request->submit_user != NULL)
+ auth_stream_reply_add(reply, "submit_user",
+ request->submit_user);
+
auth_stream_reply_add(reply, "original_username",
request->original_username);
@@ -162,6 +168,11 @@
request->user = p_strdup(request->pool, value);
else if (strcmp(key, "master_user") == 0)
request->master_user = p_strdup(request->pool, value);
+
+ /* APPLE - urlauth */
+ else if (strcmp(key, &q...