SF.net SVN: postfixadmin: [362] trunk/backup.php
Brought to you by:
christian_boltz,
gingerdog
From: <chr...@us...> - 2008-05-21 11:22:04
|
Revision: 362 http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=362&view=rev Author: christian_boltz Date: 2008-05-21 04:22:09 -0700 (Wed, 21 May 2008) Log Message: ----------- backup.php: - also backup fetchmail table Modified Paths: -------------- trunk/backup.php Modified: trunk/backup.php =================================================================== --- trunk/backup.php 2008-05-15 06:10:54 UTC (rev 361) +++ trunk/backup.php 2008-05-21 11:22:09 UTC (rev 362) @@ -72,8 +72,18 @@ { fwrite ($fh, $header); - $tables = array('admin','alias','config','domain','domain_admins','log','mailbox','vacation','vacation_notification'); - # TODO: also backup fetchmail table + $tables = array( + 'admin', + 'alias', + 'config', + 'domain', + 'domain_admins', + 'fetchmail', + 'log', + 'mailbox', + 'vacation', + 'vacation_notification' + ); for ($i = 0 ; $i < sizeof ($tables) ; ++$i) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |