Displaying 20 results from an estimated 46 matches for "_root".
Did you mean:
root
2006 Jun 20
1
Group-based filesystem quota
Hello. After using Dovecot for over a year, I have just started
experimenting with the filesystem quotas, and I have a suggestion for
improvement. On my mail server, I use group-based quotas, and would
like to have Dovecot be able to report these quotas.
It should be simple to implement, requiring only changes to the
quota-fs.c file of the quota plugin. Simply changing USRQUOTA to
2013 Apr 16
1
Running LMTP as a user other than the root user
Hello,
With this one in Postfix' main.cf:
virtual_transport = lmtp:unix:/_ROOT/var/run/dovecot/lmtp
and Dovecot settings reproduced at the end of this message, there is no problem for having mail delivered into a user's INBOX.
But as soon as I try the security improvement suggested in the docs:
service lmtp {
user = dovemailer
}
this is what I get in the logs:...
2013 Jul 16
1
2.2.4 - Some questions about and needing help with quota-status
...d for testings:
$ sudo doveadm quota get -u john.doe
Quota name Type Value Limit %
Quota utilisateur STORAGE 20 5 400
Quota utilisateur MESSAGE 14 - 0
and is clearly recognized as being over-quota by lmtp:
$ telnet /_ROOT/var/run/dovecot/lmtp
Trying /_ROOT/var/run/dovecot/lmtp...
Connected to (null).
Escape character is '^]'.
220 almba.local Dovecot ready.
mail from:<mary.jane at example.com>
250 2.1.0 OK
rcpt to:<john.doe at example.com>
250 2.1.5 OK
data
354 OK
Subject: test
.
55...
2007 Jun 10
1
variable scope
...]start. If it was the case then set variable in
cx->global (which i suspected global scope), not
cx->frame->var_object. It worked. So I think
swfdec_as_context_eval_set_property needs to be rechecked.
blocky.swf is flash 6, according to swfmill.
button 155 {
on (press) {
if (_root.playgame) {
borderXstart = Math.floor((_xmouse - 13) / CellSize) * CellSize + 13;
borderYstart = Math.floor((_ymouse - 13) / CellSize) * CellSize + 13;
switch (random(3)) {
case 0:
klik.start(0, 1);
break;
case 1:
klik1...
2006 Aug 21
2
Filesystem Quota Enhancement Patch
...lete. So, after a little bit of testing, it would be nice to have
this merged with the main distribution.
Scott Alter
-------------- next part --------------
--- quota-fs.c.orig 2006-08-10 18:01:42.000000000 -0400
+++ quota-fs.c 2006-08-21 19:33:38.000000000 -0400
@@ -53,6 +53,7 @@
struct quota_root root;
uid_t uid;
+ gid_t gid;
struct fs_quota_mountpoint *mount;
};
@@ -73,6 +74,7 @@
root->root.name = i_strdup(name);
root->root.v = quota_backend_fs.v;
root->uid = geteuid();
+ root->gid = getegid();
return &root->root;
}
@@ -177,7 +179,16 @@
static const...
2007 Nov 28
0
7 commits - configure.ac libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_sprite_movie.c test/trace
...ce/remove-with-onUnload.as
new file mode 100644
index 0000000..e91b606
--- /dev/null
+++ b/test/trace/remove-with-onUnload.as
@@ -0,0 +1,26 @@
+// makeswf -v 7 -s 200x150 -r 1 -o remove-with-onUnload.swf remove-with-onUnload.as
+
+function foo () {
+ trace (">> " + this);
+ trace (_root.a + ": " + _root.a.getDepth ());
+ trace (_root.a.a + ": " + _root.a.a.getDepth ());
+ trace (_root.a.b + ": " + _root.a.b.getDepth ());
+ trace (_root.a.c + ": " + _root.a.c.getDepth ());
+ trace (_root.a.d + ": " + _root.a.d.getDepth ());
+};...
2013 Jul 14
2
2.2.4 - quota-status changing the user it is running as
...tly rejected by lmtp:
dovecot[4989]: lmtp(5069, john.doe at example.com): QWSWLgrP4lF7FAAA5Q0ykw: msgid=<20130714161643.9085DF176F2 at ALMba.local>: save failed to INBOX: Quota exceeded (mailbox for user is full)
Let's now simulate a connection from Postfix:
$ sudo -u postfix telnet /_ROOT/var/spool/postfix/private/quota-policyd
Trying /_ROOT/var/spool/postfix/private/quota-policyd...
Connected to (null).
Escape character is '^]'.
A look at the output of top (excerpt) confirms that quota-status is running as root:
PID COMMAND UID
5100 quota-status 0
Going on with our...
2007 Jun 03
1
some patches for swfdec
...mptyMovieClip? I have no idea how to
create an SwfdecMovie properly. I also need to add the following. If
you have any idea, please tell me.
gotoAndPlay
_level0 global variable
swapDepths method
lineTo, lineStyle, moveTo
ahh.. those movies created by duplicateClip do not get added as
properties to _root. I saw blocky.swf trying to access movies via
_root.
some less important ones:
System global variable
Sound object
--
Duy
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-Wrong-comparison.patch
Type: text/x-patch
Size: 953 bytes
Desc: not available
Url : h...
2006 Feb 03
0
rquotad (NFS) quota plugin
...ount.h>
+ #include <rpc/rpc.h>
+ #include <rpc/pmap_prot.h>
+ #include <rpcsvc/rquota.h>
+ #include <netdb.h>
+ #include <stdio.h>
+
+ struct rquotad_quota {
+ struct quota quota;
+
+ pool_t pool;
+ const char *error;
+
+ size_t nroots;
+ struct rquotad_quota_root *roots;
+
+ };
+
+ enum rquotad_states { RQUOTAD_UNKNOWN, RQUOTAD_ERR, RQUOTAD_OFF, RQUOTAD_ON };
+
+ struct rquotad_quota_root {
+ struct quota_root root;
+
+ pool_t pool;
+ const char *name;
+ enum rquotad_states state;
+ const char **resources;
+ uint64_t kbyte_usage;
+ uint64_t inode...
2007 Oct 25
0
6 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_movie.c test/trace
...*real_name;
+
+ movie = newSWFMovieWithVersion (version);
+ movie = newSWFMovie();
+ SWFMovie_setRate (movie, 1);
+ SWFMovie_setDimension (movie, 200, 150);
+
+ clip = newSWFMovieClip ();
+ item = SWFMovie_add (movie, (SWFBlock) clip);
+ SWFMovieClip_addInitAction (clip, newSWFAction ("_root.x = 42;"));
+ SWFDisplayItem_addAction (item, newSWFAction ("trace (_root.x);"), SWFACTION_INIT);
+ SWFDisplayItem_addAction (item, newSWFAction ("trace (_root.x);"), SWFACTION_CONSTRUCT);
+ SWFDisplayItem_flush (item);
+ SWFMovie_nextFrame (movie);
+
+ SWFMovie_add...
2007 Feb 13
5
Fatigued R
Hi R,
Please solve my problem...........
I am extracting Bloomberg data from R, in a loop. R is getting fatigued
by doing this process and gives some errors. I introduced sleep
function. Doing this sometimes I get the results and sometimes not. I
even noticed that if I give complete rest for R (don't open R window)
for 1 day and then run my code with the sleep function, then the
2007 Nov 12
0
3 commits - libswfdec/swfdec_player.c test/trace
...= EU,SE
+id = 22
+initView = EU,SE
+lang = SV
+skin = Default
+>>> linkUrl=http://www.smhi.se/cmp/jsp/polopoly.jsp?d=5236&l=sv&linkTarget=_top
+decode =
+l = sv
+linkTarget = _top
+linkUrl = http://www.smhi.se/cmp/jsp/polopoly.jsp?d=5236
+>>> txt=<a href=%22asfunction:_root.launchURL,0%22>ADOBE FLASH CS3 PROFESSIONAL</a>&textcolor=#ffffff&hovercolor=#c00c00&linkcolor=#ffffff&w=640&h=28&sifr_url_0=/products/flash/
+decode =
+h = 28
+hovercolor = #c00c00
+linkcolor = #ffffff
+sifr_url_0 = /products/flash/
+textcolor = #ffffff
+txt = <...
2007 Jun 17
2
Branch 'as' - test/trace
test/trace/Makefile.am | 1
test/trace/values.as | 63 +++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 64 insertions(+)
New commits:
diff-tree aaca94203d8a0ccb8feb32c0d57df3401fca0350 (from 987074e275ac77f8799e5fdf41890e8ef126b291)
Author: Benjamin Otte <otte at gnome.org>
Date: Sun Jun 17 12:56:42 2007 +0200
add values.as which provides some default values
2013 Oct 01
2
Bug#603391: Bug#603391: Workaround PyGrub issue
...nf.py", line 110, in reset
self._parse(lines)
File "GrubConf.py", line 105, in _parse
map(self.set_from_line, lines)
File "GrubConf.py", line 335, in set_from_line
setattr(self, self.commands[com], arg.strip())
File "GrubConf.py", line 113, in set_root
self._root = GrubDiskPart(val)
File "GrubConf.py", line 55, in __init__
(self.disk, self.part) = str.split(",", 2)
File "GrubConf.py", line 73, in set_disk
self.disk = ord(disk)-ord('a')
File "GrubConf.py", line 69, in set_disk
v...
2009 Oct 06
4
how to "hide" mailbox from the IMAP clients
Hello, everyone!
Is it possible to "hide" mailbox from the IMAP clients, so as to prevent
any user from subscribing to the some folders?
My storages are "mbox maildir".
For example, to hide the directory where the personal Sieve scripts are
stored or etc.
=kostik
2007 Jun 27
0
Branch 'as' - 4 commits - test/trace
...v 7 -s 200x150 -r 1 -o setvariable-function-target.swf setvariable-function-target.as
+
+trace ("Check SetVariable inside functions sets variables on the target");
+
+createEmptyMovieClip ("movie", 0);
+
+function foo () {
+ setTarget ("movie");
+ bla = 42;
+ trace (_root.bla);
+ trace (_root.movie.bla);
+};
+foo ();
+trace (bla);
+trace (movie.bla);
+
+loadMovie ("FSCommand:quit", "");
diff-tree 437432dcaa6868f9d963c265e72ce94a33d90689 (from 6926ffebd79fd8fb3ab853c39f071925fc8066bd)
Author: Benjamin Otte <otte at gnome.org>
Date: Wed Ju...
2014 May 07
0
Urgent Problem with failed new User Login to computers on Samba AD Domain
...lting /etc/samba/smb.conf when the
samba config file is in /usr/local/samba/etc/smb.conf?
I have attached the output with -d5, when I attempt either of the two
commands above, I hope this is OK?
Please help!
-------------- next part --------------
Script started on Wed 07 May 2014 01:14:04 PM WAT
_root at dc:~\[root at dc ~]# exitsmbclient //files/cosmos.egere -Ucosmo.egere%12345678 -d5
INFO: Current debug levels:
all: True/5
tdb: False/0
printdrivers: False/0
lanman: False/0
smb: False/0
rpc_parse: False/0
rpc_srv: False/0
rpc_cli: False/0
passdb: False/0
sam: False/0
auth:...
2005 Feb 15
0
[LLVMdev] Removing $(LLVM_SRC_ROOT)/autoconf dependensies in Stacker, llvm-java [PATCH]
...cases these are just historical artifacts that have been with the
> > projects since long before the new Makefile.rules of last fall.
>
> I agree.
Okay, I'll make that happen :)
> >> llvm/Makefile.config.in have lines:
> >>
> >> INSTALL_SH := $(LLVM_SRC_ROOT)/autoconf/install-sh
> >> MKDIR := $(LLVM_SRC_ROOT)/autoconf/mkinstalldirs
> >>
> >> But all this projects (LLVM, Stacker, sample, llvm-java) have
> >> autoconf/install-sh and autoconf/mkinstalldirs in own sources.
> >
> > Which they probably sho...
2007 Dec 23
0
6 commits - libswfdec/Makefile.am libswfdec/swfdec_character.c libswfdec/swfdec_external_interface.c libswfdec/swfdec.h libswfdec/swfdec_movie_as_drawing.c libswfdec/swfdec_player.c libswfdec/swfdec_player.h libswfdec/swfdec_player_internal.h
...t;> 304:
+undefined
+undefined
+undefined
+undefined
+>>> 305: &
+undefined
+undefined
+undefined
+undefined
+>>> 306: &hi;
+undefined
+undefined
+undefined
+undefined
+>>> 307: &
+undefined
+undefined
+undefined
+undefined
+>>> 308: _root
+undefined
+undefined
+undefined
+undefined
+>>> 309: _level0
+undefined
+undefined
+undefined
+undefined
+>>> no args
+undefined
+undefined
+undefined
diff --git a/test/trace/externalinterface-escape-6.swf b/test/trace/externalinterface-escape-6.swf
new file mode 100644
index 000...
2013 Oct 01
0
Bug#603391: Bug#603391: Workaround PyGrub issue
...line 100, in _parse
> map(self.set_from_line, lines)
> File "/usr/lib/xen-4.1/lib/python/grub/GrubConf.py", line 330, in set_from_line
> setattr(self, self.commands[com], arg.strip())
> File "/usr/lib/xen-4.1/lib/python/grub/GrubConf.py", line 108, in set_root
> self._root = GrubDiskPart(val)
> File "/usr/lib/xen-4.1/lib/python/grub/GrubConf.py", line 55, in __init__
> (self.disk, self.part) = str.split(",", 2)
> File "/usr/lib/xen-4.1/lib/python/grub/GrubConf.py", line 70, in set_disk
> self._...