Displaying 9 results from an estimated 9 matches for "dkim_valid_au".
2018 Apr 13
0
How to change Domain password as normal user?
...mba.org>
Reply-To: Mark Foley <mfoley at ohprs.org>
Content-Type: text/plain; charset="utf-8"
Errors-To: samba-bounces at lists.samba.org
Sender: "samba" <samba-bounces at lists.samba.org>
X-Spam-Status: No, score=-106.1 required=3.0 tests=DKIM_SIGNED,DKIM_VALID,
DKIM_VALID_AU,T_RP_MATCHES_RCVD,USER_IN_WHITELIST,USER_IN_WHITELIST_TO
autolearn=unavailable autolearn_force=no version=3.4.1-_revision__1.25__
X-Spam-Report:
* -100 USER_IN_WHITELIST From: address is in the user's white-list
* -0.0 T_RP_MATCHES_RCVD Envelope sender domain matches handover relay
*...
2020 Sep 17
2
dovecot: lmtp: Error: fatal error: failed to reserve page summary memory
...ating potential DNS violation
DVE-2018-0001, retrying transaction with reduced feature level UDP.]
Sep 17 08:54:00 lonjemail spamd[3231]: spamd: clean message (1.1/5.0) for
Debian-exim:114 in 0.3 seconds, 2760 bytes.
Sep 17 08:54:00 lonjemail spamd[3231]: spamd: result: . 1 -
DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,RDNS_NONE,SPF_HELO_NONE,SPF_PASS
scantime=0.3,size=2760,user=Debian-exim,uid=114,required_score=5.0,rhost=::1,raddr=::1,rport=57844,mid=<CANcP0tbws-r=L8KrTug_NKLk0EuPwo1vKotdpV=
Pf95Pxusbww at mail.gmail.com>,autole...
2010 Dec 18
0
What's wrong with these mail headers?
...een responsible for it.
Looking at the headers of the original message (which was
sent out to R-help after moderation), the only indication
of problems is in the following:
X-Tag-Only: YES
X-Filter-Node: phil3.ethz.ch
X-USF-Spam-Level: **
X-USF-Spam-Status: hits=2.1 tests=DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU,
FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM,
T_TO_NO_BRKTS_FREEMAIL
X-USF-Spam-Flag: NO
X-Virus-Scanned: by amavisd-new at stat.math.ethz.ch
in which the occurrences of "FREEMAIL" (associated with gmail,
nabble, yahoo etc.) may carry the clue, though they are too
cryptic f...
2018 Apr 13
2
How to change Domain password as normal user?
On Thu, 5 Apr 2018 16:59:15 +0100 Rowland Penny <rpenny at samba.org> wrote:
>
> On Thu, 05 Apr 2018 11:31:18 -0400
> Mark Foley via samba <samba at lists.samba.org> wrote:
>
> > OK, I'm having issues with the problem. To summarize, I'm trying to
> > have a normal user change his password from a domain member. I've
> > tried: passwd, kpasswd
2016 Dec 12
2
why does parent.frame() cycle when called from inside capture.output()?
Hello R devel/help,
I ran into this strange behavior:
# showstack is supposed to walk through the stack of parent
# environments when it is called:
showstack = function() {
env = environment()
for(i in 1:12) {
env = do.call(parent.frame, list(), env=env)
print(env)
}
}
# a simple chain of functions:
g3=function(t) showstack()
2016 Dec 12
2
why does parent.frame() cycle when called from inside capture.output()?
Hello R devel/help,
I ran into this strange behavior:
# showstack is supposed to walk through the stack of parent
# environments when it is called:
showstack = function() {
env = environment()
for(i in 1:12) {
env = do.call(parent.frame, list(), env=env)
print(env)
}
}
# a simple chain of functions:
g3=function(t) showstack()
2020 Oct 08
0
dovecot: lmtp: Error: fatal error: failed to reserve page summary memory
...n DVE-2018-0001, retrying transaction with reduced feature
> level UDP.]
> Sep 17 08:54:00 lonjemail spamd[3231]: spamd: clean message (1.1/5.0)
> for Debian-exim:114 in 0.3 seconds, 2760 bytes.
> Sep 17 08:54:00 lonjemail spamd[3231]: spamd: result: . 1 -
> DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,RDNS_NONE,SPF_HELO_NONE,SPF_PASS
> scantime=0.3,size=2760,user=Debian-exim,uid=114,required_score=5.0,rhost=::1,raddr=::1,rport=57844,mid=<CANcP0tbws-r=L8KrTug_NKLk0EuPwo1vKotdpV=Pf95Pxusbww at mail.gmail.com
>...
2016 Dec 12
0
[RE: why does parent.frame() cycle when called from inside capture.output()?]
...data61.csiro.au -----
Date: Mon, 12 Dec 2016 06:20:17 +0000
From: Mark.Bravington at data61.csiro.au
To: frederik at ofb.net
Subject: RE: [Rd] why does parent.frame() cycle when called from inside
capture.output()?
X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED,
DKIM_VALID,DKIM_VALID_AU,T_SPF_HELO_TEMPERROR,T_SPF_TEMPERROR autolearn=ham
autolearn_force=no version=3.4.1
X-Spam-Level:
X-My-Tags: inbox r-devel
Hi Frederik
[ I'm replying off-list in case you, or the rest of R-devel, don't find this reply useful... please fwd to the list if it does help you ]
I'm the a...
2024 Apr 19
2
passing a modified argument to an S3 method
Is there a way to pass a modified argument from an S3 generic to a method? Here's a non-working example that I want to return "abcd".
test <- function(x, y = NULL){
y <- "abcd"
UseMethod("test")
}
test.default <- function(x, y = NULL) y
test(x = 3)
Is that possible? I've looked around a lot, but can't find any examples or