Mercurial > masqmail
comparison src/accept.c @ 192:89f951be358f
REMOVED POP3 SUPPORT
masqmail will not include a POP3 client anymore from 0.3.0 on
maybe the POP3 code will be reworked into a standalone program
some day
if you rely on the POP3 client, use fetchmail or something similar
instead
author | meillo@marmaro.de |
---|---|
date | Thu, 15 Jul 2010 14:24:40 +0200 |
parents | cd59a5b4d3dd |
children | 996b53a50f55 |
comparison
equal
deleted
inserted
replaced
191:f186650135c3 | 192:89f951be358f |
---|---|
22 gchar *prot_names[] = { | 22 gchar *prot_names[] = { |
23 "local", | 23 "local", |
24 "bsmtp", | 24 "bsmtp", |
25 "smtp", | 25 "smtp", |
26 "esmtp", | 26 "esmtp", |
27 "pop3", | |
28 "apop", | |
29 "(unknown)" /* should not happen, but better than crashing. */ | 27 "(unknown)" /* should not happen, but better than crashing. */ |
30 }; | 28 }; |
31 | 29 |
32 static gchar* | 30 static gchar* |
33 string_base62(gchar * res, guint value, gchar len) | 31 string_base62(gchar * res, guint value, gchar len) |