Displaying 20 results from an estimated 7000 matches similar to: "IMP reading entire mailbox"
2009 Jul 21
2
Defunct processes w/ v1.2.1
I have limited information at the moment (currently distracted by other
projects) but I'm hoping that someone has already found and solved this
problem.
I have a v1.2.1 installed on my development box waiting for me to tinker
with the configuration. On several occasions, I have noticed that all
the dovecot processes are listed as "defunct". I don't recall seeing
anything
2024 Mar 24
3
'Scripted' machine account renewal?!
Mandi! Kees van Vloten via samba
In chel di` si favelave...
> Solution is easy: upgrading winbind from Debian backports solves the issue !
I've upgraded to latest buster version 4.18.10+dfsg-1~buster, but still does
not work for me...
Now display:
root at vfwacpn1:~# net ads changetrustpw
get_kdc_ip_string: get_kdc_list fail NT_STATUS_NO_LOGON_SERVERS
Changing password for
2000 Mar 21
3
loading data in packages
Hi,
I'm new to R and have a question which seems like it should be easy.
I loaded the R port of my boot library and installed it. All of the
functions and help files are available but I can't seem to access the
data. The data directory was created and contains files with the
extension .rda. I tried to use the data() function but I get
> data(city)
Error: restore file corrupted -- no
2008 Sep 30
5
Corrupted transaction log file / record size too small
I recently upgradeded dovecot on one of our servers from version 1.0.10
to version 1.1.3. Ever since, we've been seeing occasional errors
similar to this sequence (with the username and IP addresses elided):
Sep 30 00:09:56 alcor dovecot: pop3-login: Login: [4954], XXXX, NNN.NNN.NN.NNN
Sep 30 00:09:56 alcor dovecot: wrapper[5006]: pop3, XXXX, NNN.NNN.NN.NNN
Sep 30 00:09:56 alcor
2005 Jan 05
2
How to connect R with a C code which includes Atlas
Hello, everybody,
Happy New Year!
I am a graduate student from Concordia University. I meet a problem when I am
working on my thesis. I hope I will get help from you.
I have a mathematical model which was already implemented by using R language.
However, part of this model includes fixed point iteration algorithm and
calculation of large linear equations which n will get to 5000. Because of
2007 Mar 19
1
Toshiba's ConfigFree under Wine?
Hello ...
I have been trying to install Toshiba's ConfigFree software under
Wine-0.9.21 (Adam Schreiber's pre-built package For Slackware-10.2) on a
laptop running Slackware Linux (10.2), and I keep running into trouble.
I have made sure to run winecfg before starting, so I think I should be
ready to go. The installer ("setup.exe") starts, and the dialog boxes
appear to
2000 Apr 10
2
Increasing memory size in ESS
I am having a problem using ESS with R. In particular I have large
data objects which exceed the 6Mb default heap memory. Outside of
ESS I can run R by specifying large values of --vsize and --nsize
but I can't figure out how to do this in ESS.
Any help would be much appreciated.
--
****************************************************
** Angelo J. Canty **
2024 Jun 06
1
'Scripted' machine account renewal?!
Op 24-03-2024 om 17:42 schreef Marco Gaiarin via samba:
> Mandi! Kees van Vloten via samba
> In chel di` si favelave...
>
>> Solution is easy: upgrading winbind from Debian backports solves the issue !
> I've upgraded to latest buster version 4.18.10+dfsg-1~buster, but still does
> not work for me...
>
> Now display:
>
> root at vfwacpn1:~# net ads
2024 Mar 04
1
'Scripted' machine account renewal?!
On 04-03-2024 21:54, Rowland Penny via samba wrote:
> On Mon, 4 Mar 2024 14:14:18 +0100
> Marco Gaiarin via samba <samba at lists.samba.org> wrote:
>
>> Mandi! Kees van Vloten via samba
>> In chel di` si favelave...
>>
>>> Interesting, I tried running it with -d 10, it shows a lot of
>>> output.
>> The same. My output is a bit more
2011 May 02
3
Help converting a data.frame to ordered factors
I have a 96x34 array of Likert scale data (96 cases, 34 items) of
ordered factors (strongly disagree, disagree, neutral, agree, strongly
agree) that are coded numerically (1 through 5).
I cannot seem to convert this array (in any class) into ordered vectors.
I have all the cases as vectors of ordered factors, but any which way
I reassemble those vectors loses the ordered factors and converts
2002 Feb 19
0
Samba-3.0-alpha9 compilation problems
Hello,
I'm afraid this message is going to be a little long (188 lines,
not counting the headers). It is comprised, in fact, of two posts I
sent to the comp.protocols.smb newsgroup, from which I've not received
any replies. I'm hoping I can have better luck with the mailing list,
(to which I've just subscribed, so it's probably most appropriate
to send replies there...)
2012 May 21
1
SMB shares and LDAP
Hi,
I have a scenario were I only have OpenLDAP running for authing my Linux and Windows client.
Windows is using the pGina LDAP client to talk to my OpenLDAP server, no problems, working like a charm.
However I need to setup a simple Samba file server-only.
None of my Unix boxes have a compete /etc/passwd file as every one auths against OpenLDAP.
Is there some kind of passwd backend option
2009 Oct 05
0
setting default domain
Hello,
I'm attempting to use samba winbind for ssh authentication for users
in Active Directory. Things are mostly working, but I'm looking for
two things:
1.) I currently have to authenticate as ADLOCAL+elijah at concordia.uchicago.edu
. I would like to authenticate as elijah at concordia.uchicago.edu
2.) I would like the uid of the elijah user to be pulled from an
existing
2018 Jan 18
1
wrong matrix dimension in sparseQR
Hi,
I came across a case when the dimensions of matrices returned by qr()
operated on a sparse matrix does not coincide with the initial matrix.
Here is a spinet code that should produce an example (one of many that I could provide):
?m=205
?n=199
?set.seed(7);
?a=matrix(rnorm(m*n), m, n)
?a[sample(seq(m*n), m*(n-4))]=0
?a=as(a, "Matrix")
?qa=qr(a);
?stopifnot(nrow(qa at R) ==
2000 Jun 02
3
graphical parameters in plot
I'm using plot to make a simple plot but I want to control where
the tick marks go on bot axes. The graphical parameters xaxp and
yaxp seem to be ignored by the plot function so I tried setting them
using
op <- par(no.readonly=T)
par(xaxp=c(-2.4,-2.2,5), yaxp=c(-2500,10000,6))
plot(...)
par(op)
but they are still ignored.
Next I tried to use the axis function as follows
op <-
2009 Apr 18
0
Released Sieve v0.1.5 and ManageSieve v0.11.4 for Dovecot v1.2.rc3 and ManageSieve v0.10.6 for Dovecot v1.1.14
Hello Dovecot users,
This is a simultaneous release of new versions of Sieve-related software
for Dovecot v1.1 and v1.2. Only the Sieve implementation itself has seen
significant development. The ManageSieve packages only have small fixes
and the ManageSieve patches are updated as usual to match the new
Dovecot releases.
Changelog Sieve v0.1.5:
* Ported the implementation of the Sieve
2009 Apr 18
0
Released Sieve v0.1.5 and ManageSieve v0.11.4 for Dovecot v1.2.rc3 and ManageSieve v0.10.6 for Dovecot v1.1.14
Hello Dovecot users,
This is a simultaneous release of new versions of Sieve-related software
for Dovecot v1.1 and v1.2. Only the Sieve implementation itself has seen
significant development. The ManageSieve packages only have small fixes
and the ManageSieve patches are updated as usual to match the new
Dovecot releases.
Changelog Sieve v0.1.5:
* Ported the implementation of the Sieve
2009 Apr 30
3
core dumps disabled?
Apr 30 18:12:48 postamt dovecot: dovecot v1.1.14 starting up (core dumps disabled)
Uh, how do I enable them?
--
Ralf Hildebrandt
Postfix - Einrichtung, Betrieb und Wartung Tel. +49 (0)30-450 570-155
http://www.computerbeschimpfung.de
#!/bin/sh
cat <<EOF | dc -e "[lila/sulila%Plusili0<y]sy?si256salyx"
403736150440747681954588245935305944858835839713675044439128476844672\
2009 Apr 17
2
v1.1.14 and v1.2.rc3 released
http://dovecot.org/releases/1.1/dovecot-1.1.14.tar.gz
http://dovecot.org/releases/1.1/dovecot-1.1.14.tar.gz.sig
http://dovecot.org/releases/1.2/rc/dovecot-1.2.rc3.tar.gz
http://dovecot.org/releases/1.2/rc/dovecot-1.2.rc3.tar.gz.sig
Fixed lots of bugs in v1.2 related to shared mailboxes and virtual
mailboxes. Keep on testing and sending bug reports and hopefully we'll
get v1.2.0 release out
2009 Apr 17
2
v1.1.14 and v1.2.rc3 released
http://dovecot.org/releases/1.1/dovecot-1.1.14.tar.gz
http://dovecot.org/releases/1.1/dovecot-1.1.14.tar.gz.sig
http://dovecot.org/releases/1.2/rc/dovecot-1.2.rc3.tar.gz
http://dovecot.org/releases/1.2/rc/dovecot-1.2.rc3.tar.gz.sig
Fixed lots of bugs in v1.2 related to shared mailboxes and virtual
mailboxes. Keep on testing and sending bug reports and hopefully we'll
get v1.2.0 release out