Welcome to the Linux Foundation Forum!
Sendmail scripting - amending subjects of emails
Hi,
I am using a .pl script with sendmail to complete the task: Copy inbound mail to disk for parsing into DB system before forwarding onto a different recipient address...
#!/usr/bin/perl
use strict;
use warnings;
open(OUTFILE, ">/maildump/" . $ARGV[0] . "/message" . "$$" . "$^T" . int(rand(100)) . ".eml");
while (<STDIN>) {
print OUTFILE;
}
close(OUTFILE);
use strict;
use warnings;
open(OUTFILE, ">/maildump/" . $ARGV[0] . "/message" . "$$" . "$^T" . int(rand(100)) . ".eml");
while (<STDIN>) {
print OUTFILE;
}
close(OUTFILE);
What I would like to do is to amend the subject lines for emails being delivered into Sendmail from external sources/mail servers.
For the amended subjects I want to prefix them with "LM:".. example... Original Subject = Hello World, New subject = LM: Hello World.
Anyone have any ideas?
0
Comments