similar to: Samba 3.2.8 and the sticky Bit

Displaying 20 results from an estimated 1000 matches similar to: "Samba 3.2.8 and the sticky Bit"

2008 Jun 12
1
Inherited ACLs can not be removed
Hi, I have a problem with the inheritance of ACLs, respectively the removal of the inherited ACLs in subdirectories. The following szenario: By default the access rights (including ACLs) should be inherited, but it should also be possible to remove the access rights from any subdirectory. Therefore I've set up the following configuration: [Finanzen] path = /shares/finanzen msdfs root =
2019 Apr 01
1
Issue with dovecot/director
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Am Montag, den 01.04.2019, 19:36 +0300 schrieb Aki Tuomi: > > On 1 April 2019 19:29 Nico St?ckigt via dovecot <dovecot at dovecot.or > > g> wrote: > > > > ? > > Hi, > > > > are there any known issues with dovecot/director (2.2.13) when > > receiving e-an mail with multiple receivers? In the
2015 Jun 23
0
Crowdfunding Exchange Connection
Hi Samba Community, We were asked by our users if we could connect Exchange 2013 to Samba 4. After some investigation we saw that an LDAP control is missing in Samba 4 which seems to makes it impossible to connect Exchange 2013 to Samba 4: https://lists.samba.org/archive/samba-technical/2015-June/107887.html As far as I understand the Samba code it would be possible to implement it but it would
2010 Sep 24
0
Question about rpcclient
Hello, I have a problem concerning Samba, CUPS and rpcclient: When I add a printer using CUPS and share it with samba I enter a location and a comment, the latter is shown in Microsoft Windows network neighborhood as a comment (as it should be), but the location is not set. When I do a "rpcclient -U user%pass -c 'getprinter <printer> 2' localhost" I get some nice info,
2010 Nov 26
1
Question about rpcclient
I found this [1] in the samba archives. Has the patch been patched into samba? If so, has it been removed later? I am still looking for a way to change the location string for printer objects with rpcclient and haven't found a solution yet :-( [1] http://lists.samba.org/archive/samba-technical/2007-May/053351.html -- Timo Denissen IT systems integrator apprentice Univention GmbH Linux
2015 Jun 26
0
authenticate LDAP to email server
Am 26.06.2015 um 09:27 schrieb Robert Wild: > That's great thanks, > > One thing tho I did a "ls /etc/dovecot" and I don't see a dovecot-ldap.conf > > Do I need to create that file or install it via yum? > > Thanks again for your help, very much appreciated > > Rob > > Sent from my Windows Phone Hi Rob, please don't top-post. On
2015 Jun 26
0
authenticate LDAP to email server
i have made a file "/etc/dovecot/dovecot-ldap.conf.ext" hosts = 10.10.1.3 base = dc=robina,dc=private ldap_version = 3 auth_bind = yes auth_bind_userdn = cn=%u,cn=home,ou=robina_users,dc=robina,dc=private pass_attrs = uid=user pass_filter = (&(objectClass=posixAccount)(uid=%u)) i have also uncommented out the "include" line in the file10-auth.conf tried testing it by
2010 Jan 07
1
LDAP_NO_SUCH_OBJECT upon new user creation in s4/OpenLDAP
Hello, on Mon, 07 Dec 2009 01:13:19 -0800 Eric Woltermann posted: > for some weeks now I am trying to set up Samba4 (alpha9) with an OpenLDAP 2.4.17 backend as an AD PDC for my XP/7 clients. It was working for some time with Samba's integrated LDAP facility, however I could not figure out how to use this database e.g. to authenticate my IMAP users against (bind-dn, port etc.). OpenLDAP
2012 Feb 27
0
segfaulting tapdisk2 process leads to kernel oops
Hi there, I just found a segfaulting tapdisk2 process which led into a kernel oops. [1527071.169682] tapdisk2[26548]: segfault at 7fffd324cfe8 ip 000000000040837f sp 00007fffd324cff0 error 6 in tapdisk2[400000+38000] [1527071.220104] BUG: unable to handle kernel NULL pointer dereference at 0000000000000048 [1527071.220170] IP: [<ffffffff810ce73c>] apply_to_page_range+0x47/0x2f3
2014 Jul 23
3
DELL E6510 pxelinux issues
Hello, I have a problem with our DELL E6510 notebooks (BIOS version A05): 1. After the update from syslinux-3.71 to 4.02 LOCALBOOT no longer works. I've read <http://www.syslinux.org/wiki/index.php/Hardware_Compatibility#LOCALBOOT_on_Dell_Latitude_E6400> and neither version works. The behavior differs between the laptop rebooting automatically and getting stuck. I checked all versions
2015 Jun 26
2
authenticate LDAP to email server
Sorry for top posting, don't mean to, looks like my outlook mobile client does it by default Ok great thanks Daniel for this, also do you know if I have to change/edit the config files for postfix/openldap as well or just for dovecot Thank you Rob Sent from my Windows Phone -----Original Message----- From: "Daniel Tr?der" <troeder at univention.de> Sent: ?26/?06/?2015
2011 Jul 19
3
[LLVMdev] speculative parallelization in LLVM
Hi Renato, No, I cannot, but in case it is, I want to take advantage of this. In case it is not, the instrumentation code will detect this at runtime and simply roll back to the original version. I will always keep an original version available, in addition to the ones I modify with Polly. However, initially I will speculate that it is allocated contiguously. Thanks, Alexandra
2013 Apr 10
0
[LLVMdev] How to call the llvm.prefetch intrinsic ?
Alexandra, I'm not sure what you mean by "replace", but I have code that does this to insert prefetches: Type *I8Ptr = Type::getInt8PtrTy((*I)->getContext(), PtrAddrSpace); Value *PrefPtrValue = ... IRBuilder<> Builder(MemI); Module *M = (*I)->getParent()->getParent(); Type *I32 = Type::getInt32Ty((*I)->getContext()); Value
2011 Aug 03
2
[LLVMdev] scalar evolution to determine access functions in arays
Hello Tobi, You are right, we need to run some other passes before running the scalar evolution pass. The sequence that I run for this example is -O3 -loop-simplify -reg2mem.  This is why I did not obtain the expressions depending on the loop indices. So I removed the reg2mem pass and scalar evolution computes the correct functions. However, I need to run the reg2mem pass (or any other that
2011 Aug 03
2
[LLVMdev] scalar evolution to determine access functions in arays
Only because in my next passes I change the CFG significantly and it is very hard to maintain the values of the Phi nodes. Alexandra ________________________________ From: Tobias Grosser <tobias at grosser.es> To: Jimborean Alexandra <xinfinity_a at yahoo.com> Cc: "llvmdev at cs.uiuc.edu" <llvmdev at cs.uiuc.edu>; "luismastrangelo at gmail.com"
2006 Jan 11
0
Obtaining the adjusted r-square given the regression coef ficients
Hello Alexandra, R2 is only defined for regressions with intercept. See a decent econometrics textbook for its derivation. HTH, Bernhard -----Urspr??ngliche Nachricht----- Von: Alexandra R. M. de Almeida [mailto:alexandrarma at yahoo.com.br] Gesendet: Mittwoch, 11. Januar 2006 03:48 An: r-help at stat.math.ethz.ch Betreff: [R] Obtaining the adjusted r-square given the regression coefficients
2011 Jul 25
1
[LLVMdev] print the memory address computed by getelementptr
Hi again, Thank you, your suggestion worked well. I was looking for a pointer to void actually. But it seems that I do not get the memory address when passing the value of the GEP instruction.  For instance, when I print the address accessed by the second operandof the store instruction store %struct.linked* %tmp23.reload8, %struct.linked** %curr.037.reg2mem I obtain a memory address of the
2012 Nov 22
0
[LLVMdev] Set the minimum number of allocated bits for a variable
Hi Alexandra, I'm not sure want you want to do. Is the data layout string (http://llvm.org/docs/LangRef.html#datalayout, also usually set by each target specific *TargetMachine constructor), for setting the alignment good enough for you? Or is it more than the alignment you want to control? Do you have a target with 16-bit bytes? In that case, there is quite a lot of changes that needs to be
2011 Aug 03
1
[LLVMdev] scalar evolution to determine access functions in arays
Ok, thank you, I will have a look and reply with questions if necessary. Does it take into consideration the existing phi nodes? Alexandra ________________________________ From: Tobias Grosser <tobias at grosser.es> To: Jimborean Alexandra <xinfinity_a at yahoo.com> Cc: "llvmdev at cs.uiuc.edu" <llvmdev at cs.uiuc.edu>; "luismastrangelo at gmail.com"
2008 May 23
3
IDE
People, I'm a ubunto user and I used to write my scipts in "Java Gui for R", but it is a very slow tool to run my scripts... Do you know some efficient IDE for R? Thankssss!!! Alexandra Almeida -- Alexandra R M de Almeida [[alternative HTML version deleted]]