search for: this_user

Displaying 10 results from an estimated 10 matches for "this_user".

2015 Mar 09
0
Outlook 2013/2010 nightmare #2
...ln -s mail ${JUST_CHECKME} fi done cd ${COMPLETE_HOME} done =----------------------------------------------------------------------------------= Script 2 (mail_multi_users): =----------------------------------------------------------------------------------= cd /u/home for THIS_USER in * do MORE_THAN_1=`ls -d ${THIS_USER}/mail/mail* | wc -l` if [ "${MORE_THAN_1}" -gt "1" ] then # echo "${THIS_USER} has more than one" ls ${THIS_USER}/mail/mail >${THIS_USER}/subcount if [ ! -f ${THIS_USER}/subcount_last ] then...
2015 Mar 10
2
Outlook 2013/2010 nightmare #2
...> =----------------------------------------------------------------------------------= >> >> >> Script 2 (mail_multi_users): >> >> =----------------------------------------------------------------------------------= >> >> cd /u/home >> >> for THIS_USER in * >> do >> MORE_THAN_1=`ls -d ${THIS_USER}/mail/mail* | wc -l` >> if [ "${MORE_THAN_1}" -gt "1" ] >> then >> # echo "${THIS_USER} has more than one" >> ls ${THIS_USER}/mail/mail >${THIS_USER}/subcount &gt...
2011 Aug 16
7
left menu for Fedena Project
i wanna add left menu in the http://demo.projectfedena.org/ login:admin password:admin123 as there is no left menu in that i thought of adding a left menu. can any one tell how to do that with ROR. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to
2016 Oct 19
2
3.6.23-25.el6_7 and 4.2.10 and "Domain Admins" are/not Admins?
hi all I have two different Samba versions as PDC and BDC and depending on which one is "domain master" users which are domain admins are not recognized as such. Everything seems normal with 3.6.23-25.el6_7 as "domain master" but when I configure them so 4.2.10 is the master then I login to Win7 fine but Windows tells me that the user is not an Admin and I need to supply
2007 Jul 12
0
No subject
...; Any North American ten-digit number. exten => _NXXXXXXXXX,1,Dial(SIP/${EXTEN}@my_sip_provider) In our case, we actually register with our SIP origination provider, so we have this IP trunk: [junction_networks] fromdomain=jnctn.net host=sip.jnctn.net port=5060 insecure=very username=this_user secret=this_password type=peer qualify=no canreinvite=no dtmfmode=rfc2833 But in addition, in the [general] context at the top of sip.conf, we have: register => our_user:our_password at sip.jnctn.net As you can see, one type of registration requirement does not interfere with an...
2007 Jan 01
3
Another "how do I spec this?"
I wanted to add a convenience method on my User class to see if he was already signed up for a tournament. Here''s my spec context "A User signed up for one tournament" do setup do @t1 = Tournament.new @t1.save false @t2 = Tournament.new @t2.save false @user = User.new @user.save false @user.registrations << Registration.new(:tournament =>
2006 Nov 28
0
tzinfo_timezone/tzinfo can't modify frozen object
...0,''...''), ticket_url(ticket), {:title => sanitize(ticket.description)}%> 27: <div class="subtext" style="margin-top:3px; margin-bottom:14px;"> 28: #<%= ticket.id%> 29: | Submitted <%=format_date(@this_user.tz.utc_to_local(ticket.created_at))%> by <%= name_or_me(ticket.submitter_id, Proc.new {ticket.submitter.name})%> 30: | <%=ticket.status%> <%if ticket.ticket_type_id?%><%=ticket.ticket_type.downcase%><%end%> 31: <%if ticket.priori...
2007 Oct 23
2
register => to let Asterisk register to another softswitch via SIP
Dear Alex; Thanks alot for your nice help. This is if I need to let Asterisk register with another softswitch (so I used register =>), what if I need asterisk to send call for the softswitch without register to it (directly)? If I removed the register => then how it will distiguish the IP address in the "host" at the [sip_trunk] is the IP address of the softswitch that need to
2001 Dec 12
1
MacOS X Server samba diffs
...passdb/pass_check.c,v retrieving revision 1.3 retrieving revision 1.1.1.2 diff -u -r1.3 -r1.1.1.2 --- pass_check.c 2001/07/17 06:02:51 1.3 +++ pass_check.c 2001/07/16 22:27:23 1.1.1.2 @@ -598,13 +598,6 @@ static BOOL password_check(char *password) { -#ifdef DIRECTORY_SERVICE_X - if (checkpw(this_user,password) == 0) - return(True); - else - return(False); -#endif - #ifdef WITH_PAM return (smb_pam_passcheck(this_user, password) == NT_STATUS_NOPROBLEMO); #endif /* WITH_PAM */ Index: source/script/installbin.sh ==============================================================...
1999 Sep 21
0
FW: Kerberos 5 with Samba, Can you help?
...*********************************************/ +#ifdef KRB5_AUTH +extern pstring mappedfrom_user; +#endif BOOL password_check(char *password) { @@ -825,6 +828,7 @@ #endif #ifdef KRB5_AUTH + if (*mappedfrom_user && krb5_auth(mappedfrom_user,password)) return(True); if (krb5_auth(this_user,password)) return(True); #endif --- username.c Mon Sep 13 14:13:11 1999 +++ ../username.c Mon Sep 13 16:03:44 1999 @@ -44,6 +44,11 @@ map a username from a dos name to a unix name by looking in the username map ********************************************************************/ + +#ifdef KR...