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

Pages: [1]
1
Ideas / Re: Suggestion for reminders
« on: August 03, 2012, 06:10:57 am »
+1

I agree: per-user reminder is better

2
Ideas / Per-User reminder
« on: August 03, 2012, 06:09:55 am »
As said in " Suggestion for reminders" post , I think a per-user remainder will be better: people who assign a task would be notified only on completed status or a postponement.

3
Feng Office 2 / Re: Set task due time
« on: March 22, 2012, 11:03:54 am »
Is it possible I saw this feature in RC version?

4
Feng Office 2 / Set task due time
« on: March 22, 2012, 08:01:22 am »
Hi everybody!

I know I can set due date to a task, but is there a way to set due time?

5
Feng Office 2 / Re: Email Reminders don't work (2.0RC)
« on: March 15, 2012, 04:06:59 am »
I'm sorry but I don't use fengoffice email function, so I don't know if it works.

6
Feng Office 2 / [SOLVED] Re: Email Reminders don't work (2.0RC)
« on: March 13, 2012, 04:41:38 am »
Problem Solved

I'm really sorry, I missed to create a cron job as explained here in Fengoffice Documentations (see "How to set up Feng Office")
So, I added to /etc/crontab

Code: [Select]
# Fengoffice notifications
*/1 *   * * *   www-data        php     /var/www/fengoffice/cron.php

7
You can try request an helping hand sending an email to author of ldap.config.php Luca Corbo (luca.corbo <_at_> 2bopen <_dot_> org)

8
I don't know about SSL/TLS but to get LDAP authentication works properly, I had to add :

Code: [Select]
function isValidPasswordLdap($user, $password, $config) {

                // Connecting using the configuration:
                require_once "Net/LDAP2.php";

                $ldap = Net_LDAP2::connect($config);

                // Testing for connection error
                if (PEAR::isError($ldap)) {
                        return false;
                }
                $filter = Net_LDAP2_Filter::create($config['uid'], 'equals', $user);
                $search = $ldap->search(null, $filter, null);

                if (Net_LDAP2::isError($search)) {
                        return false;
                }

                if ($search->count() != 1) {
                        return false;
                }

                // User exists so we may rebind to authenticate the password
                $entries = $search->entries();
                $bind_result = $ldap->bind($entries[0]->dn(), $password);

                if (PEAR::isError($bind_result)) {
                        return false;
                }
                return true;
        } // isValidPassword

into application/models/contacts/Contact.class.php of 2.0RC source code.

can you confirm this issue?

9
Feng Office 2 / Email Reminders don't work (2.0RC)
« on: March 12, 2012, 11:54:50 am »
Hello everyone, I can't get reminders work.
After creating a task and add email reminder, I'm still not receiving any email.

Test mail settings tool works great.

Any ideas?

10
Announcements / Re: Feng Office 2.0 BETA 3 has been released!
« on: February 14, 2012, 04:12:59 am »
I think you are off topic

11
Feng Office 2 / Re: FENG 2.0 RELEASE¿
« on: February 08, 2012, 05:48:16 am »
I'm alos interested in finale release date...

12
Announcements / Re: Feng Office 2.0 BETA 3 has been released!
« on: February 08, 2012, 05:11:18 am »
Any ideas when 2.0 stable will be released?

Pages: [1]