Mercurial > masqmail
diff src/masqmail.h @ 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 | f186650135c3 |
children | 4fd237550525 |
line wrap: on
line diff
--- a/src/masqmail.h Thu Jul 15 11:48:33 2010 +0200 +++ b/src/masqmail.h Thu Jul 15 14:24:40 2010 +0200 @@ -125,26 +125,6 @@ gboolean pipe_fromhack; } connect_route; -typedef struct _get_conf { - gchar *protocol; - gchar *server_name; - guint server_port; - gchar *wrapper; - gchar *login_user; - gchar *login_pass; - address *address; - address *return_path; - gboolean do_keep; - gboolean do_uidl; - gboolean do_uidl_dele; - gint max_size; - gboolean max_size_delete; - gint max_count; - - GList *resolve_list; - -} get_conf; - typedef struct _masqmail_conf { gint mail_uid; gint mail_gid; @@ -207,9 +187,6 @@ gchar *online_file; gchar *online_pipe; - GList *get_names; - GList *online_gets; /* list of pairs which point to lists */ - gchar *errmsg_file; gchar *warnmsg_file; GList *warn_intervals; @@ -231,8 +208,6 @@ PROT_BSMTP, PROT_SMTP, PROT_ESMTP, - PROT_POP3, - PROT_APOP, PROT_NUM } prot_id; @@ -386,8 +361,6 @@ GList *read_route_list(GList * rf_list, gboolean is_local_net); void destroy_route(connect_route * r); void destroy_route_list(GList * list); -get_conf *read_get_conf(gchar * filename); -void destroy_get_conf(get_conf * gc); connect_route *create_local_route(); /* expand.c */ @@ -473,13 +446,6 @@ gboolean fail_msg(message * msg, gchar * template, GList * failed_rcpts, gchar * err_fmt, va_list args); gboolean warn_msg(message * msg, gchar * template, GList * failed_rcpts, gchar * err_fmt, va_list args); -/* get.c */ -gboolean get_from_file(gchar * fname); -gboolean get_from_name(gchar * name); -gboolean get_all(void); -void get_online(void); -void get_daemon(gint gival, char *argv[]); - /* interface.c */ gboolean init_sockaddr(struct sockaddr_in *name, interface * iface); int make_server_socket(interface * iface);