mirror of
https://github.com/mjl-/mox.git
synced 2025-07-12 22:14:40 +03:00
in webadmin when managing aliases, mention an alias member won't receive a message if the member address is in the message From header
this is a typical case if you made an alias to test how it works, with your account. we may have to make this behaviour optional in the future. for issue #220 by wneessen, thanks for reporting!
This commit is contained in:
@ -886,7 +886,7 @@ const account = async (name: string) => {
|
||||
dom.table(
|
||||
dom.thead(
|
||||
dom.tr(
|
||||
dom.th('Alias address'),
|
||||
dom.th('Alias address', attr.title('Messages sent to this address will be delivered to all members of the alias/list. A member does not receive a message if their address is in the message From header.')),
|
||||
dom.th('Subscription address'),
|
||||
dom.th('Allowed senders', attr.title('Whether only members can send through the alias/list, or anyone.')),
|
||||
dom.th('Send as alias address', attr.title('If enabled, messages can be sent with the alias address in the message "From" header.')),
|
||||
@ -1829,6 +1829,7 @@ const domainAlias = async (d: string, aliasLocalpart: string) => {
|
||||
dom.br(),
|
||||
|
||||
dom.h2('Members'),
|
||||
dom.p('Members receive messages sent to the alias. If a member address is in the message From header, the member will not receive the message.'),
|
||||
dom.table(
|
||||
dom.thead(
|
||||
dom.tr(
|
||||
|
Reference in New Issue
Block a user