Mandi! André Carezia
  In chel di` si favelave...

[can we use phpgw list for this? I think that this app could be, if not
integrated, at least listed as contrib app...]

> It is a correspondence and protocol manager, and it was made for
> medium-sized organizations that need an easy way to keep track of postal
> mail, fax and e-mail that comes in or goes out the organization.

Seems very usefoul, i've tried it and could be a interesting starting
point for my organization in italy.

Before complaining about usefoulness, i've send you some note.

The first are:

        Template Error: filename: file 
/srv/phpgroupware/correspondence/templates/default/config.tpl does not exist. 
Halted.

seems a missing file on tarball, simply.


The second are postgres compatibility; seems that two really little
patch do the job, but i've to test better. ;)

The first are totally arbitrary, the problem came from postgres where
'user' is a reserved word; if you choose a different field name, i wil
simply reinstall the app... i'm only in test phase.

The second came from my little SQL knowledge, i don't know how is
better to do a select with an ever-true where statement instead of
doing a select with no where statement at all. ;)
But in any case a 'where 1' statement are not liked by postgres. ;)

Attached.


-- 
dott. Marco Gaiarin                                 GNUPG Key ID: 240A3D66
  Associazione ``La Nostra Famiglia''                http://www.sv.lnf.it/
  Polo FVG  -  Via della Bontà, 7 - 33078  -  San Vito al Tagliamento (PN)
  marco.gaiarin(at)sv.lnf.it      tel +39-0434-842711  fax +39-0434-842797
--- tables_current.inc.php.orig 2006-02-27 16:12:05.948947000 +0100
+++ tables_current.inc.php      2006-02-27 16:12:05.948947000 +0100
@@ -53,7 +53,7 @@
                   'doc_id' => array('type' => 'int','precision' => 
'8','nullable' => False),
                   'date' => array('type' => 'int','precision' => 
'8','nullable' => True),
                   'fw_user' => array('type' => 'varchar', 'precision' => '25'),
-                  'user' => array('type' => 'int', 'precision' => 
'8','nullable' => False),
+                  'c_user' => array('type' => 'int', 'precision' => 
'8','nullable' => False),
                   'notes' => array('type' => 'text')
                   ),
             'pk' => array('hist_id'),
--- class.types.inc.php.orig    2006-02-27 16:27:41.998947000 +0100
+++ class.types.inc.php 2006-02-27 16:27:41.998947000 +0100
@@ -150,7 +150,7 @@
     
     $ordermethod = " ORDER BY $order $sort";
 
-    $sql = "SELECT * from phpgw_correspondence_types WHERE 1";
+    $sql = "SELECT * from phpgw_correspondence_types";
     $this->db->query($sql,__LINE__,__FILE__);
     $total = $this->db->num_rows();
     
_______________________________________________
Phpgroupware-users mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/phpgroupware-users

Reply via email to