similar to: auth_debug_passwords

Displaying 20 results from an estimated 2000 matches similar to: "auth_debug_passwords"

2016 Jul 19
3
Panic when runing "doveadm mailbox status ... vsize"
I'm using dovecot 2.2.24 on FreeBSD 10.3. I'm working on converting users from maildir to mdbox, for the usual reasons. I have converted some test users and they generally work fine. But when I run "doveadm mailbox status" I get a Panic if I ask for the vsize field (or "all"), but other fields work fine. For example: # doveadm mailbox status -u bubbacheex3
2009 Feb 04
4
pop3_lock_session question
Hello, I'm preparing to convert from qpopper + UW-IMAP to dovecot. So far testing has gone very well. One problem we haven't figured out is that long-running POP sessions keep the mailbox locked, so that the MDA times out while trying to deliver. We're using "maildrop" as our MDA if that matters. We don't see this issue for dovecot IMAP sessions. During long-running
2007 Nov 24
7
[Bug 1393] New: patch modifies gnome-ssh-askpass to optionally use one-time password
https://bugzilla.mindrot.org/show_bug.cgi?id=1393 Summary: patch modifies gnome-ssh-askpass to optionally use one- time password Classification: Unclassified Product: Portable OpenSSH Version: 4.7p1 Platform: All URL: http://www.swcp.com/~pgsery OS/Version: Linux Status: NEW Keywords:
2008 Jun 13
3
[Bug 983] Required authentication
https://bugzilla.mindrot.org/show_bug.cgi?id=983 Damien Miller <djm at mindrot.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pgsery at swcp.com --- Comment #18 from Damien Miller <djm at mindrot.org> 2008-06-13 13:56:12 --- *** Bug
2003 Dec 17
2
Can't start R-devel
Hello ... With a new checkout of R-devel, I'm getting the following error on startup: Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for a HTML browser interface to help. Type 'q()' to quit R. Error in open.connection(con, "rb") : unable to open connection In addition: Warning message: cannot open compressed file
2010 Jan 07
4
[Bug 983] Required authentication
https://bugzilla.mindrot.org/show_bug.cgi?id=983 --- Comment #26 from Paul Sery <pgsery at swcp.com> 2010-01-08 08:09:14 EST --- The configuration below is incorrect. When using protocol 2, it should read: ... RequiredAuthentications2 password Also, there's no need to specify publickey in conjunction with other authentication methods because it will always be tried first (as specified
2004 Aug 23
2
Installing package lattice
Here's another issue (that might well be operator error): > install.packages("lattice") ... ... ** save image Loading required package: grid Error in importIntoEnv(impenv, impnames, ns, impvars) : object(s) 'dev.list', 'cm.colors', 'gray', 'heat.colors' are not exported by 'namespace:graphics' Execution halted ERROR: execution of
2010 Nov 12
1
[Bug 983] Required authentication
https://bugzilla.mindrot.org/show_bug.cgi?id=983 Paul Sery <pgsery at swcp.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #1768|0 |1 is obsolete| | --- Comment #30 from Paul Sery <pgsery at swcp.com> 2010-11-12
2024 Apr 08
2
Exceptional slowness with read.csv
? Sun, 7 Apr 2024 23:47:52 -0600 Dave Dixon <ddixon at swcp.com> ?????: > > second_records <- read.csv(file_name, skip = 2459465, nrows = 5) It may or may not be important that read.csv defaults to header = TRUE. Having skipped 2459465 lines, it may attempt to parse the next one as a header, so the second call read.csv() should probably include header = FALSE. Bert's advice
2003 May 23
1
Problem building R-devel
Hello ... I went to build R-devel today (Redhat Linux 7.2, kernel 2.4.9-31, gcc 2.96) and am getting this error: gcc -I../../src/extra/zlib -I. -I../../src/include -I../../src/include -I/usr/local/include -DHAVE_CONFIG_H -D__NO_MATH_INLINES -mieee-fp -g -O2 -c pcre.c -o pcre.o pcre.c: In function `do_pgrep': pcre.c:71: parse error before `char' pcre.c:72: `s' undeclared (first use
2003 Sep 16
2
couldn't find function "setClass"
Hello ... With a new checkout of R-devel (last update was 2003-09-11) we are having a problem (it seems to be happening to all of us here on a few different machines) where during install/check/etc when the 'save image' happens (in packages using 'save image'): ** save image Error: couldn't find function "setClass" Execution halted This is for all packages that
2004 Mar 31
2
segfault in browseURL()
Hello ... Using Win2K (and reportedly WinXP), when the length of the 'url' string >= 280 characters, a segmentation fault occurs. This doesn't seem to be affecting unix machines. Thanks -J
2003 Nov 13
2
install.packages() for a local file
Hello ... I see that on Windows one can specify a filename as the "pkgs" argument and then set CRAN=NULL when calling install.packages() for a local file. Is there a way to do this on unix? It doesn't appear to be possible, but perhaps I am missing something here. Also, if indeed there is no method to do this on unix, is there a reason behind it or has it just never been
2016 Apr 06
2
Intermittent IMAP Login failures - about 25% fail
New server & just added three domains: now I see "dovecot: imap-login: Aborted login (auth failed, 1 attempts in 5 secs): user=<username.companyname>, method=PLAIN, rip=1.1.1.1, lip=99.99.99.99, TLS, session=<kw6Y2NYviQBex5Un>" Plus all Outlook users keep being bounced and finally get in. I am going to kill all the users soon... Not too many files open, nor bandwidth,
2005 Jul 19
1
Problem building R
I initially thought this only was the case for me on R-devel, but also just tested it on the current R-patched and R-2.1.1 (so perhaps this more belongs on R-help, but ...). I'm having an odd error with the makefiles in src/library/XXX while building R. When it tries to create the 'po' directory, the Makefile specifies: @if test -d $(srcdir)/inst/po; then \ $(MKINSTALLDIRS)
2024 Apr 08
2
Exceptional slowness with read.csv
I solved the mystery, but not the problem. The problem is that there's an unclosed quote somewhere in those 5 additional records I'm trying to access. So read.csv is reading million-character fields. It's slow at that. That mystery solved. However, the the problem persists: how to fix what is obvious to the naked eye - a quote not adjacent to a comma - but that read.csv can't
2024 Apr 08
2
Exceptional slowness with read.csv
Hi Dave, That's rather frustrating. I've found vroom (from the package vroom) to be helpful with large files like this. Does the following give you any better luck? vroom(file_name, delim = ",", skip = 2459465, n_max = 5) Of course, when you know you've got errors & the files are big like that it can take a bit of work resolving things. The command line tools awk
2004 Aug 23
1
Possible Latex problem in R-devel?
I'm getting this error when installing packages w/ a checkout of R from a a little bit ago (23-Aug-2004, approx 1pm eastern US time): ** help Bareword found where operator expected at /usr/home/jgentry/R/share/perl/R/Rdconv.pm line 2331, near "$latexout latex_link_trans0" (Missing operator before latex_link_trans0?) It isn't obvious to me what the error is, although
2024 Apr 08
1
Exceptional slowness with read.csv
No idea, but have you tried using ?scan to read those next 5 rows? It might give you a better idea of the pathologies that are causing problems. For example, an unmatched quote might result in some huge number of characters trying to be read into a single element of a character variable. As your previous respondent said, resolving such problems can be a challenge. Cheers, Bert On Mon, Apr 8,
2008 Feb 08
3
[Bug 1439] New: Adds Virtual Token (VToken) authentication method to kbdint
https://bugzilla.mindrot.org/show_bug.cgi?id=1439 Summary: Adds Virtual Token (VToken) authentication method to kbdint Classification: Unclassified Product: Portable OpenSSH Version: 4.7p1 Platform: All OS/Version: Linux Status: NEW Keywords: patch Severity: normal Priority: P2