-
Hi there, thank you for this amazing project! I'm using the project for some months now and I wanted to know if it was possible to forward mails to another domain not owned by us? Like mails sent to [email protected] will be automatically forwarded to [email protected]? I tried the alias configuration but didn't worked, I wasn't able to receive mails. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 6 replies
-
Hi, Have you tried using the envelope rewriting feature? It is available as a configuration setting and also from Sieve scripts. |
Beta Was this translation helpful? Give feedback.
-
Hi, thank you for your hint. [session.data]
script = "gmail"
[sieve.scripts]
gmail = '''
require ["copy"];
redirect :copy "[email protected]";
''' |
Beta Was this translation helpful? Give feedback.
-
I am trying do make this feature, as "per user" redirect. |
Beta Was this translation helpful? Give feedback.
-
Little late on this topic, but it doesn't work for me. I want to auto-forward/redirect e-mails coming to a specific e-mail address in Stalwart, to an external gmail address. Similar to auto-forwarding feature in most e-mail servers. |
Beta Was this translation helpful? Give feedback.
Hi, thank you for your hint.
So I tried Sieve Scripts does receive the mail with the
redirect
andcopy
(to save a version on the server)!Here is my script: