12

Situation: mail server with IMAP only access. Problem: I want to be able to filter mails (put some mails to various folders, mark them as read and so on).

Most new email clients have this ability, but I want a standalone filtering program, as I need to use various email clients to connect to this server.

Generally - something like procmail, but working over IMAP.

The software will be run on Linux or Solaris.

  • See also: [procmail and delivering to an IMAP server?](https://stackoverflow.com/questions/6927329/procmail-and-delivering-to-an-imap-server) – reinierpost Dec 16 '14 at 11:44

6 Answers6

9

A quick google throws up IMAPFilter which looks like it does what you want:

  • Searching of messages using many available criteria in the IMAP protocol, such as:
    • Status (recent, unread, etc.) of a message.
    • Size of a message.
    • Age of a message.
    • Matching of a string or a regular expression pattern in the headers or the body of a message.
  • Ability to use logical operators (and/or/not) while searching messages.
  • Different capabilities available to process messages, including:
    • Deleting messages.
    • Moving messages to a mailbox in the same or different servers
    • Copying messages to a mailbox in the same or different servers.
    • Marking messages or changing message flags.
  • Listing of the available and/or subscribed mailboxes, along with support for the IMAP CHILDREN extension.
  • Creating, deleting, renaming, subscribing or unsubscribing mailboxes
  • Internationalisation (I18N) support.
  • Server namespace support using the IMAP NAMESPACE extension.
  • Secure Socket Layer (SSL) or Transport Layer Security (TLS) encrypted imaps (port 993) connections.
  • Encrypted connections using the IMAP STARTTLS extension.
  • User authentication with the Challenge-Response Authentication Mechanism (CRAM), specifically CRAM-MD5.
  • Perl Compatible Regular Expressions (PCRE) support.
Sacha K
  • 367
  • 4
  • 18
TRS-80
  • 2,564
  • 17
  • 15
1

Depending on your IMAP server, you could simply use some implementation of sieve. I think the best support for sieve is provided by cyrus.

innaM
  • 1,428
  • 9
  • 9
  • Well - the solution i'm looking for cannot depend in any way on the server. I have to assume the server is just a dumb IMAP, with no support to nothing smart. –  Jul 24 '09 at 11:33
1

As you already mentioned, procmail is the right way to do this, so you could ask your email provider if they support it just in case - doesn't hurt.

Otherwise, maybe the easiest way is to have an email client always open which does the sorting etc. There used to be locking problems with multiple clients accessing the same IMAP mailbox, but I have not seen those in years.

Marie Fischer
  • 1,943
  • 1
  • 13
  • 13
1

For sheer lightweightness, you could give Sift a try.

Sacha K
  • 367
  • 4
  • 18
David North
  • 762
  • 1
  • 5
  • 12
1

Yet another way is to use the ruby gem imap-filter.

https://github.com/flajann2/imap-filter/blob/master/README.org

And example of the DSL,

https://github.com/flajann2/imap-filter/blob/master/examples/default.imap

The DSL is Ruby-based, but you don't need to know much Ruby to use it. The author promises to provide more examples in the near future, and is open to feature requests and pull requests.

Lord Alveric
  • 111
  • 3
0

On Linux and Unix operating systems, you can use fetchmail to poll your IMAP e-mail account, and pass any new messages to procmail. You could configure procmail to run scripts based on regular expression pattern matches in received messages.

To do this, you'll need to install the fetchmail and procmail packages. The following configuration allowed me to run a script for every new e-mail message is received in my e-mail account. I used Ubuntu 12.04 LTS.

In ~/.fetchmailrc:

# .fetchmailrc checks my e-mail account for new messages, sends them to procmail

set logfile /home/myusername/fetchmail.log

poll mail.domain.com protocol IMAP
    user "emailaccountname"
    password 'emailpassword'
    folder 'INBOX'
    keep
    ssl
    mda "/usr/bin/procmail -f %F"

Note the keep directive above, which ensures that messages are not removed from the IMAP server after they're retrieved.

In ~/.procmailrc:

# .procmailrc received e-mails from fetchmail and runs a script
PATH=/usr/bin:/usr/local/bin
LOGFILE=/home/username/procmail.log
SHELL=/bin/sh

# This rule triggers for every e-mail message:
:0
| `/home/username/myscript.sh`

There are lots of tutorials online for fetchmail and procmail, and also tutorials for how to integrate the two (that's how I came up with the above).

Now if I run fetchmail or fetchmail -v the script /home/username/myscript.sh runs once for every new message. I can run fetchmail in a cron, or configure fetchmail to run as a daemon with the set daemon 600 directive in .fetchmailrc (where 600 is the number of seconds between polls).

Steve HHH
  • 321
  • 3
  • 5