行可以包裹在 /etc/aliases 中吗?

行可以包裹在 /etc/aliases 中吗?

我使用 /etc/aliases 将群组电子邮件定向到多个帐户,例如:

postmaster: john
abuse: john
www: paul
team: john, paul, ringo, george

由于转发的用户数量较多,其中一条线路变得相当长。可以绕线吗?

我使用 Exim 作为 MTA。

答案1

编辑:我最初的答案是这是不可能的,但在 @Freddy 的非常有用的评论之后,它可能会起作用:

在 Debian 11 系统上进行快速测试:

~# cat /etc/aliases 
testgroup: test1, 
 test2,
 test3

~# newaliases
~# sendmail testgroup
testmail4
^d

~# su test3
~$ mail
"/var/mail/test3": 2 messages 2 new
>N   1 root               Wed Feb  1 13:22  12/421   
 N   2 root               Wed Feb  1 13:25  12/421   
? 2
Return-path: <root@4d79c2bfcbb5>
Envelope-to: testgroup@4d79c2bfcbb5
Delivery-date: Wed, 01 Feb 2023 13:25:05 +0000
Received: from root by 4d79c2bfcbb5 with local (Exim 4.94.2)
    (envelope-from <root@4d79c2bfcbb5>)
    id 1pND6m-0000xM-2Y
    for testgroup@4d79c2bfcbb5; Wed, 01 Feb 2023 13:25:04 +0000
Message-Id: <E1pND6m-0000xM-2Y@4d79c2bfcbb5>
From: root <root@4d79c2bfcbb5>
Date: Wed, 01 Feb 2023 13:25:04 +0000

testmail4
? 


因此可以换行,但行应该以空格开头。 (一个选项卡也适合我)

相关内容