Я зробив це у своєму вікні розробки, повністю відключивши sendmail, а потім простий скрипт perl прослухав на порту SMTP та скинув електронні листи в каталог. Я впевнений, що це можливо зробити з конфігурацією sendmail, але сценарій perl був набагато простішим. Ось це зведено до найважливішого:
#!/usr/bin/perl -w
use Net::SMTP::Server;
use Net::SMTP::Server::Client;
$server = new Net::SMTP::Server || die("$!\n");
while($conn = $server->accept()) {
my $client = new Net::SMTP::Server::Client($conn) ||
die("Unable to handle client connection: $!\n");
$client->process || next;
# Here's where you can write it out or just dump it. Set $filename to
# where you want to write it
open(MAIL,"> $filename") || die "$filename: $1";
print(MAIL "$client->{MSG}\n");
close(MAIL);
}