search for: msgs

Displaying 20 results from an estimated 597 matches for "msgs".

Did you mean: msg
2009 Mar 30
2
dbox benchmarks
http://hg.dovecot.org/dovecot-dbox-redesign/ Looks like multi-dbox scales pretty nicely. Even after 100k messages the peak saved msgs/sec is the same as the initial saved msgs/sec, even if the average slows down somewhat. I tested this by first deleting mailbox, then running "imaptest" for a second to get saving to start writing several fields to dovecot.index.cache file. Then ran imaptest for 60 seconds that did nothi...
2007 May 12
3
dbmail benchmarking
...r a SQL backend could actually be. Skip to bottom for the conclusions. Originally I ran the tests with the databases being in XFS filesystem. MySQL's performance was horrible. It went 3-7x faster with ext3. MySQL 5.0.30 backend (innodb): ./imaptest clients=1 - append=100 seed=1 secs=30 msgs=1000000 logout=0 Logi Sele Appe 100% 100% 100% 5% 1 291 303 So that's 10 messages/sec saved. Now how about with 5 concurrent clients? Logi Sele Appe 100% 100% 100% 5% 5 1259 1332 Pretty well. Then something more generic: ./imaptest clients=1 seed=1 secs...
2007 May 14
3
pxe password protect option
Hi, I have tried several different line options, but I cannot seem to get the pxe master password option to work? I have basically tried all combinations of: DEFAULT local PROMPT 0 ALLOWOPTIONS 1 TIMEOUT 500 MENU TITLE sometitle MENU MASTER PASSWD somepassword But just can't seem to get the menu to prompt for a password. version I have is pxe 3.31 Thanks for any help
2011 Aug 14
4
Kickstart installation error
Hi, I?m trying kickstart on CentOS Below is my ks.cfg *[root at localhost ~]# cat /root/ks.cfg* * * #Generated by Kickstart Configurator #platform=x86, AMD64, or Intel EM64T #System language lang en_US #Language modules to install langsupport en_US #System keyboard keyboard us #System mouse mouse #Sytem timezone timezone Asia/Dili #Root password rootpw --iscrypted
2007 Oct 09
1
SpamAssassin and Public Namespace
...#39;Filter/Spam');* print $spamcount, " Spam to process\n"; * my $nonspamcount = $imap->message_count('Filter/Non-Spam');* print $nonspamcount, " Notspam to process\n" if $debug; } # Process the spam mailbox *$imap->select('Filter/Spam');* my @msgs = $imap->search("ALL"); for (my $i=0;$i <= $#msgs; $i++) { # I put it into a file for processing, doing it into a perl var & piping through sa-learn just didn't seem to work $imap->message_to_file("/tmp/salearn",$msgs[$i]); # execute sa-learn w/data # i...
2017 Aug 22
0
Disconnected in APPEND depends on service_count?
...6. For explanation: We use some own patches for dovecot and insert some functions in deb packages, so we want to reuse our code to minimize effort. Under ubuntu16 we see a lot of messages like this on high load servers: Aug 22 08:28:15 hostname dovecot: imap(username): Disconnected in APPEND (1 msgs, 0 secs, 8192/136342 bytes) in=8379 out=830 Aug 22 08:28:16 hostname dovecot: imap(username): Disconnected in APPEND (1 msgs, 0 secs, 8192/136342 bytes) in=8985 out=2931 Aug 22 08:42:58 hostname dovecot: imap(username): Disconnected in APPEND (1 msgs, 29 secs, 13139969/42801634 bytes) in=13140054...
2020 Sep 14
2
[PATCH v2] i2c: virtio: add a virtio i2c frontend driver
...e-Deng/i2c-virtio-add-a-virtio-i2c-frontend-driver/20200911-115013 > git checkout 0a54ec771966748fcbc86256b830b5f786168b7d > vim +/vmsg +160 drivers/i2c/busses/i2c-virtio.c > > 0a54ec77196674 Jie Deng 2020-09-11 109 static int virtio_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num) > 0a54ec77196674 Jie Deng 2020-09-11 110 { > 0a54ec77196674 Jie Deng 2020-09-11 111 struct virtio_i2c *vi = i2c_get_adapdata(adap); > 0a54ec77196674 Jie Deng 2020-09-11 112 struct virtqueue *vq = vi->vq; > 0a54ec77196674 Jie Deng 2020-09-11 113 struct virtio_i2c_...
2020 Sep 14
2
[PATCH v2] i2c: virtio: add a virtio i2c frontend driver
...e-Deng/i2c-virtio-add-a-virtio-i2c-frontend-driver/20200911-115013 > git checkout 0a54ec771966748fcbc86256b830b5f786168b7d > vim +/vmsg +160 drivers/i2c/busses/i2c-virtio.c > > 0a54ec77196674 Jie Deng 2020-09-11 109 static int virtio_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num) > 0a54ec77196674 Jie Deng 2020-09-11 110 { > 0a54ec77196674 Jie Deng 2020-09-11 111 struct virtio_i2c *vi = i2c_get_adapdata(adap); > 0a54ec77196674 Jie Deng 2020-09-11 112 struct virtqueue *vq = vi->vq; > 0a54ec77196674 Jie Deng 2020-09-11 113 struct virtio_i2c_...
2012 Feb 14
1
[PATCH 2/7] drm/nouveau: do a better job at hiding the NIH i2c bit-banging algo
...u/drm/nouveau/nouveau_i2c.c index 820ae7f..7a7e751 100644 --- a/drivers/gpu/drm/nouveau/nouveau_i2c.c +++ b/drivers/gpu/drm/nouveau/nouveau_i2c.c @@ -242,7 +242,7 @@ i2c_addr(struct nouveau_i2c_chan *port, struct i2c_msg *msg) } static int -i2c_bit_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num) +nouveau_i2c_bit_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num) { struct nouveau_i2c_chan *port = (struct nouveau_i2c_chan *)adap; struct i2c_msg *msg = msgs; @@ -272,14 +272,14 @@ i2c_bit_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num) } static u32 -...
2020 Aug 30
0
Imaptest stalls when removing msgs argument
I have had this imaptest[1] stall. I compared this command with what you have on the website and I was a bit surprised that what is on the website is working. What I have noticed is that if you remove this msgs argument, the imaptest stalls. I am not sure if this is according to design, but one might expect that specifying a secs, makes specifying msgs redundant? [1] imaptest - append=100,0 logout=0 host=xx.local port=143 user=xxx pass=xxx seed=100 secs=240 clients=1 mbox=64kb.mbox box=inbox/test....
2003 Dec 20
3
iconnect 480 unavailable msgs
...h xp box and asterisk box are on public ips. The problem is that when i ring anyone in the world it'll ring they'll pickup and i can hear them 100% perfectly/clearly.. but they cant hear me.. occasionaly they can hear something like a tiny bit of a word once in a while. im getting the error msgs back Got SIP response 480 "Temporarily not available" back from 213.137.73.176.. i had a look on google and aparantly if you change the codec it fixed it or something.. i tried all of them nothing seemed to work. heres a copy of my sip.conf [iconnect] type=friend username=xxxxxxxx sec...
2020 Sep 11
6
[PATCH v2] i2c: virtio: add a virtio i2c frontend driver
...en); + sgs[outcnt++] = &bout; + } + sg_init_one(&status, &vmsg->status, sizeof(vmsg->status)); + sgs[outcnt + incnt++] = &status; + + return virtqueue_add_sgs(vq, sgs, outcnt, incnt, vmsg, GFP_KERNEL); +} + +static int virtio_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num) +{ + struct virtio_i2c *vi = i2c_get_adapdata(adap); + struct virtqueue *vq = vi->vq; + struct virtio_i2c_msg *vmsg; + unsigned long time_left; + int len, i, ret = 0; + + mutex_lock(&vi->i2c_lock); + vmsg = &vi->vmsg; + vmsg->buf = NULL; + + for (i = 0; i < num; i++...
2020 Sep 11
6
[PATCH v2] i2c: virtio: add a virtio i2c frontend driver
...en); + sgs[outcnt++] = &bout; + } + sg_init_one(&status, &vmsg->status, sizeof(vmsg->status)); + sgs[outcnt + incnt++] = &status; + + return virtqueue_add_sgs(vq, sgs, outcnt, incnt, vmsg, GFP_KERNEL); +} + +static int virtio_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num) +{ + struct virtio_i2c *vi = i2c_get_adapdata(adap); + struct virtqueue *vq = vi->vq; + struct virtio_i2c_msg *vmsg; + unsigned long time_left; + int len, i, ret = 0; + + mutex_lock(&vi->i2c_lock); + vmsg = &vi->vmsg; + vmsg->buf = NULL; + + for (i = 0; i < num; i++...
2007 Mar 29
1
uiddir mailbox format with benchmarks
...Logi Stat Sele Fetc Fet2 Stor Dele Expu Appe Logo u: 23486 11822 23481 23476 33426 11659 8038 23472 11922 46952 m: 19367 9734 19367 19356 27453 9687 6287 19347 7983 38709 c: 5124 2553 5121 5105 7080 2559 1877 5104 3271 10228 ./imaptest list=0 dele=20 expu=20 seed=1 secs=60 msgs=10000 clients=10 Logi Stat Sele Fetc Fet2 Stor Dele Expu Appe Logo u: 5291 2704 5289 5278 7448 2706 1048 1061 5283 10563 m: 4162 2103 4162 4153 5977 2124 762 853 4153 8304 c: 4302 2157 4301 4289 6021 2072 806 879 4292 8584 ./imaptest list=0 dele=10 expu=10 seed=1 secs=60 msgs=100000 clien...
2003 Apr 03
1
RE: Asterisk-Users digest, Vol 1 #239 - 13 msgs
If anyone is interested in X100P Cards, I have quite a few brand new ones. Never been opened. $55.00 each, and I'll include ground shipping anywhere in the U.S. If you want one or more, email me off list at bbawkon@malibutech.com And since the discussion has been raging, if you are looking for support, you should buy a new one from Digium. These are sold as-is, (although I will guarantee
2002 Oct 03
1
Autoreply to samba digest, Vol 1 #1685 - 12 msgs
Vielen Dank für Ihre e-mail. Da ich vom 30.09.-06.10 in Urlaub bin, kann ich sie leider erst danach bearbeiten bzw. beantworten. In dringenden Fällen, können Sie sich gerne an meinen Kollegen Herrn Lamotte wenden. Er hat die email-Adresse hans.lamotte@umbreit-kg.de und ist telefonisch unter 07142/596-152 zu erreichen. Mit freundlichen Grüßen Michael Müller G. Umbreit GmbH & Co.KG
2003 Jan 22
0
RE: samba digest, Vol 1 #2098 - 22 msgs
.... Otherwise roll your own. Thanks, Mike -----Original Message----- From: CHENEY,JOHN (HP-Australia,ex3) [mailto:john.cheney@hp.com] Sent: Wednesday, January 22, 2003 2:44 PM To: 'twilson@stl-inc.com' Cc: 'samba@lists.samba.org' Subject: [Samba] RE: samba digest, Vol 1 #2098 - 22 msgs Tim Looks like you got a binary compiled for HP-UX 11.x, as that version of HP-UX introduced libc.2.
2004 Jan 27
2
RE: RE: LARTC digest, Vol 1 #1558 - 9 msgs
I agree, but this is still better than crashing the machine... Aron -----Original Message----- From: Michael Renzmann [mailto:mrenzmann@otaku42.de] Sent: Tuesday, January 27, 2004 1:33 PM To: Aron Brand Cc: lartc@mailman.ds9a.nl; roy@xxx.lt Subject: Re: [LARTC] RE: LARTC digest, Vol 1 #1558 - 9 msgs Hi. Aron Brand wrote: > does this. Another option would be to trick the kernel that the packet > has been transmitted, to prevent the immediate retries, while actually > vanishing the packet. I''m also no pro in this area, but I think this would be a bad idea. I guess this wou...
2006 Apr 26
0
Many msgs log.winbindd about "group xxxxx in domain yyyyy does not exist"
I am seeing many, many msgs in log.winbindd with the following text: [2006/04/14 08:54:29, 1] nsswitch/winbindd_group.c:winbindd_getgrnam(255) group system in domain AIXSAMBA does not exist Would anybody be able to point me in the right direction to determine what this is complaining about? One area I do not understand is...
2020 Sep 22
3
[PATCH v3] i2c: virtio: add a virtio i2c frontend driver
...en); + sgs[outcnt++] = &bout; + } + sg_init_one(&status, &vmsg->status, sizeof(vmsg->status)); + sgs[outcnt + incnt++] = &status; + + return virtqueue_add_sgs(vq, sgs, outcnt, incnt, vmsg, GFP_KERNEL); +} + +static int virtio_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num) +{ + struct virtio_i2c *vi = i2c_get_adapdata(adap); + struct virtqueue *vq = vi->vq; + struct virtio_i2c_msg *vmsg; + unsigned long time_left; + int len, i, ret = 0; + + mutex_lock(&vi->i2c_lock); + vmsg = &vi->vmsg; + vmsg->buf = NULL; + + for (i = 0; i < num; i++...