masqmail
diff src/masqmail.h @ 299:ca2d11aec2a3
fixed compile error; removed PROT_BSMTP; made protocol names ucase
Dont know what PROT_BSMTP had been for. It's not used.
RFC 5321 requires the protocol to be:
Protocol = "ESMTP" / "SMTP" / Attdl-Protocol
We now use upper case too, although it might not matter much.
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Thu, 09 Dec 2010 13:53:48 -0300 |
parents | 7b12d081b939 |
children | 3e3c280ca5b2 |
line diff
1.1 --- a/src/masqmail.h Thu Dec 09 13:20:14 2010 -0300 1.2 +++ b/src/masqmail.h Thu Dec 09 13:53:48 2010 -0300 1.3 @@ -203,9 +203,9 @@ 1.4 } table_pair; 1.5 1.6 1.7 +/* must match the contents of prot_names[] in accept.c */ 1.8 typedef enum _prot_id { 1.9 PROT_LOCAL = 0, 1.10 - PROT_BSMTP, 1.11 PROT_SMTP, 1.12 PROT_ESMTP, 1.13 PROT_NUM