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 diff
1.1 --- a/src/masqmail.h Thu Jul 15 11:48:33 2010 +0200 1.2 +++ b/src/masqmail.h Thu Jul 15 14:24:40 2010 +0200 1.3 @@ -125,26 +125,6 @@ 1.4 gboolean pipe_fromhack; 1.5 } connect_route; 1.6 1.7 -typedef struct _get_conf { 1.8 - gchar *protocol; 1.9 - gchar *server_name; 1.10 - guint server_port; 1.11 - gchar *wrapper; 1.12 - gchar *login_user; 1.13 - gchar *login_pass; 1.14 - address *address; 1.15 - address *return_path; 1.16 - gboolean do_keep; 1.17 - gboolean do_uidl; 1.18 - gboolean do_uidl_dele; 1.19 - gint max_size; 1.20 - gboolean max_size_delete; 1.21 - gint max_count; 1.22 - 1.23 - GList *resolve_list; 1.24 - 1.25 -} get_conf; 1.26 - 1.27 typedef struct _masqmail_conf { 1.28 gint mail_uid; 1.29 gint mail_gid; 1.30 @@ -207,9 +187,6 @@ 1.31 gchar *online_file; 1.32 gchar *online_pipe; 1.33 1.34 - GList *get_names; 1.35 - GList *online_gets; /* list of pairs which point to lists */ 1.36 - 1.37 gchar *errmsg_file; 1.38 gchar *warnmsg_file; 1.39 GList *warn_intervals; 1.40 @@ -231,8 +208,6 @@ 1.41 PROT_BSMTP, 1.42 PROT_SMTP, 1.43 PROT_ESMTP, 1.44 - PROT_POP3, 1.45 - PROT_APOP, 1.46 PROT_NUM 1.47 } prot_id; 1.48 1.49 @@ -386,8 +361,6 @@ 1.50 GList *read_route_list(GList * rf_list, gboolean is_local_net); 1.51 void destroy_route(connect_route * r); 1.52 void destroy_route_list(GList * list); 1.53 -get_conf *read_get_conf(gchar * filename); 1.54 -void destroy_get_conf(get_conf * gc); 1.55 connect_route *create_local_route(); 1.56 1.57 /* expand.c */ 1.58 @@ -473,13 +446,6 @@ 1.59 gboolean fail_msg(message * msg, gchar * template, GList * failed_rcpts, gchar * err_fmt, va_list args); 1.60 gboolean warn_msg(message * msg, gchar * template, GList * failed_rcpts, gchar * err_fmt, va_list args); 1.61 1.62 -/* get.c */ 1.63 -gboolean get_from_file(gchar * fname); 1.64 -gboolean get_from_name(gchar * name); 1.65 -gboolean get_all(void); 1.66 -void get_online(void); 1.67 -void get_daemon(gint gival, char *argv[]); 1.68 - 1.69 /* interface.c */ 1.70 gboolean init_sockaddr(struct sockaddr_in *name, interface * iface); 1.71 int make_server_socket(interface * iface);