[vchkpw] DMZ Inisde POP3 Webmail setup

2008-03-06 Thread Krish
Dear all,

I have a mail server on the DMZ I forward my mails to
an internal server using smtproutes I am having Pix
firewall. Question I have is;
1. How will users connect when they want to check
their mails from the web? 
2. How will mails get downloaded using POP3 when the
user is a remote user?

Must I open holes inside the firewall to allow direct
access inside for webmail and POP3 ? Please advice
best setup. Also, kindly let me know the exact usage
of POP3 on port 995 and smpt ssl. 
Thanks 


  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs

!DSPAM:47cfc226120506761329073!



Re: [vchkpw] Set properly dir hashing for one big domain

2008-03-06 Thread Alessio Cecchi
Il Thursday 06 March 2008 01:06:07 Ken Jones ha scritto:
 Alessio Cecchi wrote:
  Hello,
 
  I have a dedicated server to registration e-mail free only. Every day
  there are about 250 new users.
 
  I believe that the default setting for hashing vpopmail directory is not
  optimal for this kind of service (make a new dir every 50 new accounts).
 
  What do you think?
 
  Can i improve it?

 Check your .h files of the vpopmail source.
 I have:
 #define MAX_USERS_PER_LEVEL 100

 Meaning 100 users per directory.

 The optimal number of subdirectories was discussed on
 the vpopmail list back in 1998 or 1998.
 I don't remember who did the research but they
 found a maximum of 150 to 200 directories provided
 the most efficient processing.

 The bigdir code tries to maintain this level by creating
 at most 100 user accounts per directory plus the subdirectory
 structure using 0-9,a-z,A-Z (10 + 26 + 26 = 62).

 So in any directory there would be a maximum of 162 directories,
 fits within the recommened 150 to 200 limit.
 With three levels deep of sub directories vpopmail would support
 some where around 20 million accounts, which seemed reasonable.

 That was the basic behind the bigdir code.

 It would probably be worth while to re-investigate the 150-200
 directory limit with today's current file system software.

 Hope that helps,
 Ken Jones

Ken thanks for your response,

i will increase it to 100. Can i edit it and rebuild vpopmail with new setting 
without problems on the current installation? 

Ciao
-- 
Alessio Cecchi is:
@ ILS - http://www.linux.it/~alessice/
Assistenza Sistemi GNU/Linux - http://www.cecchi.biz/
@ PLUG - ex-Presidente, adesso senatore a vita, http://www.prato.linux.it
@ LOLUG - neo-Socio http://www.lolug.net

!DSPAM:47cfc1b4120501028520180!



Re: [vchkpw] Set properly dir hashing for one big domain

2008-03-06 Thread Ken Jones

Alessio Cecchi wrote:

Il Thursday 06 March 2008 01:06:07 Ken Jones ha scritto:

Alessio Cecchi wrote:

Hello,

I have a dedicated server to registration e-mail free only. Every day
there are about 250 new users.

I believe that the default setting for hashing vpopmail directory is not
optimal for this kind of service (make a new dir every 50 new accounts).

What do you think?

Can i improve it?

Check your .h files of the vpopmail source.
I have:
#define MAX_USERS_PER_LEVEL 100

Meaning 100 users per directory.

The optimal number of subdirectories was discussed on
the vpopmail list back in 1998 or 1998.
I don't remember who did the research but they
found a maximum of 150 to 200 directories provided
the most efficient processing.

The bigdir code tries to maintain this level by creating
at most 100 user accounts per directory plus the subdirectory
structure using 0-9,a-z,A-Z (10 + 26 + 26 = 62).

So in any directory there would be a maximum of 162 directories,
fits within the recommened 150 to 200 limit.
With three levels deep of sub directories vpopmail would support
some where around 20 million accounts, which seemed reasonable.

That was the basic behind the bigdir code.

It would probably be worth while to re-investigate the 150-200
directory limit with today's current file system software.

Hope that helps,
Ken Jones


Ken thanks for your response,

i will increase it to 100. Can i edit it and rebuild vpopmail with new setting 
without problems on the current installation? 


Hi Alessio,

Making that change should work fine with out any problems.
Be sure to do a make clean before recompiling just
in case the Makefile does not have all the dependencies set up.
After recompiling I would run some tests with a test domain
adding more than 300 accounts to verify if it is acting the
way you want.

If the tests work it should be fine to put into production.

The directory hashing code should not care if
MAX_USERS_PER_LEVEL is changed since it is only checked
when creating a new account.
grep MAX_USERS bigdir.c
for details.

By the way, is your source code set to 100 or 50 for
MAX_USERS_PER_LEVEL. I'm interested to know if there
are differences in any publicly released versions.

Thanks,
Ken