comparison 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
comparison
equal deleted inserted replaced
298:6281ff92cb86 299:ca2d11aec2a3
201 gchar *key; 201 gchar *key;
202 gpointer *value; 202 gpointer *value;
203 } table_pair; 203 } table_pair;
204 204
205 205
206 /* must match the contents of prot_names[] in accept.c */
206 typedef enum _prot_id { 207 typedef enum _prot_id {
207 PROT_LOCAL = 0, 208 PROT_LOCAL = 0,
208 PROT_BSMTP,
209 PROT_SMTP, 209 PROT_SMTP,
210 PROT_ESMTP, 210 PROT_ESMTP,
211 PROT_NUM 211 PROT_NUM
212 } prot_id; 212 } prot_id;
213 213