search for: uff

Displaying 20 results from an estimated 85 matches for "uff".

Did you mean: off
2010 Oct 17
1
Wrong box.
Oct 16 22:52:42 mta0 dovecot: lda(luciano.moreira at metal.eeimvr.uff.br): sieve: msgid=<a04f508ac9d299a0733a09ce714ae56f at localhost.localdomain>: stored mail into mailbox 'luciano/moreira at metal/eeimvr/uff/br' Oct 16 22:52:48 mta0 dovecot: lda(fabiana at vm.uff.br): sieve: msgid=< 4CB3CFE3.4060206 at wspc.com.sg>: stored mail into mailbox ...
2010 May 14
4
Dovecot 2.0beta5 Quota/Dict
...e outs this error. If the configuration gos wrong it just do not happen anything, but if the filds and name are ok, happen this.. > May 14 17:03:40 auth: Debug: Loading modules from directory: > /usr/lib/dovecot/auth > May 14 17:03:40 auth: Debug: master in: USER 1 sfrique at nti.uff.br > service=lda > May 14 17:03:40 auth: Debug: Loading modules from directory: > /usr/lib/dovecot/auth > May 14 17:03:40 auth: Info: mysql: Connected to 10.0.0.100 (postfix) > May 14 17:03:40 auth: Debug: sql(sfrique at nti.uff.br): SELECT 5000 AS uid, > 12 AS gid, mailbox, conca...
2007 Oct 18
0
loadMovie ...uff uff
Hi list! I am tring to load a file swf into a movieclip in FLASH but....swfdec emit a signals that it is the following: signals[LAUNCH] = g_signal_new ("launch", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST, 0, NULL, NULL, swfdec_marshal_VOID__STRING_STRING, G_TYPE_NONE, 2, G_TYPE_STRING, G_TYPE_STRING); It is no connect anuwhere!!!! So...how can I do? Someboy can help me?
2024 Jan 18
1
Choices to remove `srcref` (and its buddies) when serializing objects
...f * ALTREP is ignored: identical(1:10, 1:10+0L) # [1] TRUE identical(serialize(1:10, NULL), serialize(1:10+0L, NULL)) # [1] FALSE identical( .Call(depcache:::C_hash2, 1:10), .Call(depcache:::C_hash2, 1:10+0L) ) # [1] TRUE * Strings not marked as bytes are encoded into UTF-8: identical('\uff', iconv('\uff', 'UTF-8', 'latin1')) # [1] TRUE identical( serialize('\uff', NULL), serialize(iconv('\uff', 'UTF-8', 'latin1'), NULL) ) # [1] FALSE identical( .Call(depcache:::C_hash2, '\uff'), .Call(depcache:::C_hash2, iconv(...
2011 Apr 19
5
Running mailfront under dovecot2.x service supervision
...e dovecot2.x this way ? PS: Now I know that I could use daemontools or such for this task - but I like the dovecot ssl handling and would like to end up by wrapping this smtp service inside same dovecot ssl that I use for IMAPS. Any feedback is more than welcome - I'm stuck Thanks in advance Uffe -- View this message in context: http://old.nabble.com/Running-mailfront-under-dovecot2.x-service-supervision-tp31431267p31431267.html Sent from the Dovecot mailing list archive at Nabble.com.
2024 Jan 18
1
[External] Re: Choices to remove `srcref` (and its buddies) when serializing objects
...# [1] TRUE > identical(serialize(1:10, NULL), serialize(1:10+0L, NULL)) > # [1] FALSE > identical( > .Call(depcache:::C_hash2, 1:10), > .Call(depcache:::C_hash2, 1:10+0L) > ) > # [1] TRUE > > * Strings not marked as bytes are encoded into UTF-8: > > identical('\uff', iconv('\uff', 'UTF-8', 'latin1')) > # [1] TRUE > identical( > serialize('\uff', NULL), > serialize(iconv('\uff', 'UTF-8', 'latin1'), NULL) > ) > # [1] FALSE > identical( > .Call(depcache:::C_hash2, '\uff')...
2001 Oct 10
4
Weird feature when creating function lists with apply
...n anyone explain this weird feature? I am trying to create a list of functions with apply, and it appears that there is something strange going on when the function evaluates the argument a. When I duplicate a into a local variable b, the result changes !?! Any pointers? Thank in advance. Cheers, Uffe # Create a function which returns a function > f1 <- function(a) {return(function(x) a*x)} # Create a list of functions, parameterised by 1:4 > apply(as.array(1:4),1,f1)[[2]](1) [1] 4 # Repeat > f2 <- function(a) {b <- a ;return(function(x) b*x)} > apply(as.array(1:4),1,f2)...
2010 Aug 03
1
Dsync fatal error.
#dsync -D -vv -u stak at nti.uff.br mirror maildir:/CX4/vdomains/ nti.uff.br/stak/mail dsync(root): Fatal: Mail locations must use the same virtual mailbox hierarchy separator (specify separator for the default namespace) My mail.conf *mail_location = mbox:/CX4/vdomains/%d/home/%n/mail:INBOX=/CX4/vdomains/%d/var/spool/mail/%n:IN...
2006 Feb 03
5
pbinom with size argument 0 (PR#8560)
Full_Name: Uffe H?gsbro Thygesen Version: 2.2.0 OS: linux Submission from: (NULL) (130.226.135.250) Hello all. pbinom(q=0,size=0,prob=0.5) returns the value NaN. I had expected the result 1. In fact any value for q seems to give an NaN. Note that dbinom(x=0,size=0,prob=0.5) returns the value 1. Cheers,...
2023 Mar 01
1
tab-complete for non-syntactic names could attempt backtick-wrapping
Consider: x <- list(`a b` = 1) x$a<tab> (i.e., press the 'tab' key after typing 'x$a') The auto-complete mechanism will fill the buffer like so: x$a b This is not particularly helpful because this is now a syntax error. It seems to me there's a simple fix -- in utils:::specialCompletions(), we can wrap the result of utils:::specialOpCompletionsHelper() with backticks for non-syntactic names ([1]): comps <- specialOpComp...
2023 Mar 01
1
tab-complete for non-syntactic names could attempt backtick-wrapping
...uld also be escaped). Thankfully, \uXXXX-style Unicode escape > sequences are not currently supported inside backticks, and "escape the > backslash" rule already takes care of them. > > The deparse() function already knows these rules: > > name <- 'hello world ` \\uFF' > cat(deparse1(as.name(name), backtick=TRUE), '\n') > # `hello world \` \\uFF` > `hello world \` \\uFF` <- 'hello' > `hello world \` \\uFF` > # [1] "hello" > > -- > Best regards, > Ivan
2000 Dec 14
2
Accuracy problem in dchisq for non-central chi-squared
...Here's my version information: platform Windows arch x86 os Win32 system x86, Win32 status major 1 minor 1.1 year 2000 month August day 15 language R Any comments on this one? Best regards, Uffe ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Uffe H. Thygesen M.Sc.&Eng., Ph.D. Danish Institute of Fisheries Research http://www.dfu.min.dk -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ....
2024 Jan 16
2
Choices to remove `srcref` (and its buddies) when serializing objects
Could you recommend any packages/functions that compute hash such that the source references and sexpinfo_struct are ignored? Basically a version of `serialize` that convert R objects to raw without storing the ancillary source reference and sexpinfo. I think most people would think of `digest` but that package uses `serialize` (see discussion
2011 Apr 27
3
What is the recommended way to move a message from one mailbox to another using CLI
What is the recommended way to move a message from one mailbox to another using CLI - serverside commands ? Since IMAP does not support transactional moves between mailboxes - The only thing that comes to my mind is this operation: 1) extract message from mailbox A using "doveadm fetch" 2) inject message into mailbox B using "dovecot-lda" 3) expunge message from mailbox A
2011 Apr 21
2
What is the recommended way to delete a message from a mailbox ?
...t) ? Can I just remove the file from the mailbox - I cannot seem to find any doveadm commands that does this task. I guess that Dovecot over time will discover that the atime and mtime of its indexes and maps does not reflect reality - or is there another (better) way to delete a message. Thanks Uffe -- View this message in context: http://old.nabble.com/What-is-the-recommended-way-to-delete-a-message-from-a-mailbox---tp31446701p31446701.html Sent from the Dovecot mailing list archive at Nabble.com.
2004 Dec 21
3
Budgetone is not registering
Hi again. I cant get my Budgetone registered in Asterisk, and I cant find what's wrong... uff. This is my config: This fragment is from my sip.conf: [12345] type=user user=12345 username=12345 secret=12345 authuser=12345 qualify=1000 nat=no host=dynamic dtmfmode=rfc2833 reinvite=no canreinvite=no disallow=all allow=g729 allow=ulaw allow=alaw context=sip_default And this is from my Budget...
2017 Feb 22
2
OT: hardware, IBM 3650 M2 won't power on
...9;ve connected a network cable, wondering if it's in wake-on-lan; I've tried connecting to it via its management port, and *zip*. I'm not going to do, as several folks' posts that I googled (been at that for hours), cut the cable and solder in an on/off switch. I have taken the lid uff, reseated the PSUs, and the cable connecting to the front panel, and nada. Anyone got any ideas? mark
2008 Jan 27
2
Prefer -u not to change newer files.
Hi List, Quoting man page: In the currently implementation, a difference of file format is always considered to be important enough for an update, no matter what date is on the objects. In other words, if the source has a directory or a symlink where the destination has a file, the transfer would occur
2018 Mar 21
5
Sum of columns of a data frame equal to NA when all the elements are NA
..., rowSums...)? or an equivalent function? Thank you for your help Stefano (oo) --oOO--( )--OOo---------------- Stefano Sofia PhD Area Meteorologica e Area nivologica - Centro Funzionale Servizio Protezione Civile - Regione Marche Via del Colle Ameno 5 60126 Torrette di Ancona, Ancona Uff: 071 806 7743 E-mail: stefano.sofia at regione.marche.it ---Oo---------oO---------------- ________________________________ AVVISO IMPORTANTE: Questo messaggio di posta elettronica pu? contenere informazioni confidenziali, pertanto ? destinato solo a persone autorizzate alla ricezione. I messaggi...
2011 Jan 19
1
courier-imap to dovecot-imap migration: missing TLS_TRUSTCERTS feature
...ar as I can see dovecot-imap does not seem to implement the concept of checking trusted (self signed standalone client) certs - even though it is based on openssl like courier-imap is - but I may be wrong here. I'm using dovecot-2.0.7 (from ports) on FreeBSD Thanks in advance. Kind regards Uffe Jakobsen