Skip to content

Instantly share code, notes, and snippets.

View jrideout's full-sized avatar

Jacob Rideout jrideout

View GitHub Profile
@waffle2k
waffle2k / smtp.pl
Created May 17, 2011 00:21
Colourized SMTP tester script
#!/usr/bin/perl
use strict;
use IO::Socket;
use Term::ANSIColor;
sub get_file( $ ){
my ($filename) = @_;
open FD, "<$filename" || die( "Cannot open $filename: $!\n" );
my $text = do { local $/; <FD>; };