Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - heru

Pages: [1]
1
Installation and Upgrades / Re: Virtual Domain web server howto
« on: May 06, 2009, 05:36:59 am »
Install ebox-webserver module, create a virtual host from the web UI, save changes and after that you may add all configuration details you want under the following directory /etc/apache2/sites-available/user-ebox-<vhostname> and the data to include must be under /var/www/<vhost>.

Best regards,

what kind of configuration details should we add to /etc/apache2/sites-available/user-ebox-<vhostname>  ?

could u please explain in detail
i/m realy confuse about this virtual domain


thanks

:)

2
thanks for this script, but this script does not create email for my user, so i edit this script n its succes

tq bro

Code: [Select]
#!/usr/bin/perl

use strict;
use warnings;

use EBox;
use EBox::Global;
use EBox::MailUserLdap;

my $vdomain = 'example.com';

EBox::init();
my $usersModule = EBox::Global->modInstance('users');

my $mailUsers =  EBox::MailUserLdap->new();

my @users = ();
open(my $USERS,"users");
while(my $line = <$USERS>) {
   chomp ($line);
   my $user;
   my ($username,$fullname,$password, $group) = split(',',$line);
   $user->{'user'} = $username;
   $user->{'fullname'} = $fullname;
   $user->{'password'} = $password;
   $usersModule->addUser($user, 0);
   if ( defined( $group ) ) {
       unless ( $usersModule->groupExists($group) ) {
           $usersModule->addGroup($group, '', 0);
       }
       $usersModule->addUserToGroup($username, $group);
   }
   $mailUsers->setUserAccount($username, $username, $vdomain);
}
close($USERS);

1;

3
i have solved this problem my following instruction here http://www.linuxmail.info/squirrelmail-ldap-change-password-howto/

tq all :)

4
hai

i'm newbie in ebox n im trying to change ldap user password using squirrelmail

i already try change_ldappass plugin from squirrelmail, but i just ended confuses  :( how to configure this plugin


help me please


TQ

5
Installation and Upgrades / Re: How to create multiple users accounts?
« on: February 24, 2009, 04:08:50 am »
hallo
im newbie in eBOX n i just installed ebox on my computer
how to edit this script so we can create email address to each user


TQ

Pages: [1]