Tagged Questions
Procmail is a powerful Mail Delivery Agent (MDA) capable of sorting and filtering mail based on rulesets called recipes. It's rather *nix-centric, terse, mature, and proven.
4
votes
3answers
4k views
Want procmail to run a custom python script, everytime a new mail shows up
I have a pretty usual requirement with procmail but I am unable to get the results somehow. I have procmailrc file with this content:
:0
* ^To.*@myhost
| /usr/bin/python ...
3
votes
3answers
332 views
What, if any, injection vulnerabilities are there in bash and how can I protect against them?
I have a bash script which I'm kicking off via procmail. Procmail passes in the subject and from field from an email as arguments to the bash script. Since these values are unsanitized in any way, I'm ...
3
votes
4answers
484 views
What's in your .procmailrc [closed]
Are there any handy general items you put in your .procmailrc file?
2
votes
2answers
1k views
Procmail vs. Maildrop - which to use?
I need to do mail processing where I manipulate the contents of the mail or invoke a script on the receipt of email, supporting a number of email addresses as the access points. In reading through the ...
1
vote
1answer
47 views
Other than procmail what Unix tools can “read” an email via pipe?
Other than procmail what Unix tools can "read" an email via pipe? I have a client that wants to develop an app on a university managed (read squeamish IT dept) server. Procmail is not installed and ...
1
vote
1answer
42 views
procmailrc rule for “In-Reply-To header matches previously seen Message-ID header”
Trying to figure out how to have a .procmailrc rule that tosses all mail that is in reply to previously seen mail. Using maildir, and would like the rule to cover messages in either cur/ or new/...
...
1
vote
3answers
284 views
Using procmail to call a php script
I am attempting to do some custom email forwarding. #1 I am on a shared server, which is using qmail, and optionally procmail.
What I am trying to accomplish is some custom email forwarding of one ...
1
vote
2answers
51 views
Does Procmail have a lowercase function, or a similar capability?
I'm using the following (classic) procmail recipe to catch mailing list e-mails and file them into a folder by list name:
:0
* ^((List-Id|X-(Mailing-)?List):(.*[<]\/[^>]*))
{
LISTID=$MATCH
...
1
vote
1answer
145 views
Maildrop: Filter mail by Date: header
I'm using getmail + maildrop + mutt + msmtp chain with messages stored in Maildir. Very big inbox bothers me, so i wanted to organize mail by date like that:
Maildir
|-2010.11->all messages with ...
1
vote
3answers
579 views
POP3 email to MySQL database? What options do I have?
Ok..... basically what I'm trying to do is setup something that will handle all incoming mail on a certain POP3 email address, pass all the relevant data to a PHP script, which will then parse the ...
1
vote
1answer
109 views
How to match any whitespace in body of mail in procmail?
I tried to use such rule:
:0 B
* Something[[:space:]]+whatever
but it doesn't work.
When I change [[:space:]] to literal space character:
:0 B
* Something +whatever
it works.
It also works in ...
1
vote
1answer
634 views
Moving IMAP mail to Gmail and retaining correct times
I am trying to use gmail to manage mail from an email account I have that is imap only. My strategy was to use (getmail to retrieve mail from the server and pass it through to procmail for ...
1
vote
1answer
283 views
How to receive all emails pertaining to a domain, on my production machine?
I have a strange requirement, any website user(not linux system user) will be getting a email id, say jack@mywebsite.com,sarah@mywebsite.com with which they are going to have a inbox feature built ...
1
vote
2answers
528 views
procmail lockfile utility and NFS
G'day,
Has anyone used the lockfile utility that ships with procmail in conjunction with NFS mounted directories?
The lockfile man page states that "Lockfile is NFS-resistant and eight-bit clean."
...
0
votes
1answer
55 views
procmail disregards /etc/group?
sample procmailrc:
SHELL=/bin/bash
LOGFILE=$HOME/procmail.log
VERBOSE=yes
:0
* ^Subject: envdump please$
{
LOG="`id`"
:0
/dev/null
}
/etc/group file contains (note ...
0
votes
1answer
8 views
having issues downloading xls file using procmail
Any ideas why my xls attachment files aren't being downloaded? thanks This is a perl wrapper creating the procmailrc file for me.
my $procmailrc =<<EOL;
MAILDIR=$workDir
VERBOSE=on
...
0
votes
2answers
59 views
How to preproccess my emails to have links to my attachments
I'm using mutt over ssh as my mail client. This works great, but looking at the attachments (mostly images) is a bit annoying. Now my idea is to parse the email, store the attachments on my server and ...
0
votes
2answers
111 views
Procmail recipe, pipe to Java stdin
I'm trying to run some custom parsing on incoming mail using procmail, and would like to call a java program to read in the headers and body of the message using the |pipe to stdin. There are plenty ...
0
votes
1answer
68 views
Send a MIME file
i need to do some operation over each email i received on a specific adress,
first a i made a rule in procmail and pipe the mail in a bash file
| mybash.sh
In the bash file i save the mail in a tmp ...
0
votes
1answer
56 views
Mail attachment killfile - how to blacklist signature attachments by filename
How can one best implement a minimal serverside mail filtering system which does one thing: remove signature attachments by name.
Some colleagues' every email contains an inline embedded ...
0
votes
1answer
117 views
How to make scalable backend postfix server solution?
Here is the problem I am facing with. We are having a postfix server that needs to parse emails forwarded from some user's account and extract some data from it. Usually there are around 200 emails ...
0
votes
1answer
177 views
Procmail: Move to folder and mark as read
a simple question:
I want to move emails with a certain subject to a folder and mark them as read afterwards. Moving works for me with
:0: H
* ^Subject:.*(ThisIsMySubject)
$HOME/mail/ThisIsMyFolder
...
0
votes
1answer
168 views
procmail is not executing scripts correctly
I'm having a strange issue with running scripts (perl and ruby failing) from incoming mail locally delivered by procmail.
The system is CentOS 5.5 with postfix as my mailer, then a .forward set up to ...
0
votes
0answers
44 views
How to successfully receive sent email in Rails 2.0.1?
I can send an email using action mailer in Rails 2.0.1, but my mail client never receives it. Will you help me?
Thanks in advance.
0
votes
0answers
58 views
Lightest MDA to forward all mail to script
I need to forward *@domain.com to a script.
I know the EXIM way: http://serverfault.com/questions/229964/forward-all-mail-on-a-specified-domain-to-script
and the PROCMAIL way: Want procmail to run a ...
0
votes
3answers
55 views
Is procmail chrooted or limited in using linux commands?
im using procmail to forward emails to different folders in my Maildir.
I use these two lines to get the FROM and TO from the mail, which works pretty fine.
FROM=`formail -x"From:"`
TO=`formail ...
0
votes
1answer
60 views
file extention filtering does not work in procmail
procmail will not download just .xls, .doc and .docx extentions. every condition i have found either downloads everything or nothing. i am using fedora 14
conditions i have tried that dont download ...
0
votes
2answers
213 views
Move emails with procmail if it matches from sender
as im using different email clients to read/send my mails i want to setup procmail to move my emails to a the folder which is normally done by Thunderbird filter feature.
I know that i can do it by ...
0
votes
1answer
55 views
File Distribution via SMTP: How to do the receiving side?
I need to setup a file distribution system between different sites of a WAN. Files that are dropped into some input directories on the source machine should be distributed into a directory on each of ...
0
votes
0answers
92 views
Procmailrc to process a catchall into folders
Can anyone help me with a system wide procmailrc receipe?
What I want to happen is that any email going to a special domain (catch all account) gets put in a local mailbox in a folder named the same ...
0
votes
2answers
99 views
How to determine which pattern in a file matched with grep?
I use procmail to do extensive sorting on my inbox. My next to last recipe matches the incoming From: to a (very) long white/gold list of historically good email addresses, and patterns of email ...
0
votes
2answers
172 views
How can I send an automated reply to the sender and all recipients with Procmail?
I'd like to create a procmail recipe or Perl or shell script that will send an auto response to the original sender as well as anybody that was copied (either To: or cc:) on the original email.
...
0
votes
2answers
1k views
Procmail Forward script to forward emails from one domain to the other
I am trying to write a procmail forward script, which will forward all the mails received at mydomain.com to mydomain.NET. To be more clear, if mail is to:jack@mydomain.com, it should forward to: ...
0
votes
5answers
459 views
Procmail Troubles
I've been trying to solve this for weeks...
My Goal is to search my inbox for the following messages:
Hello
Hi
Hey
Im using three files to do this for me. The first, a .forward file in my $HOME
...
0
votes
1answer
529 views
Adding headers to mail coming via exim4
I've got a Debian Etch system running Exim4-daemon-heavy.
The system is open to the internet, but the intention is that it will only receive legitimate mail coming from a spam-filtering service, ...
-1
votes
1answer
177 views
How to append beginng of body to subject of mail (body of new mail can be erased) and forward it using e.g. procmail?
see the title for the question. that is all.
-2
votes
1answer
82 views
procmail and delivering to an IMAP server?
I run my own mail server. It uses procmail to filter incoming mail, which is then stored in maildirs and gets served out my MUA using IMAP. I've got about 1.5GB of email is 135000 inodes.
This all ...