search for: munged

Displaying 20 results from an estimated 811 matches for "munged".

2013 Aug 15
1
Couldn't drop privileges
attempts to login result in: dovecot: imap-login: Login: user=<lists@*munged*>, method=PLAIN, rip=ip.xx.yy.zz, lip=75.148.117.91, mpid=75104, TLS, session=<cBjCqf/jdwAXGJaN> dovecot: imap(lists@*munged*): Error: user lists@*munged*: Couldn't drop privileges: User is missing UID (see mail_uid setting) dovecot: imap(lists@*munged*): Error: Internal error occurred...
2004 Jun 03
4
miserable time with Cisco ATA186
...ring once, and then the call is disconnected. I have no problems with my Sipura 2000 or my Grandstream phones. I am running 2.16.1 sip code on the ATA 186. Neither * nor the ATA is behind a NAT. They are both on public IP addresses right next to each other on the same subnet. SIP Debug shows [munged being the IP address]: Answering/Requesting with root capability 4 Answering with preferred capability 0x8(ALAW) Answering with capability 0x1(G723) Answering with capability 0x2(GSM) Answering with capability 0x10(G726) Answering with capability 0x20(ADPCM) Answering with capability 0x40(SLINR) A...
2008 May 10
1
DO NOT REPLY [Bug 5457] New: Add a client-side --munge-symlinks option
...hile still storing some representation of the daemon's symlinks in the destination. A natural way to support this would be to add a client-side option --munge-symlinks that munges received symlinks and unmunges sent symlinks just like the daemon parameter. (Of course, the prefix "/rsyncd-munged/" isn't quite accurate for a client, but let's use it anyway for compatibility.) --munge-symlinks would also make it possible to work around bug 4037 when the receiver is not a daemon. -- Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email ------- You are receivin...
2017 Aug 11
1
EOF within quoted string
...;, sep=",", encoding="UTF-8") This line does read it haphazardly. The emails in the column are split into multiple columns and there are several columns with just ?NA?. Totally 202 columns. And then I removed columns with NA?s and concatenated all the text and finally got it. munged <- data[, unlist(lapply(data, function(x) !all(is.na(x))))] munged <- munged[-1,] munged$text <- apply( munged[ , c(3:ncol(munged)) ] , 1 , paste0 , collapse = " ") munged <- munged[,c("V1","V2","text")] print(head(munged$text)) Mohan From: Ad...
2010 Feb 04
2
[LLVMdev] Decoding munged function names
Hi folks, I'm currently extending my model checker to collect coverage information, and as part of this I'm finding a need to get a more friendly version of munged C++ identifiers than the name used by the linker. For example, though internally, something like '_Z7thread1Pv' is fine as an identifier, I'd like to be able to give the user something more readable. Since the disassembler seems to be able to do this, I'd like to be able to...
2019 May 15
5
imap failing
...ter: service(imap-login): child 92934 killed with signal 11 (core dumped) I also get a password error for a user unknown, but if I connect to the database with the credentials dovecot uses, I get a password. MariaDB [postfix]> select password FROM mailbox where username ='sample at domain.munged'; +-------------------------------------------------------------------------------+ | password | +-------------------------------------------------------------------------------+ | {SHA256-CRYPT}$5$042............................
2015 Feb 19
0
Anyone using torque/pbs/munge?
CentOS 6.6 I've got two servers, server1 and hbs (honkin' big server). Both are running munge, and torque... *separately*. My problem is that I've got users who want to be able to submit from server1 to hbs. I see that munged can be pointed to an alternate keyfile... but is there any way to tell qsub what to use? (And yes, I got on the torque users' list, and I'm trying there, too). mark "really needs to solve this tomorrow"
2019 Feb 09
8
offtopic: rant about thoughtless enabling DMARC checks [was: Re: Bounces?]
On 09/02/2019 10:44, Aki Tuomi via dovecot wrote: > For some reason mailman failed to "munge from" for senders with dmarc policy ;( > > It's now configured to always munge to avoid this again. I'd say, let Mailman throw all people off the list that have enabled DMARC checking without using exceptions for the lists they are on. It's a known fact that DMARC does not
2024 Feb 17
2
Keeping the traffis on or off the list ?
On Feb 17, 2024, at 7:57?AM, Jim Klimov wrote: > > Other than that, I think the mailing list service we get from alioth comes "as is", not sure we can configure much about it. Can check, but not really inclined to - let humans decide how to best post and what is correct for each case :) > Jim, I think this made more sense before, when the mailing list didn't *add* a
2008 May 24
1
3.02 bug? Symlink ->foo changed to ->/rsyncd-munged/foo
...501 staff 6 May 19 01:55 /usr/local/gwTeX-new/bin/ powerpc-darwin/mex -> pdftex After running rsync 3.02 on the target machine: bash-3.2# ls -l /usr/local/gwTeX-new/bin/powerpc-darwin/mex lrwxrwxrwx 1 sysbh staff 21 May 19 01:55 /usr/local/gwTeX-new/bin/ powerpc-darwin/mex -> /rsyncd-munged/pdftex After repairing with stock Mac OS X rsync: bash-3.2# ls -l /usr/local/gwTeX-new/bin/powerpc-darwin/mex lrwxrwxrwx 1 sysbh staff 6 May 24 14:31 /usr/local/gwTeX-new/bin/ powerpc-darwin/mex -> pdftex This looks like a bug to me. G
2012 Apr 09
0
Puppet Error - Munge - Conf File
Hello, I''ve been using puppet fairly successfully on a 10 server cluster, so I thought I had a decent idea of what I was doing. However, we''re starting a new project using a different virtualization system ( XenServer ), and I can''t seem to get puppet to accept my previous conf file. The error is a strange one to me: [root@centos6-exp2 ~]# puppet agent --test
2012 Jul 31
3
Access @resouce in custom type
Is it possible to access @resource variables inside a type? I would like to make some decisions on parameters based on other parameters that may have already been set. For example, --- newparam(:param1) do Puppet.debug "Found drivesperarray parameter" desc "parameter 1" validate do |value| if resource[:otherparam] then #dosomething else
2017 Aug 10
0
EOF within quoted string
You might want to try some of the suggestions mentioned in this post: https://stackoverflow.com/q/17414776/2140956 Jean On Thu, Aug 10, 2017 at 7:59 AM, <Mohan.Radhakrishnan at cognizant.com> wrote: > Hi, > > Reading http://ssc.wisc.edu/~ahanna/20_newsgroups.csv after downloading > it using > > data <- read.csv("20_newsgroups.csv",header=TRUE) > >
2017 May 18
0
Centos 7 and MAC address munging
Subject: Re: [CentOS] Centos 7 and MAC address munging Date: Thu, 18 May 2017 06:22:21 +0100 From: James Hogarth <james.hogarth at gmail.com> > > On 17 May 2017 8:53 pm, <m.roth at 5-cent.us> wrote: > >> Odd situation: I've mentioned before that I have several users for whom I >< have to spoof the MAC address, due to a software license. Now, I've got
2005 Oct 18
0
Munging the class attribute: Benchmarks anyone?
In prototype/scriptaculous there are currently two different approaches to munging the class attribute of HTML elements. Scriptaculous has Element.Class which recently moved from util.js into effects.js. Prototype has Element.ClassNames and several convenience functions around it. In the past I''ve grown fond of Element.Class, but I''m perfectly willing to use
2013 Apr 07
1
v2.2.rc6 released
http://dovecot.org/releases/2.2/rc/dovecot-2.2.rc6.tar.gz http://dovecot.org/releases/2.2/rc/dovecot-2.2.rc6.tar.gz.sig Some more fixes to bugs I noticed today while trying out some new things in production. Note especially the replicator-doveadm socket change, see http://wiki2.dovecot.org/Replication for how to configure it. This change allowed local replicator to notify the remote replicator
2013 Apr 07
1
v2.2.rc6 released
http://dovecot.org/releases/2.2/rc/dovecot-2.2.rc6.tar.gz http://dovecot.org/releases/2.2/rc/dovecot-2.2.rc6.tar.gz.sig Some more fixes to bugs I noticed today while trying out some new things in production. Note especially the replicator-doveadm socket change, see http://wiki2.dovecot.org/Replication for how to configure it. This change allowed local replicator to notify the remote replicator
2023 Mar 22
1
[libnbd PATCH v4 0/2] lib/utils: introduce async-signal-safe execvpe()
On Wed, Mar 22, 2023 at 03:45:17PM +0100, Laszlo Ersek wrote: > On 3/21/23 18:28, Eric Blake wrote: > > > it is indeed a bug in busybox now that POSIX is moving towards > > standardizing realpath, so I've filed it: > > https://bugs.busybox.net/show_bug.cgi?id=15466 > > I've found another busybox bug. > > The "/bin/sh" utility is provided by
2009 Jun 17
2
[LLVMdev] Regular Expressions
On Jun 16, 2009, at 5:49 PM, David Greene wrote: > On Tuesday 16 June 2009 19:35, David Greene wrote: > >> So which is more intuitive and less error-prone? >> >> defm BLENDPS : >> sse41_avx_fp_binary_vector_osta_vintrinsic_rmi_rrmi<0x0C, >> i32i8imm, "blend", "blend", "f32", 4>; >> >> or
2005 Oct 14
2
Anyone know why this wouldn't be valid mbox format?
Trying to get my wife's emails out of a proprietary format and into mbox for use on our local box. Doing some major file munging. In a test email the following doesn't work. (forgetting dates, email addresses, etc.) >From heraddress at herdomain.com Wed Oct 10 11:50:44 2005 -0700 Date: Wed, 10 Oct 2005 11:50:42 -0700 (PDT) This does work >From heraddress at herdomain.com Wed Oct