search for: carefuly

Displaying 17 results from an estimated 17 matches for "carefuly".

Did you mean: carefully
2016 Oct 20
2
logging TLS SNI hostname
...rd_query. This would allow the proxy to support >> multiple IMAP server domains each with their own set of users. And, it >> would save me money by using only the IP of the proxy for all the IMAP >> server domains instead of giving each domain a unique IP. > It only needs to be carefuly implemented on dovecot side as TLS SNI hostname > is information passed directly by client. > > So some fqdn name validation would need to happen in case if client has > malicious intents. > >> Kevin > Hi! I wonder if this would be of any help? It provides %{local_name} p...
2016 Oct 17
2
logging TLS SNI hostname
> On Oct 17, 2016, at 2:41 AM, Arkadiusz Mi?kiewicz <arekm at maven.pl> wrote: > > On Monday 30 of May 2016, Arkadiusz Mi?kiewicz wrote: >> Is there a way to log SNI hostname used in TLS session? Info is there in >> SSL_CTX_set_tlsext_servername_callback, dovecot copies it to >> ssl_io->host. >> >> Unfortunately I don't see it expanded to any
2016 Oct 20
2
logging TLS SNI hostname
...roxy to >>>> support multiple IMAP server domains each with their own set of users. >>>> And, it would save me money by using only the IP of the proxy for all >>>> the IMAP server domains instead of giving each domain a unique IP. >>> It only needs to be carefuly implemented on dovecot side as TLS SNI >>> hostname is information passed directly by client. >>> >>> So some fqdn name validation would need to happen in case if client has >>> malicious intents. >>> >>>> Kevin >> Hi! >> >>...
2016 Oct 18
0
logging TLS SNI hostname
...n the SQL password_query. This would allow the proxy to support > multiple IMAP server domains each with their own set of users. And, it > would save me money by using only the IP of the proxy for all the IMAP > server domains instead of giving each domain a unique IP. It only needs to be carefuly implemented on dovecot side as TLS SNI hostname is information passed directly by client. So some fqdn name validation would need to happen in case if client has malicious intents. > Kevin -- Arkadiusz Mi?kiewicz, arekm / ( maven.pl | pld-linux.org )
2016 Oct 20
0
logging TLS SNI hostname
...proxy to > >> support multiple IMAP server domains each with their own set of users. > >> And, it would save me money by using only the IP of the proxy for all > >> the IMAP server domains instead of giving each domain a unique IP. > > > > It only needs to be carefuly implemented on dovecot side as TLS SNI > > hostname is information passed directly by client. > > > > So some fqdn name validation would need to happen in case if client has > > malicious intents. > > > >> Kevin > > Hi! > > I wonder if this wou...
2016 Oct 20
0
logging TLS SNI hostname
...ultiple IMAP server domains each with their own set of users. > >>>> And, it would save me money by using only the IP of the proxy for all > >>>> the IMAP server domains instead of giving each domain a unique IP. > >>> > >>> It only needs to be carefuly implemented on dovecot side as TLS SNI > >>> hostname is information passed directly by client. > >>> > >>> So some fqdn name validation would need to happen in case if client has > >>> malicious intents. > >>> > >>>> Kevi...
2023 Aug 23
1
[EXT] Re: oggenc argument to make the stream not cut in the middle
...n a local 'play dataproc.wav'; > the third has a trailing silence at the end. > the fourth plays just like a local file. > > > For the first command, there is delay in the middle of the sentence; > > Regretably, I don't speak the language, but after listening > carefuly many times, I don't hear any delay in the middle > of the sentence. To be clear: there is silence at the start > and the end of the signal, respectively, but not in the > middle of the sentence. > > > for other commands the audio is played the same. > > What do you mea...
2020 May 09
5
Win7 clients problem after upgrading samba file server to 4.12 on Arch
...d/open.c | 217 ++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 200 insertions(+), 17 deletions(-) Why do I think so? Because: - I did a reset my current Samba master - my last clone was about 10 hours ago. - It is version 4.13.0pre1-GIT-e907f002a7f - Then I have carefuly edited the file 'source3/smbd/open.c' and withdrawn all changes - Saved, compiled, installed, started services, tested different scenarios and it works PROPERLY. - For the first time in any version greater that 4.11 Yes, it's magic :) Please, be so kind and check - everybo...
2011 Apr 08
5
duplicates() function
I need a function which is similar to duplicated(), but instead of returning TRUE/FALSE, returns indices of which element was duplicated. That is, > x <- c(9,7,9,3,7) > duplicated(x) [1] FALSE FALSE TRUE FALSE TRUE > duplicates(x) [1] NA NA 1 NA 2 (so that I know that element 3 is a duplicate of element 1, and element 5 is a duplicate of element 2, whereas the others were
2004 Nov 24
1
Suggestions for packages / help / index (long mail)
...e). What we have for now is a document listing keywords. Advanced user will know those keywords are to be used by package maintainer, feeding the help system building chain. This keyword database is very pertinent. It's content, which has been inherited in part from S, has previously beeing carefuly worked out. And that works well (try help.search("graphs") will provide you very interesting stuff - provided you have some packages installed...). I think that this keywords list may even have more uses. 1. As R community growths, it may be time to add some terms in this keywords li...
2020 May 09
0
Win7 clients problem after upgrading samba file server to 4.12 on Arch
...+++++++++++++++++++++++++++++++++++++++++---- > > 1 file changed, 200 insertions(+), 17 deletions(-) > > Why do I think so? > Because: > I did a reset my current Samba master - my last clone was about 10 hours ago. > It is version 4.13.0pre1-GIT-e907f002a7f > Then I have carefuly edited the file 'source3/smbd/open.c' and withdrawn all changes > Saved, compiled, installed, started services, tested different scenarios and it works PROPERLY. > For the first time in any version greater that 4.11 > Yes, it's magic :) > > Please, be so kind and check -...
2003 May 13
3
PDC problem
Hello all, I'm running slackware linux 8.0 and tries to configure samba 2.2.8a as PDC. I succeded configuring network shares i.e. netlogon, profiles, etc. Everything is OK, but when i tries to make a domain logon using windows 98 apears an error "Wrong parameter". When i tries to join my samba domain under Windows 2000 it says "domain does not exists ....". what am i
2010 May 12
6
A primitive OO in R -- where next?
Greetings All, Out of curiosity, I've just done a very primitive experiment: Obj <- list(Fun=sum, Dat=c(1,2,3,4)) Obj$Fun(Obj$Dat) # [1] 10 That sort of thing (much more sophisticated) must be documented mind-blowingly somewhere. Where? Where I stand right now: The above (and its immediately obvious generalisations, like Obj$Fun<-cos) is all I know about it so far. Ted.
2020 May 09
3
Win7 clients problem after upgrading samba file server to 4.12 on Arch
...++++---- > > > 1 file changed, 200 insertions(+), 17 deletions(-) > > > > Why do I think so? > > Because: > > I did a reset my current Samba master - my last clone was about 10 hours > ago. > > It is version 4.13.0pre1-GIT-e907f002a7f > > Then I have carefuly edited the file 'source3/smbd/open.c' and withdrawn > all changes > > Saved, compiled, installed, started services, tested different scenarios > and it works PROPERLY. > > For the first time in any version greater that 4.11 > > Yes, it's magic :) > > > &...
2020 May 05
2
Win7 clients problem after upgrading samba file server to 4.12 on Arch
'git checkout' in your first sentence- please be more detailed. And please remember where I start - I am just after 'git clone' and build of 4.13.x Pawel wt., 5 maj 2020 o 23:28 Andrew Bartlett <abartlet at samba.org> napisa?(a): > On Tue, 2020-05-05 at 22:32 +0200, pavlos wrote: > > Hi Andrew et al, > > > > Now is the time to come back to my
2010 Sep 01
2
HEADS UP: FreeBSD 6.4 and 8.0 EoLs coming soon
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello Everyone, On November 30th, FreeBSD 6.4 and FreeBSD 8.0 will have reached their End of Life and will no longer be supported by the FreeBSD Security Team. Since FreeBSD 6.4 is the last remaining supported release from the FreeBSD 6.x stable branch, support for the FreeBSD 6.x stable branch will also cease at the same point. Users of either of
2010 Sep 01
2
HEADS UP: FreeBSD 6.4 and 8.0 EoLs coming soon
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello Everyone, On November 30th, FreeBSD 6.4 and FreeBSD 8.0 will have reached their End of Life and will no longer be supported by the FreeBSD Security Team. Since FreeBSD 6.4 is the last remaining supported release from the FreeBSD 6.x stable branch, support for the FreeBSD 6.x stable branch will also cease at the same point. Users of either of