Postfix的虚拟别名表格式在某些条件下赋予前导空格特殊的含义:
multi-line text
A logical line starts with non-whitespace text. A line that
starts with whitespace continues a logical line.
在此示例之后,我在这些文件中有很多条目。特别是对于多个不同的行,前缀a
具有不同的长度。
# Some comment...
[email protected] recipient
[email protected] recipient
[email protected] recipient
[email protected] recipient
[email protected] recipient
[email protected] recipient
为了使事情更具可读性,我希望使用以下相同条目的布局:
# Some comment...
[email protected] recipient
[email protected] recipient
[email protected] recipient
[email protected] recipient
[email protected] recipient
[email protected] recipient
或者有时使用不同顺序的相同方法。虽然,前一个例子在理论上会更常见。
# Some comment...
[email protected] recipient
[email protected] recipient
[email protected] recipient
[email protected] recipient
[email protected] recipient
[email protected] recipient
因此,真正的区别只是添加前导空格以使内容更具可读性。至少在第二个示例中,根据文档,前导空格将被识别为前几行的延续,这在我的情况下是错误的。
但是第一个例子是如何处理的呢?理论上从来没有起始逻辑行,但行也不是空的、空格或仅注释。
一般来说,有什么方法可以配置/...后缀,前导空格总是被忽略并且从不用于继续?
如果当前的 Postfix 实现根本不可能,我会接受。只是想确保我没有遗漏任何东西。
谢谢!
Postfix 带有一个
postmap
用于预编译表的工具。Postfix 警告您“逻辑行不能以空格开头”并忽略以下连续行,从而生成一个只有一个条目的表(对于“abcd”)。
(这似乎与配置文件解析器不同,其中仅注释行仍然算作逻辑行,而注释只是延续到所有延续行。)
不可以。 Postfix 的 readllines() “逻辑行读取”功能的使用是不可配置的。