Re: Multi-domain POP/IMAP server

2002-02-05 Thread Loren Jordan
Michael,
I have several servers sitting around the country now working with this 
configuration (from previous jobs) with NO problems short of hardware 
failures...

I now use the "unofficial" packages made available by Gerrit Pape for qmail 
and daemontools (I also use djbdns but it's not needed for this example)
The information on how to get/install these packages (and others) are at 
this page http://smarden.org/pape/Debian/

After installing Daemontools and Qmail, install vpopmail available at 
http://inter7.com/freesoftware/  follow the directions carefully!
I use the option of roaming-users so I had to convince vpopmail and qmail 
agree on the location of file allowing "open relay" for the "roaming users"
I have not used the "vchkpw" debian package that looks like it is part of 
the vpopmail suite.

You might want qmailadmin (very good) and vqadmin (I have not used this 
before) for web based administration.

Now you can install courier-imap, you will need to install from source or 
use the debian source package? (I've just used the tgz download) and enable 
"--auth-vchkpw".  This enables the vpopmail authentication module for the 
imap server.  With this module enabled as the only auth module, the imap 
server automagically knows where the users's mail is, as configured in 
vpopmail.

The only problem with this system is the user MUST login with the username 
of "[EMAIL PROTECTED]" so vpopmail knows who to look up the password for.  This 
doesn't seem to be a problem with the newer mail clients outlook, outlook 
express, eudora etc...

Much thanks to Garret for making these packages available for those of us 
that just don't have time anymore to keep up to date on every "source 
installed" package on all of our systems!

Loren Jordan
At 02:50 PM 02/04/2002 -0600, you wrote:
I need a POP & IMAP server that support multiple (virtual) domains on a
single IP address.
Suggestions?
--
 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]
--
Loren Jordan
Network Security Admin
National White Collar Crime Center
Internet Fraud Complaint Center
Phone (304)363-4312 Ext 2011
http://www.nw3c.org
http://www.ifccfbi.gov
mailto:[EMAIL PROTECTED]



Re: Multi-domain POP/IMAP server

2002-02-05 Thread Loren Jordan

Michael,

I have several servers sitting around the country now working with this 
configuration (from previous jobs) with NO problems short of hardware 
failures...

I now use the "unofficial" packages made available by Gerrit Pape for qmail 
and daemontools (I also use djbdns but it's not needed for this example)
The information on how to get/install these packages (and others) are at 
this page http://smarden.org/pape/Debian/

After installing Daemontools and Qmail, install vpopmail available at 
http://inter7.com/freesoftware/  follow the directions carefully!
I use the option of roaming-users so I had to convince vpopmail and qmail 
agree on the location of file allowing "open relay" for the "roaming users"
I have not used the "vchkpw" debian package that looks like it is part of 
the vpopmail suite.

You might want qmailadmin (very good) and vqadmin (I have not used this 
before) for web based administration.

Now you can install courier-imap, you will need to install from source or 
use the debian source package? (I've just used the tgz download) and enable 
"--auth-vchkpw".  This enables the vpopmail authentication module for the 
imap server.  With this module enabled as the only auth module, the imap 
server automagically knows where the users's mail is, as configured in 
vpopmail.

The only problem with this system is the user MUST login with the username 
of "[EMAIL PROTECTED]" so vpopmail knows who to look up the password for.  This 
doesn't seem to be a problem with the newer mail clients outlook, outlook 
express, eudora etc...


Much thanks to Garret for making these packages available for those of us 
that just don't have time anymore to keep up to date on every "source 
installed" package on all of our systems!

Loren Jordan


At 02:50 PM 02/04/2002 -0600, you wrote:
>I need a POP & IMAP server that support multiple (virtual) domains on a
>single IP address.
>
>Suggestions?
>--
>  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]

-- 
Loren Jordan

Network Security Admin
National White Collar Crime Center
Internet Fraud Complaint Center
Phone (304)363-4312 Ext 2011

http://www.nw3c.org
http://www.ifccfbi.gov
mailto:[EMAIL PROTECTED]


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




Re: Multi-domain POP/IMAP server

2002-02-04 Thread Alvin Oga

hi ya

if you were to use sendmail...
( i think it'd work with exim too?? donno )

have fun mailing
alvin
http://www.Linux-1U.net ... 1U stuff for p4/amd toys ...


for virtual domains pop/imap servers...

/etc/mail/local-host-names ( sendmail.cw )
domain_1.com
pop.domain_1.com
mail.domain_1.com

domain_two.com
pop.domain_two.com
mail.domain-two.com

# this is the "real" machine name   
primary.com
pop.primary.com
mail.primary.com


pinging those domain names should have the same ip# if oyu wnat
to use just one server... ( fix your dns till it works right )

/etc/mail/virtusertable
[EMAIL PROTECTED]   webmaster,[EMAIL PROTECTED]
[EMAIL PROTECTED]  webmaster,[EMAIL PROTECTED]
[EMAIL PROTECTED]   webmaster

who can send email thru your server
 ( arriving at the recepeint as coming from [EMAIL PROTECTED] 

/etc/mail/relay-domains
/etc/mail/relay_allow

if you wanna stop some spam... ( the hard way )
/etc/mail/access


-->>
-->> make the new db in /etc/mail && dont forget to restart sendmail
-->>

now setting up pop/imap ( use secure pop3s or imaps instead )
..
standard issue...
...
/etc/hosts.allow
/etc/hosts.deny
..

test it
telnet pop.domain_1.com 110  ( regular pop )
telnet pop.domain_1.com 995  ( might fail - checks protocol )

- use a SSL enable client to do secure pop3/secure imaps
IE, netscape, eudora, etc..etc..
stunnel, ssh, etc...

Secure pop3 ( howto info )

http://www.Linux-Sec.net/Mail/secure_pop3.txt

On Mon, 4 Feb 2002, Michael Merritt wrote:

> I need a POP & IMAP server that support multiple (virtual) domains on a
> single IP address.
> 
> Suggestions?




Re: Multi-domain POP/IMAP server

2002-02-04 Thread Alvin Oga


hi ya

if you were to use sendmail...
( i think it'd work with exim too?? donno )

have fun mailing
alvin
http://www.Linux-1U.net ... 1U stuff for p4/amd toys ...


for virtual domains pop/imap servers...

/etc/mail/local-host-names ( sendmail.cw )
domain_1.com
pop.domain_1.com
mail.domain_1.com

domain_two.com
pop.domain_two.com
mail.domain-two.com

# this is the "real" machine name   
primary.com
pop.primary.com
mail.primary.com


pinging those domain names should have the same ip# if oyu wnat
to use just one server... ( fix your dns till it works right )

/etc/mail/virtusertable
[EMAIL PROTECTED]  webmaster,[EMAIL PROTECTED]
[EMAIL PROTECTED]  webmaster,[EMAIL PROTECTED]
[EMAIL PROTECTED]   webmaster

who can send email thru your server
 ( arriving at the recepeint as coming from [EMAIL PROTECTED] 

/etc/mail/relay-domains
/etc/mail/relay_allow

if you wanna stop some spam... ( the hard way )
/etc/mail/access


-->>
-->> make the new db in /etc/mail && dont forget to restart sendmail
-->>

now setting up pop/imap ( use secure pop3s or imaps instead )
..
standard issue...
...
/etc/hosts.allow
/etc/hosts.deny
..

test it
telnet pop.domain_1.com 110  ( regular pop )
telnet pop.domain_1.com 995  ( might fail - checks protocol )

- use a SSL enable client to do secure pop3/secure imaps
IE, netscape, eudora, etc..etc..
stunnel, ssh, etc...

Secure pop3 ( howto info )

http://www.Linux-Sec.net/Mail/secure_pop3.txt

On Mon, 4 Feb 2002, Michael Merritt wrote:

> I need a POP & IMAP server that support multiple (virtual) domains on a
> single IP address.
> 
> Suggestions?


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




Re: Multi-domain POP/IMAP server

2002-02-04 Thread bibi
le 4/02/02 21:50, Michael Merritt  (by way of Michael Merritt
<[EMAIL PROTECTED]>) à [EMAIL PROTECTED] a écrit :

> I need a POP & IMAP server that support multiple (virtual) domains on a
> single IP address.
> 
> Suggestions?
courier-pop + courier-imap
works like a charme

Ghislain.




Re: Multi-domain POP/IMAP server

2002-02-04 Thread Emile van Bergen
On Mon, 4 Feb 2002, Michael Merritt wrote:

> I need a POP & IMAP server that support multiple (virtual) domains on a
> single IP address.
>
> Suggestions?

I dealt with this using qmail and used a home-grown checkpasswd script
for its POP3 server. That script accepted a full [EMAIL PROTECTED] as the
login and returned the correct maildir based on that.

Very effective. Also, the authentication mechanism using an external
script even allowed me to use a fully virtual setup (using only one unix
uid) and to query a radius box for passwords, but of course your're free
to choose any backend setup you like.

Cheers,


Emile.

--
E-Advies / Emile van Bergen   |   [EMAIL PROTECTED]
tel. +31 (0)70 3906153|   http://www.xs4all.nl/~evbergen/




RE: Multi-domain POP/IMAP server

2002-02-04 Thread Matt Andreko
Qmail with vchkpw
Apt-get install qmail-src ucspi-tcp-src vchkpw
Build-qmail
Build ucspi-tcp


That's what I like


-Original Message-
From: Michael Merritt (by way of Michael Merritt <[EMAIL PROTECTED]>)
[mailto:[EMAIL PROTECTED] 
Sent: Monday, February 04, 2002 3:51 PM
To: debian-isp@lists.debian.org; debian-user@lists.debian.org
Subject: Multi-domain POP/IMAP server

I need a POP & IMAP server that support multiple (virtual) domains on a
single IP address.

Suggestions?
-- 
 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]




Multi-domain POP/IMAP server

2002-02-04 Thread Michael Merritt
I need a POP & IMAP server that support multiple (virtual) domains on a
single IP address.

Suggestions?
-- 
 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: Multi-domain POP/IMAP server

2002-02-04 Thread bibi

le 4/02/02 21:50, Michael Merritt  (by way of Michael Merritt
<[EMAIL PROTECTED]>) à [EMAIL PROTECTED] a écrit :

> I need a POP & IMAP server that support multiple (virtual) domains on a
> single IP address.
> 
> Suggestions?
courier-pop + courier-imap
works like a charme

Ghislain.


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




Re: Multi-domain POP/IMAP server

2002-02-04 Thread Emile van Bergen

On Mon, 4 Feb 2002, Michael Merritt wrote:

> I need a POP & IMAP server that support multiple (virtual) domains on a
> single IP address.
>
> Suggestions?

I dealt with this using qmail and used a home-grown checkpasswd script
for its POP3 server. That script accepted a full user@domain as the
login and returned the correct maildir based on that.

Very effective. Also, the authentication mechanism using an external
script even allowed me to use a fully virtual setup (using only one unix
uid) and to query a radius box for passwords, but of course your're free
to choose any backend setup you like.

Cheers,


Emile.

--
E-Advies / Emile van Bergen   |   [EMAIL PROTECTED]
tel. +31 (0)70 3906153|   http://www.xs4all.nl/~evbergen/


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




RE: Multi-domain POP/IMAP server

2002-02-04 Thread Matt Andreko

Qmail with vchkpw
Apt-get install qmail-src ucspi-tcp-src vchkpw
Build-qmail
Build ucspi-tcp


That's what I like


-Original Message-
From: Michael Merritt (by way of Michael Merritt <[EMAIL PROTECTED]>)
[mailto:[EMAIL PROTECTED]] 
Sent: Monday, February 04, 2002 3:51 PM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Multi-domain POP/IMAP server

I need a POP & IMAP server that support multiple (virtual) domains on a
single IP address.

Suggestions?
-- 
 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]


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




Multi-domain POP/IMAP server

2002-02-04 Thread Michael Merritt

I need a POP & IMAP server that support multiple (virtual) domains on a
single IP address.

Suggestions?
-- 
 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]