
# UserDir: The name of the directory which is appended onto a user's home
# directory if a ~user request is recieved.
{ 
    my %conf;
    tie %conf, 'esmith::config';

    (defined($conf{'UserPublicWeb'}) && ($conf{'UserPublicWeb'} eq "on")) 
        ? "UserDir home/public_html"
        : "#UserDir home/public_html"
}

