Author Topic: Vacation + Vpopmail  (Read 5262 times)

Offline viviane.gomes@xpi.com.br

  • Newbie
  • *
  • Posts: 1
Vacation + Vpopmail
« on: September 30, 2010, 05:49:29 PM »
I installed the plugin VACATION Roundcube, but not this working, because my tables in the SQL database has vpopmail different from those used in columns config.inc.php file.
How do you make the plugin work with vpopmail??

My tables in vpopmail db;

mysql> show tables;
+-----------------------+
| Tables_in_vpopmail    |
+-----------------------+
| dir_control           |
| lastauth              |
| vacation              |
| vacation_notification |
| valias                |
| xpcorretora_com_br    |
| xpnews_com_br         |
+-----------------------+
7 rows in set (0.00 sec)

mysql> desc valias;
+-------------+----------+------+-----+---------+-------+
| Field       | Type     | Null | Key | Default | Extra |
+-------------+----------+------+-----+---------+-------+
| alias       | char(32) | NO   | MUL | NULL    |       |
| domain      | char(96) | NO   |     | NULL    |       |
| valias_line | text     | NO   |     | NULL    |       |
+-------------+----------+------+-----+---------+-------+
3 rows in set (0.00 sec)

mysql> desc vacation;
+---------+--------------+------+-----+---------------------+-------+
| Field   | Type         | Null | Key | Default             | Extra |
+---------+--------------+------+-----+---------------------+-------+
| email   | varchar(255) | NO   | PRI | NULL                |       |
| subject | varchar(255) | NO   |     | NULL                |       |
| body    | text         | NO   |     | NULL                |       |
| cache   | text         | NO   |     | NULL                |       |
| domain  | varchar(255) | NO   |     | NULL                |       |
| created | datetime     | NO   |     | 0000-00-00 00:00:00 |       |
| active  | tinyint(1)   | NO   |     | 1                   |       |
+---------+--------------+------+-----+---------------------+-------+
7 rows in set (0.00 sec)

mysql> desc vacation_notification;
+-------------+--------------+------+-----+-------------------+-------+
| Field       | Type         | Null | Key | Default           | Extra |
+-------------+--------------+------+-----+-------------------+-------+
| on_vacation | varchar(255) | NO   | PRI | NULL              |       |
| notified    | varchar(255) | NO   | PRI | NULL              |       |
| notified_at | timestamp    | NO   |     | CURRENT_TIMESTAMP |       |
+-------------+--------------+------+-----+-------------------+-------+
3 rows in set (0.00 sec)


Thank you,   :D