etc_aliases_restore.pl
You've lost /etc/aliases and need it back tool.

Philip Mikal, Partner & Co-Founder

Did you blow out Sendmail's /etc/aliases? Where did it go? Restore from the aliases.db file with this handy and simple script.

./etc_aliases_restore.pl > /etc/aliases


use strict;
use warnings;
use DB_File;

our (%h, $k, $v);

my $db = "/etc/mail/aliases.db";

tie %h, "DB_File", 
	$db, 
	O_RDWR|O_CREAT, 
	0666, 
	$DB_HASH or die 
	"Can't open $db: $!";

while (($k, $v) = each %h) { 
	chop($k); 
	chop($v); 
	print "$k: $v\n" 
}

untie %h;

Open Source Consulting's project-based work is led by Philip Mikal and Tony Hansmann. Their team can develop and maintain Open Source solutions for any business need. Project-based work is billed hourly and is perfect for short to mid-term requirements.

Common Customer Projects:

  • Linux server administration
  • Web application maintenance
  • Build, version control and release management systems for web sites
  • Database administration
  • Project/issue request tracking
  • E-Commerce
  • Custom Perl programming
We're confident in delivering high-quality solutions by following a full software development lifecycle. Contact us today!

Rates
1 - 90 days90 days+
Programming$160/hr$150/hr
Unix Administration
System Architecture$280/hr$238/hr
Project Management
Business Consulting$345/hr$300/hr

Tony Hansmann To Address Goldman Sachs Investor Conference. (10/28/05)
Andrew Larsen hired as Vice President, Business Development. (03/21/05)
Level Acuity merges with Precept Consulting and relaunches as Open Source Consulting, LLC (11/01/04)
Level Acuity aquires employment website DBAJobs.com. (06/01/04)
Level Acuity sponsors January's meeting of the San Francisco Perl Mongers. (01/02/04)
Marketing campaign launched featuring ads on Perl.com and Google. (11/13/03)
Level Acuity, LLC announces the launch of their website. (11/11/03)

Contact us today!
+1-877-490-6030 (o)
+1-415-294-4429 (o)
+1-415-358-5887 (f)

Copyright © 2003-2005 Level Acuity, LLC. All rights reserved.