Home
last modified time | relevance | path

Searched refs:SMTP_STATE (Results 1 – 13 of 13) sorted by relevance

/dports/mail/postfix-current/postfix-3.7-20211107/src/smtp/
H A Dsmtp.h145 typedef struct SMTP_STATE { struct
194 } SMTP_STATE; typedef
365 SMTP_STATE *state; /* back link */
383 extern int smtp_connect(SMTP_STATE *);
389 extern int smtp_helo(SMTP_STATE *);
390 extern int smtp_xfer(SMTP_STATE *);
391 extern int smtp_rset(SMTP_STATE *);
392 extern int smtp_quit(SMTP_STATE *);
592 extern int smtp_sess_fail(SMTP_STATE *);
614 extern SMTP_STATE *smtp_state_alloc(void);
[all …]
H A Dsmtp_reuse.h14 extern void smtp_save_session(SMTP_STATE *, int, int);
15 extern SMTP_SESSION *smtp_reuse_nexthop(SMTP_STATE *, int);
16 extern SMTP_SESSION *smtp_reuse_addr(SMTP_STATE *, int);
H A Dsmtp_state.c60 SMTP_STATE *smtp_state_alloc(void) in smtp_state_alloc()
62 SMTP_STATE *state = (SMTP_STATE *) mymalloc(sizeof(*state)); in smtp_state_alloc()
96 void smtp_state_free(SMTP_STATE *state) in smtp_state_free()
H A Dsmtp_reuse.c111 void smtp_save_session(SMTP_STATE *state, int name_key_flags, in smtp_save_session()
168 static SMTP_SESSION *smtp_reuse_common(SMTP_STATE *state, int fd, in smtp_reuse_common()
212 SMTP_SESSION *smtp_reuse_nexthop(SMTP_STATE *state, int name_key_flags) in smtp_reuse_nexthop()
236 SMTP_SESSION *smtp_reuse_addr(SMTP_STATE *state, int endp_key_flags) in smtp_reuse_addr()
H A Dsmtp_trouble.c213 static int smtp_bulk_fail(SMTP_STATE *state, int throttle_queue) in smtp_bulk_fail()
297 int smtp_sess_fail(SMTP_STATE *state) in smtp_sess_fail()
310 static void vsmtp_fill_dsn(SMTP_STATE *state, const char *mta_name, in vsmtp_fill_dsn()
345 int smtp_misc_fail(SMTP_STATE *state, int throttle, const char *mta_name, in smtp_misc_fail()
368 void smtp_rcpt_fail(SMTP_STATE *state, RECIPIENT *rcpt, const char *mta_name, in smtp_rcpt_fail()
431 int smtp_stream_except(SMTP_STATE *state, int code, const char *description) in smtp_stream_except()
H A Dsmtp_proto.c254 static int smtp_start_tls(SMTP_STATE *);
290 int smtp_helo(SMTP_STATE *state) in smtp_helo()
848 static int smtp_start_tls(SMTP_STATE *state) in smtp_start_tls()
1146 const SMTP_STATE *state = (SMTP_STATE *) context; in smtp_hbc_logger()
1163 SMTP_STATE *state = (SMTP_STATE *) context; in smtp_text_out()
1248 SMTP_STATE *state = (SMTP_STATE *) context; in smtp_header_rewrite()
1356 SMTP_STATE *state = (SMTP_STATE *) context; in smtp_body_rewrite()
1431 static int smtp_out_add_headers(SMTP_STATE *state) in smtp_out_add_headers()
2396 int smtp_xfer(SMTP_STATE *state) in smtp_xfer()
2482 int smtp_rset(SMTP_STATE *state) in smtp_rset()
[all …]
H A Dsmtp_rcpt.c142 void smtp_rcpt_done(SMTP_STATE *state, SMTP_RESP *resp, RECIPIENT *rcpt) in smtp_rcpt_done()
199 void smtp_rcpt_cleanup(SMTP_STATE *state) in smtp_rcpt_cleanup()
H A Dsmtp_connect.c385 static void smtp_cleanup_session(SMTP_STATE *state) in smtp_cleanup_session()
468 static void smtp_cache_policy(SMTP_STATE *state, const char *dest) in smtp_cache_policy()
486 static void smtp_connect_local(SMTP_STATE *state, const char *path) in smtp_connect_local()
669 static int smtp_reuse_session(SMTP_STATE *state, DNS_RR **addr_list, in smtp_reuse_session()
777 static void smtp_connect_inet(SMTP_STATE *state, const char *nexthop, in smtp_connect_inet()
1156 int smtp_connect(SMTP_STATE *state) in smtp_connect()
H A Dsmtp_sasl.h22 extern int smtp_sasl_helo_login(SMTP_STATE *);
H A Dsmtp_sasl_proto.c120 int smtp_sasl_helo_login(SMTP_STATE *state) in smtp_sasl_helo_login()
H A Dsmtp_key.c156 SMTP_STATE *state = iter->parent; /* private member */ in smtp_key_prefix()
H A Dsmtp_sasl_glue.c165 SMTP_STATE *state = session->state; in smtp_sasl_passwd_lookup()
H A Dsmtp.c1187 SMTP_STATE *state; in deliver_message()