search for: jp

Displaying 20 results from an estimated 3119 matches for "jp".

Did you mean: jmp
2016 Jan 30
2
fts_autoindex - index-worker problem
...ex - index-worker problem Hello List, I installed dovecot-2.2.21 on CentOS 6.7. I use ldap for userdb to separate an e-mail address and the user. Index to apache solr failed in fts_authindex when I received an email after setting. The error message is "indexer-worker: Error: User 0029 at 09.jp lookup failed: Unknown user" Is there any solution? This is current conf -------------------------------------------- # cat /etc/dovecot/conf.d/auth-ldap.conf.ext userdb { driver = ldap default_fields = uid=dovecot gid=dovecot home=/var/dovecot/%Ld/%Ln args = /etc/dovecot/dovecot-ldap....
2020 Mar 28
0
[klibc:update-dash] dash: jobs: Only clear gotsigchld when waiting for everything
...CommitDate: Sat, 28 Mar 2020 21:42:55 +0000 [klibc] dash: jobs: Only clear gotsigchld when waiting for everything [ dash commit 6c691b3e5099de380a9d2f97d5c72f4a978bb794 ] The gotsigchld flag is always cleared in dowait but not all callers of dowait will wait for everything. In particular, when jp is set we only wait until the set job isn't running anymore. This patch fixes this by only clearing gotsigchld if jp is unset. It also changes the waitcmd to actually set jp which corresponds to the behaviour of bash/ksh93/mksh. The only other caller of dowait that doesn't wait for everyt...
2006 Mar 08
2
REGISTER headers changed
...est version. I am using the same sip.conf file, but the headers have changed and registration fails. Has something change in the conf file that would cause this? Notice 1.2.5 has no Authoization at all... Regards, Jason Version 1.0.9 --------------------------- REGISTER sip:voip-ca35323.ocn.ne.jp SIP/2.0 Via: SIP/2.0/UDP xxxx:5060;branch=z9hG4bK035070d8 From: <sip:xxxx@ocn.ne.jp>;tag=as1cdfeadf To: <sip:xxxx@ocn.ne.jp> Call-ID: 509854610f13c5186000ed10283e8925@127.0.0.1 CSeq: 103 REGISTER User-Agent: Asterisk PBX Authorization: Digest username="someusername", realm=&qu...
2014 Jul 14
2
doveadm-server does NOT know fts commands
Hi, I'm using Dovecot 2.2.13 with Dovecot Director, Doveadm server and FTS. I want to run doveadm on Director hosts, but Dovecot server on backend hosts reject "fts *" commands. On Dovecot Director hosts: # doveadm fts optimize -u u0001 at example.jp # echo $? 75 # doveadm fts rescan -u u0001 at example.jp # echo $? 75 doveadm index -u u0001 at example.jp INBOX # echo $? 0 On Dovecot backend hosts: # grep doveadm /var/log/maillog Jul 14 10:25:40 backend dovecot: doveadm: Error: doveadm: Client sent unknown command: fts opt...
2009 May 12
5
TYPO: The Official Samba 3.2.x HOWTO and Reference Guide
...progress may be better recogized as the chilly winds of the night. --------- recognized ---------------------------------------------------------------------------------------- By the way, is TOSHARG GPL? -- --- Oota Toshiya --- oota at mail.linux.bs1.fc.nec.co.jp NEC Computers Software Operations Unit Shiba,Minato,Tokyo Open Source Software Platform Development Division Japan,Earth,Solar system (samba-jp/ldap-jp Staff,mutt-j admin,analog-jp/samba-jp postmaster)
2005 Nov 24
1
New Xenoppix with Install2win and PXE-terminal-server
Dear, New Xenoppix is released. http://unit.aist.go.jp/itri/knoppix/xen/index-en.html It has new fueature (Xenoppix-terminal-server and install2win). It bases on KNOPPIX 4.0.2 DVD or CD. (The size of Xenoppix is sitll over 700MB, please burn a DVD-ROM.) New feature (Experimental) *Act as a terminal server. Xenoppix can be a Terminal Serv...
2020 Mar 28
0
[klibc:update-dash] dash: eval: Add vfork support
...tus); + INTOFF; exception = e; diff --git a/usr/dash/eval.c b/usr/dash/eval.c index 77a8bded..7bb636e1 100644 --- a/usr/dash/eval.c +++ b/usr/dash/eval.c @@ -892,10 +892,8 @@ bail: /* Fork off a child process if necessary. */ if (!(flags & EV_EXIT) || have_traps()) { INTOFF; - jp = makejob(cmd, 1); - if (forkshell(jp, cmd, FORK_FG) != 0) - break; - FORCEINTON; + jp = vforkexec(cmd, argv, path, cmdentry.u.index); + break; } shellexec(argv, path, cmdentry.u.index); /* NOTREACHED */ diff --git a/usr/dash/exec.h b/usr/dash/exec.h index 2b318257..423b07e6 100...
2005 Sep 26
1
VOIP in Japan using Freebit
...der in Japan? No matter what I try, my REGISTER string kicks back one of 2 errors: Got SIP response 481 "Call/Transaction Does Not Exist" back from x.x.x.x or Got SIP response 400 "Bad Request" back from x.x.x.x My register string is as follows: 05075034132@ipphone2.freebit.ne.jp I have tried the following also: 05075034132:mypass@ipphone2.freebit.ne.jp 05075034132@ipphone2.freebit.ne.jp/05075034132 05075034132:mypass@ipphone2.freebit.ne.jp/05075034132 myuserid:mypass@ipphone2.freebit.ne.jp and variations of the above. Is there any other information I could provide in or...
2019 Jan 25
0
[klibc:update-dash] jobs - Do not block when waiting on SIGCHLD
.../dash/jobs.c | 13 ++++++++++--- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/usr/dash/eval.c b/usr/dash/eval.c index 2f662e3e..56661880 100644 --- a/usr/dash/eval.c +++ b/usr/dash/eval.c @@ -859,10 +859,8 @@ bail: if (!(flags & EV_EXIT) || have_traps()) { INTOFF; jp = makejob(cmd, 1); - if (forkshell(jp, cmd, FORK_FG) != 0) { - INTON; + if (forkshell(jp, cmd, FORK_FG) != 0) break; - } FORCEINTON; } listsetvar(varlist.list, VEXPORT|VSTACK); @@ -875,11 +873,8 @@ bail: if (execcmd && argc > 1) listsetvar(varlist.list, V...
2020 Mar 28
0
[klibc:update-dash] dash: jobs - Do not block when waiting on SIGCHLD
.../dash/jobs.c | 13 ++++++++++--- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/usr/dash/eval.c b/usr/dash/eval.c index 722066e5..13e690e7 100644 --- a/usr/dash/eval.c +++ b/usr/dash/eval.c @@ -859,10 +859,8 @@ bail: if (!(flags & EV_EXIT) || have_traps()) { INTOFF; jp = makejob(cmd, 1); - if (forkshell(jp, cmd, FORK_FG) != 0) { - INTON; + if (forkshell(jp, cmd, FORK_FG) != 0) break; - } FORCEINTON; } listsetvar(varlist.list, VEXPORT|VSTACK); @@ -875,11 +873,8 @@ bail: if (execcmd && argc > 1) listsetvar(varlist.list, V...
2019 Jan 25
0
[klibc:update-dash] eval: Reap zombies after built-in commands and functions
....uk> --- usr/dash/eval.c | 11 ++++++----- usr/dash/jobs.c | 8 +++++--- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/usr/dash/eval.c b/usr/dash/eval.c index 6ba64b12..811c28a4 100644 --- a/usr/dash/eval.c +++ b/usr/dash/eval.c @@ -848,6 +848,8 @@ bail: goto out; } + jp = NULL; + /* Execute the command. */ switch (cmdentry.cmdtype) { default: @@ -856,7 +858,6 @@ bail: INTOFF; jp = makejob(cmd, 1); if (forkshell(jp, cmd, FORK_FG) != 0) { - status = waitforjob(jp); INTON; break; } @@ -875,22 +876,22 @@ bail: if (evalbltin(cmdent...
2020 Mar 28
0
[klibc:update-dash] dash: eval: Reap zombies after built-in commands and functions
....uk> --- usr/dash/eval.c | 11 ++++++----- usr/dash/jobs.c | 8 +++++--- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/usr/dash/eval.c b/usr/dash/eval.c index a679ba31..26055493 100644 --- a/usr/dash/eval.c +++ b/usr/dash/eval.c @@ -848,6 +848,8 @@ bail: goto out; } + jp = NULL; + /* Execute the command. */ switch (cmdentry.cmdtype) { default: @@ -856,7 +858,6 @@ bail: INTOFF; jp = makejob(cmd, 1); if (forkshell(jp, cmd, FORK_FG) != 0) { - status = waitforjob(jp); INTON; break; } @@ -875,22 +876,22 @@ bail: if (evalbltin(cmdent...
2007 Nov 13
1
Release: VMKNOPPIX for X86/X86_64 with Xen3.1.1, KVM48, UML, QEMU, VirtualBox
Dear, We released new VMKNOPPIX for x86/x86_64. http://unit.aist.go.jp/itri/knoppix/vmknoppix/index-en.html VMKNOPPIX-CD for x86 (20071101) VMKNOPPIX-CD for x86_64 (20071107) This version includes Xen3.1.1, KVM48, x86_64 kernel with IA32 emulator, etc. The included software is as follows. KNOPPIX 5.1.1 (kernel 2.6.19) with Xen3.1.1 (DomU&HVM)...
2014 Aug 02
2
CentOS 7 missing package kio_mtp - required for digikam
...gikam-4.0 with yum on CentOS 7? On my CentOS 7 machine "yum install digikam" fails. Apparently "kio_mtp" is not available: greg at tss20:~$ sudo yum install digikam Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile * base: ftp.iij.ad.jp * epel: ftp.iij.ad.jp * extras: ftp.iij.ad.jp * updates: ftp.iij.ad.jp Resolving Dependencies --> Running transaction check ---> Package digikam.x86_64 0:4.0.0-3.el7 will be installed --> Processing Dependency: digikam-libs(x86-64) = 4.0.0-3.el7 for package: digikam-4.0.0...
2003 Jul 03
1
ipv6 dialup: "nd6_lookup: failed to lookup" problem (4.8-REL)
...0 1500 0 axxem.hide:~# ping6 fe80:0006::02d0:baff:fef4:0e80 PING6(56=40+8+8 bytes) fe80::290:27ff:fe78:9275%tun0 --> fe80:6::2d0:baff:fef4:e80 16 bytes from fe80::2d0:baff:fef4:e80%tun0, icmp_seq=0 hlim=64 time=49.115 ms ^C any help? Thanks in advance, Jan. -- Jan Pechanec <jp_at_devnull_cz>
2011 Mar 04
4
How two compare two matrixes
Dear all I have two 10*10 matrixes and I would like to compare theirs contents. By the word content I mean to check visually (not with any mathematical formulation) how similar are the contents. I also know edit that prints my matrix in the scree but still one edit blocks the prompt to launch a second edit() screen. What is the best way to compare these two matrices? I would like to thank you
2008 Dec 01
6
Request of the application that can runs it
...My handle is Arus. The application that does not runs in Wine and CrossOver called A, and is not there the place that can give "Please be can runs A in Wine or CrossOver" request? -- -------------------------------------------------------------------- Arus dreamrail_arus at yahoo.co.jp -------------------------------------------------------------------- -------------------------------------- Power up the Internet with Yahoo! Toolbar. http://pr.mail.yahoo.co.jp/toolbar/
1995 May 30
1
Announcing FreeBSD 2.0.5 ALPHA!
....neosoft.com/systems/FreeBSD <smace@NeoSoft.COM> USA ftp://kryten.atinc.com/pub/FreeBSD <jmb@kryten.atinc.com> USA ftp://ftp.dataplex.net/pub/FreeBSD <rkw@dataplex.net> Japan ftp://ftp.tokyonet.ad.jp/pub/FreeBSD <ftpadmin@TokyoNet.AD.JP> Japan ftp://ftp.tut.ac.jp/FreeBSD Ashida Hiroyuki <ashida@ftp.tut.ac.jp> Japan ftp://ftp.sra.co.jp/pub/os/FreeBSD <ftp-admin@sra.co.jp> Japan ftp://ftp.ee.uec.ac....
2013 Mar 21
0
Problems parsing page encoded in Shift-JIS
...3 > abc > def > ghi123 > abc > def > ghi123"]. However, if I save the page.body and then do page = Nokogiri::parse(saved_body) and repeat the code, then it behaves as expected. This is a simplified example. The actual HTML is (you can get this at "http://www.amazon.co.jp/dp/B006QP63LI"): <ul class="zg_hrsr"> <li class="zg_hrsr_item"> <span class="zg_hrsr_rank">487?</span> <span class="zg_hrsr_ladder">?&nbsp;<a href="http://www.amazon.co.jp/gp/bestsellers/digital-tex...
2012 Jul 02
0
[klibc:master] [EVAL] Remove unused EV_BACKCMD flag
.../* command executing within back quotes */ int evalskip; /* set if we are skipping commands */ STATIC int skipcount; /* number of levels to skip */ @@ -594,6 +593,9 @@ evalpipe(union node *n, int flags) void evalbackcmd(union node *n, struct backcmd *result) { + int pip[2]; + struct job *jp; + result->fd = -1; result->buf = NULL; result->nleft = 0; @@ -602,52 +604,24 @@ evalbackcmd(union node *n, struct backcmd *result) goto out; } -#ifdef notyet - /* - * For now we disable executing builtins in the same - * context as the shell, because we are not keeping - *...