Alias to multiple recipients? #3805
-
Is it possible to setup an alias so that 2 recipients receive all the emails simultaniously? |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments 4 replies
-
Did you try it? # Create some accounts:
$ setup email add [email protected] bad-password
$ setup email add [email protected] bad-password
# Create the alias (or add a new recipient to an existing alias):
$ setup alias add [email protected] [email protected]
$ setup alias add [email protected] [email protected]
# Show the aliases:
$ setup alias list | grep [email protected]
* [email protected] [email protected],[email protected]
# Config file it creates/updates:
$ cat /tmp/docker-mailserver/postfix-virtual.cf
[email protected] [email protected],[email protected] Note that this won't be supported by Dovecot Quotas ( We presently don't allow for aliases and accounts to share the same address/value. This isn't a feature you'd likely receive any support on from maintainers if you do have any problems related to it. |
Beta Was this translation helpful? Give feedback.
-
I haven’t tried it because I didnt want to mess up my email accounts. I
thought it may be a straight answer.
Quotas is not relevant for me.
…On Tue, 23 Jan 2024 at 10:47, Brennan Kinney ***@***.***> wrote:
Did you try it?
# Create some accounts:
$ setup email add ***@***.*** bad-password
$ setup email add ***@***.*** bad-password
# Create the alias (or add a new recipient to an existing alias):
$ setup alias add ***@***.*** ***@***.***
$ setup alias add ***@***.*** ***@***.***
# Show the aliases:
$ setup alias list | grep ***@***.**** ***@***.*** ***@***.******@***.***
# Config file it creates/updates:
$ cat ***@***.*** ***@***.******@***.***
Note that this won't be supported by Dovecot Quotas (ENABLE_QUOTAS=1),
some other features may also only expect to work with aliases that map only
to a single account directly (*eg: no alias to alias to account*).
We presently don't allow for aliases and accounts to share the same
address/value. This isn't a feature you'd likely receive any support on
from maintainers if you do have any problems related to it.
—
Reply to this email directly, view it on GitHub
<#3805 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AMNNHGTSZII2OOGSYTCT7C3YP4QD3AVCNFSM6AAAAABCFA7LK2VHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DEMJVGQYTO>
.
You are receiving this because you authored the thread.Message ID:
<docker-mailserver/docker-mailserver/repo-discussions/3805/comments/8215417
@github.com>
|
Beta Was this translation helpful? Give feedback.
-
Ok, I'll check it out. Thanks
…On Tue, 23 Jan 2024 at 15:05, Brennan Kinney ***@***.***> wrote:
I didnt want to mess up my email accounts
You could just run another local DMS instance?
# Basic DMS container (_it will expect a user added within 2 minutes of starting or it will shutdown_):
docker run --rm -it --hostname mail.example.test --name dms mailserver/docker-mailserver
# Then run bash shell in DMS where you can use `setup` CLI:
docker exec -it dms bash
setup ...
No need to mess with your existing setup to try this sort of thing.
—
Reply to this email directly, view it on GitHub
<#3805 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AMNNHGSRMILAMQA4SDWCZOLYP5OMTAVCNFSM6AAAAABCFA7LK2VHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DEMJWHE2TI>
.
You are receiving this because you authored the thread.Message ID:
<docker-mailserver/docker-mailserver/repo-discussions/3805/comments/8216954
@github.com>
|
Beta Was this translation helpful? Give feedback.
-
i confirm that alias to 2 recipients works. |
Beta Was this translation helpful? Give feedback.
-
I have enable_spamassesin=1 |
Beta Was this translation helpful? Give feedback.
-
does your Rspamd package come with the WebGUI? |
Beta Was this translation helpful? Give feedback.
-
Looks awesome and seems very user friendly.
Then the only thing that’s missing for DMS is an easy way for email users
to change their own password.
…On Sat, 27 Jan 2024 at 05:27, Brennan Kinney ***@***.***> wrote:
Yes, view the docs
<https://docker-mailserver.github.io/docker-mailserver/v13.3/config/security/rspamd/#web-interface>
.
The rspamd feature is still WIP, I have heard it's quite good but the docs
may still need some extra revision to be easier for users. It is intended
to eventually become the default and replace SpamAssassin.
—
Reply to this email directly, view it on GitHub
<#3805 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AMNNHGUONKH6MLB5LOMMFDLYQQNVTAVCNFSM6AAAAABCFA7LK2VHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DENRRHAYDS>
.
You are receiving this because you authored the thread.Message ID:
<docker-mailserver/docker-mailserver/repo-discussions/3805/comments/8261809
@github.com>
|
Beta Was this translation helpful? Give feedback.
Did you try it?
Note that this won't be supported by Dovecot Quotas (
ENABLE_QUOTAS=1
), som…