Virtual domains.

2001-07-19 Thread Devdas Bhagat
I'm working on a patch to suport virtual domains. The basic idea is: Instead of enforcing the user.username mailbox, I am moving to a domain.username mailbox. The user logs in with a user@domain string which is then mapped to a domain.user mailbox. However, at many places, the user. string is

Re: IMAP-only Migration tools?

2001-07-19 Thread john . hearns
Jules Agee wrote: 2) write a Perl script from scratch to do the same thing. I'm OK at Perl, so I know I could do this, but I think it might take me more time than I have. Jules, if you know Perl then go the Perl route. I found it relatively easy to write a Perl program which calls the

cyrus-imapd-2.0.14 compile error

2001-07-19 Thread Christoph Krempe
Tring to compile cyrus-imapd-2.0.14 under SuSe-Linux 7.0 with ./configure --with-pwcheck=/var/pwcheck\ --with-pwcheck_method=shadow\ --with-dbdir=/usr/local/BerkeleyDB.3.2 make depend make all CFLAGS=-O I get the error message: make[1]: Entering directory

cyrus-imapd-2.0.14 + SSL

2001-07-19 Thread Christoph Krempe
Hi, I compiled cyrus-imap with ssl-Support. Starting imapd -s via /etc/cyrus.conf: # UNIX sockets start with a slash and are put into /var/imap/sockets SERVICES { # add or remove based on preferences imap cmd=imapd listen=imap prefork=5 imaps cmd=imapd -s listen=imaps

Re: cyrus-imapd-2.0.14 compile error

2001-07-19 Thread Christoph Krempe
On Thu, 19 Jul 2001 12:29:07 +0200 Christoph Krempe [EMAIL PROTECTED] wrote: Tring to compile cyrus-imapd-2.0.14 under SuSe-Linux 7.0 with ./configure --with-pwcheck=/var/pwcheck\ --with-pwcheck_method=shadow\ --with-dbdir=/usr/local/BerkeleyDB.3.2 make depend make all CFLAGS=-O

Re: cyrus-imapd-2.0.14 compile error

2001-07-19 Thread Wolfgang Schaefer
hi christoph, i had the save problem ! i think i remember that tcl was not installed ?! does anybody agree me? regards wolfgang Christoph Krempe wrote: Tring to compile cyrus-imapd-2.0.14 under SuSe-Linux 7.0 with ./configure --with-pwcheck=/var/pwcheck\ --with-pwcheck_method=shadow\

Re: cyrus-imapd-2.0.14 compile error

2001-07-19 Thread Christoph Krempe
On Thu, 19 Jul 2001 14:04:56 +0200 Wolfgang Schaefer [EMAIL PROTECTED] wrote: hi christoph, i had the save problem ! i think i remember that tcl was not installed ?! does anybody agree me? regards wolfgang tcl is rigth there! Gruß Ch. Krempe

Re: Virtual domains.

2001-07-19 Thread Kevin J. Menard, Jr.
Hey Devdas, Thursday, July 19, 2001, 4:48:19 AM, you wrote: DB I'm working on a patch to suport virtual domains. DB The basic idea is: DB Instead of enforcing the user.username mailbox, I am moving to a DB domain.username mailbox. The user logs in with a user@domain string DB which is then

Re: cyrus-imapd-2.0.14 compile error

2001-07-19 Thread Kevin J. Menard, Jr.
Hey Christoph, Thursday, July 19, 2001, 6:29:07 AM, you wrote: CK Tring to compile cyrus-imapd-2.0.14 under SuSe-Linux 7.0 with CK ./configure --with-pwcheck=/var/pwcheck\ CK --with-pwcheck_method=shadow\ CK --with-dbdir=/usr/local/BerkeleyDB.3.2 CK make depend CK make all CFLAGS=-O CK I

Re: Virtual domains.

2001-07-19 Thread Devdas Bhagat
On Thu, 19 Jul 2001, Kevin J. Menard, Jr. spewed into the ether: snip Pretty cool. I presume you're building this on top of the HIERSEP codebase so that [EMAIL PROTECTED] and [EMAIL PROTECTED] have different prefixes? Not yet. DB However, at many places, the user. string is hardcoded. Can

Re: Virtual domains.

2001-07-19 Thread Christopher Riordan
One downfall is I run seperate domains same domain name different TLD. and they are ran by different people, without the TLD we would get conflicting emails. Chris Riordan - Original Message - From: Devdas Bhagat [EMAIL PROTECTED] To: Kevin J. Menard, Jr. [EMAIL PROTECTED] Cc: [EMAIL

Re: Vacation Sieve

2001-07-19 Thread Shelley Waltz
It turns out that Sieve is case sensitive regarding the addresses specified. { Shelley Waltz Center for Advanced Biotechnology and Medicine UMDNJ/Rutgers University 679 Hoes Lane Piscataway, NJ 08854-5638 phone: (732) 235-3346 }; On Mon, 16 Jul 2001, Shelley Waltz wrote: I havbe

Re: Virtual domains.

2001-07-19 Thread Michael Fair
It doesn't. Thats the point. Currently the disk structure enforces a structure like user.username. I am changing this to domain.username (Not a TLD, just the first part. So andrew.cmu.edu will require user@andrew to login.) Please do not drop the .user. portion of the heirarchy unless you

Re: Virtual domains.

2001-07-19 Thread Ken Murchison
I haven't needed virtual domain support, and so I haven't thought about it much, but my first reaction is that simply changing the 'user.' prefix to 'domain.' is either going to be insufficient or will become a hack. First off, I applaud the effort. I know that many people would like to see

Re: Vacation Sieve

2001-07-19 Thread Lawrence Greenfield
It should be case sensitive for the stuff on the left side of the @, and case-insensitive for the stuff on the right side of the @. Is this not the case? Larry Date: Thu, 19 Jul 2001 14:02:23 -0400 From: Shelley Waltz [EMAIL PROTECTED] It turns out that Sieve is case sensitive

Re[2]: Virtual domains.

2001-07-19 Thread Kevin J. Menard, Jr.
Hey Christopher, Thursday, July 19, 2001, 1:14:03 PM, you wrote: CR One downfall is I run seperate domains same domain name different TLD. and CR they are ran by different people, without the TLD we would get conflicting CR emails. This is more or less the point I was bringing up before. I

Re: Sendmail - Cyrus IMAP Server - Port 25?

2001-07-19 Thread Matt Prigge
at a mailhub and deliver to the backend IMAP Server. However, the mailhub is unable to connect to the IMAP server on Port 25. Obviously, when sendmail is started on the IMAP Server, it doesn't listen on Port 25. Why? What am I missing here? Is there a define method/configuration to support

Re: Virtual domains.

2001-07-19 Thread Joel M. Baldwin
My resolution to this was to encode the username and domainname into the Cyrus username such that [EMAIL PROTECTED] turns into the Cyrus mailbox user.johnsmith__somedomaincom The disk storage turns into SPOOLROOT/user/somedomaincom/j/johnsmith This isn't in production yet, although the testing

RE: Sendmail - Cyrus IMAP Server - Port 25?

2001-07-19 Thread OCNS Consulting
Matt: Astute observation! Sendmail is started by the SYS5 INIT script shipped with RH 7.1. The start command is conditional and dependant upon two variables - DAEMON and QUEUE. Both of which are set in the config file - /etc/sysconfig /sendmail. For some reason this file was missing on my IMAP

various problems -- semi urgent.

2001-07-19 Thread Max Kalika
I have a linux box with ~700 accounts running sendmail 8.11.4 and cyrus imapd 2.0.15. This is a production machine. I have two strange problems. 1) deliver hangs for two people. I tried to reconstruct the mailboxes (using the cyrus user of course) and that hung two. Running reconstruct via