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 wrap: on
line diff
--- a/src/masqmail.h	Thu Dec 09 13:20:14 2010 -0300
+++ b/src/masqmail.h	Thu Dec 09 13:53:48 2010 -0300
@@ -203,9 +203,9 @@
 } table_pair;
 
 
+/* must match the contents of prot_names[] in accept.c */
 typedef enum _prot_id {
 	PROT_LOCAL = 0,
-	PROT_BSMTP,
 	PROT_SMTP,
 	PROT_ESMTP,
 	PROT_NUM