Displaying 20 results from an estimated 100 matches similar to: "ENVELOPE mishandling of Subject lines with quote(s)?"
2005 Apr 07
2
Domain Root Password
Think you should try this below
# smbpasswd -a root
-----Original Message-----
From: Gerald Cenir [mailto:gcenir@globalsources.com]
Sent: Thu 4/7/2005 2:12 PM
To: samba@lists.samba.org
Cc:
Subject: RE: [Samba] Domain Root Password
Thanks but when I executed the command
#smbpasswd root
It says that it failed to find entry for user root.
I checked my directory using slapcat
2004 Aug 18
1
Pingtel and some chinese company
1) Who bought Pingtel's phone line?
2) Anyone seen this chinese-made VoIP phone that supports 8 different
protocols?
http://www.telecom.globalsources.com/GeneralManager?language=en&design=c
lean&action=GetArticle&article_id=9000000055338&page=printarticle&printT
his=yes
Mike :)
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2003 Sep 03
1
Some notes on the FAQ
Hi. : )
I was updating my unofficial Korean Ogg Vorbis FAQ, when I noticed the following:
While #ext is no longer listed in the FAQ contents, http://www.vorbis.com/faq.psp#ext still exists.
IMHO http://www.vorbis.com/faq.psp#stream looks a little awkward. I suggest something like: Icecast streams Ogg vorbis to playsers like XMMS, Winamp 2, and foobar2000, which are all capable of...
2017 Feb 16
0
USB 2.0 device on a USB 3.0 plug
On 2/16/2017 1:12 PM, Gordon Messmer wrote:
> On 02/16/2017 12:28 PM, John R Pierce wrote:
>> USB 1 and 2 used 4 pins. USB 3 ports have an ADDITIONAL 5 pins,
>> the original 4 are used for USB 1/2 operation, the new 5 only for USB
>> 3 operation. they are effectively two completely independent
>> controllers.
>
>
> Do you mean USB type C? USB 3 is
2010 Dec 22
1
Oddness with SMB, PsExec, Win 7, etc...
Hi,
I've got a simple PHP script which is using psexec from sysinternals to
execute commands on a remote machine (which uses SMB under the hood). If I
run it from DOS it works fine. If I run the same script via apache it hangs.
Fired up Wireshark and had a look at what was going on. In the working
version the treeconnect calls go to the IPC$ and then the ADMIN$ accounts on
the remote machine.
2015 Oct 12
0
[PATCH 1/2] kvm/x86: Hyper-V synthetic interrupt controller
Am 09.10.2015 um 16:42 schrieb Paolo Bonzini:
> Christian, the question for you is towards the end...
[....]
>
>> --- a/virt/kvm/irqchip.c
>> +++ b/virt/kvm/irqchip.c
>> @@ -144,11 +144,13 @@ static int setup_routing_entry(struct kvm_irq_routing_table *rt,
>>
>> /*
>> * Do not allow GSI to be mapped to the same irqchip more than once.
>> -
2015 Oct 12
2
[PATCH 1/2] kvm/x86: Hyper-V synthetic interrupt controller
On Mon, 12 Oct 2015 09:54:41 +0200
Christian Borntraeger <borntraeger at de.ibm.com> wrote:
> Am 09.10.2015 um 16:42 schrieb Paolo Bonzini:
> > Christian, the question for you is towards the end...
>
>
>
> [....]
> >
> >> --- a/virt/kvm/irqchip.c
> >> +++ b/virt/kvm/irqchip.c
> >> @@ -144,11 +144,13 @@ static int
2015 Oct 12
2
[PATCH 1/2] kvm/x86: Hyper-V synthetic interrupt controller
On Mon, 12 Oct 2015 09:54:41 +0200
Christian Borntraeger <borntraeger at de.ibm.com> wrote:
> Am 09.10.2015 um 16:42 schrieb Paolo Bonzini:
> > Christian, the question for you is towards the end...
>
>
>
> [....]
> >
> >> --- a/virt/kvm/irqchip.c
> >> +++ b/virt/kvm/irqchip.c
> >> @@ -144,11 +144,13 @@ static int
2006 Mar 22
0
Mishandling read only files in 3.0.20b vs 3.0.21c
I noticed a few days ago running Samba 3.0.20b on Linux that if I had a
file called "myfile" that was owned by "userA:groupX", writable by
userA but read only for groupX
0744 userA:groupX myfile
and that file was in a directory "/directory2/myfile" which was writable
by the group "groupX"
0775 userA:groupX directory2
and directory2 was in
2002 Jan 07
1
Mishandling missing "..." (PR#1247)
R> myfun <- function(x, ...) {x[...] <- 0; x}
R> myfun(3)
Error in myfun(3) : SubAssignArgs: invalid number of arguments
It fails because no ... was passed. The workaround (and desired behavior) is:
R> myfun <- function(x, ...) {if (missing(...)) x[] <- 0 else x[...] <- 0; x}
R> myfun(3)
[1] 0
Deja vu? This is the one piece of my PR#1110 (Oct 3, 2001) that I
2012 Dec 14
1
BUG: mishandling of username if it's a keyword?
Dec 14 14:33:03 test2 dovecot: auth: Debug: auth client connected
(pid=24143)
Dec 14 14:33:14 test2 dovecot: auth: Debug: client in:
AUTH#0111#011PLAIN#011service=pop3#011secured#011session=D6dl6dDQdAAAAAAAAAAAAAAAAAAAAAAB#011lip=::1#011rip=::1#011lport=110#011rport=38004#011resp=<hidden>
Dec 14 14:33:14 test2 dovecot: auth: Debug:
2000 Oct 26
8
Vorbis licensing...
We spent a little time here taking a look at
the Vorbis licensing scheme and ran into some
possible issues. In particular, the Vorbis
FAQ page here says that the LGPL license applies
to Vorbis libraries and GPL applies to source
code (at least that's what I gather).
http://www.vorbis.com/faq.html#flic
http://www.fsf.org/copyleft/lesser.html
Reading the text of these Gnu
2020 Jan 07
2
Inline assembly in intel syntax mishandling i constraint
Hi all,
I'm getting rather odd behavior from a call asm inteldialect(). TL;DR is "mov reg, $0" with a "i" constraint on $0 is behaving identical to "mov reg, dword ptr [$0]" and differently from "movl $0, reg" in AT&T syntax.
I'm not sure how to get clang to emit an inteldialect, so for this example, I'm emitting llvm and then modifying
2020 Jan 08
2
Inline assembly in intel syntax mishandling i constraint
> On Jan 7, 2020, at 18:41, Craig Topper <craig.topper at gmail.com> wrote:
>
> What version of llvm are you using? This looks like it may be fixed on trunk.
After poking at my installation of rust, I'm not entirely sure what version of LLVM it uses. Looking at the GitHub page, it looks like Rust maintains their own copy of llvm and cherry picks commits. The C example was
2018 Jun 05
2
lld mishandling R_X86_64_PC32 relocations
Hi,
I've tracked down what I believe is a bug in lld's relocation processing for R_X86_64_PC32 REL relocations.
I'm producing the object file in a slightly unusual way: I'm using objcopy on a relocatable i386 ELF object file to convert it to x86_64 which transforms a R_386_PC32 into a R_X86_64_PC32.
Steps to reproduce:
1. Assemble the attached bug.asm using nasm and note the
2007 May 24
0
dovecot, uidplus and apple mail.app (was: Re: Will pay $500 towards a Dovecot feature = calender ?)
On 5/24/07, Robert Schetterer <robert at schetterer.org> wrote:
> DINH Vi?t Ho? schrieb:
> > On 5/24/07, Timo Sirainen <tss at iki.fi> wrote:
> >> On Thu, 2007-05-24 at 09:37 +0200, Adi Kriegisch wrote:
> >> > As a calendaring solution with group calendars and all the like, use
> >> CalDAV
> >> > -- a webdav extension designed for
2017 Feb 16
2
USB 2.0 device on a USB 3.0 plug
On 02/16/2017 12:28 PM, John R Pierce wrote:
> USB 1 and 2 used 4 pins. USB 3 ports have an ADDITIONAL 5 pins, the
> original 4 are used for USB 1/2 operation, the new 5 only for USB 3
> operation. they are effectively two completely independent controllers.
Do you mean USB type C? USB 3 is supported and most commonly uses type
A plugs & ports, which should support older
2001 Oct 31
3
problem with help.start() in R (PR#1156)
Hi,
The function help.start() assume that the brower is netscape
which is no longer the dominant brower in used. I am using now opera
and other use mozilla or Microsoft IE. I can always type
help.start(browser="opera"), but it is not convenience: I would like
to be able to set the default brwsernone for all. But the real bug is
that even after launching
2015 Oct 09
4
[PATCH 1/2] kvm/x86: Hyper-V synthetic interrupt controller
Christian, the question for you is towards the end...
On 09/10/2015 15:39, Denis V. Lunev wrote:
> diff --git a/arch/x86/kvm/hyperv.c b/arch/x86/kvm/hyperv.c
> index 62cf8c9..15c3c02 100644
> --- a/arch/x86/kvm/hyperv.c
> +++ b/arch/x86/kvm/hyperv.c
> @@ -23,13 +23,265 @@
>
> #include "x86.h"
> #include "lapic.h"
> +#include "ioapic.h"
2015 Oct 09
4
[PATCH 1/2] kvm/x86: Hyper-V synthetic interrupt controller
Christian, the question for you is towards the end...
On 09/10/2015 15:39, Denis V. Lunev wrote:
> diff --git a/arch/x86/kvm/hyperv.c b/arch/x86/kvm/hyperv.c
> index 62cf8c9..15c3c02 100644
> --- a/arch/x86/kvm/hyperv.c
> +++ b/arch/x86/kvm/hyperv.c
> @@ -23,13 +23,265 @@
>
> #include "x86.h"
> #include "lapic.h"
> +#include "ioapic.h"