SF.net SVN: postfixadmin:[1074] branches/postfixadmin-2.3
Brought to you by:
christian_boltz,
gingerdog
From: <chr...@us...> - 2011-06-23 20:53:15
|
Revision: 1074 http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=1074&view=rev Author: christian_boltz Date: 2011-06-23 20:53:07 +0000 (Thu, 23 Jun 2011) Log Message: ----------- vacation.pl: - (really) log to "mail" syslog facility reported by Johan Meiring (jmeiring) in http://sourceforge.net/tracker/index.php?func=detail&aid=3086890&group_id=191583&atid=937964 This is a backport of r1073 to the SVN branch. Modified Paths: -------------- branches/postfixadmin-2.3/CHANGELOG.TXT branches/postfixadmin-2.3/VIRTUAL_VACATION/vacation.pl Modified: branches/postfixadmin-2.3/CHANGELOG.TXT =================================================================== --- branches/postfixadmin-2.3/CHANGELOG.TXT 2011-06-20 12:51:02 UTC (rev 1073) +++ branches/postfixadmin-2.3/CHANGELOG.TXT 2011-06-23 20:53:07 UTC (rev 1074) @@ -18,6 +18,7 @@ - list-domain: fix SELECT query to work with PgSQL even when using custom fields - create-domain: force domain name to lowercase to avoid problems with PgSQL foreign keys + - fix vacation.pl to log to "mail" syslog facility Version 2.3.3 - 2011/03/14 - SVN r1010 (postfixadmin-2.3 branch) --------------------------------------------------------------- Modified: branches/postfixadmin-2.3/VIRTUAL_VACATION/vacation.pl =================================================================== --- branches/postfixadmin-2.3/VIRTUAL_VACATION/vacation.pl 2011-06-20 12:51:02 UTC (rev 1073) +++ branches/postfixadmin-2.3/VIRTUAL_VACATION/vacation.pl 2011-06-23 20:53:07 UTC (rev 1074) @@ -213,7 +213,7 @@ if($syslog == 1) { my $syslog_appender = Log::Log4perl::Appender->new( 'Log::Dispatch::Syslog', - Facility => 'mail', + facility => 'mail', ); $logger->add_appender($syslog_appender); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |