masqmail
view tests/makefile @ 304:d5ce2ba71e7b
manual formating of Received: hdrs; changed hdr for local receival
Now the Received: headers are much friendlier to read.
About folding: We must fold any line at 998 chars before transfer.
We should fold the lines we produce at 78 chars. That is what RFC
2821 requests. We should think about it, somewhen.
The header for locally (i.e. non-SMTP) received mail is changed
to the format postfix uses. This matches RFC 2821 better. The
`from' clause should contain a domain or IP, not a user name. Also,
the `with' clause should contain a registered standard protocol
name, which ``local'' is not.
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Thu, 09 Dec 2010 18:28:11 -0300 |
parents | 3cb6f383f07e |
children |
line source
2 all:
3 cd hostname-stdin && make
4 cd localhost-stdin && make
5 cd relay-to-localhost-mta && make
6 cd relay-to-hostname-mta && make
8 run: all
9 cd hostname-stdin && ./test
10 cd localhost-stdin && ./test
11 cd relay-to-localhost-mta && ./test
12 cd relay-to-hostname-mta && ./test
14 clean:
15 cd hostname-stdin && make clean
16 cd localhost-stdin && make clean
17 cd relay-to-localhost-mta && make clean
18 cd relay-to-hostname-mta && make clean
20 realclean:
21 cd hostname-stdin && make realclean
22 cd localhost-stdin && make realclean
23 cd relay-to-localhost-mta && make realclean
24 cd relay-to-hostname-mta && make realclean