Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions doc/source/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,24 @@ Component dependency diagram
style nginx-external fill:#fc9;
style nginx-right fill:#fc9;

Message between users on the same relay
---------------------------------------

.. mermaid::
:caption: This diagram shows the path a non-federated message takes.

graph LR;
sender --> |465|smtps/smtpd;
sender --> |587|submission/smtpd;
smtps/smtpd --> |10080|filtermail;
submission/smtpd --> |10080|filtermail;
filtermail --> |10025|smtpd_reinject;
smtpd_reinject --> cleanup;
cleanup --> qmgr;
qmgr --> smtpd_accepts_message;
qmgr --> |lmtp|dovecot;
dovecot --> recipient;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

for in-relay messages there is no filtermail-incoming?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, that is only invoked by the smtpd which is running on port 25. filtermail-outgoing ensures that internal messages are encrypted.

dovecot --> sender's_other_devices;

Operational details of a chatmail relay
----------------------------------------
Expand Down