Replies: 2 comments 1 reply
-
A blob store is always required, but there is no need to use S3 for it. You can store the blobs in the local file system or in a local RocksDB or SQLite database. |
Beta Was this translation helpful? Give feedback.
-
Thanks for the quick response! Do I understand the RCPT page correctly that it is possible to use an expression for relay that mimicks/combines postfix's relay_domains and relay_recipients parameters, but it's not possible to replicate Apologies for asking if this should've been obvious already :) |
Beta Was this translation helpful? Give feedback.
-
Is it possible to setup mail-server just as a relay host itself, similar how you can configure postfix to relay/forward incoming mail to another server using transport_maps, relay_domains and relay_recipients?
A use-case for this would be a single/primary mailserver
mx10
which runs in your own office/home, with a fallback mailservermx90
which runs on f.e. a VPS. Wheremx90
should not run JMAP/IMAP, should not have access to or store any data (except in the buffer, see next) and should not be configurable itself. The only rolemx90
would have is as a buffer whenmx10
is for whatever reason not reachable so that emails can still be received whilemx10
is down so you don't lose any emails.It seems possible to do this already by setting up a cluster with an s3 blob storage, but somehow that feels like overkill because that requires a S3 compatible blob storage. And afaik it also means that
mx90
has full access to all data in the blob store, which might be less preferred for various (privacy) reasons.TLDR: is it possible to replicate a sqlite data store to
mx90
but configuremx90
without a blob store and have it forward/relay all emails tomx10
?Beta Was this translation helpful? Give feedback.
All reactions