similar to: Dinamic 'mail_location' for each user

Displaying 20 results from an estimated 2000 matches similar to: "Dinamic 'mail_location' for each user"

2006 May 03
1
Installation problem
I am trying to install R-2.3.0 on a 64bit linux box and encounter several error during the make step. I'd appreciate any help. Error messages follow: [root at calculon R-2.3.0]# make make[4]: Entering directory `/state/partition1/apps/packages/R-2.3.0/src/modules/lapack' gcc -shared -L/usr/local/lib64 -o libRlapack.so dlamc.o dlapack0.o dlapack1.o dlapack2.o dlapack3.o cmplx.o
2010 Oct 21
2
Bug? Mount and fstab
I think this is likely a bug with either mount or glusterfs: [root at vm-container-0-0 ~]# cat /etc/fstab LABEL=/ / ext3 defaults 1 1 LABEL=/state/partition /state/partition1 ext3 defaults 1 2 LABEL=/var /var ext3 defaults 1 2 tmpfs /dev/shm tmpfs defaults
2012 Dec 12
1
Too many imap connections in state "idling"
Hi, I have a "Ubuntu12.04 + dovecot-2.0.19" configuration in my server. My mailbox server is shared by ~ 10k domains. It works fine with ~50k accounts. On average, my server has about 6K simultaneous imap connections during office hours. But I've noticed that this server has an average of approximately 4k connections in state "idling". On other Dovecot servers the
2008 Jan 24
2
Shearing file systems on the network
I have 4 systems and each one of them has a partition I'd like to be remotely accessible on the other 3 systems. In other words System1 has Partition1. Systems 2,3,4 should be able to remotely mount Partition1 from System1. Also System2 has Partition2. Then systems 1,3,4 should be able to remotely mount Partition2 from System2 and so on. I tried NFS and it works but only in the ideal
2010 Jul 15
3
IMAP super user
Hello, Is there any directive in Dovecot similar to 'imap_admins' of Cyrus? I plan to migrate from Cyrus to Dovecot. But I need a admin user which is able to obtain information about the quotas of common users. Thank you. -- []'s Thiago Henrique Network Administration Digirati Networks K8 Networks
2014 Sep 01
3
Unable to compile R 3.1.3 under GCC 4.1.2 (Red Hat 4.1.2-51)
Hi all, I'm unable to compile R under an HPC system (which like many HPC systems doesn't always have the latest and greatest software). The version of GCC is 4.1.2 under CentOS 5.7. Running ./configure gives the following output: R is now configured for x86_64-unknown-linux-gnu Source directory: . Installation directory: /home/tbarik C compiler: gcc
2010 Aug 17
2
Delete user data from Dovecot server
Hello, I'm testing Dovecot 2.0. I plan to use Dovecot 2.0 with thousands of domains per server. My user base is under virtual MySQL. when I add a user in the database, it is automatically created in the structure of Dovecot at first login. Is there a easy way to delete a user ? Thank you. -- Atenciosamente, Thiago Henrique (21)2233-5950 ramal 27 Infra Estrutura Linux Hostnet Internet
2019 Jun 02
2
New UEFI restrictions?
Previously I've been using a laptop with an "Aptio Setup Utility...2015" to "Disable UEFI Boot" and allow a USBstik with partition1 having: /boot/isolinux/isolinux.bin , isolinux.cfg , menu.c32...etc. to boot 64bit TinyCore. Now this newer laptop has: "Aptio Setup Utility...2018" which is completely different from the 2015 version. I fail to boot linux from
2006 Feb 07
3
Dinamic controller
Is it possible to make a Rails app respond to a "dinamic" controller? As I understand method_missing can be used inside a controller to respond to nonexisting methods, is it possible to provide a similar behavior at a controller level? I am not sure at whic level would this code be inserted... -- An?bal Rojas http://www.lacaraoscura.com/ anibalrojas@gmail.com
2006 Feb 20
2
Group a dinamic number of vectors in a data.frame
Hi all, I need to create a data.frame from a variable number of vectors. The number of these vectors could change so I need a dinamic way to group all in a data.frame. The number is length(abc). e.g. vectors in my workspace N1 <-c(1,2,3,4) N2 <-c(1,2,3,4) N3 <-c(1,2,3,4) abc <-c(1,2,3) the data.frame I want to create: tcm <-data.frame(OneVector, TwoVector,
2003 Jun 17
0
ipfw2 docs for dinamic rules
Dear FreeBSD! I would like to use custom rules file with ipfw2. My computer goes to the net via dial-up modem and kernel ppp type. Since I don't have experience with dinamic rules, but want to, reading tutorials stranded me somewhere in the middle. In this moment I need recall of known links to docs about topic. Provider gives new address every time when connected. One machine. Via ppp...
2019 Jan 23
0
[PATCH nbdkit] tests: Add generic ‘requires’ function to testing test prerequisites.
--- tests/functions.sh.in | 17 ++++++++++++++++- tests/test-memory-largest.sh | 8 ++------ tests/test-partition1.sh | 22 ++++------------------ tests/test-partition2.sh | 6 +----- tests/test-pattern-largest.sh | 8 ++------ 5 files changed, 25 insertions(+), 36 deletions(-) diff --git a/tests/functions.sh.in b/tests/functions.sh.in index 35647f7..97afbbf 100644 ---
2019 Jan 23
2
[PATCH nbdkit] tests: Add generic requires function.
I only did a handful of the tests to demonstrate the point. If the patch approach is accepted then I'll do the remainder of the tests in v2. Rich.
2012 Nov 14
1
Howto find out volume topology
Hello, I would like to find out the topology of an existing volume. For example, if I have a distributed replicated volume, what bricks are the replication partners? Fred -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://supercolony.gluster.org/pipermail/gluster-users/attachments/20121114/b203ea91/attachment.html>
2019 Jan 22
0
[PATCH nbdkit v3 2/5] tests: Implement a better nbdkit-partition-filter test.
Test the partition filter against real life partition tables created by sfdisk. --- tests/test-partition.c | 101 ------------------------ README | 2 + tests/Makefile.am | 7 +- tests/test-partition1.sh | 165 +++++++++++++++++++++++++++++++++++++++ 4 files changed, 169 insertions(+), 106 deletions(-) diff --git a/tests/test-partition.c b/tests/test-partition.c
2018 May 08
0
Dinamic variables in loop
Dear Laura, It looks like you want to remove all rows for which each column is NA. You can to that with the code below. na.matrix <- is.na(MyData) all.na.row <- apply(na.matrix, 1, all) MyData[!all.na.row, ] Best regards, ir. Thierry Onkelinx Statisticus / Statistician Vlaamse Overheid / Government of Flanders INSTITUUT VOOR NATUUR- EN BOSONDERZOEK / RESEARCH INSTITUTE FOR NATURE AND
2018 May 08
2
Dinamic variables in loop
Hello, I am a newbie in R and I have a problem. I want this line: newMyData <-MyData[!(is.na(col1)) | !(is.na(col2)) | !(is.na(col3)) | !( is.na(col4)) | !(is.na(col5)),] write in for loop. The number of col[number] may be different from 3 to 8 Is there any ideas? Thank you Laura [[alternative HTML version deleted]]
2010 Jun 14
2
Dovecot 2.0
Hello, Is there any estimate of when it will launch a stable release Dovecot 2.0 ? Thank you very much. Best Regards -- []'s Thiago Henrique Network Administration Digirati Networks K8 Networks
2010 Jul 08
2
Dovecot 2.0 with LMTP
Hello, I'm testing Dovecot 2.0. I plan to use Dovecot 2.0 with thousands of domains per server. My user base is under virtual MySQL. Is there a way to make the LMTP not make query to MySQL for each message delivered ? I'm afraid that the MySQL server does not support the load. Best Regards -- []'s Thiago Henrique Network Administration Digirati Networks K8 Networks
2003 Mar 19
0
Samba and Win2k: Printing from Outlook Express
Hi, we are operating the IT of a small non-profit organization with a Samba server (2.2.5) and roughly 15 Win2k workstations. Everything works fine so far but one single issue: Printing messages from Outlook Express: only the header of the mail is printed, no single line of the body. All the domain users are standard-users (I'm not sure about the correct English wording, may be someone