Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 18.117.91.116
#!/usr/bin/perl -w
use Mail::Internet;
$mail = Mail::Internet->new([<>]);
$rply = $mail->reply(Keep => [qw(Newsgroups)]);
$file = "/tmp/reply.$$";
open(REPLY,">$file") || die "Cannot open $file:$!\n";
$rply->print(\*REPLY);
close(REPLY);
$editor = $ENV{"EDITOR"} || die "\$EDITOR not defined\n";
warn "$editor :$!\n" if (system("$editor $file"));
# Cleanup
unlink($file,$file . '%',$file . '~');
exit 0;
|