search for: otheruses

Displaying 20 results from an estimated 51 matches for "otheruses".

Did you mean: otheruser
2017 Jul 08
4
force port redirection for list of users
Hi , I have the following requirement . other than following users, any other user sshd connection should be redirected to 2024 instead of port 22. root, ftp, guest So ssh root at ip // should be sent to sshd running at port 22 ssh otheruser at ip // should be sent to sshd running at port 2024 I know that we can do something like this: ssh -o ProxyCommand='ssh -W localhost:2024 cliuser
2017 Jul 18
2
force port redirection for list of users
Thanks somuch. I am checking it. Best Regards, On Tue, Jul 18, 2017 at 9:08 PM, Reuti <reuti at staff.uni-marburg.de> wrote: > > > Am 08.07.2017 um 18:41 schrieb Sudarshan Soma <sudarshan12s at gmail.com>: > > > > Hi , > > I have the following requirement . > > other than following users, any other user sshd connection should be > > redirected
2015 Aug 17
1
Store ACL files within shared mailbox / rename shared folder problem
Hi. If $otheruser shares a mailbox to $myuser, my private index is stored in *my* Maildir, according to this template (from the dovecot docs): mail_location = maildir:%%h/Maildir:INDEXPVT=%h/Maildir/shared/%%u If $otheruser renames the shared mailbox, all my private mail flags (Seen) are lost because my mailclient couldn't find the private index anymore. Is there any way to store the
2013 Apr 04
0
[LLVMdev] Is r174746 broken on ARM?
...would be great to have an advice > from you. r174746 is specifically related to pre-increment loads and stores. I think that the first step is to narrow down the problematic case. In DAGCombiner::CombineToPreIndexedLoadStore, there is a loop which starts with: SmallVector<SDNode *, 16> OtherUses; if (isa<ConstantSDNode>(Offset)) for (SDNode::use_iterator I = BasePtr.getNode()->use_begin(), E = BasePtr.getNode()->use_end(); I != E; ++I) { SDNode *Use = *I; 1. Make the loop skip cases where Use->getOpcode() == ISD::ADD and then Use->getOpcode() == ISD:...
2013 Apr 04
2
[LLVMdev] Is r174746 broken on ARM?
Hello Hal, I have a strong suspicion that your constant folding optimization introduced at r174746 is broken on ARM. There is a bug about it: http://llvm.org/bugs/show_bug.cgi?id=15581 There is no such issue with 3.2, and reverting r174746 on top of r178740 also fixes the problem. I'm trying to fix it myself, but still have no good ideas; so it would be great to have an advice from you.
2013 Apr 08
1
[LLVMdev] Is r174746 broken on ARM?
...e is a problem somewhere. > The relevant code is a little farther down: > > APInt OV = > cast<ConstantSDNode>(Offset)->getAPIntValue(); > if (AM == ISD::PRE_DEC) > OV = -OV; > > ConstantSDNode *CN = > cast<ConstantSDNode>(OtherUses[i]->getOperand(OffsetIdx)); > APInt CNV = CN->getAPIntValue(); > if (OtherUses[i]->getOpcode() == ISD::SUB && OffsetIdx == 1) > CNV += OV; > else > CNV -= OV; > > perhaps something here is not quite right. I suspect that the first...
2005 Mar 20
1
Shared maildirs with symlinking
Hello, I try to set up a shared maildir with symbolink links, but it doesn't work. The main user, from which I would share a mailbox, creates a mailbox named "Commun" with thunderbird. I see on the file system from the server that a directory .Commun is created in his ~/Maildir/ and that the file ~/Maildir/.subscriptions has now such an entry. Right. In ~/Maildir/Commun the
2005 Sep 19
1
Two strange behaviours with dovecot+postfix+squirrelmail
Hi all, About a week ago I was forced to migrate my main (production) email server from RH9 to Centos4.1. The installation has dovecot-0.99.11 + postfix-2.1.5 and >600 mbox accessed email accounts. Number 1. Some users accessing thru squirremail (installed in my webserver) can read their INBOX at /var/spool/mail directory but when trying to delete a message they receive the following error
2015 Apr 19
1
[bug?] idmap.ldb xidNumber attributes overlap with existing users'/groups' uidNumber/gidNumber
Greetings, All! I've discovered a nasty mismatch in my recently upgraded domain. It seems that a number of builtin groups have mappings in idmap.ldb that overlap with posixAccount mappings in the sam.ldb. Namely, # file: var/lib/samba/sysvol/ads.example.com/scripts/ # owner: root # group: 544 user::rwx user:root:rwx group::rwx group:544:rwx group:30000:r-x group:30001:rwx
2019 Dec 06
2
Problem with sievefilter forwarding
Hello! dovecot --version 2.2.36 (1f10bfa63) I defined a sievefilter require ["copy"]; # rule:[weiterleitung] if header :contains "to" "user at bitclusive.de" { redirect :copy "otheruser at gmail.com"; stop; } It doesn't work and I don't know why. I can define a vacationfilter that works fine. Can I debug this somehow and can somebody here
2020 Apr 02
4
Sieve with links?
On 02 Apr 2020, at 03:48, Aki Tuomi <aki.tuomi at open-xchange.com> wrote: > On 2.4.2020 11.07, @lbutlr wrote: >> Is there any reason that a .active_sieve file would not load because it is a symbolic link? The target of the link is readable by the mail user, but instead of getting the trace for the .active_sieve file, I only get the trace for the default sieve file. > > Does
2008 Sep 26
2
Few questions on configuring Samba as a PDC
Please don't flame me. I did attempt to search before posting this question (through Gmail), if there's a better way, please let me know! I followed this article for implementing a Samba PDC: http://www.howtoforge.com/samba_setup_ubuntu_5.10_p4 Question 1) The only accout that appears to be able to add an account onto the domain is the root account. There must be a way to change that
2005 Oct 13
4
"Wbinfo -u" get user account sucessfully but "getent passwd" fails
Hi everybody, I got a problem here with my Samba ADS member server. It functions as a file server and works for a long time. A few weeks ago our Active Directory domain controller failed due to power outage. We fixed it and now an employee reports that he could not use the samba file server any more. I restarted samba service and did the following testing: 1) getent passwd <thisUser>
2015 May 19
0
Controlling shared folder rename?
Eventually I figured out a solution that looks like it should work; postlogin scripting described here http://wiki2.dovecot.org/PostLoginScripting .? Specifically, the sample at the bottom that adds a shared folder, obviously will need some work to make it work the way I want, but it should work. May 19 2015 3:18 PM, andy at thecsillags.com (mailto:andy at thecsillags.com) wrote: Dovecot
2019 Oct 31
0
Samba DC to Samba NT4 Domain Trust
On 31/10/2019 21:58, Vex Mage wrote: > > > > Have you tried 'net rpc trust create'? ? > > See 'net help rpc trust create' for the syntax. > > > When I attempt this I get the following error message > > SAMBAPDC ~# net rpc trust create > otherserver=sambaad.engineering.college.edu > <http://sambaad.engineering.college.edu>
2005 Sep 16
0
Two strange behaviours with dovecot+postfix+squirrelmail
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi all, About a week ago I was forced to migrate my main (production) email server from RH9 to Centos4.1. The installation has dovecot-0.99.11 + postfix-2.1.5 and >600 mbox accessed email accounts. Number 1. Some users accessing thru squirremail (installed in my webserver) can read their INBOX at /var/spool/mail directory but when trying to
2004 Sep 21
0
Question/Future Request for Call Queues
I have some quetions/ideas for the Asterisk Call Queues system. System information: - Fedora Core 1 - Kernel 2.4.22-1.2115.nptl - Asterisk CVS-HEAD-09/08/04-17:43:15 1.> I sould like it that if a user is in the que and the expected wait time is longer then xxx seconds or there are more then xxx callers. That there is played a sound from directory xxx with some product information
2012 Aug 30
0
Running VirtualBox headless
Hello everyone, I'm trying to run a VirtualBox-based VM in headless mode, but apparently running out of luck. So far: - Fedora 14 host - libvirt 0.9.8 manually built from libvirt-0.9.8-1.fc14.src.rpm (later tested with 0.10.0 built from libvirt-0.10.0-1.fc17.src.rpm to the same effect) - I have a VBox 4.1.20 installed with extension pack - a virtual Windows XP guest - can start this machine
2010 Jul 16
5
2.6.0rc3 ssh_authorized_users/parsed.rb
Hi all, Full path: /usr/lib/ruby/site_ruby/1.8/puppet/provider/ssh_authorized_key/parsed.rb Two problems: 1) Even if filebucketing is disabled, this (still) tries to backup authorized_keys to /var/lib/puppet/clientbucket/[...]; no other modules are doing filebucketing when it''s disabled but they (correctly) do when it is enabled. 2) The filebucketing is (still) being done with euid set
2006 Mar 06
0
Misc. hints from setting up CentOS 4.2
I suppose this could be considered off-topic, but having finally finished setting up my new workstation I thought I'd brain-dump some things that I had to work out how to do. I had a devil of a time googling for some of this stuff, and found lots of forum threads etc. where some of the same questions I had went essentially un-answered, so I wanted to put these tidbits out in a place where