Re: exim maildir

2002-02-06 Thread Ramin Motakef
Michael Merritt <[EMAIL PROTECTED]> writes:


> What do I need to do for Courier to authenticate multiple domain users?  How 
> should their user accounts be setup on the system?  IE, how will courier 
> distinguish between [EMAIL PROTECTED] and [EMAIL PROTECTED]
> 
> -- 
>  Michael MerrittO2/CO2 Conversion Specialist [w]

I use the full email-address as login name for IMAP/POP3. The accounts
are stored in LDAP, together with the infos for exim. An easier way
(for a small numer of email accounts) might be authuserdb

Ramin




Re: exim maildir

2002-02-06 Thread Ramin Motakef

Michael Merritt <[EMAIL PROTECTED]> writes:


> What do I need to do for Courier to authenticate multiple domain users?  How 
> should their user accounts be setup on the system?  IE, how will courier 
> distinguish between [EMAIL PROTECTED] and [EMAIL PROTECTED]?
> 
> -- 
>  Michael MerrittO2/CO2 Conversion Specialist [w]

I use the full email-address as login name for IMAP/POP3. The accounts
are stored in LDAP, together with the infos for exim. An easier way
(for a small numer of email accounts) might be authuserdb

Ramin


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: exim maildir

2002-02-05 Thread Michael Merritt
On Tuesday 05 February 2002 02:48 am, Ramin Motakef wrote:
> I use this transport configuration for courier with virtual domains:
>
> virtual_localdelivery:
>   driver = appendfile
>   create_directory = true
>   directory_mode = 700
>   directory = /var/spool/virtual/${domain}/${local_part}/
>   headers_remove = "Bcc"
>   user = vmail
>   group = vmail
>   maildir_format
>   mode = 660

Ramin,

This helps.  Thank you.  I'd like to pick your brain a little more, and show 
my ignorance.

What do I need to do for Courier to authenticate multiple domain users?  How 
should their user accounts be setup on the system?  IE, how will courier 
distinguish between [EMAIL PROTECTED] and [EMAIL PROTECTED]

-- 
 Michael MerrittO2/CO2 Conversion Specialist [w]

 [EMAIL PROTECTED] | www.miklm.com | (931) 205-1392 | AIM/MSN miklm

 "Piracy is not a technological issue. It's a behavior issue."   
   --Steve Jobs




Re: exim maildir

2002-02-05 Thread Ramin Motakef
Michael Merritt <[EMAIL PROTECTED]> writes:

> It seems that exim is by default set up to deliver to standard mbox format.  
> What steps do I need to complete to make it use Maildir so I can use 
> Courier-IMAP and Courier-POP with exim?  Is there a how-to or similar 
> somewhere?  If not, I'll write one once I get this figured out.  There seems 
> to be a dearth of information online on the subject in an understandable 
> format.
> 
> Thanks,
> -- 

I use this transport configuration for courier with virtual domains:


virtual_localdelivery:
  driver = appendfile
  create_directory = true
  directory_mode = 700
  directory = /var/spool/virtual/${domain}/${local_part}/
  headers_remove = "Bcc"
  user = vmail
  group = vmail
  maildir_format
  mode = 660

HTH
Ramin




Re: exim maildir

2002-02-05 Thread Michael Merritt

On Tuesday 05 February 2002 02:48 am, Ramin Motakef wrote:
> I use this transport configuration for courier with virtual domains:
>
> virtual_localdelivery:
>   driver = appendfile
>   create_directory = true
>   directory_mode = 700
>   directory = /var/spool/virtual/${domain}/${local_part}/
>   headers_remove = "Bcc"
>   user = vmail
>   group = vmail
>   maildir_format
>   mode = 660

Ramin,

This helps.  Thank you.  I'd like to pick your brain a little more, and show 
my ignorance.

What do I need to do for Courier to authenticate multiple domain users?  How 
should their user accounts be setup on the system?  IE, how will courier 
distinguish between [EMAIL PROTECTED] and [EMAIL PROTECTED]?

-- 
 Michael MerrittO2/CO2 Conversion Specialist [w]

 [EMAIL PROTECTED] | www.miklm.com | (931) 205-1392 | AIM/MSN miklm

 "Piracy is not a technological issue. It's a behavior issue."   
   --Steve Jobs


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: exim maildir

2002-02-05 Thread Ramin Motakef

Michael Merritt <[EMAIL PROTECTED]> writes:

> It seems that exim is by default set up to deliver to standard mbox format.  
> What steps do I need to complete to make it use Maildir so I can use 
> Courier-IMAP and Courier-POP with exim?  Is there a how-to or similar 
> somewhere?  If not, I'll write one once I get this figured out.  There seems 
> to be a dearth of information online on the subject in an understandable 
> format.
> 
> Thanks,
> -- 

I use this transport configuration for courier with virtual domains:


virtual_localdelivery:
  driver = appendfile
  create_directory = true
  directory_mode = 700
  directory = /var/spool/virtual/${domain}/${local_part}/
  headers_remove = "Bcc"
  user = vmail
  group = vmail
  maildir_format
  mode = 660

HTH
Ramin


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: exim maildir

2002-02-04 Thread Brian Nelson
Michael Merritt <[EMAIL PROTECTED]> writes:

> It seems that exim is by default set up to deliver to standard mbox format.  
> What steps do I need to complete to make it use Maildir so I can use 
> Courier-IMAP and Courier-POP with exim?  Is there a how-to or similar 
> somewhere?  If not, I'll write one once I get this figured out.  There seems 
> to be a dearth of information online on the subject in an understandable 
> format.

There aren't any howto's that I know of.  By default, exim will use
procmail as the MDA if a ~/.procmailrc exists.  So, if you set up your
~/.procmailrc to deliver to a maildir, your mail will end up in a
maildir.  Exim can deliver to a maildir natively as well, though that
would require modifications to /etc/exim/exim.conf .

-- 
Brian Nelson <[EMAIL PROTECTED]>




Re: exim maildir

2002-02-04 Thread Brian Nelson

Michael Merritt <[EMAIL PROTECTED]> writes:

> It seems that exim is by default set up to deliver to standard mbox format.  
> What steps do I need to complete to make it use Maildir so I can use 
> Courier-IMAP and Courier-POP with exim?  Is there a how-to or similar 
> somewhere?  If not, I'll write one once I get this figured out.  There seems 
> to be a dearth of information online on the subject in an understandable 
> format.

There aren't any howto's that I know of.  By default, exim will use
procmail as the MDA if a ~/.procmailrc exists.  So, if you set up your
~/.procmailrc to deliver to a maildir, your mail will end up in a
maildir.  Exim can deliver to a maildir natively as well, though that
would require modifications to /etc/exim/exim.conf .

-- 
Brian Nelson <[EMAIL PROTECTED]>


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]