NAME

Email - vuser email support extention

DESCRIPTION

VUser::Email is an extention to vuser that allows on to manage email accounts. VUser::Email is not meant to be used by itself but, instead, registers the basic keywords, actions and options that other VUser::Email::* extensions will use. Other options may be added by server specific extensions.

SAMPLE CONFIGURATION

 [Extension Email]
 # The location of the files which are copies into a brand new home dir
 skeldir=/usr/local/etc/courier/skel
 
 # Set to 1 to force user names to lower case
 lc_user = 0
 
 # the domain to use if the account doesn't have one
 default domain=example.com
 
 # Given $user and $domain, where will the user's home directory be located?
 # This may be a valid perl expression.
 
 # PerlStalker's scheme:
 #domaindir="/var/mail/virtual/$domain"
 #userhomedir="/var/mail/virtual/$domain/".substr($user, 0, 2)."/$user"
 
 # stew's scheme:
 domaindir="/home/virtual/$domain"
 userhomedir="/home/virtual/$domain/var/mail/$user"

 # Maildir directory name
 maildir=Maildir

 # User and group name of owner of the vittual user's directories
 virtual user=vmail
 virtual group=vmail
 
 # Default quota in bytes
 default quota=20000000

AUTHORS

Randy Smith <perlstalker@vuser.org>

LICENSE

 This file is part of vuser.
 
 vuser is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.
 
 vuser is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with vuser; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA