私は/etc/aliasesを使ってグループメールを複数のアカウントに送信します。たとえば、次のようになります。
postmaster: john
abuse: john
www: paul
team: john, paul, ringo, george
渡すユーザーが多いため、行の1つがかなり長くなりました。ワイヤーを巻くことはできますか?
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
?
したがって、改行は可能ですが、行はスペースで始まる必要があります。 (私にもタブが働きます)