2010 LWN.net article discusses procmail being orphaned for (already) about a decade:
https://lwn.net/Articles/416901/
(However, it should be noted that the Debian Project maintains procmail, and can be regarded as functionally the current upstream.)

Procmail is the most common local delivery and filtering agent on *ix systems, and was written in C by S.R. van den Berg and Philip Guenther. Supports mbox and Maildir mail stores. Procmail is a very mature codebase that can do anything at all possible with e-mail. At the same time, it suffers an infamously difficult command syntax.




1. Alternatives to procmail as a local delivery agent (LDA):

Of the procmail alternatives detailed below, by far the most used are Courier's maildrop and Dovecot's deliver aka 'lda' (optionally with the latter's Sieve plug-in module). See LWN.net article (above) for details.




2. Sieve

Sieve is not a specific piece of software but rather a domain-specific language for mail filtering -- and is highly regarded for that purpose. A number of LDAs support Sieve scripting either natively or via plug-ins, and are listed at the Sieve language Web site: http://sieve.info/servers. Note that some MTAs, notably Exim4 and some Sendmail, Inc. codebases, also support Sieve scripting.




3. LDA vs. MDA

Many online resources including Wikipedia and the Mailman documentation claim that a 'local delivery agent' (LDA) is synonymous with 'mail delivery agent' (MDA). There is actually an old-timer's distinction: A local delivery agent is a program (called by, e.g., the receiving Mail Transfer Agent) that implements a mail delivery protocol to a local user. A mail delivery agent is the same except the destination user can be either local or remote, and thus MDAs include IMAP and POP daemons.

The above the distinction is increasingly ignored in the technical world at large, but, for whatever it's worth, this knowledgebase has separate MDAs coverage. It should be consulted if only because some codebases listed include LDA functionality.




4. LMTP Implementations

Missing so far from this document (and knowledgebase) is a proper account of the LMTP protocol and software that implement that optional layer of the Internet mail stack. LMTP is an optional layer below SMTP and above other software such as MLMs, mail remote-access daemons, and LDAs/MDAs. Its existence is useful for, for example, permitting GNU Mailman and similar MLMs operate within multiple virtual domains each run by a different MTA.

LDAs are not the same as LMTP implementations, and, to my knowledge, with LMTP implementations, you still need an LDA.