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 - thiagopredebon

Pages: [1]
1
Email and Groupware / Re: how to Change Webmail url on zentyal 4.2?
« on: October 27, 2017, 12:13:02 am »
have you found a solution ? I am having the same problem.

2
Installation and Upgrades / Re: sogo-activesync package
« on: October 14, 2014, 07:14:55 pm »
Hi,

I managed to get everything working on Ipod - emails, contacts, calendar using sogo-activesync.

Any special configuration you had make?

No, there is no special configuration.
Create an exchange account in IOS and when it says that the account could not be verified, just save the settings You have  made. After saving the account, modify it and in Advanced settings, disable SSL.
In all accounts settings check if PUSH is enabled.

this way worked for me. but wihtout ssl that means less security ? and no encryption ?  thanks

3
Installation and Upgrades / Re: sogo-activesync package
« on: October 14, 2014, 12:42:32 am »
followed your easy instructions. but I cant get it to work on IOS
is there a port on my firewall that I should open for this purpose ?

thank you,

4
Installation and Upgrades / openchange webmail change password option ?
« on: October 12, 2014, 05:37:01 pm »
Is there a way that users can change theyr password on the openchange webmail interface ?

5
and the script to bulk import into 3.2:

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

use strict;
use warnings;

use EBox;
use EBox::Users::User;

use Data::Dumper;

EBox::init();

my $parent = EBox::Users::User->defaultContainer(1);

while (<>) {
    chomp;
    my ($username, $password, $uid, $gid, $first, $last, $full, $email) = split(':');

    my $userObj = EBox::Users::User->create(
        uid => $username,
        password => $password,
        uidNumber => $uid,
        fullname => $full,
        givenname => $first,
        surname   => $last,
        description => 'Auto imported',
        mail => $email,
        parent => $parent
    );
}

1;

Hope this is of some use to folks trying to do something similar to me.

-Bob
[/quote]

Need Help adding group name on the importing code. can you help me ? zentyal 3.4

Pages: [1]