[vhffs-dev] [svn] commit: r140 - /trunk/vhffs-robots/src/create_mail.pl |
[ Thread Index |
Date Index
| More vhffs.org/vhffs-dev Archives
]
Author: soda
Date: Mon Jan 23 19:56:50 2006
New Revision: 140
Log:
Fix bug on the create_mails.pl robot
Modified:
trunk/vhffs-robots/src/create_mail.pl
Modified: trunk/vhffs-robots/src/create_mail.pl
==============================================================================
--- trunk/vhffs-robots/src/create_mail.pl (original)
+++ trunk/vhffs-robots/src/create_mail.pl Mon Jan 23 19:56:50 2006
@@ -16,9 +16,9 @@
foreach $m ( @{$mails} )
{
- $mail->add_history( "Robots will activated this mail domain" );
- $mail->set_status( Vhffs::Constants::ACTIVATED );
- if( $mail->commit > 0 )
+ $m->add_history( "Robots will activated this mail domain" );
+ $m->set_status( Vhffs::Constants::ACTIVATED );
+ if( $m->commit > 0 )
{
Vhffs::Robots::vhffs_log( sprintf( "Create mail domain %s" , $m->get_domain ) );
}