From 488bbcb1829fced9932fa4d5080093379a363b0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jagoda=20Estera=20=C5=9Al=C4=85zak?= <128227338+j-g00da@users.noreply.github.com> Date: Thu, 11 Jun 2026 05:31:53 +0900 Subject: [PATCH] docs(readme): Disable colors in mermaid diagrams (#180) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previously used colors caused diagrams to be unreadable in light mode. Removing styling completely, as this was redundant anyway. Signed-off-by: Jagoda Ślązak --- filtermail/README.md | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/filtermail/README.md b/filtermail/README.md index ae28b877..b8759fd2 100644 --- a/filtermail/README.md +++ b/filtermail/README.md @@ -34,12 +34,6 @@ flowchart LR end mta[Sender's relay] -.SMTP :25.-> smtpd1 mta -.HTTPS /mxdeliv.-> nginx - - style postfix fill:#363 - style smtpd1 fill:#252 - style smtpd2 fill:#252 - style queue fill:#252 - style filtermail fill:#225 ``` Filtermail in incoming mode acts as a proxy filter @@ -82,12 +76,6 @@ flowchart LR open-dkim[OpenDKIM] <--milter--> smtpd2 end client[Client] --SMTP :587--> smtpd1 - - style postfix fill:#363 - style smtpd1 fill:#252 - style smtpd2 fill:#252 - style queue fill:#252 - style filtermail fill:#225 ``` Filtermail in outgoing mode acts as a proxy filter @@ -115,11 +103,6 @@ flowchart LR end filtermail -.SMTP :25.-> mta[Recipient's relay] filtermail -.HTTPS /mxdeliv.-> mta - - style postfix fill:#363 - style qmgr fill:#252 - style lmtp fill:#252 - style filtermail fill:#225 ``` Filtermail in transport mode is used for final delivery to remote MTAs.