similar to: pid stamp on log entries?

Displaying 20 results from an estimated 20000 matches similar to: "pid stamp on log entries?"

2007 Feb 27
1
Fwd: RE: pid stamp on log entries?
On Feb 26 2007, Bill Boebel wrote: >On Mon, February 26, 2007 2:40 pm, bhayden at umn.edu said: > >> Hi folks. Is there a way to modify the log stamp to include pid as well >> as time? > >Take a look at http://wiki.dovecot.org/Variables > >%p = pid > >I use: mail_log_prefix = "%Us(%u)(%p): " > >Syslog adds the timestamp though. Thanks for
2007 Apr 23
2
mbox bug in 1.0.0
Hi folks. We're moving users from rc24 and 27 to 1.0.0. On four mailboxes so far we've seen these errors after the move (quick and dirty anonymizing follows): Apr 23 13:22:41 server.umn.edu dovecot: [ID 107833 local6.info] imap-login: Login: user=<USER>, pid=<9046>, method=PLAIN, rip=***.***.***.***, lip=***.***.***.***, TLS Apr 23 13:22:41 server.umn.edu dovecot: [ID
2007 Jun 18
2
LSUB/SUBSCRIBE under namespaces
Hi folks. Here's our situation: Migrating from UW-IMAP. Have lots (as in, tens of thousands) of clients set up using '~/mail' as the IMAP root, and using subscriptions. Dovecot mail_location is using '~' for mbox storage. We've disabled full filesystem access in Dovecot in order to use ACLs for shared folders. Hence we have a hidden namespace for backwards
2007 Oct 04
2
graceful failure when some folders are not available...
Hi folks. Quick question in the hopes that someone knows the answer, before I dig in the code some more. In testing a new setup with some long-term archival mbox-format mailboxes stored on an NFS mount, we've found the following: if the mount is unavailable for any reason, the user cannot log into their email at all. Dovecot says: "stat() failed with mbox foo" and dies. This is
2007 Aug 01
2
mbox inbox default
HI Timo & all. We're an mbox environment, inboxes in /var/mail/$USER (I'll include dovecot -n output at the bottom of this mail). mail_location is set accordingly for deliver. I'd assumed that if the /var/mail/$USER file doesn't exist, dovecot would create it, but we've discovered from experience (and I verified it in mbox-storage.c) that if access(path, R_OK|W_OK)
2007 Aug 14
2
namespaces and creation of folders that contain folders...
Hi Timo and all. imap/cmd-create.c contains the following bit of code: len = strlen(full_mailbox); if (len == 0 || full_mailbox[len-1] != ns->sep) directory = FALSE; else { /* name ends with hierarchy separator - client is just informing us that it wants to create children under this mailbox. */
2009 Jan 22
2
time date stamp since, january 1st 1970
Hello, we are receiving some data, sample below - with a weird time/date stamp format, we need some help with R on converting this time date stamp to a useable field in R, date and time in a data-frame. The developer says its the number of milliseconds since midnight, January 1, 1970. sample: *1232558018624* --------------------- How do I interpret the time stamp? Is there a date, i need
2004 Oct 28
1
Re: DSP stamp
Yes, the Theora codec is based on VP3, which is an earlier version of ON2's VP6 codec. Theora is currently at its alpha 3 release, and is stable enough to have been used already for streaming live video from a number of conferences, and for encoding several videos that can be found at www.theora.org. Development has progressed to the point that the value of the codec can be seen. That
2004 Oct 29
2
Fwd: RE: DSP stamp
Are we interested, or ready for this? Andrew Seddon is offering to provide hardware to port Theora to the DSP Stamp. http://www.linuxdevices.com/news/NS4405077268.html John ---------- Forwarded Message ---------- Subject: RE: DSP stamp Date: Friday 29 October 2004 03:50 am From: "Andrew Seddon" <andrew.seddon@camsig.co.uk> To: "'John Kintree'"
2006 Oct 25
3
simplification of code using stamp?
Hi I have the following code which I would like to simplify. Id does linear regressions and returns the r-squares, and the coefficients. It runs slow, as it is doing the regressions for each - is it possible to get the values in a dataframe which looks as follow: expert | xx | seeds | r.squared | slope | intercept Thanks in advance, Rainer library(reshape) rsqs <- as.data.frame(
2003 Jul 24
1
time and date stamp in voicemail
Hi, I see that there's been some very light discussion on having a standard time and date stamp in VM. How can I implement it today? (About to offer a system to a customer but they need the stamp to tell when people called.) Thanks, -- Steve ______________________________________ This sig is pending approval
2009 Jan 23
3
Problem with dovecot config
Hi, Doing a first install of dovecot, trying to copy over some of the config settings from 1.1.6. I'm getting an error, I think from the ACL plugin module. This is the error I'm getting on the console: Error: imap dump-capability process returned 89 Fatal: Invalid configuration in /etc/opt/dovecot1.8/dovecot.conf And this is what is appearing in syslog: Jan 23 12:46:57
2004 Nov 16
1
RE: DSP stamp
Hi, If somebody is interested in having a crack at this (and think's they have a reasonable chance of succeeding) then there is a dev kit up for grabs. John, we actually already have a LM9638 (1280x1024, B/W) image sensor interfaced to the board. There is a colour version drop in replacement. We also have a color QVGA TFT hooked up for video out. So a good demo system would be to capture
2004 Jul 30
1
Problem related to time-stamp
Hi, I m facing problem in "rsync" rtelated to the time-stamp of the files. Im using rsync for transfering the file from my m/c (OS :jaluna-linux) to a remote m/c(OS:jaluna-linux) and even if there was no change in the files on my m/c, when i rsync them to remote m/c the time-stamp of the file on remote m/c (which i transfered from my m/c) will change. my file name is bigfile and it is
2020 Feb 29
2
tcl problem with R-3.6.3?
Just built 3.6.3 from source and tcl doesn't work. Worked fine with the same laptop in 3.6.2. Here's the exact error. blurfle$ R --vanilla R version 3.6.3 (2020-02-29) -- "Holding the Windsock" Copyright (C) 2020 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to
2013 Feb 08
4
convert 12 time stamp to 24 hour
Readers, For a 12 hour time stamp: > testtime<-("2013-01-01 01:00:01 PM") > testtime [1] "2013-01-01 01:00:01 PM" > testtime24hour<-strftime(testtime,'%H:%M:%S') > testtime24hour [1] "01:00:01" how to convert to 24 hour format so that the object 'testtime24hour' is: '13:00:01' Thanks. -- r2151
2017 Jan 18
1
unlicense
>>>>> Charles Geyer writes: > In that case, perhaps the question could be changed to could CC0 be > added to the list of R licences. Right now the only CC licence that > is in the R licenses is CC-BY-SA-4.0. Hmm, I see Name: CC0 FSF: free_and_GPLv3_compatible (https://www.gnu.org/licenses/license-list.html#CC0) OSI: NA (https://opensource.org/faq#cc-zero) URL:
2004 Nov 18
3
date/time stamp
Hi ?Is there any way to reproduce the FTP behavior with Samba 3? The desired effect is not to respect timestamps from Windows files and just create them with Samba server date/time stamp when we drag/drop, copy/paste, cut/paste, old files to a disk share. We are replacing an FTP server with Samba3, so far it's doing great job, but this effect is needed (don't ask why please, app
2009 Mar 24
1
Making changes to dovecot log levels
Hi Timo, Awhile back I'd written about making changes to some of the log levels that dovecot writes to to stop the process from writing these to monitor. I wanted to run a few changes by you for this, just to make sure these won't cause problems somewhere else. And to send this to the list, in case anyone else wants to make similar changes in the future. In the file
1999 Apr 16
1
stamp function in R
Dear R experts, currently I'm converting a bit of trivial Splus code to R. In Splus I came across the stamp function. Does R have something similar? Thank you very much for your time. Ananke P.S.: Keep up the good work on R. It's great! HotBot - Search smarter. http://www.hotbot.com -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list --